diff options
| author | mycroft <mycroft@NetBSD.org> | 1998-09-11 23:13:32 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1998-09-11 23:13:32 +0000 |
| commit | f384c47bc73d7217bfbb5232dd63d0caf005bb5a (patch) | |
| tree | 5c59f9bc4616685d6ff4374e63b9a45f09bfeab6 /sys/compat/linux | |
| parent | ae0f007e155645d5e55bca4ad358a13be82f0e64 (diff) | |
Regen.
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/linux_syscall.h | 8 | ||||
| -rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 10 | ||||
| -rw-r--r-- | sys/compat/linux/linux_syscalls.c | 4 | ||||
| -rw-r--r-- | sys/compat/linux/linux_sysent.c | 4 |
4 files changed, 13 insertions, 13 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index 46dce0cf412..77361e2ebcb 100644 --- a/sys/compat/linux/linux_syscall.h +++ b/sys/compat/linux/linux_syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscall.h,v 1.31 1998/08/07 17:21:35 kleink Exp $ */ +/* $NetBSD: linux_syscall.h,v 1.32 1998/09/11 23:14:57 mycroft Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.24 1998/08/05 00:44:34 perry Exp + * created from NetBSD: syscalls.master,v 1.25 1998/09/11 12:50:09 mycroft Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -165,7 +165,7 @@ /* syscall: "setsid" ret: "int" args: */ #define LINUX_SYS_setsid 66 -/* syscall: "sigaction" ret: "int" args: "int" "struct linux_sigaction *" "struct linux_sigaction *" */ +/* syscall: "sigaction" ret: "int" args: "int" "const struct linux_sigaction *" "struct linux_sigaction *" */ #define LINUX_SYS_sigaction 67 /* syscall: "siggetmask" ret: "int" args: */ @@ -318,7 +318,7 @@ /* syscall: "mprotect" ret: "int" args: "caddr_t" "int" "int" */ #define LINUX_SYS_mprotect 125 -/* syscall: "sigprocmask" ret: "int" args: "int" "linux_sigset_t *" "linux_sigset_t *" */ +/* syscall: "sigprocmask" ret: "int" args: "int" "const linux_sigset_t *" "linux_sigset_t *" */ #define LINUX_SYS_sigprocmask 126 /* syscall: "getpgid" ret: "int" args: "int" */ diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 7fad5841a27..385e5474bd4 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscallargs.h,v 1.30 1998/08/07 17:21:35 kleink Exp $ */ +/* $NetBSD: linux_syscallargs.h,v 1.31 1998/09/11 23:14:57 mycroft Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.24 1998/08/05 00:44:34 perry Exp + * created from NetBSD: syscalls.master,v 1.25 1998/09/11 12:50:09 mycroft Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -137,7 +137,7 @@ struct linux_sys_oldolduname_args { struct linux_sys_sigaction_args { syscallarg(int) signum; - syscallarg(struct linux_sigaction *) nsa; + syscallarg(const struct linux_sigaction *) nsa; syscallarg(struct linux_sigaction *) osa; }; @@ -162,7 +162,7 @@ struct linux_sys_sigsuspend_args { }; struct linux_sys_sigpending_args { - syscallarg(linux_sigset_t *) mask; + syscallarg(linux_sigset_t *) set; }; struct linux_sys_oldselect_args { @@ -280,7 +280,7 @@ struct linux_sys_modify_ldt_args { struct linux_sys_sigprocmask_args { syscallarg(int) how; - syscallarg(linux_sigset_t *) set; + syscallarg(const linux_sigset_t *) set; syscallarg(linux_sigset_t *) oset; }; diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c index d72f99cdb25..a3dfea70dba 100644 --- a/sys/compat/linux/linux_syscalls.c +++ b/sys/compat/linux/linux_syscalls.c @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscalls.c,v 1.29 1998/08/07 17:21:35 kleink Exp $ */ +/* $NetBSD: linux_syscalls.c,v 1.30 1998/09/11 23:14:58 mycroft Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.24 1998/08/05 00:44:34 perry Exp + * created from NetBSD: syscalls.master,v 1.25 1998/09/11 12:50:09 mycroft Exp */ #if defined(_KERNEL) && !defined(_LKM) diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c index 66c94dcda9e..11a9ca497a4 100644 --- a/sys/compat/linux/linux_sysent.c +++ b/sys/compat/linux/linux_sysent.c @@ -1,10 +1,10 @@ -/* $NetBSD: linux_sysent.c,v 1.32 1998/08/07 17:21:36 kleink Exp $ */ +/* $NetBSD: linux_sysent.c,v 1.33 1998/09/11 23:14:58 mycroft Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.24 1998/08/05 00:44:34 perry Exp + * created from NetBSD: syscalls.master,v 1.25 1998/09/11 12:50:09 mycroft Exp */ #include <sys/param.h> |
