update to latest syscalls.master

This commit is contained in:
deraadt 1993-11-14 14:56:35 +00:00
parent ee8ffb2911
commit 61f6f87a4c
9 changed files with 117 additions and 21 deletions

View File

@ -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

View File

@ -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

View File

@ -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 <sys/param.h>
@ -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

View File

@ -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

View File

@ -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

View File

@ -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 <sys/param.h>
@ -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

View File

@ -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

View File

@ -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

View File

@ -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 <sys/param.h>
@ -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