diff options
| author | David Malone <dwmalone@FreeBSD.org> | 2004-03-16 10:41:23 +0000 |
|---|---|---|
| committer | David Malone <dwmalone@FreeBSD.org> | 2004-03-16 10:41:23 +0000 |
| commit | 1f325ae35e34c9e8ce698da233f63deac0b41696 (patch) | |
| tree | 842dd4fda3ebd40f25835f79e3c673f708a738f5 /sys/kern/syscalls.master | |
| parent | be0f84026def961973a2a4afebbbee2df3d71fc7 (diff) | |
Notes
Diffstat (limited to 'sys/kern/syscalls.master')
| -rw-r--r-- | sys/kern/syscalls.master | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index aa9c9696bba9..ceddb974ef15 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -45,19 +45,19 @@ ; redistributions should be placed in the reserved range at the end ; of the current calls. -0 STD { int nosys(void); } syscall nosys_args int +0 MSTD { int nosys(void); } syscall nosys_args int 1 MSTD { void sys_exit(int rval); } exit sys_exit_args void 2 MSTD { int fork(void); } 3 MSTD { ssize_t read(int fd, void *buf, size_t nbyte); } 4 MSTD { ssize_t write(int fd, const void *buf, size_t nbyte); } -5 STD { int open(char *path, int flags, int mode); } +5 MSTD { int open(char *path, int flags, int mode); } ; XXX should be { int open(const char *path, int flags, ...); } ; but we're not ready for `const' or varargs. ; XXX man page says `mode_t mode'. 6 MSTD { int close(int fd); } 7 MSTD { int wait4(int pid, int *status, int options, \ struct rusage *rusage); } wait4 wait_args int -8 COMPAT { int creat(char *path, int mode); } +8 MCOMPAT { int creat(char *path, int mode); } 9 STD { int link(char *path, char *link); } 10 STD { int unlink(char *path); } 11 OBSOL execv |
