From 61f6f87a4cc4e32a1fd81d9ecded08c7a9b0c0a2 Mon Sep 17 00:00:00 2001 From: deraadt Date: Sun, 14 Nov 1993 14:56:35 +0000 Subject: [PATCH] update to latest syscalls.master --- sys/arch/sparc/sunos/sun_syscall.h | 4 +++- sys/arch/sparc/sunos/sun_syscalls.c | 14 +++++++++++--- sys/arch/sparc/sunos/sun_sysent.c | 28 +++++++++++++++++++++++++--- sys/compat/sunos/sun_syscall.h | 4 +++- sys/compat/sunos/sun_syscalls.c | 14 +++++++++++--- sys/compat/sunos/sun_sysent.c | 28 +++++++++++++++++++++++++--- sys/compat/sunos/sunos_syscall.h | 4 +++- sys/compat/sunos/sunos_syscalls.c | 14 +++++++++++--- sys/compat/sunos/sunos_sysent.c | 28 +++++++++++++++++++++++++--- 9 files changed, 117 insertions(+), 21 deletions(-) diff --git a/sys/arch/sparc/sunos/sun_syscall.h b/sys/arch/sparc/sunos/sun_syscall.h index e61c3895be11..f0de18bbacd7 100644 --- a/sys/arch/sparc/sunos/sun_syscall.h +++ b/sys/arch/sparc/sunos/sun_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sun_syscall.h,v 1.5 1993/11/10 01:01:59 deraadt Exp $ + * created from $Id: sun_syscall.h,v 1.6 1993/11/14 14:56:35 deraadt Exp $ */ #define SYS_syscall 0 @@ -145,6 +145,8 @@ #define SYS_getdomainname 162 #define SYS_setdomainname 163 #define SYS_sun_mount 167 +#define SYS_semsys 169 +#define SYS_msgsys 170 #define SYS_shmsys 171 #define SYS_auditsys 172 #define SYS_sun_getdents 174 diff --git a/sys/arch/sparc/sunos/sun_syscalls.c b/sys/arch/sparc/sunos/sun_syscalls.c index 1452d9c59388..81b8143df5d4 100644 --- a/sys/arch/sparc/sunos/sun_syscalls.c +++ b/sys/arch/sparc/sunos/sun_syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sun_syscalls.c,v 1.5 1993/11/10 01:02:03 deraadt Exp $ + * created from $Id: sun_syscalls.c,v 1.6 1993/11/14 14:56:36 deraadt Exp $ */ char *sun_syscallnames[] = { @@ -175,8 +175,16 @@ char *sun_syscallnames[] = { "#166", /* 166 = exportfs */ "sun_mount", /* 167 = sun_mount */ "#168", /* 168 = ustat */ - "#169", /* 169 = semsys */ - "#170", /* 170 = msgsys */ +#ifdef SYSVSEM + "semsys", /* 169 = semsys */ +#else + "#169", /* 169 = nosys */ +#endif +#ifdef SYSVMSG + "msgsys", /* 170 = msgsys */ +#else + "#170", /* 170 = nosys */ +#endif #ifdef SYSVSHM "shmsys", /* 171 = shmsys */ #else diff --git a/sys/arch/sparc/sunos/sun_sysent.c b/sys/arch/sparc/sunos/sun_sysent.c index 21d5551658ab..90fe90fe29ac 100644 --- a/sys/arch/sparc/sunos/sun_sysent.c +++ b/sys/arch/sparc/sunos/sun_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sun_sysent.c,v 1.5 1993/11/10 01:02:04 deraadt Exp $ + * created from $Id: sun_sysent.c,v 1.6 1993/11/14 14:56:37 deraadt Exp $ */ #include @@ -127,6 +127,14 @@ int sun_unmount(); int getdomainname(); int setdomainname(); int sun_mount(); +#ifdef SYSVSEM +int semsys(); +#else +#endif +#ifdef SYSVMSG +int msgsys(); +#else +#endif #ifdef SYSVSHM int shmsys(); #else @@ -160,6 +168,12 @@ int ovhangup(); int ovlimit(); int owait(); int ovtimes(); +#ifdef SYSVSEM +#else +#endif +#ifdef SYSVMSG +#else +#endif #ifdef SYSVSHM #else #endif @@ -338,8 +352,16 @@ struct sysent sun_sysent[] = { { 0, nosys }, /* 166 = exportfs */ { 4, sun_mount }, /* 167 = sun_mount */ { 0, nosys }, /* 168 = ustat */ - { 0, nosys }, /* 169 = semsys */ - { 0, nosys }, /* 170 = msgsys */ +#ifdef SYSVSEM + { 5, semsys }, /* 169 = semsys */ +#else + { 0, nosys }, /* 169 = nosys */ +#endif +#ifdef SYSVMSG + { 6, msgsys }, /* 170 = msgsys */ +#else + { 0, nosys }, /* 170 = nosys */ +#endif #ifdef SYSVSHM { 4, shmsys }, /* 171 = shmsys */ #else diff --git a/sys/compat/sunos/sun_syscall.h b/sys/compat/sunos/sun_syscall.h index e61c3895be11..f0de18bbacd7 100644 --- a/sys/compat/sunos/sun_syscall.h +++ b/sys/compat/sunos/sun_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sun_syscall.h,v 1.5 1993/11/10 01:01:59 deraadt Exp $ + * created from $Id: sun_syscall.h,v 1.6 1993/11/14 14:56:35 deraadt Exp $ */ #define SYS_syscall 0 @@ -145,6 +145,8 @@ #define SYS_getdomainname 162 #define SYS_setdomainname 163 #define SYS_sun_mount 167 +#define SYS_semsys 169 +#define SYS_msgsys 170 #define SYS_shmsys 171 #define SYS_auditsys 172 #define SYS_sun_getdents 174 diff --git a/sys/compat/sunos/sun_syscalls.c b/sys/compat/sunos/sun_syscalls.c index 1452d9c59388..81b8143df5d4 100644 --- a/sys/compat/sunos/sun_syscalls.c +++ b/sys/compat/sunos/sun_syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sun_syscalls.c,v 1.5 1993/11/10 01:02:03 deraadt Exp $ + * created from $Id: sun_syscalls.c,v 1.6 1993/11/14 14:56:36 deraadt Exp $ */ char *sun_syscallnames[] = { @@ -175,8 +175,16 @@ char *sun_syscallnames[] = { "#166", /* 166 = exportfs */ "sun_mount", /* 167 = sun_mount */ "#168", /* 168 = ustat */ - "#169", /* 169 = semsys */ - "#170", /* 170 = msgsys */ +#ifdef SYSVSEM + "semsys", /* 169 = semsys */ +#else + "#169", /* 169 = nosys */ +#endif +#ifdef SYSVMSG + "msgsys", /* 170 = msgsys */ +#else + "#170", /* 170 = nosys */ +#endif #ifdef SYSVSHM "shmsys", /* 171 = shmsys */ #else diff --git a/sys/compat/sunos/sun_sysent.c b/sys/compat/sunos/sun_sysent.c index 21d5551658ab..90fe90fe29ac 100644 --- a/sys/compat/sunos/sun_sysent.c +++ b/sys/compat/sunos/sun_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sun_sysent.c,v 1.5 1993/11/10 01:02:04 deraadt Exp $ + * created from $Id: sun_sysent.c,v 1.6 1993/11/14 14:56:37 deraadt Exp $ */ #include @@ -127,6 +127,14 @@ int sun_unmount(); int getdomainname(); int setdomainname(); int sun_mount(); +#ifdef SYSVSEM +int semsys(); +#else +#endif +#ifdef SYSVMSG +int msgsys(); +#else +#endif #ifdef SYSVSHM int shmsys(); #else @@ -160,6 +168,12 @@ int ovhangup(); int ovlimit(); int owait(); int ovtimes(); +#ifdef SYSVSEM +#else +#endif +#ifdef SYSVMSG +#else +#endif #ifdef SYSVSHM #else #endif @@ -338,8 +352,16 @@ struct sysent sun_sysent[] = { { 0, nosys }, /* 166 = exportfs */ { 4, sun_mount }, /* 167 = sun_mount */ { 0, nosys }, /* 168 = ustat */ - { 0, nosys }, /* 169 = semsys */ - { 0, nosys }, /* 170 = msgsys */ +#ifdef SYSVSEM + { 5, semsys }, /* 169 = semsys */ +#else + { 0, nosys }, /* 169 = nosys */ +#endif +#ifdef SYSVMSG + { 6, msgsys }, /* 170 = msgsys */ +#else + { 0, nosys }, /* 170 = nosys */ +#endif #ifdef SYSVSHM { 4, shmsys }, /* 171 = shmsys */ #else diff --git a/sys/compat/sunos/sunos_syscall.h b/sys/compat/sunos/sunos_syscall.h index bc0aa25d38df..998451d004c3 100644 --- a/sys/compat/sunos/sunos_syscall.h +++ b/sys/compat/sunos/sunos_syscall.h @@ -2,7 +2,7 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sunos_syscall.h,v 1.5 1993/11/10 01:01:59 deraadt Exp $ + * created from $Id: sunos_syscall.h,v 1.6 1993/11/14 14:56:35 deraadt Exp $ */ #define SYS_syscall 0 @@ -145,6 +145,8 @@ #define SYS_getdomainname 162 #define SYS_setdomainname 163 #define SYS_sun_mount 167 +#define SYS_semsys 169 +#define SYS_msgsys 170 #define SYS_shmsys 171 #define SYS_auditsys 172 #define SYS_sun_getdents 174 diff --git a/sys/compat/sunos/sunos_syscalls.c b/sys/compat/sunos/sunos_syscalls.c index 323c8f27b4fb..5c5c1efa7f14 100644 --- a/sys/compat/sunos/sunos_syscalls.c +++ b/sys/compat/sunos/sunos_syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sunos_syscalls.c,v 1.5 1993/11/10 01:02:03 deraadt Exp $ + * created from $Id: sunos_syscalls.c,v 1.6 1993/11/14 14:56:36 deraadt Exp $ */ char *sun_syscallnames[] = { @@ -175,8 +175,16 @@ char *sun_syscallnames[] = { "#166", /* 166 = exportfs */ "sun_mount", /* 167 = sun_mount */ "#168", /* 168 = ustat */ - "#169", /* 169 = semsys */ - "#170", /* 170 = msgsys */ +#ifdef SYSVSEM + "semsys", /* 169 = semsys */ +#else + "#169", /* 169 = nosys */ +#endif +#ifdef SYSVMSG + "msgsys", /* 170 = msgsys */ +#else + "#170", /* 170 = nosys */ +#endif #ifdef SYSVSHM "shmsys", /* 171 = shmsys */ #else diff --git a/sys/compat/sunos/sunos_sysent.c b/sys/compat/sunos/sunos_sysent.c index 97584ef16f40..28fff7ce8c38 100644 --- a/sys/compat/sunos/sunos_sysent.c +++ b/sys/compat/sunos/sunos_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from $Id: sunos_sysent.c,v 1.5 1993/11/10 01:02:04 deraadt Exp $ + * created from $Id: sunos_sysent.c,v 1.6 1993/11/14 14:56:37 deraadt Exp $ */ #include @@ -127,6 +127,14 @@ int sun_unmount(); int getdomainname(); int setdomainname(); int sun_mount(); +#ifdef SYSVSEM +int semsys(); +#else +#endif +#ifdef SYSVMSG +int msgsys(); +#else +#endif #ifdef SYSVSHM int shmsys(); #else @@ -160,6 +168,12 @@ int ovhangup(); int ovlimit(); int owait(); int ovtimes(); +#ifdef SYSVSEM +#else +#endif +#ifdef SYSVMSG +#else +#endif #ifdef SYSVSHM #else #endif @@ -338,8 +352,16 @@ struct sysent sun_sysent[] = { { 0, nosys }, /* 166 = exportfs */ { 4, sun_mount }, /* 167 = sun_mount */ { 0, nosys }, /* 168 = ustat */ - { 0, nosys }, /* 169 = semsys */ - { 0, nosys }, /* 170 = msgsys */ +#ifdef SYSVSEM + { 5, semsys }, /* 169 = semsys */ +#else + { 0, nosys }, /* 169 = nosys */ +#endif +#ifdef SYSVMSG + { 6, msgsys }, /* 170 = msgsys */ +#else + { 0, nosys }, /* 170 = nosys */ +#endif #ifdef SYSVSHM { 4, shmsys }, /* 171 = shmsys */ #else