remove old ___P() prototypes
[dragonfly.git] / sys / kern / syscalls.master
1  $DragonFly: src/sys/kern/syscalls.master,v 1.2 2003/06/17 04:28:41 dillon Exp $
2
3 ; @(#)syscalls.master   8.2 (Berkeley) 1/13/94
4 ; $FreeBSD: src/sys/kern/syscalls.master,v 1.72.2.10 2002/07/12 08:22:46 alfred Exp $
5 ;
6 ; System call name/number master file.
7 ; Processed to created init_sysent.c, syscalls.c and syscall.h.
8
9 ; Columns: number [MPSAFE] type nargs namespc name alt{name,tag,rtyp}/comments
10 ;       number  system call number, must be in order
11 ;   MPSAFE      optional field, specifies that syscall does not want the
12 ;               BGL grabbed automatically (it is SMP safe).
13 ;       type    one of STD, OBSOL, UNIMPL, COMPAT, CPT_NOA, LIBCOMPAT,
14 ;               NODEF, NOARGS, NOPROTO, NOIMPL
15 ;       namespc one of POSIX, BSD, NOHIDE
16 ;       name    psuedo-prototype of syscall routine
17 ;               If one of the following alts is different, then all appear:
18 ;       altname name of system call if different
19 ;       alttag  name of args struct tag if different from [o]`name'"_args"
20 ;       altrtyp return type if not int (bogus - syscalls always return int)
21 ;               for UNIMPL/OBSOL, name continues with comments
22
23 ; types:
24 ;       STD     always included
25 ;       COMPAT  included on COMPAT #ifdef
26 ;       LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
27 ;       OBSOL   obsolete, not included in system, only specifies name
28 ;       UNIMPL  not implemented, placeholder only
29
30 ; #ifdef's, etc. may be included, and are copied to the output files.
31
32 #include <sys/param.h>
33 #include <sys/sysent.h>
34 #include <sys/sysproto.h>
35
36 ; Reserved/unimplemented system calls in the range 0-150 inclusive
37 ; are reserved for use in future Berkeley releases.
38 ; Additional system calls implemented in vendor and other
39 ; redistributions should be placed in the reserved range at the end
40 ; of the current calls.
41
42 0       STD     NOHIDE  { int nosys(void); } syscall nosys_args int
43 1       STD     NOHIDE  { void sys_exit(int rval); } exit sys_exit_args void
44 2       STD     POSIX   { int fork(void); }
45 3       STD     POSIX   { ssize_t read(int fd, void *buf, size_t nbyte); }
46 4       STD     POSIX   { ssize_t write(int fd, const void *buf, size_t nbyte); }
47 5       STD     POSIX   { int open(char *path, int flags, int mode); }
48 ; XXX should be         { int open(const char *path, int flags, ...); }
49 ; but we're not ready for `const' or varargs.
50 ; XXX man page says `mode_t mode'.
51 6       STD     POSIX   { int close(int fd); }
52 7       STD     BSD     { int wait4(int pid, int *status, int options, \
53                             struct rusage *rusage); } wait4 wait_args int
54 8       COMPAT  BSD     { int creat(char *path, int mode); }
55 9       STD     POSIX   { int link(char *path, char *link); }
56 10      STD     POSIX   { int unlink(char *path); }
57 11      OBSOL   NOHIDE  execv
58 12      STD     POSIX   { int chdir(char *path); }
59 13      STD     BSD     { int fchdir(int fd); }
60 14      STD     POSIX   { int mknod(char *path, int mode, int dev); }
61 15      STD     POSIX   { int chmod(char *path, int mode); }
62 16      STD     POSIX   { int chown(char *path, int uid, int gid); }
63 17      STD     BSD     { int obreak(char *nsize); } break obreak_args int
64 18      STD     BSD     { int getfsstat(struct statfs *buf, long bufsize, \
65                             int flags); }
66 19      COMPAT  POSIX   { long lseek(int fd, long offset, int whence); }
67 20      STD     POSIX   { pid_t getpid(void); }
68 21      STD     BSD     { int mount(char *type, char *path, int flags, \
69                             caddr_t data); }
70 ; XXX `path' should have type `const char *' but we're not ready for that.
71 22      STD     BSD     { int unmount(char *path, int flags); }
72 23      STD     POSIX   { int setuid(uid_t uid); }
73 24      MPSAFE  STD     POSIX   { uid_t getuid(void); }
74 25      MPSAFE  STD     POSIX   { uid_t geteuid(void); }
75 26      STD     BSD     { int ptrace(int req, pid_t pid, caddr_t addr, \
76                             int data); }
77 27      STD     BSD     { int recvmsg(int s, struct msghdr *msg, int flags); }
78 28      STD     BSD     { int sendmsg(int s, caddr_t msg, int flags); }
79 29      STD     BSD     { int recvfrom(int s, caddr_t buf, size_t len, \
80                             int flags, caddr_t from, int *fromlenaddr); }
81 30      STD     BSD     { int accept(int s, caddr_t name, int *anamelen); }
82 31      STD     BSD     { int getpeername(int fdes, caddr_t asa, int *alen); }
83 32      STD     BSD     { int getsockname(int fdes, caddr_t asa, int *alen); }
84 33      STD     POSIX   { int access(char *path, int flags); }
85 34      STD     BSD     { int chflags(char *path, int flags); }
86 35      STD     BSD     { int fchflags(int fd, int flags); }
87 36      STD     BSD     { int sync(void); }
88 37      STD     POSIX   { int kill(int pid, int signum); }
89 38      COMPAT  POSIX   { int stat(char *path, struct ostat *ub); }
90 39      STD     POSIX   { pid_t getppid(void); }
91 40      COMPAT  POSIX   { int lstat(char *path, struct ostat *ub); }
92 41      STD     POSIX   { int dup(u_int fd); }
93 42      STD     POSIX   { int pipe(void); }
94 43      STD     POSIX   { gid_t getegid(void); }
95 44      STD     BSD     { int profil(caddr_t samples, size_t size, \
96                             size_t offset, u_int scale); }
97 45      STD     BSD     { int ktrace(const char *fname, int ops, int facs, \
98                             int pid); }
99 46      COMPAT  POSIX   { int sigaction(int signum, struct osigaction *nsa, \
100                             struct osigaction *osa); }
101 47      MPSAFE  STD     POSIX   { gid_t getgid(void); }
102 48      MPSAFE  COMPAT  POSIX   { int sigprocmask(int how, osigset_t mask); }
103 ; XXX note nonstandard (bogus) calling convention - the libc stub passes
104 ; us the mask, not a pointer to it, and we return the old mask as the
105 ; (int) return value.
106 49      STD     BSD     { int getlogin(char *namebuf, u_int namelen); }
107 50      STD     BSD     { int setlogin(char *namebuf); }
108 51      STD     BSD     { int acct(char *path); }
109 52      COMPAT  POSIX   { int sigpending(void); }
110 53      STD     BSD     { int sigaltstack(stack_t *ss, stack_t *oss); }
111 54      STD     POSIX   { int ioctl(int fd, u_long com, caddr_t data); }
112 55      STD     BSD     { int reboot(int opt); }
113 56      STD     POSIX   { int revoke(char *path); }
114 57      STD     POSIX   { int symlink(char *path, char *link); }
115 58      STD     POSIX   { int readlink(char *path, char *buf, int count); }
116 59      STD     POSIX   { int execve(char *fname, char **argv, char **envv); }
117 60      MPSAFE  STD     POSIX   { int umask(int newmask); } umask umask_args int
118 61      STD     BSD     { int chroot(char *path); }
119 62      COMPAT  POSIX   { int fstat(int fd, struct ostat *sb); }
120 63      COMPAT  BSD     { int getkerninfo(int op, char *where, size_t *size, \
121                             int arg); } getkerninfo getkerninfo_args int
122 64      COMPAT  BSD     { int getpagesize(void); } \
123                             getpagesize getpagesize_args int
124 65      STD     BSD     { int msync(void *addr, size_t len, int flags); }
125 66      STD     BSD     { int vfork(void); }
126 67      OBSOL   NOHIDE  vread
127 68      OBSOL   NOHIDE  vwrite
128 69      STD     BSD     { int sbrk(int incr); }
129 70      STD     BSD     { int sstk(int incr); }
130 71      COMPAT  BSD     { int mmap(void *addr, int len, int prot, \
131                             int flags, int fd, long pos); }
132 72      STD     BSD     { int ovadvise(int anom); } vadvise ovadvise_args int
133 73      STD     BSD     { int munmap(void *addr, size_t len); }
134 74      STD     BSD     { int mprotect(const void *addr, size_t len, int prot); }
135 75      STD     BSD     { int madvise(void *addr, size_t len, int behav); }
136 76      OBSOL   NOHIDE  vhangup
137 77      OBSOL   NOHIDE  vlimit
138 78      STD     BSD     { int mincore(const void *addr, size_t len, \
139                             char *vec); }
140 79      STD     POSIX   { int getgroups(u_int gidsetsize, gid_t *gidset); }
141 80      STD     POSIX   { int setgroups(u_int gidsetsize, gid_t *gidset); }
142 81      MPSAFE  STD     POSIX   { int getpgrp(void); }
143 82      STD     POSIX   { int setpgid(int pid, int pgid); }
144 83      STD     BSD     { int setitimer(u_int which, struct itimerval *itv, \
145                             struct itimerval *oitv); }
146 84      COMPAT  BSD     { int wait(void); }
147 85      STD     BSD     { int swapon(char *name); }
148 86      STD     BSD     { int getitimer(u_int which, struct itimerval *itv); }
149 87      COMPAT  BSD     { int gethostname(char *hostname, u_int len); } \
150                             gethostname gethostname_args int
151 88      COMPAT  BSD     { int sethostname(char *hostname, u_int len); } \
152                             sethostname sethostname_args int
153 89      STD     BSD     { int getdtablesize(void); }
154 90      STD     POSIX   { int dup2(u_int from, u_int to); }
155 91      UNIMPL  BSD     getdopt
156 92      STD     POSIX   { int fcntl(int fd, int cmd, long arg); }
157 ; XXX should be         { int fcntl(int fd, int cmd, ...); }
158 ; but we're not ready for varargs.
159 ; XXX man page says `int arg' too.
160 93      STD     BSD     { int select(int nd, fd_set *in, fd_set *ou, \
161                             fd_set *ex, struct timeval *tv); }
162 94      UNIMPL  BSD     setdopt
163 95      STD     POSIX   { int fsync(int fd); }
164 96      STD     BSD     { int setpriority(int which, int who, int prio); }
165 97      STD     BSD     { int socket(int domain, int type, int protocol); }
166 98      STD     BSD     { int connect(int s, caddr_t name, int namelen); }
167 99      CPT_NOA BSD     { int accept(int s, caddr_t name, int *anamelen); } \
168                             accept accept_args int
169 100     STD     BSD     { int getpriority(int which, int who); }
170 101     COMPAT  BSD     { int send(int s, caddr_t buf, int len, int flags); }
171 102     COMPAT  BSD     { int recv(int s, caddr_t buf, int len, int flags); }
172 103     COMPAT  BSD     { int sigreturn(struct osigcontext *sigcntxp); }
173 104     STD     BSD     { int bind(int s, caddr_t name, int namelen); }
174 105     STD     BSD     { int setsockopt(int s, int level, int name, \
175                             caddr_t val, int valsize); }
176 106     STD     BSD     { int listen(int s, int backlog); }
177 107     OBSOL   NOHIDE  vtimes
178 108     COMPAT  BSD     { int sigvec(int signum, struct sigvec *nsv, \
179                             struct sigvec *osv); }
180 109     COMPAT  BSD     { int sigblock(int mask); }
181 110     COMPAT  BSD     { int sigsetmask(int mask); }
182 111     COMPAT  POSIX   { int sigsuspend(osigset_t mask); }
183 ; XXX note nonstandard (bogus) calling convention - the libc stub passes
184 ; us the mask, not a pointer to it.
185 112     COMPAT  BSD     { int sigstack(struct sigstack *nss, \
186                             struct sigstack *oss); }
187 113     COMPAT  BSD     { int recvmsg(int s, struct omsghdr *msg, int flags); }
188 114     COMPAT  BSD     { int sendmsg(int s, caddr_t msg, int flags); }
189 115     OBSOL   NOHIDE  vtrace
190 116     MPSAFE  STD     BSD     { int gettimeofday(struct timeval *tp, \
191                             struct timezone *tzp); }
192 117     STD     BSD     { int getrusage(int who, struct rusage *rusage); }
193 118     STD     BSD     { int getsockopt(int s, int level, int name, \
194                             caddr_t val, int *avalsize); }
195 119     UNIMPL  NOHIDE  resuba (BSD/OS 2.x)
196 120     STD     BSD     { int readv(int fd, struct iovec *iovp, u_int iovcnt); }
197 121     STD     BSD     { int writev(int fd, struct iovec *iovp, \
198                             u_int iovcnt); }
199 122     STD     BSD     { int settimeofday(struct timeval *tv, \
200                             struct timezone *tzp); }
201 123     STD     BSD     { int fchown(int fd, int uid, int gid); }
202 124     STD     BSD     { int fchmod(int fd, int mode); }
203 125     CPT_NOA BSD     { int recvfrom(int s, caddr_t buf, size_t len, \
204                             int flags, caddr_t from, int *fromlenaddr); } \
205                             recvfrom recvfrom_args int
206 126     STD     BSD     { int setreuid(int ruid, int euid); }
207 127     STD     BSD     { int setregid(int rgid, int egid); }
208 128     STD     POSIX   { int rename(char *from, char *to); }
209 129     COMPAT  BSD     { int truncate(char *path, long length); }
210 130     COMPAT  BSD     { int ftruncate(int fd, long length); }
211 131     STD     BSD     { int flock(int fd, int how); }
212 132     STD     POSIX   { int mkfifo(char *path, int mode); }
213 133     STD     BSD     { int sendto(int s, caddr_t buf, size_t len, \
214                             int flags, caddr_t to, int tolen); }
215 134     STD     BSD     { int shutdown(int s, int how); }
216 135     STD     BSD     { int socketpair(int domain, int type, int protocol, \
217                             int *rsv); }
218 136     STD     POSIX   { int mkdir(char *path, int mode); }
219 137     STD     POSIX   { int rmdir(char *path); }
220 138     STD     BSD     { int utimes(char *path, struct timeval *tptr); }
221 139     OBSOL   NOHIDE  4.2 sigreturn
222 140     STD     BSD     { int adjtime(struct timeval *delta, \
223                             struct timeval *olddelta); }
224 141     COMPAT  BSD     { int getpeername(int fdes, caddr_t asa, int *alen); }
225 142     COMPAT  BSD     { long gethostid(void); }
226 143     COMPAT  BSD     { int sethostid(long hostid); }
227 144     COMPAT  BSD     { int getrlimit(u_int which, struct orlimit *rlp); }
228 145     COMPAT  BSD     { int setrlimit(u_int which, struct orlimit *rlp); }
229 146     COMPAT  BSD     { int killpg(int pgid, int signum); }
230 147     STD     POSIX   { int setsid(void); }
231 148     STD     BSD     { int quotactl(char *path, int cmd, int uid, \
232                             caddr_t arg); }
233 149     COMPAT  BSD     { int quota(void); }
234 150     CPT_NOA BSD     { int getsockname(int fdec, caddr_t asa, int *alen); }\
235                             getsockname getsockname_args int
236
237 ; Syscalls 151-180 inclusive are reserved for vendor-specific
238 ; system calls.  (This includes various calls added for compatibity
239 ; with other Unix variants.)
240 ; Some of these calls are now supported by BSD...
241 151     UNIMPL  NOHIDE  sem_lock (BSD/OS 2.x)
242 152     UNIMPL  NOHIDE  sem_wakeup (BSD/OS 2.x)
243 153     UNIMPL  NOHIDE  asyncdaemon (BSD/OS 2.x)
244 154     UNIMPL  NOHIDE  nosys
245 ; 155 is initialized by the NFS code, if present.
246 155     NOIMPL  BSD     { int nfssvc(int flag, caddr_t argp); }
247 156     COMPAT  BSD     { int getdirentries(int fd, char *buf, u_int count, \
248                             long *basep); }
249 157     STD     BSD     { int statfs(char *path, struct statfs *buf); }
250 158     STD     BSD     { int fstatfs(int fd, struct statfs *buf); }
251 159     UNIMPL  NOHIDE  nosys
252 160     UNIMPL  NOHIDE  nosys
253 ; 161 is initialized by the NFS code, if present.
254 161     STD     BSD     { int getfh(char *fname, struct fhandle *fhp); }
255 162     STD     BSD     { int getdomainname(char *domainname, int len); }
256 163     STD     BSD     { int setdomainname(char *domainname, int len); }
257 164     STD     BSD     { int uname(struct utsname *name); }
258 165     STD     BSD     { int sysarch(int op, char *parms); }
259 166     STD     BSD     { int rtprio(int function, pid_t pid, \
260                             struct rtprio *rtp); }
261 167     UNIMPL  NOHIDE  nosys
262 168     UNIMPL  NOHIDE  nosys
263 169     STD     BSD     { int semsys(int which, int a2, int a3, int a4, \
264                             int a5); }
265 ; XXX should be         { int semsys(int which, ...); }
266 170     STD     BSD     { int msgsys(int which, int a2, int a3, int a4, \
267                             int a5, int a6); }
268 ; XXX should be         { int msgsys(int which, ...); }
269 171     STD     BSD     { int shmsys(int which, int a2, int a3, int a4); }
270 ; XXX should be         { int shmsys(int which, ...); }
271 172     UNIMPL  NOHIDE  nosys
272 173     STD     POSIX   { ssize_t pread(int fd, void *buf, size_t nbyte, \
273                             int pad, off_t offset); }
274 174     STD     POSIX   { ssize_t pwrite(int fd, const void *buf, \
275                             size_t nbyte, int pad, off_t offset); }
276 175     UNIMPL  NOHIDE  nosys
277 176     STD     BSD     { int ntp_adjtime(struct timex *tp); }
278 177     UNIMPL  NOHIDE  sfork (BSD/OS 2.x)
279 178     UNIMPL  NOHIDE  getdescriptor (BSD/OS 2.x)
280 179     UNIMPL  NOHIDE  setdescriptor (BSD/OS 2.x)
281 180     UNIMPL  NOHIDE  nosys
282
283 ; Syscalls 181-199 are used by/reserved for BSD
284 181     STD     POSIX   { int setgid(gid_t gid); }
285 182     STD     BSD     { int setegid(gid_t egid); }
286 183     STD     BSD     { int seteuid(uid_t euid); }
287 184     UNIMPL  BSD     lfs_bmapv
288 185     UNIMPL  BSD     lfs_markv
289 186     UNIMPL  BSD     lfs_segclean
290 187     UNIMPL  BSD     lfs_segwait
291 188     STD     POSIX   { int stat(char *path, struct stat *ub); }
292 189     STD     POSIX   { int fstat(int fd, struct stat *sb); }
293 190     STD     POSIX   { int lstat(char *path, struct stat *ub); }
294 191     STD     POSIX   { int pathconf(char *path, int name); }
295 192     STD     POSIX   { int fpathconf(int fd, int name); }
296 193     UNIMPL  NOHIDE  nosys
297 194     STD     BSD     { int getrlimit(u_int which, \
298                             struct rlimit *rlp); } \
299                             getrlimit __getrlimit_args int
300 195     STD     BSD     { int setrlimit(u_int which, \
301                             struct rlimit *rlp); } \
302                             setrlimit __setrlimit_args int
303 196     STD     BSD     { int getdirentries(int fd, char *buf, u_int count, \
304                             long *basep); }
305 197     STD     BSD     { caddr_t mmap(caddr_t addr, size_t len, int prot, \
306                             int flags, int fd, int pad, off_t pos); }
307 198     STD     NOHIDE  { int nosys(void); } __syscall __syscall_args int
308 199     STD     POSIX   { off_t lseek(int fd, int pad, off_t offset, \
309                             int whence); }
310 200     STD     BSD     { int truncate(char *path, int pad, off_t length); }
311 201     STD     BSD     { int ftruncate(int fd, int pad, off_t length); }
312 202     STD     BSD     { int __sysctl(int *name, u_int namelen, void *old, \
313                             size_t *oldlenp, void *new, size_t newlen); } \
314                             __sysctl sysctl_args int
315 ; properly, __sysctl should be a NOHIDE, but making an exception
316 ; here allows to avoid one in libc/sys/Makefile.inc.
317 203     STD     BSD     { int mlock(const void *addr, size_t len); }
318 204     STD     BSD     { int munlock(const void *addr, size_t len); }
319 205     STD     BSD     { int undelete(char *path); }
320 206     STD     BSD     { int futimes(int fd, struct timeval *tptr); }
321 207     STD     BSD     { int getpgid(pid_t pid); }
322 208     UNIMPL  NOHIDE  newreboot (NetBSD)
323 209     STD     BSD     { int poll(struct pollfd *fds, u_int nfds, \
324                             int timeout); }
325
326 ;
327 ; The following are reserved for loadable syscalls
328 ;
329 210     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
330 211     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
331 212     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
332 213     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
333 214     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
334 215     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
335 216     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
336 217     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
337 218     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
338 219     NODEF   NOHIDE  lkmnosys lkmnosys nosys_args int
339
340 ;
341 ; The following were introduced with NetBSD/4.4Lite-2
342 ;
343 220     STD     BSD     { int __semctl(int semid, int semnum, int cmd, \
344                             union semun *arg); }
345 221     STD     BSD     { int semget(key_t key, int nsems, int semflg); }
346 222     STD     BSD     { int semop(int semid, struct sembuf *sops, \
347                             u_int nsops); }
348 223     UNIMPL  NOHIDE  semconfig
349 224     STD     BSD     { int msgctl(int msqid, int cmd, \
350                             struct msqid_ds *buf); }
351 225     STD     BSD     { int msgget(key_t key, int msgflg); }
352 226     STD     BSD     { int msgsnd(int msqid, void *msgp, size_t msgsz, \
353                             int msgflg); }
354 227     STD     BSD     { int msgrcv(int msqid, void *msgp, size_t msgsz, \
355                             long msgtyp, int msgflg); }
356 228     STD     BSD     { int shmat(int shmid, void *shmaddr, int shmflg); }
357 229     STD     BSD     { int shmctl(int shmid, int cmd, \
358                             struct shmid_ds *buf); }
359 230     STD     BSD     { int shmdt(void *shmaddr); }
360 231     STD     BSD     { int shmget(key_t key, int size, int shmflg); }
361 ;
362 232     STD     POSIX   { int clock_gettime(clockid_t clock_id, \
363                             struct timespec *tp); }
364 233     STD     POSIX   { int clock_settime(clockid_t clock_id, \
365                             const struct timespec *tp); }
366 234     STD     POSIX   { int clock_getres(clockid_t clock_id, \
367                             struct timespec *tp); }
368 235     UNIMPL  NOHIDE  timer_create
369 236     UNIMPL  NOHIDE  timer_delete
370 237     UNIMPL  NOHIDE  timer_settime
371 238     UNIMPL  NOHIDE  timer_gettime
372 239     UNIMPL  NOHIDE  timer_getoverrun
373 240     STD     POSIX   { int nanosleep(const struct timespec *rqtp, \
374                             struct timespec *rmtp); }
375 241     UNIMPL  NOHIDE  nosys
376 242     UNIMPL  NOHIDE  nosys
377 243     UNIMPL  NOHIDE  nosys
378 244     UNIMPL  NOHIDE  nosys
379 245     UNIMPL  NOHIDE  nosys
380 246     UNIMPL  NOHIDE  nosys
381 247     UNIMPL  NOHIDE  nosys
382 248     UNIMPL  NOHIDE  nosys
383 249     UNIMPL  NOHIDE  nosys
384 ; syscall numbers initially used in OpenBSD
385 250     STD     BSD     { int minherit(void *addr, size_t len, int inherit); }
386 251     STD     BSD     { int rfork(int flags); }
387 252     STD     BSD     { int openbsd_poll(struct pollfd *fds, u_int nfds, \
388                             int timeout); }
389 253     STD     BSD     { int issetugid(void); }
390 254     STD     BSD     { int lchown(char *path, int uid, int gid); }
391 255     UNIMPL  NOHIDE  nosys
392 256     UNIMPL  NOHIDE  nosys
393 257     UNIMPL  NOHIDE  nosys
394 258     UNIMPL  NOHIDE  nosys
395 259     UNIMPL  NOHIDE  nosys
396 260     UNIMPL  NOHIDE  nosys
397 261     UNIMPL  NOHIDE  nosys
398 262     UNIMPL  NOHIDE  nosys
399 263     UNIMPL  NOHIDE  nosys
400 264     UNIMPL  NOHIDE  nosys
401 265     UNIMPL  NOHIDE  nosys
402 266     UNIMPL  NOHIDE  nosys
403 267     UNIMPL  NOHIDE  nosys
404 268     UNIMPL  NOHIDE  nosys
405 269     UNIMPL  NOHIDE  nosys
406 270     UNIMPL  NOHIDE  nosys
407 271     UNIMPL  NOHIDE  nosys
408 272     STD     BSD     { int getdents(int fd, char *buf, size_t count); }
409 273     UNIMPL  NOHIDE  nosys
410 274     STD     BSD     { int lchmod(char *path, mode_t mode); }
411 275     NOPROTO BSD     { int lchown(char *path, uid_t uid, gid_t gid); } netbsd_lchown lchown_args int
412 276     STD     BSD     { int lutimes(char *path, struct timeval *tptr); }
413 277     NOPROTO BSD     { int msync(void *addr, size_t len, int flags); } netbsd_msync msync_args int
414 278     STD     BSD     { int nstat(char *path, struct nstat *ub); }
415 279     STD     BSD     { int nfstat(int fd, struct nstat *sb); }
416 280     STD     BSD     { int nlstat(char *path, struct nstat *ub); }
417 281     UNIMPL  NOHIDE  nosys
418 282     UNIMPL  NOHIDE  nosys
419 283     UNIMPL  NOHIDE  nosys
420 284     UNIMPL  NOHIDE  nosys
421 285     UNIMPL  NOHIDE  nosys
422 286     UNIMPL  NOHIDE  nosys
423 287     UNIMPL  NOHIDE  nosys
424 288     UNIMPL  NOHIDE  nosys
425 289     UNIMPL  NOHIDE  nosys
426 290     UNIMPL  NOHIDE  nosys
427 291     UNIMPL  NOHIDE  nosys
428 292     UNIMPL  NOHIDE  nosys
429 293     UNIMPL  NOHIDE  nosys
430 294     UNIMPL  NOHIDE  nosys
431 295     UNIMPL  NOHIDE  nosys
432 296     UNIMPL  NOHIDE  nosys
433 ; XXX 297 is 300 in NetBSD 
434 297     STD     BSD     { int fhstatfs(const struct fhandle *u_fhp, struct statfs *buf); }
435 298     STD     BSD     { int fhopen(const struct fhandle *u_fhp, int flags); }
436 299     STD     BSD     { int fhstat(const struct fhandle *u_fhp, struct stat *sb); }
437 ; syscall numbers for FreeBSD
438 300     STD     BSD     { int modnext(int modid); }
439 301     STD     BSD     { int modstat(int modid, struct module_stat* stat); }
440 302     STD     BSD     { int modfnext(int modid); }
441 303     STD     BSD     { int modfind(const char *name); }
442 304     STD     BSD     { int kldload(const char *file); }
443 305     STD     BSD     { int kldunload(int fileid); }
444 306     STD     BSD     { int kldfind(const char *file); }
445 307     STD     BSD     { int kldnext(int fileid); }
446 308     STD     BSD     { int kldstat(int fileid, struct kld_file_stat* stat); }
447 309     STD     BSD     { int kldfirstmod(int fileid); }
448 310     STD     BSD     { int getsid(pid_t pid); }
449 311     STD     BSD     { int setresuid(uid_t ruid, uid_t euid, uid_t suid); }
450 312     STD     BSD     { int setresgid(gid_t rgid, gid_t egid, gid_t sgid); }
451 313     OBSOL   NOHIDE  signanosleep
452 314     STD     BSD     { int aio_return(struct aiocb *aiocbp); }
453 315     STD     BSD     { int aio_suspend(struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }
454 316     STD     BSD     { int aio_cancel(int fd, struct aiocb *aiocbp); }
455 317     STD     BSD     { int aio_error(struct aiocb *aiocbp); }
456 318     STD     BSD     { int aio_read(struct aiocb *aiocbp); }
457 319     STD     BSD     { int aio_write(struct aiocb *aiocbp); }
458 320     STD     BSD     { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }
459 321     STD     BSD     { int yield(void); }
460 322     STD     BSD     { int thr_sleep(const struct timespec *timeout); }
461 323     STD     BSD     { int thr_wakeup(pid_t pid); }
462 324     STD     BSD     { int mlockall(int how); }
463 325     STD     BSD     { int munlockall(void); }
464 326     STD     BSD     { int __getcwd(u_char *buf, u_int buflen); }
465
466 327     STD     POSIX   { int sched_setparam (pid_t pid, const struct sched_param *param); }
467 328     STD     POSIX   { int sched_getparam (pid_t pid, struct sched_param *param); }
468
469 329     STD     POSIX   { int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param); }
470 330     STD     POSIX   { int sched_getscheduler (pid_t pid); }
471
472 331     STD     POSIX   { int sched_yield (void); }
473 332     STD     POSIX   { int sched_get_priority_max (int policy); }
474 333     STD     POSIX   { int sched_get_priority_min (int policy); }
475 334     STD     POSIX   { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }
476 335     STD     BSD     { int utrace(const void *addr, size_t len); }
477 336     COMPAT  BSD     { int sendfile(int fd, int s, off_t offset, size_t nbytes, \
478                                 struct sf_hdtr *hdtr, off_t *sbytes, int flags); }
479 337     STD     BSD     { int kldsym(int fileid, int cmd, void *data); }
480 338     STD     BSD     { int jail(struct jail *jail); }
481 339     UNIMPL  BSD     pioctl
482 340     MPSAFE  STD     POSIX   { int sigprocmask(int how, const sigset_t *set, \
483                             sigset_t *oset); }
484 341     STD     POSIX   { int sigsuspend(const sigset_t *sigmask); }
485 342     STD     POSIX   { int sigaction(int sig, const struct sigaction *act, \
486                             struct sigaction *oact); }
487 343     STD     POSIX   { int sigpending(sigset_t *set); }
488 344     STD     BSD     { int sigreturn(ucontext_t *sigcntxp); }
489 345     UNIMPL  NOHIDE  sigtimedwait
490 346     UNIMPL  NOHIDE  sigwaitinfo
491 347     STD     BSD     { int __acl_get_file(const char *path, \
492                             acl_type_t type, struct acl *aclp); }
493 348     STD     BSD     { int __acl_set_file(const char *path, \
494                             acl_type_t type, struct acl *aclp); }
495 349     STD     BSD     { int __acl_get_fd(int filedes, acl_type_t type, \
496                             struct acl *aclp); }
497 350     STD     BSD     { int __acl_set_fd(int filedes, acl_type_t type, \
498                             struct acl *aclp); }
499 351     STD     BSD     { int __acl_delete_file(const char *path, \
500                             acl_type_t type); }
501 352     STD     BSD     { int __acl_delete_fd(int filedes, acl_type_t type); }
502 353     STD     BSD     { int __acl_aclcheck_file(const char *path, \
503                             acl_type_t type, struct acl *aclp); }
504 354     STD     BSD     { int __acl_aclcheck_fd(int filedes, acl_type_t type, \
505                             struct acl *aclp); }
506 355     STD     BSD     { int extattrctl(const char *path, int cmd, \
507                             const char *attrname, char *arg); }
508 356     STD     BSD     { int extattr_set_file(const char *path, \
509                             const char *attrname, struct iovec *iovp, \
510                             unsigned iovcnt); }
511 357     STD     BSD     { int extattr_get_file(const char *path, \
512                             const char *attrname, struct iovec *iovp, \
513                             unsigned iovcnt); }
514 358     STD     BSD     { int extattr_delete_file(const char *path, \
515                             const char *attrname); }
516 359     STD     BSD     { int aio_waitcomplete(struct aiocb **aiocbp, struct timespec *timeout); }
517 360     STD     BSD     { int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); }
518 361     STD     BSD     { int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); }
519 362     STD     BSD     { int kqueue(void); }
520 363     STD     BSD     { int kevent(int fd, \
521                             const struct kevent *changelist, int nchanges, \
522                             struct kevent *eventlist, int nevents, \
523                             const struct timespec *timeout); }
524
525 364     UNIMPL  NOHIDE  nosys
526 365     UNIMPL  NOHIDE  nosys
527 366     UNIMPL  NOHIDE  nosys
528 367     UNIMPL  NOHIDE  nosys
529 368     UNIMPL  NOHIDE  nosys
530 369     UNIMPL  NOHIDE  nosys
531 370     UNIMPL  NOHIDE  nosys
532 371     UNIMPL  NOHIDE  nosys
533 372     UNIMPL  NOHIDE  nosys
534 373     UNIMPL  NOHIDE  nosys
535 374     UNIMPL  NOHIDE  nosys
536 375     UNIMPL  NOHIDE  nosys
537 376     UNIMPL  NOHIDE  nosys
538 377     UNIMPL  NOHIDE  nosys
539 378     UNIMPL  NOHIDE  nosys
540 379     UNIMPL  NOHIDE  nosys
541 380     UNIMPL  NOHIDE  nosys
542 381     UNIMPL  NOHIDE  nosys
543 382     UNIMPL  NOHIDE  nosys
544 383     UNIMPL  NOHIDE  nosys
545 384     UNIMPL  NOHIDE  nosys
546 385     UNIMPL  NOHIDE  nosys
547 386     UNIMPL  NOHIDE  nosys
548 387     UNIMPL  NOHIDE  nosys
549 388     UNIMPL  NOHIDE  nosys
550 389     UNIMPL  NOHIDE  nosys
551 390     UNIMPL  NOHIDE  nosys
552 391     UNIMPL  NOHIDE  nosys
553 392     UNIMPL  NOHIDE  nosys
554 393     STD     BSD     { int sendfile(int fd, int s, off_t offset, size_t nbytes, \
555                                 struct sf_hdtr *hdtr, off_t *sbytes, int flags); }