diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-29 03:46:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-29 03:46:29 +0000 |
commit | 8e2e67b97386f77597f8bbcae50165e7388d0509 (patch) | |
tree | 78734ac3cafc966391b09287da3d643c9b215f5f /sys | |
parent | 9cc7dc95dd7e77f5cac9229e58754d53158c88d6 (diff) |
pretty
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/syscalls.master | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 4cb5dfe0a60..3e480c3a0cf 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.11 1996/10/04 00:59:19 deraadt Exp $ + $OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -106,8 +106,8 @@ #else 45 UNIMPL ktrace #endif -46 STD { int sys_sigaction(int signum, struct sigaction *nsa, \ - struct sigaction *osa); } +46 STD { int sys_sigaction(int signum, struct sigaction \ + *nsa, struct sigaction *osa); } 47 STD { gid_t sys_getgid(void); } 48 STD { int sys_sigprocmask(int how, sigset_t mask); } 49 STD { int sys_getlogin(char *namebuf, u_int namelen); } @@ -172,8 +172,8 @@ 96 STD { int sys_setpriority(int which, int who, int prio); } 97 STD { int sys_socket(int domain, int type, int protocol); } 98 STD { int sys_connect(int s, caddr_t name, int namelen); } -99 COMPAT_43 { int sys_accept(int s, caddr_t name, int *anamelen); } \ - oaccept +99 COMPAT_43 { int sys_accept(int s, caddr_t name, \ + int *anamelen); } oaccept 100 STD { int sys_getpriority(int which, int who); } 101 COMPAT_43 { int sys_send(int s, caddr_t buf, int len, \ int flags); } osend @@ -302,8 +302,8 @@ #endif ; XXX more generally, never on machines where sizeof(void *) != sizeof(int) #if defined(SYSVSHM) && !defined(alpha) -171 COMPAT_10 { int sys_shmsys(int which, int a2, int a3, int a4); } \ - oshmsys +171 COMPAT_10 { int sys_shmsys(int which, int a2, int a3, \ + int a4); } oshmsys #else 171 UNIMPL 1.0 shmsys #endif @@ -349,12 +349,14 @@ 195 STD { int sys_setrlimit(u_int which, struct rlimit *rlp); } 196 STD { int sys_getdirentries(int fd, char *buf, \ u_int count, long *basep); } -197 STD { caddr_t sys_mmap(caddr_t addr, size_t len, int prot, \ - int flags, int fd, long pad, off_t pos); } +197 STD { caddr_t sys_mmap(caddr_t addr, size_t len, \ + int prot, int flags, int fd, long pad, \ + off_t pos); } 198 STD { int sys_nosys(void); } __syscall 199 STD { off_t sys_lseek(int fd, int pad, off_t offset, \ int whence); } -200 STD { int sys_truncate(char *path, int pad, off_t length); } +200 STD { int sys_truncate(char *path, int pad, \ + off_t length); } 201 STD { int sys_ftruncate(int fd, int pad, off_t length); } 202 STD { int sys___sysctl(int *name, u_int namelen, \ void *old, size_t *oldlenp, void *new, \ @@ -453,6 +455,6 @@ 250 STD { int sys_minherit(caddr_t addr, size_t len, \ int inherit); } 251 STD { int sys_rfork(int flags); } -252 STD { int sys_poll(struct pollfd *fds, unsigned long nfds, \ - int timeout); } +252 STD { int sys_poll(struct pollfd *fds, \ + unsigned long nfds, int timeout); } 253 STD { int sys_issetugid(void); } |