Module: wine
Branch: refs/heads/master
Commit: e4faabfa64aa0c89db482fc780ed1a7f51efa53e
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e4faabfa64aa0c89db482fc…
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Tue Feb 21 16:58:19 2006 +0900
server: Track created and removed directories in the tree of inodes for inotify.
Add them to or remove them from existing recursive watches.
---
dlls/ntdll/directory.c | 8 +
include/wine/server_protocol.h | 3
server/change.c | 275 ++++++++++++++++++++++++++++++++++------
server/protocol.def | 1
server/trace.c | 1
5 files changed, 244 insertions(+), 44 deletions(-)
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=e4faabfa64aa0c89db4…
Module: wine
Branch: refs/heads/master
Commit: 43a0f0c85aa2504e144e8f0afc4c556fc02b7930
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=43a0f0c85aa2504e144e8f0…
Author: Detlef Riekenberg <wine.dev(a)web.de>
Date: Tue Feb 21 06:37:35 2006 +0100
ntdll: Avoid compile error caused by a single quote.
---
dlls/ntdll/signal_i386.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/signal_i386.c b/dlls/ntdll/signal_i386.c
index bfc9c45..727223d 100644
--- a/dlls/ntdll/signal_i386.c
+++ b/dlls/ntdll/signal_i386.c
@@ -105,7 +105,7 @@ struct kernel_sigaction
#ifndef SYS_sigaction
# ifndef __NR_sigaction
-# error The sigaction syscall is part of the Linux i386 ABI, but your headers don't define it. Please raise a bug with your distribution.
+# error The sigaction syscall is part of the Linux i386 ABI, but your headers does not define it. Please raise a bug with your distribution.
# endif
# define SYS_sigaction __NR_sigaction
#endif
Module: wine
Branch: refs/heads/master
Commit: 3e47c82e025afcb868ac547a5bd4050fc43a5e52
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=3e47c82e025afcb868ac547…
Author: Robert Shearman <rob(a)codeweavers.com>
Date: Mon Feb 20 13:29:31 2006 +0000
ntdll: Add a define for SYS_sigaction to __NR_sigaction.
Print an error if __NR_sigaction doesn't exist as this means the wrong
syscall header is being used.
---
dlls/ntdll/signal_i386.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/dlls/ntdll/signal_i386.c b/dlls/ntdll/signal_i386.c
index 46f9fa6..bfc9c45 100644
--- a/dlls/ntdll/signal_i386.c
+++ b/dlls/ntdll/signal_i386.c
@@ -103,6 +103,13 @@ struct kernel_sigaction
void *ksa_restorer;
};
+#ifndef SYS_sigaction
+# ifndef __NR_sigaction
+# error The sigaction syscall is part of the Linux i386 ABI, but your headers don't define it. Please raise a bug with your distribution.
+# endif
+# define SYS_sigaction __NR_sigaction
+#endif
+
/* Similar to the sigaction function in libc, except it leaves alone the
restorer field, which is used to specify the signal stack address */
static inline int wine_sigaction( int sig, struct kernel_sigaction *new,