diff options
author | peter <peter@FreeBSD.org> | 2000-07-29 10:05:25 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-07-29 10:05:25 +0000 |
commit | 2acd9c62a720f5d8800b262fb6773a19419ef901 (patch) | |
tree | 5e3b73dcf6ffe22989c437173ea6f6201a76dcb3 /sys | |
parent | 6a75b120d26bc19be2c1603edb4fbfdc4b30f2a8 (diff) | |
download | FreeBSD-src-2acd9c62a720f5d8800b262fb6773a19419ef901.zip FreeBSD-src-2acd9c62a720f5d8800b262fb6773a19419ef901.tar.gz |
Sigh. Fix SYS_exit problems. I misunderstood the significance of these
trailing options.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/linux/syscalls.master | 2 | ||||
-rw-r--r-- | sys/alpha/osf1/syscalls.master | 2 | ||||
-rw-r--r-- | sys/compat/svr4/syscalls.master | 2 | ||||
-rw-r--r-- | sys/i386/ibcs2/syscalls.master | 2 | ||||
-rw-r--r-- | sys/i386/linux/syscalls.master | 2 | ||||
-rw-r--r-- | sys/kern/syscalls.master | 2 | ||||
-rw-r--r-- | sys/svr4/syscalls.master | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/sys/alpha/linux/syscalls.master b/sys/alpha/linux/syscalls.master index f99b9a6..47df49a 100644 --- a/sys/alpha/linux/syscalls.master +++ b/sys/alpha/linux/syscalls.master @@ -32,7 +32,7 @@ ; #ifdef's, etc. may be included, and are copied to the output files. 0 STD LINUX { int linux_setup(void); } -1 NOPROTO LINUX { void sys_exit(int rval); } sys_exit sys_exit_args void +1 NOPROTO LINUX { void sys_exit(int rval); } exit sys_exit_args void 2 STD LINUX { int linux_fork(void); } 3 NOPROTO LINUX { int read(int fd, char *buf, u_int nbyte); } 4 NOPROTO LINUX { int write(int fd, char *buf, u_int nbyte); } diff --git a/sys/alpha/osf1/syscalls.master b/sys/alpha/osf1/syscalls.master index 35dec7f..a2837e6 100644 --- a/sys/alpha/osf1/syscalls.master +++ b/sys/alpha/osf1/syscalls.master @@ -32,7 +32,7 @@ 0 NOPROTO OSF1 { int nosys(void); } -1 NOPROTO OSF1 { void sys_exit(int rval); } sys_exit sys_exit_args void +1 NOPROTO OSF1 { void sys_exit(int rval); } exit sys_exit_args void 2 NOPROTO OSF1 { int fork(void); } 3 NOPROTO OSF1 { ssize_t read(int fd, char *buf, ssize_t nbyte); } 4 NOPROTO OSF1 { ssize_t write(int fd, char *buf, ssize_t nbyte); } diff --git a/sys/compat/svr4/syscalls.master b/sys/compat/svr4/syscalls.master index 393e39a..4fb6950 100644 --- a/sys/compat/svr4/syscalls.master +++ b/sys/compat/svr4/syscalls.master @@ -35,7 +35,7 @@ #include <svr4/svr4_proto.h> 0 UNIMPL SVR4 unused -1 NOPROTO POSIX { void sys_exit(int rval); } sys_exit sys_exit_args void +1 NOPROTO POSIX { void sys_exit(int rval); } exit sys_exit_args void 2 NOPROTO POSIX { int fork(void); } 3 NOPROTO POSIX { int read(int fd, char *buf, u_int nbyte); } 4 NOPROTO SVR4 { int write(int fd, char *buf, u_int nbyte); } diff --git a/sys/i386/ibcs2/syscalls.master b/sys/i386/ibcs2/syscalls.master index c4aed2f..1ebe1b8 100644 --- a/sys/i386/ibcs2/syscalls.master +++ b/sys/i386/ibcs2/syscalls.master @@ -32,7 +32,7 @@ ; #ifdef's, etc. may be included, and are copied to the output files. 0 NOPROTO NOHIDE { int nosys(void); } syscall nosys_args int -1 NOPROTO NOHIDE { void sys_exit(int rval); } sys_exit sys_exit_args void +1 NOPROTO NOHIDE { void sys_exit(int rval); } exit sys_exit_args void 2 NOPROTO POSIX { int fork(void); } 3 STD POSIX { int ibcs2_read(int fd, char *buf, u_int nbytes); } 4 NOPROTO POSIX { int write(int fd, char *buf, u_int nbytes); } diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master index f99b9a6..47df49a 100644 --- a/sys/i386/linux/syscalls.master +++ b/sys/i386/linux/syscalls.master @@ -32,7 +32,7 @@ ; #ifdef's, etc. may be included, and are copied to the output files. 0 STD LINUX { int linux_setup(void); } -1 NOPROTO LINUX { void sys_exit(int rval); } sys_exit sys_exit_args void +1 NOPROTO LINUX { void sys_exit(int rval); } exit sys_exit_args void 2 STD LINUX { int linux_fork(void); } 3 NOPROTO LINUX { int read(int fd, char *buf, u_int nbyte); } 4 NOPROTO LINUX { int write(int fd, char *buf, u_int nbyte); } diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 95ab3f7..16f4192 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -38,7 +38,7 @@ ; of the current calls. 0 STD NOHIDE { int nosys(void); } syscall nosys_args int -1 STD NOHIDE { void sys_exit(int rval); } sys_exit sys_exit_args void +1 STD NOHIDE { void sys_exit(int rval); } exit sys_exit_args void 2 STD POSIX { int fork(void); } 3 STD POSIX { ssize_t read(int fd, void *buf, size_t nbyte); } 4 STD POSIX { ssize_t write(int fd, const void *buf, size_t nbyte); } diff --git a/sys/svr4/syscalls.master b/sys/svr4/syscalls.master index 393e39a..4fb6950 100644 --- a/sys/svr4/syscalls.master +++ b/sys/svr4/syscalls.master @@ -35,7 +35,7 @@ #include <svr4/svr4_proto.h> 0 UNIMPL SVR4 unused -1 NOPROTO POSIX { void sys_exit(int rval); } sys_exit sys_exit_args void +1 NOPROTO POSIX { void sys_exit(int rval); } exit sys_exit_args void 2 NOPROTO POSIX { int fork(void); } 3 NOPROTO POSIX { int read(int fd, char *buf, u_int nbyte); } 4 NOPROTO SVR4 { int write(int fd, char *buf, u_int nbyte); } |