diff options
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_misc.c | 8 | ||||
-rw-r--r-- | sys/compat/linux/syscalls.master | 4 |
2 files changed, 3 insertions, 9 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 2dcc6e455f4..44de020d36c 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_misc.c,v 1.52 2003/08/14 18:50:13 fgsch Exp $ */ +/* $OpenBSD: linux_misc.c,v 1.53 2003/08/15 14:02:22 fgsch Exp $ */ /* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */ /*- @@ -1537,9 +1537,3 @@ linux_sys_sysinfo(p, v, retval) return (copyout(&si, SCARG(uap, sysinfo), sizeof(si))); } - -int -linux_sys_exit_group(struct proc *p, void *v, register_t *retval) -{ - return (sys_exit(p, v, retval)); -} diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index f9119822e04..607d8814f30 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.42 2003/08/14 18:50:13 fgsch Exp $ + $OpenBSD: syscalls.master,v 1.43 2003/08/15 14:02:22 fgsch Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -388,7 +388,7 @@ 249 UNIMPL linux_sys_io_cancel 250 UNIMPL linux_sys_fadvise64 251 UNIMPL -252 STD { int linux_sys_exit_group(int rval); } +252 NOARGS linux_exit_group { int sys_exit(int rval); } 253 UNIMPL linux_sys_lookup_dcookie 254 UNIMPL linux_sys_epoll_create 255 UNIMPL linux_sys_epoll_ctl |