diff options
| author | bjh21 <bjh21@NetBSD.org> | 2002-01-27 14:09:38 +0000 |
|---|---|---|
| committer | bjh21 <bjh21@NetBSD.org> | 2002-01-27 14:09:38 +0000 |
| commit | bf73a232cee02c8ee7a652b0bfaa053d2ac60d56 (patch) | |
| tree | 1e9f88421293ae4acde4f6e60f52bf273e6d2182 /sys/compat/linux | |
| parent | 71953fb15554977f5124f80de555b9c6b16b0ede (diff) | |
Regen (prototype for linux_sys_nosys()).
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/arch/arm/linux_syscall.h | 7 | ||||
| -rw-r--r-- | sys/compat/linux/arch/arm/linux_syscallargs.h | 5 | ||||
| -rw-r--r-- | sys/compat/linux/arch/arm/linux_syscalls.c | 8 | ||||
| -rw-r--r-- | sys/compat/linux/arch/arm/linux_sysent.c | 8 |
4 files changed, 16 insertions, 12 deletions
diff --git a/sys/compat/linux/arch/arm/linux_syscall.h b/sys/compat/linux/arch/arm/linux_syscall.h index 94c968fb91d..7c23a58c068 100644 --- a/sys/compat/linux/arch/arm/linux_syscall.h +++ b/sys/compat/linux/arch/arm/linux_syscall.h @@ -1,12 +1,15 @@ -/* $NetBSD: linux_syscall.h,v 1.4 2002/01/23 16:14:45 bjh21 Exp $ */ +/* $NetBSD: linux_syscall.h,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.4 2002/01/23 15:54:34 bjh21 Exp + * created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp */ +/* syscall: "nosys" ret: "int" args: */ +#define LINUX_SYS_nosys 0 + /* syscall: "exit" ret: "int" args: "int" */ #define LINUX_SYS_exit 1 diff --git a/sys/compat/linux/arch/arm/linux_syscallargs.h b/sys/compat/linux/arch/arm/linux_syscallargs.h index dc1d85229e9..b33dd0130fe 100644 --- a/sys/compat/linux/arch/arm/linux_syscallargs.h +++ b/sys/compat/linux/arch/arm/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscallargs.h,v 1.4 2002/01/23 16:14:45 bjh21 Exp $ */ +/* $NetBSD: linux_syscallargs.h,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.4 2002/01/23 15:54:34 bjh21 Exp + * created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp */ #ifndef _LINUX_SYS__SYSCALLARGS_H_ @@ -530,6 +530,7 @@ struct linux_sys_cacheflush_args { * System call prototypes. */ +int linux_sys_nosys(struct proc *, void *, register_t *); int sys_exit(struct proc *, void *, register_t *); int sys_fork(struct proc *, void *, register_t *); int sys_read(struct proc *, void *, register_t *); diff --git a/sys/compat/linux/arch/arm/linux_syscalls.c b/sys/compat/linux/arch/arm/linux_syscalls.c index 440664570c9..345bc026bc4 100644 --- a/sys/compat/linux/arch/arm/linux_syscalls.c +++ b/sys/compat/linux/arch/arm/linux_syscalls.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_syscalls.c,v 1.4 2002/01/23 16:14:45 bjh21 Exp $ */ +/* $NetBSD: linux_syscalls.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.4 2002/01/23 15:54:34 bjh21 Exp + * created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.4 2002/01/23 16:14:45 bjh21 Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $"); #if defined(_KERNEL_OPT) #if defined(_KERNEL_OPT) @@ -28,7 +28,7 @@ __KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.4 2002/01/23 16:14:45 bjh21 Exp #endif /* _KERNEL_OPT */ const char *const linux_syscallnames[] = { - "#0 (unimplemented)", /* 0 = unimplemented */ + "nosys", /* 0 = nosys */ "exit", /* 1 = exit */ "fork", /* 2 = fork */ "read", /* 3 = read */ diff --git a/sys/compat/linux/arch/arm/linux_sysent.c b/sys/compat/linux/arch/arm/linux_sysent.c index b2a07853edf..642b69b20c7 100644 --- a/sys/compat/linux/arch/arm/linux_sysent.c +++ b/sys/compat/linux/arch/arm/linux_sysent.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_sysent.c,v 1.4 2002/01/23 16:14:45 bjh21 Exp $ */ +/* $NetBSD: linux_sysent.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.4 2002/01/23 15:54:34 bjh21 Exp + * created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.4 2002/01/23 16:14:45 bjh21 Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_43.h" @@ -29,7 +29,7 @@ __KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.4 2002/01/23 16:14:45 bjh21 Exp $ struct sysent linux_sysent[] = { { 0, 0, 0, - linux_sys_nosys }, /* 0 = unimplemented */ + linux_sys_nosys }, /* 0 = nosys */ { 1, s(struct sys_exit_args), 0, sys_exit }, /* 1 = exit */ { 0, 0, 0, |
