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.
This commit is contained in:
Robert Shearman 2006-02-20 13:29:31 +00:00 committed by Alexandre Julliard
parent 40a6a74ac8
commit 3e47c82e02
1 changed files with 7 additions and 0 deletions

View File

@ -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,