diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-21 15:40:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-21 15:40:39 +0000 |
commit | adcb550ca6efa4934faece8adc5a40f60f2c03dd (patch) | |
tree | 03d7243f25009ea91672be31be7265e7c8c78dbc /sysdeps/unix/sysv/linux/i386/sigaction.c | |
parent | 0dee67386c1ef99baee307ab01d20c79739cbc2a (diff) | |
download | glibc-adcb550ca6efa4934faece8adc5a40f60f2c03dd.tar.gz glibc-adcb550ca6efa4934faece8adc5a40f60f2c03dd.tar.xz glibc-adcb550ca6efa4934faece8adc5a40f60f2c03dd.zip |
Update.
* sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise. * sysdeps/unix/sysv/linux/Makefile [subdir=signal] (sysdep_routines): Move definition to... * sysdeps/unix/sysv/linux/alpha/Makefile: ...here... * sysdeps/unix/sysv/linux/arm/syscalls.list: ...and here... * sysdeps/unix/sysv/linux/m68k/syscalls.list: ...and here... * sysdeps/unix/sysv/linux/mips/syscalls.list: ...and here... * sysdeps/unix/sysv/linux/powerpc/syscalls.list: ...and here... * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: ...and here... * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: ...and here.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/sigaction.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/sigaction.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sigaction.c b/sysdeps/unix/sysv/linux/i386/sigaction.c index 0110a80a8a..ab19246c9c 100644 --- a/sysdeps/unix/sysv/linux/i386/sigaction.c +++ b/sysdeps/unix/sysv/linux/i386/sigaction.c @@ -22,6 +22,9 @@ #include <stddef.h> #include <signal.h> +#include <sysdep.h> +#include <sys/syscall.h> + /* The difference here is that the sigaction structure used in the kernel is not the same as we use in the libc. Therefore we must translate it here. */ @@ -62,8 +65,8 @@ __sigaction (int sig, const struct sigaction *act, struct sigaction *oact) /* XXX The size argument hopefully will have to be changed to the real size of the user-level sigset_t. */ - result = __syscall_rt_sigaction (sig, act ? &kact : NULL, - oact ? &koact : NULL, _NSIG / 8); + result = INLINE_SYSCALL (rt_sigaction, 4, sig, act ? &kact : NULL, + oact ? &koact : NULL, _NSIG / 8); if (result >= 0 || errno != ENOSYS) { |