diff options
| author | fvdl <fvdl@NetBSD.org> | 2005-05-22 19:29:40 +0000 |
|---|---|---|
| committer | fvdl <fvdl@NetBSD.org> | 2005-05-22 19:29:40 +0000 |
| commit | e83accc0f6bba778fc2fa357c8da2e3ef382c296 (patch) | |
| tree | eef2a27b805e85665dba27a97d2b90f1f3a83a3c /sys/compat/linux | |
| parent | 8251c0b501eee0ce3bef91902c4c06163cc2f991 (diff) | |
Regen after sigreturn argument change.
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/arch/amd64/linux_syscall.h | 6 | ||||
| -rw-r--r-- | sys/compat/linux/arch/amd64/linux_syscallargs.h | 8 | ||||
| -rw-r--r-- | sys/compat/linux/arch/amd64/linux_syscalls.c | 6 | ||||
| -rw-r--r-- | sys/compat/linux/arch/amd64/linux_sysent.c | 8 |
4 files changed, 12 insertions, 16 deletions
diff --git a/sys/compat/linux/arch/amd64/linux_syscall.h b/sys/compat/linux/arch/amd64/linux_syscall.h index 6627815ed78..809e0c71cf8 100644 --- a/sys/compat/linux/arch/amd64/linux_syscall.h +++ b/sys/compat/linux/arch/amd64/linux_syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscall.h,v 1.3 2005/05/16 21:18:19 fvdl Exp $ */ +/* $NetBSD: linux_syscall.h,v 1.4 2005/05/22 19:29:40 fvdl Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.3 2005/05/16 21:17:11 fvdl Exp + * created from NetBSD: syscalls.master,v 1.4 2005/05/22 19:29:15 fvdl Exp */ /* syscall: "read" ret: "int" args: "int" "char *" "u_int" */ @@ -52,7 +52,7 @@ /* syscall: "rt_sigprocmask" ret: "int" args: "int" "const linux_sigset_t *" "linux_sigset_t *" "size_t" */ #define LINUX_SYS_rt_sigprocmask 14 -/* syscall: "rt_sigreturn" ret: "int" args: "struct linux_ucontext *" */ +/* syscall: "rt_sigreturn" ret: "int" args: */ #define LINUX_SYS_rt_sigreturn 15 /* syscall: "ioctl" ret: "int" args: "int" "u_long" "caddr_t" */ diff --git a/sys/compat/linux/arch/amd64/linux_syscallargs.h b/sys/compat/linux/arch/amd64/linux_syscallargs.h index f52a69318d7..31979f4290a 100644 --- a/sys/compat/linux/arch/amd64/linux_syscallargs.h +++ b/sys/compat/linux/arch/amd64/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscallargs.h,v 1.3 2005/05/16 21:18:19 fvdl Exp $ */ +/* $NetBSD: linux_syscallargs.h,v 1.4 2005/05/22 19:29:40 fvdl Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.3 2005/05/16 21:17:11 fvdl Exp + * created from NetBSD: syscalls.master,v 1.4 2005/05/22 19:29:15 fvdl Exp */ #ifndef _LINUX_SYS__SYSCALLARGS_H_ @@ -72,10 +72,6 @@ struct linux_sys_rt_sigprocmask_args { syscallarg(size_t) sigsetsize; }; -struct linux_sys_rt_sigreturn_args { - syscallarg(struct linux_ucontext *) ucp; -}; - struct linux_sys_ioctl_args { syscallarg(int) fd; syscallarg(u_long) com; diff --git a/sys/compat/linux/arch/amd64/linux_syscalls.c b/sys/compat/linux/arch/amd64/linux_syscalls.c index a4790e77c67..12631aa9d35 100644 --- a/sys/compat/linux/arch/amd64/linux_syscalls.c +++ b/sys/compat/linux/arch/amd64/linux_syscalls.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_syscalls.c,v 1.3 2005/05/16 21:18:19 fvdl Exp $ */ +/* $NetBSD: linux_syscalls.c,v 1.4 2005/05/22 19:29:40 fvdl Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.3 2005/05/16 21:17:11 fvdl Exp + * created from NetBSD: syscalls.master,v 1.4 2005/05/22 19:29:15 fvdl Exp */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.3 2005/05/16 21:18:19 fvdl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.4 2005/05/22 19:29:40 fvdl Exp $"); #if defined(_KERNEL_OPT) #if defined(_KERNEL_OPT) diff --git a/sys/compat/linux/arch/amd64/linux_sysent.c b/sys/compat/linux/arch/amd64/linux_sysent.c index 6038ec456fe..d6fbeb202f7 100644 --- a/sys/compat/linux/arch/amd64/linux_sysent.c +++ b/sys/compat/linux/arch/amd64/linux_sysent.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_sysent.c,v 1.3 2005/05/16 21:18:19 fvdl Exp $ */ +/* $NetBSD: linux_sysent.c,v 1.4 2005/05/22 19:29:40 fvdl Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.3 2005/05/16 21:17:11 fvdl Exp + * created from NetBSD: syscalls.master,v 1.4 2005/05/22 19:29:15 fvdl Exp */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.3 2005/05/16 21:18:19 fvdl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.4 2005/05/22 19:29:40 fvdl Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_43.h" @@ -60,7 +60,7 @@ struct sysent linux_sysent[] = { linux_sys_rt_sigaction }, /* 13 = rt_sigaction */ { 4, s(struct linux_sys_rt_sigprocmask_args), 0, linux_sys_rt_sigprocmask }, /* 14 = rt_sigprocmask */ - { 1, s(struct linux_sys_rt_sigreturn_args), 0, + { 0, 0, 0, linux_sys_rt_sigreturn }, /* 15 = rt_sigreturn */ { 3, s(struct linux_sys_ioctl_args), 0, linux_sys_ioctl }, /* 16 = ioctl */ |
