diff options
author | jasoni <jasoni@cvs.openbsd.org> | 2000-03-28 06:35:58 +0000 |
---|---|---|
committer | jasoni <jasoni@cvs.openbsd.org> | 2000-03-28 06:35:58 +0000 |
commit | b0607e8994d5d6d95685f9c2dbee5f9901f3e7b5 (patch) | |
tree | dfbccf17af5d5d53c1613c7283b577dd5a3c943a /sys/compat | |
parent | f0f1c614737274c435ac08479e7d2a35f9869bf0 (diff) |
Implement rt_sigreturn.
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/syscalls.master | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index 944da370a8e..ccbf7cbb1c7 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.19 2000/03/27 22:38:12 jasoni Exp $ + $OpenBSD: syscalls.master,v 1.20 2000/03/28 06:35:57 jasoni Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -273,7 +273,8 @@ 171 STD { int linux_sys_getresgid(gid_t *rgid, gid_t *egid, \ gid_t *sgid); } 172 UNIMPL prctl -173 UNIMPL rt_sigreturn +173 STD { int linux_sys_rt_sigreturn( \ + struct linux_rt_sigframe *sfp); } 174 STD { int linux_sys_rt_sigaction(int signum, \ struct linux_sigaction *nsa, \ struct linux_sigaction *osa, \ |