diff options
author | peter <peter@FreeBSD.org> | 2000-07-29 10:07:38 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-07-29 10:07:38 +0000 |
commit | 09f2cc343dba3b47e554adfff426f2c6761b749b (patch) | |
tree | 1f900e0f92f2d98161c4cb6f4394bf3757ace796 /sys/compat | |
parent | 2acd9c62a720f5d8800b262fb6773a19419ef901 (diff) | |
download | FreeBSD-src-09f2cc343dba3b47e554adfff426f2c6761b749b.zip FreeBSD-src-09f2cc343dba3b47e554adfff426f2c6761b749b.tar.gz |
Regen. (Fix SYS_exit)
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/svr4/svr4_proto.h | 2 | ||||
-rw-r--r-- | sys/compat/svr4/svr4_syscall.h | 4 | ||||
-rw-r--r-- | sys/compat/svr4/svr4_syscallnames.c | 4 | ||||
-rw-r--r-- | sys/compat/svr4/svr4_sysent.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/sys/compat/svr4/svr4_proto.h b/sys/compat/svr4/svr4_proto.h index e1472c1..95a0ae7 100644 --- a/sys/compat/svr4/svr4_proto.h +++ b/sys/compat/svr4/svr4_proto.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.9 2000/07/29 00:16:28 peter Exp + * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.10 2000/07/29 10:05:24 peter Exp */ #ifndef _SVR4_SYSPROTO_H_ diff --git a/sys/compat/svr4/svr4_syscall.h b/sys/compat/svr4/svr4_syscall.h index f558a20..9d25526 100644 --- a/sys/compat/svr4/svr4_syscall.h +++ b/sys/compat/svr4/svr4_syscall.h @@ -3,10 +3,10 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.9 2000/07/29 00:16:28 peter Exp + * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.10 2000/07/29 10:05:24 peter Exp */ -#define SVR4_SYS_sys_exit 1 +#define SVR4_SYS_exit 1 #define SVR4_SYS_fork 2 #define SVR4_SYS_read 3 #define SVR4_SYS_write 4 diff --git a/sys/compat/svr4/svr4_syscallnames.c b/sys/compat/svr4/svr4_syscallnames.c index a6b3dc4..479a6b7 100644 --- a/sys/compat/svr4/svr4_syscallnames.c +++ b/sys/compat/svr4/svr4_syscallnames.c @@ -3,12 +3,12 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.9 2000/07/29 00:16:28 peter Exp + * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.10 2000/07/29 10:05:24 peter Exp */ char *svr4_syscallnames[] = { "#0", /* 0 = unused */ - "sys_exit", /* 1 = sys_exit */ + "exit", /* 1 = exit */ "fork", /* 2 = fork */ "read", /* 3 = read */ "write", /* 4 = write */ diff --git a/sys/compat/svr4/svr4_sysent.c b/sys/compat/svr4/svr4_sysent.c index 7346c37..9e231b2 100644 --- a/sys/compat/svr4/svr4_sysent.c +++ b/sys/compat/svr4/svr4_sysent.c @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.9 2000/07/29 00:16:28 peter Exp + * created from FreeBSD: src/sys/svr4/syscalls.master,v 1.10 2000/07/29 10:05:24 peter Exp */ #include <sys/types.h> @@ -20,7 +20,7 @@ /* The casts are bogus but will do for now. */ struct sysent svr4_sysent[] = { { 0, (sy_call_t *)nosys }, /* 0 = unused */ - { AS(sys_exit_args), (sy_call_t *)sys_exit }, /* 1 = sys_exit */ + { AS(sys_exit_args), (sy_call_t *)sys_exit }, /* 1 = exit */ { 0, (sy_call_t *)fork }, /* 2 = fork */ { AS(read_args), (sy_call_t *)read }, /* 3 = read */ { AS(write_args), (sy_call_t *)write }, /* 4 = write */ |