diff options
author | marcel <marcel@FreeBSD.org> | 1999-08-14 17:28:46 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-08-14 17:28:46 +0000 |
commit | 195c2867a7981b012681e6b20ea15c73c451b503 (patch) | |
tree | accd80df8d7633ca8b19237e620cdd355e233dcc /sys/i386/linux/linux_syscall.h | |
parent | ac3a4d6b97e4fdfa5ef88b63c02630ab97d7e175 (diff) | |
download | FreeBSD-src-195c2867a7981b012681e6b20ea15c73c451b503.zip FreeBSD-src-195c2867a7981b012681e6b20ea15c73c451b503.tar.gz |
Implementation of linux_rt_sigaction and linux_rt_sigprocmask syscalls. Both
functions use the new sigset_t and sigaction_t which allows support for more
than 32 signals. Only the lower 32 signals are supported for now.
linux_rt_sigaction, linux_sigaction and linux_signal use linux_do_sigaction
to do the actual work. That way unnecessary redundancy is avoided. The same
has been done for linux_rt_sigprocmask and linux_sigprocmask. They call
linux_do_sigprocmask to do the actual work.
Diffstat (limited to 'sys/i386/linux/linux_syscall.h')
-rw-r--r-- | sys/i386/linux/linux_syscall.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/i386/linux/linux_syscall.h b/sys/i386/linux/linux_syscall.h index eb1326a..a893f91 100644 --- a/sys/i386/linux/linux_syscall.h +++ b/sys/i386/linux/linux_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.18 1999/08/12 19:51:03 marcel Exp + * created from Id: syscalls.master,v 1.19 1999/08/14 17:14:13 marcel Exp */ #define LINUX_SYS_linux_setup 0 @@ -163,5 +163,7 @@ #define LINUX_SYS_nanosleep 162 #define LINUX_SYS_linux_mremap 163 #define LINUX_SYS_poll 168 +#define LINUX_SYS_linux_rt_sigaction 174 +#define LINUX_SYS_linux_rt_sigprocmask 175 #define LINUX_SYS_linux_chown 182 #define LINUX_SYS_MAXSYSCALL 183 |