]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/syscalls.master
Merge ACPICA 20180105.
[FreeBSD/FreeBSD.git] / sys / kern / syscalls.master
1  $FreeBSD$
2 ;       from: @(#)syscalls.master       8.2 (Berkeley) 1/13/94
3 ;
4 ; System call name/number master file.
5 ; Processed to created init_sysent.c, syscalls.c and syscall.h.
6
7 ; Columns: number audit type name alt{name,tag,rtyp}/comments
8 ;       number  system call number, must be in order
9 ;       audit   the audit event associated with the system call
10 ;               A value of AUE_NULL means no auditing, but it also means that
11 ;               there is no audit event for the call at this time. For the
12 ;               case where the event exists, but we don't want auditing, the
13 ;               event should be #defined to AUE_NULL in audit_kevents.h.
14 ;       type    one of STD, OBSOL, UNIMPL, COMPAT, COMPAT4, COMPAT6,
15 ;               COMPAT7, COMPAT11, NODEF, NOARGS, NOPROTO, NOSTD
16 ;               The COMPAT* options may be combined with one or more NO*
17 ;               options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
18 ;       name    psuedo-prototype of syscall routine
19 ;               If one of the following alts is different, then all appear:
20 ;       altname name of system call if different
21 ;       alttag  name of args struct tag if different from [o]`name'"_args"
22 ;       altrtyp return type if not int (bogus - syscalls always return int)
23 ;               for UNIMPL/OBSOL, name continues with comments
24
25 ; types:
26 ;       STD     always included
27 ;       COMPAT  included on COMPAT #ifdef
28 ;       COMPAT4 included on COMPAT_FREEBSD4 #ifdef (FreeBSD 4 compat)
29 ;       COMPAT6 included on COMPAT_FREEBSD6 #ifdef (FreeBSD 6 compat)
30 ;       COMPAT7 included on COMPAT_FREEBSD7 #ifdef (FreeBSD 7 compat)
31 ;       COMPAT10 included on COMPAT_FREEBSD10 #ifdef (FreeBSD 10 compat)
32 ;       COMPAT11 included on COMPAT11 #ifdef (FreeBSD 11 compat)
33 ;       OBSOL   obsolete, not included in system, only specifies name
34 ;       UNIMPL  not implemented, placeholder only
35 ;       NOSTD   implemented but as a lkm that can be statically
36 ;               compiled in; sysent entry will be filled with lkmressys
37 ;               so the SYSCALL_MODULE macro works
38 ;       NOARGS  same as STD except do not create structure in sys/sysproto.h
39 ;       NODEF   same as STD except only have the entry in the syscall table
40 ;               added.  Meaning - do not create structure or function
41 ;               prototype in sys/sysproto.h
42 ;       NOPROTO same as STD except do not create structure or
43 ;               function prototype in sys/sysproto.h.  Does add a
44 ;               definition to syscall.h besides adding a sysent.
45 ;       NOTSTATIC syscall is loadable
46 ;
47 ; Please copy any additions and changes to the following compatability tables:
48 ; sys/compat/freebsd32/syscalls.master
49
50 ; #ifdef's, etc. may be included, and are copied to the output files.
51
52 #include <sys/param.h>
53 #include <sys/sysent.h>
54 #include <sys/sysproto.h>
55
56 ; Reserved/unimplemented system calls in the range 0-150 inclusive
57 ; are reserved for use in future Berkeley releases.
58 ; Additional system calls implemented in vendor and other
59 ; redistributions should be placed in the reserved range at the end
60 ; of the current calls.
61
62 0       AUE_NULL        STD     { int nosys(void); } syscall nosys_args int
63 1       AUE_EXIT        STD     { void sys_exit(int rval); } exit \
64                                     sys_exit_args void
65 2       AUE_FORK        STD     { int fork(void); }
66 3       AUE_READ        STD     { ssize_t read(int fd, void *buf, \
67                                     size_t nbyte); }
68 4       AUE_WRITE       STD     { ssize_t write(int fd, const void *buf, \
69                                     size_t nbyte); }
70 5       AUE_OPEN_RWTC   STD     { int open(char *path, int flags, int mode); }
71 ; XXX should be         { int open(const char *path, int flags, ...); }
72 ; but we're not ready for `const' or varargs.
73 ; XXX man page says `mode_t mode'.
74 6       AUE_CLOSE       STD     { int close(int fd); }
75 7       AUE_WAIT4       STD     { int wait4(int pid, int *status, \
76                                     int options, struct rusage *rusage); }
77 8       AUE_CREAT       COMPAT  { int creat(char *path, int mode); }
78 9       AUE_LINK        STD     { int link(char *path, char *link); }
79 10      AUE_UNLINK      STD     { int unlink(char *path); }
80 11      AUE_NULL        OBSOL   execv
81 12      AUE_CHDIR       STD     { int chdir(char *path); }
82 13      AUE_FCHDIR      STD     { int fchdir(int fd); }
83 14      AUE_MKNOD       COMPAT11 { int mknod(char *path, int mode, int dev); }
84 15      AUE_CHMOD       STD     { int chmod(char *path, int mode); }
85 16      AUE_CHOWN       STD     { int chown(char *path, int uid, int gid); }
86 17      AUE_NULL        STD     { int obreak(char *nsize); } break \
87                                     obreak_args int
88 18      AUE_GETFSSTAT   COMPAT4 { int getfsstat(struct ostatfs *buf, \
89                                     long bufsize, int mode); }
90 19      AUE_LSEEK       COMPAT  { long lseek(int fd, long offset, \
91                                     int whence); }
92 20      AUE_GETPID      STD     { pid_t getpid(void); }
93 21      AUE_MOUNT       STD     { int mount(char *type, char *path, \
94                                     int flags, caddr_t data); }
95 ; XXX `path' should have type `const char *' but we're not ready for that.
96 22      AUE_UMOUNT      STD     { int unmount(char *path, int flags); }
97 23      AUE_SETUID      STD     { int setuid(uid_t uid); }
98 24      AUE_GETUID      STD     { uid_t getuid(void); }
99 25      AUE_GETEUID     STD     { uid_t geteuid(void); }
100 26      AUE_PTRACE      STD     { int ptrace(int req, pid_t pid, \
101                                     caddr_t addr, int data); }
102 27      AUE_RECVMSG     STD     { int recvmsg(int s, struct msghdr *msg, \
103                                     int flags); }
104 28      AUE_SENDMSG     STD     { int sendmsg(int s, struct msghdr *msg, \
105                                     int flags); }
106 29      AUE_RECVFROM    STD     { int recvfrom(int s, caddr_t buf, \
107                                     size_t len, int flags, \
108                                     struct sockaddr * __restrict from, \
109                                     __socklen_t * __restrict fromlenaddr); }
110 30      AUE_ACCEPT      STD     { int accept(int s, \
111                                     struct sockaddr * __restrict name, \
112                                     __socklen_t * __restrict anamelen); }
113 31      AUE_GETPEERNAME STD     { int getpeername(int fdes, \
114                                     struct sockaddr * __restrict asa, \
115                                     __socklen_t * __restrict alen); }
116 32      AUE_GETSOCKNAME STD     { int getsockname(int fdes, \
117                                     struct sockaddr * __restrict asa, \
118                                     __socklen_t * __restrict alen); }
119 33      AUE_ACCESS      STD     { int access(char *path, int amode); }
120 34      AUE_CHFLAGS     STD     { int chflags(const char *path, u_long flags); }
121 35      AUE_FCHFLAGS    STD     { int fchflags(int fd, u_long flags); }
122 36      AUE_SYNC        STD     { int sync(void); }
123 37      AUE_KILL        STD     { int kill(int pid, int signum); }
124 38      AUE_STAT        COMPAT  { int stat(char *path, struct ostat *ub); }
125 39      AUE_GETPPID     STD     { pid_t getppid(void); }
126 40      AUE_LSTAT       COMPAT  { int lstat(char *path, struct ostat *ub); }
127 41      AUE_DUP         STD     { int dup(u_int fd); }
128 42      AUE_PIPE        COMPAT10        { int pipe(void); }
129 43      AUE_GETEGID     STD     { gid_t getegid(void); }
130 44      AUE_PROFILE     STD     { int profil(caddr_t samples, size_t size, \
131                                     size_t offset, u_int scale); }
132 45      AUE_KTRACE      STD     { int ktrace(const char *fname, int ops, \
133                                     int facs, int pid); }
134 46      AUE_SIGACTION   COMPAT  { int sigaction(int signum, \
135                                     struct osigaction *nsa, \
136                                     struct osigaction *osa); }
137 47      AUE_GETGID      STD     { gid_t getgid(void); }
138 48      AUE_SIGPROCMASK COMPAT  { int sigprocmask(int how, osigset_t mask); }
139 ; XXX note nonstandard (bogus) calling convention - the libc stub passes
140 ; us the mask, not a pointer to it, and we return the old mask as the
141 ; (int) return value.
142 49      AUE_GETLOGIN    STD     { int getlogin(char *namebuf, u_int \
143                                     namelen); }
144 50      AUE_SETLOGIN    STD     { int setlogin(char *namebuf); }
145 51      AUE_ACCT        STD     { int acct(char *path); }
146 52      AUE_SIGPENDING  COMPAT  { int sigpending(void); }
147 53      AUE_SIGALTSTACK STD     { int sigaltstack(stack_t *ss, \
148                                     stack_t *oss); }
149 54      AUE_IOCTL       STD     { int ioctl(int fd, u_long com, \
150                                     caddr_t data); }
151 55      AUE_REBOOT      STD     { int reboot(int opt); }
152 56      AUE_REVOKE      STD     { int revoke(char *path); }
153 57      AUE_SYMLINK     STD     { int symlink(char *path, char *link); }
154 58      AUE_READLINK    STD     { ssize_t readlink(char *path, char *buf, \
155                                     size_t count); }
156 59      AUE_EXECVE      STD     { int execve(char *fname, char **argv, \
157                                     char **envv); }
158 60      AUE_UMASK       STD     { int umask(int newmask); } umask umask_args \
159                                     int
160 61      AUE_CHROOT      STD     { int chroot(char *path); }
161 62      AUE_FSTAT       COMPAT  { int fstat(int fd, struct ostat *sb); }
162 63      AUE_NULL        COMPAT  { int getkerninfo(int op, char *where, \
163                                     size_t *size, int arg); } getkerninfo \
164                                     getkerninfo_args int
165 64      AUE_NULL        COMPAT  { int getpagesize(void); } getpagesize \
166                                     getpagesize_args int
167 65      AUE_MSYNC       STD     { int msync(void *addr, size_t len, \
168                                     int flags); }
169 66      AUE_VFORK       STD     { int vfork(void); }
170 67      AUE_NULL        OBSOL   vread
171 68      AUE_NULL        OBSOL   vwrite
172 69      AUE_SBRK        STD     { int sbrk(int incr); }
173 70      AUE_SSTK        STD     { int sstk(int incr); }
174 71      AUE_MMAP        COMPAT  { int mmap(void *addr, int len, int prot, \
175                                     int flags, int fd, long pos); }
176 72      AUE_O_VADVISE   STD     { int ovadvise(int anom); } vadvise \
177                                     ovadvise_args int
178 73      AUE_MUNMAP      STD     { int munmap(void *addr, size_t len); }
179 74      AUE_MPROTECT    STD     { int mprotect(void *addr, size_t len, \
180                                     int prot); }
181 75      AUE_MADVISE     STD     { int madvise(void *addr, size_t len, \
182                                     int behav); }
183 76      AUE_NULL        OBSOL   vhangup
184 77      AUE_NULL        OBSOL   vlimit
185 78      AUE_MINCORE     STD     { int mincore(const void *addr, size_t len, \
186                                     char *vec); }
187 79      AUE_GETGROUPS   STD     { int getgroups(u_int gidsetsize, \
188                                     gid_t *gidset); }
189 80      AUE_SETGROUPS   STD     { int setgroups(u_int gidsetsize, \
190                                     gid_t *gidset); }
191 81      AUE_GETPGRP     STD     { int getpgrp(void); }
192 82      AUE_SETPGRP     STD     { int setpgid(int pid, int pgid); }
193 83      AUE_SETITIMER   STD     { int setitimer(u_int which, struct \
194                                     itimerval *itv, struct itimerval *oitv); }
195 84      AUE_WAIT4       COMPAT  { int wait(void); }
196 85      AUE_SWAPON      STD     { int swapon(char *name); }
197 86      AUE_GETITIMER   STD     { int getitimer(u_int which, \
198                                     struct itimerval *itv); }
199 87      AUE_SYSCTL      COMPAT  { int gethostname(char *hostname, \
200                                     u_int len); } gethostname \
201                                     gethostname_args int
202 88      AUE_SYSCTL      COMPAT  { int sethostname(char *hostname, \
203                                     u_int len); } sethostname \
204                                     sethostname_args int
205 89      AUE_GETDTABLESIZE       STD     { int getdtablesize(void); }
206 90      AUE_DUP2        STD     { int dup2(u_int from, u_int to); }
207 91      AUE_NULL        UNIMPL  getdopt
208 92      AUE_FCNTL       STD     { int fcntl(int fd, int cmd, long arg); }
209 ; XXX should be { int fcntl(int fd, int cmd, ...); }
210 ; but we're not ready for varargs.
211 93      AUE_SELECT      STD     { int select(int nd, fd_set *in, fd_set *ou, \
212                                     fd_set *ex, struct timeval *tv); }
213 94      AUE_NULL        UNIMPL  setdopt
214 95      AUE_FSYNC       STD     { int fsync(int fd); }
215 96      AUE_SETPRIORITY STD     { int setpriority(int which, int who, \
216                                     int prio); }
217 97      AUE_SOCKET      STD     { int socket(int domain, int type, \
218                                     int protocol); }
219 98      AUE_CONNECT     STD     { int connect(int s, caddr_t name, \
220                                     int namelen); }
221 99      AUE_ACCEPT      COMPAT|NOARGS { int accept(int s, caddr_t name, \
222                                     int *anamelen); } accept accept_args int
223 100     AUE_GETPRIORITY STD     { int getpriority(int which, int who); }
224 101     AUE_SEND        COMPAT  { int send(int s, caddr_t buf, int len, \
225                                     int flags); }
226 102     AUE_RECV        COMPAT  { int recv(int s, caddr_t buf, int len, \
227                                     int flags); }
228 103     AUE_SIGRETURN   COMPAT  { int sigreturn( \
229                                     struct osigcontext *sigcntxp); }
230 104     AUE_BIND        STD     { int bind(int s, caddr_t name, \
231                                     int namelen); }
232 105     AUE_SETSOCKOPT  STD     { int setsockopt(int s, int level, int name, \
233                                     caddr_t val, int valsize); }
234 106     AUE_LISTEN      STD     { int listen(int s, int backlog); }
235 107     AUE_NULL        OBSOL   vtimes
236 108     AUE_NULL        COMPAT  { int sigvec(int signum, struct sigvec *nsv, \
237                                     struct sigvec *osv); }
238 109     AUE_NULL        COMPAT  { int sigblock(int mask); }
239 110     AUE_NULL        COMPAT  { int sigsetmask(int mask); }
240 111     AUE_NULL        COMPAT  { int sigsuspend(osigset_t mask); }
241 ; XXX note nonstandard (bogus) calling convention - the libc stub passes
242 ; us the mask, not a pointer to it.
243 112     AUE_NULL        COMPAT  { int sigstack(struct sigstack *nss, \
244                                     struct sigstack *oss); }
245 113     AUE_RECVMSG     COMPAT  { int recvmsg(int s, struct omsghdr *msg, \
246                                     int flags); }
247 114     AUE_SENDMSG     COMPAT  { int sendmsg(int s, caddr_t msg, \
248                                     int flags); }
249 115     AUE_NULL        OBSOL   vtrace
250 116     AUE_GETTIMEOFDAY        STD     { int gettimeofday(struct timeval *tp, \
251                                     struct timezone *tzp); }
252 117     AUE_GETRUSAGE   STD     { int getrusage(int who, \
253                                     struct rusage *rusage); }
254 118     AUE_GETSOCKOPT  STD     { int getsockopt(int s, int level, int name, \
255                                     caddr_t val, int *avalsize); }
256 119     AUE_NULL        UNIMPL  resuba (BSD/OS 2.x)
257 120     AUE_READV       STD     { int readv(int fd, struct iovec *iovp, \
258                                     u_int iovcnt); }
259 121     AUE_WRITEV      STD     { int writev(int fd, struct iovec *iovp, \
260                                     u_int iovcnt); }
261 122     AUE_SETTIMEOFDAY        STD     { int settimeofday(struct timeval *tv, \
262                                     struct timezone *tzp); }
263 123     AUE_FCHOWN      STD     { int fchown(int fd, int uid, int gid); }
264 124     AUE_FCHMOD      STD     { int fchmod(int fd, int mode); }
265 125     AUE_RECVFROM    COMPAT|NOARGS { int recvfrom(int s, caddr_t buf, \
266                                     size_t len, int flags, caddr_t from, int \
267                                     *fromlenaddr); } recvfrom recvfrom_args \
268                                     int
269 126     AUE_SETREUID    STD     { int setreuid(int ruid, int euid); }
270 127     AUE_SETREGID    STD     { int setregid(int rgid, int egid); }
271 128     AUE_RENAME      STD     { int rename(char *from, char *to); }
272 129     AUE_TRUNCATE    COMPAT  { int truncate(char *path, long length); }
273 130     AUE_FTRUNCATE   COMPAT  { int ftruncate(int fd, long length); }
274 131     AUE_FLOCK       STD     { int flock(int fd, int how); }
275 132     AUE_MKFIFO      STD     { int mkfifo(char *path, int mode); }
276 133     AUE_SENDTO      STD     { int sendto(int s, caddr_t buf, size_t len, \
277                                     int flags, caddr_t to, int tolen); }
278 134     AUE_SHUTDOWN    STD     { int shutdown(int s, int how); }
279 135     AUE_SOCKETPAIR  STD     { int socketpair(int domain, int type, \
280                                     int protocol, int *rsv); }
281 136     AUE_MKDIR       STD     { int mkdir(char *path, int mode); }
282 137     AUE_RMDIR       STD     { int rmdir(char *path); }
283 138     AUE_UTIMES      STD     { int utimes(char *path, \
284                                     struct timeval *tptr); }
285 139     AUE_NULL        OBSOL   4.2 sigreturn
286 140     AUE_ADJTIME     STD     { int adjtime(struct timeval *delta, \
287                                     struct timeval *olddelta); }
288 141     AUE_GETPEERNAME COMPAT  { int getpeername(int fdes, caddr_t asa, \
289                                     int *alen); }
290 142     AUE_SYSCTL      COMPAT  { long gethostid(void); }
291 143     AUE_SYSCTL      COMPAT  { int sethostid(long hostid); }
292 144     AUE_GETRLIMIT   COMPAT  { int getrlimit(u_int which, struct \
293                                     orlimit *rlp); }
294 145     AUE_SETRLIMIT   COMPAT  { int setrlimit(u_int which, \
295                                     struct orlimit *rlp); }
296 146     AUE_KILLPG      COMPAT  { int killpg(int pgid, int signum); }
297 147     AUE_SETSID      STD     { int setsid(void); }
298 148     AUE_QUOTACTL    STD     { int quotactl(char *path, int cmd, int uid, \
299                                     caddr_t arg); }
300 149     AUE_O_QUOTA     COMPAT  { int quota(void); }
301 150     AUE_GETSOCKNAME COMPAT|NOARGS { int getsockname(int fdec, \
302                                     caddr_t asa, int *alen); } getsockname \
303                                     getsockname_args int
304
305 ; Syscalls 151-180 inclusive are reserved for vendor-specific
306 ; system calls.  (This includes various calls added for compatibity
307 ; with other Unix variants.)
308 ; Some of these calls are now supported by BSD...
309 151     AUE_NULL        UNIMPL  sem_lock (BSD/OS 2.x)
310 152     AUE_NULL        UNIMPL  sem_wakeup (BSD/OS 2.x)
311 153     AUE_NULL        UNIMPL  asyncdaemon (BSD/OS 2.x)
312 ; 154 is initialised by the NLM code, if present.
313 154     AUE_NULL        NOSTD   { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }
314 ; 155 is initialized by the NFS code, if present.
315 155     AUE_NFS_SVC     NOSTD   { int nfssvc(int flag, caddr_t argp); }
316 156     AUE_GETDIRENTRIES       COMPAT  { int getdirentries(int fd, char *buf, \
317                                     u_int count, long *basep); }
318 157     AUE_STATFS      COMPAT4 { int statfs(char *path, \
319                                     struct ostatfs *buf); }
320 158     AUE_FSTATFS     COMPAT4 { int fstatfs(int fd, \
321                                     struct ostatfs *buf); }
322 159     AUE_NULL        UNIMPL  nosys
323 160     AUE_LGETFH      STD     { int lgetfh(char *fname, \
324                                     struct fhandle *fhp); }
325 161     AUE_NFS_GETFH   STD     { int getfh(char *fname, \
326                                     struct fhandle *fhp); }
327 162     AUE_SYSCTL      COMPAT4 { int getdomainname(char *domainname, \
328                                     int len); }
329 163     AUE_SYSCTL      COMPAT4 { int setdomainname(char *domainname, \
330                                     int len); }
331 164     AUE_NULL        COMPAT4 { int uname(struct utsname *name); }
332 165     AUE_SYSARCH     STD     { int sysarch(int op, char *parms); }
333 166     AUE_RTPRIO      STD     { int rtprio(int function, pid_t pid, \
334                                     struct rtprio *rtp); }
335 167     AUE_NULL        UNIMPL  nosys
336 168     AUE_NULL        UNIMPL  nosys
337 169     AUE_SEMSYS      NOSTD   { int semsys(int which, int a2, int a3, \
338                                     int a4, int a5); }
339 ; XXX should be { int semsys(int which, ...); }
340 170     AUE_MSGSYS      NOSTD   { int msgsys(int which, int a2, int a3, \
341                                     int a4, int a5, int a6); }
342 ; XXX should be { int msgsys(int which, ...); }
343 171     AUE_SHMSYS      NOSTD   { int shmsys(int which, int a2, int a3, \
344                                     int a4); }
345 ; XXX should be { int shmsys(int which, ...); }
346 172     AUE_NULL        UNIMPL  nosys
347 173     AUE_PREAD       COMPAT6 { ssize_t pread(int fd, void *buf, \
348                                     size_t nbyte, int pad, off_t offset); }
349 174     AUE_PWRITE      COMPAT6 { ssize_t pwrite(int fd, \
350                                     const void *buf, \
351                                     size_t nbyte, int pad, off_t offset); }
352 175     AUE_SETFIB      STD     { int setfib(int fibnum); }
353 176     AUE_NTP_ADJTIME STD     { int ntp_adjtime(struct timex *tp); }
354 177     AUE_NULL        UNIMPL  sfork (BSD/OS 2.x)
355 178     AUE_NULL        UNIMPL  getdescriptor (BSD/OS 2.x)
356 179     AUE_NULL        UNIMPL  setdescriptor (BSD/OS 2.x)
357 180     AUE_NULL        UNIMPL  nosys
358
359 ; Syscalls 181-199 are used by/reserved for BSD
360 181     AUE_SETGID      STD     { int setgid(gid_t gid); }
361 182     AUE_SETEGID     STD     { int setegid(gid_t egid); }
362 183     AUE_SETEUID     STD     { int seteuid(uid_t euid); }
363 184     AUE_NULL        UNIMPL  lfs_bmapv
364 185     AUE_NULL        UNIMPL  lfs_markv
365 186     AUE_NULL        UNIMPL  lfs_segclean
366 187     AUE_NULL        UNIMPL  lfs_segwait
367 188     AUE_STAT        COMPAT11 { int stat(char *path, \
368                                     struct freebsd11_stat *ub); }
369 189     AUE_FSTAT       COMPAT11 { int fstat(int fd, \
370                                     struct freebsd11_stat *sb); }
371 190     AUE_LSTAT       COMPAT11 { int lstat(char *path, \
372                                     struct freebsd11_stat *ub); }
373 191     AUE_PATHCONF    STD     { int pathconf(char *path, int name); }
374 192     AUE_FPATHCONF   STD     { int fpathconf(int fd, int name); }
375 193     AUE_NULL        UNIMPL  nosys
376 194     AUE_GETRLIMIT   STD     { int getrlimit(u_int which, \
377                                     struct rlimit *rlp); } getrlimit \
378                                     __getrlimit_args int
379 195     AUE_SETRLIMIT   STD     { int setrlimit(u_int which, \
380                                     struct rlimit *rlp); } setrlimit \
381                                     __setrlimit_args int
382 196     AUE_GETDIRENTRIES       COMPAT11 { int getdirentries(int fd, char *buf, \
383                                     u_int count, long *basep); }
384 197     AUE_MMAP        COMPAT6 { caddr_t mmap(caddr_t addr, \
385                                     size_t len, int prot, int flags, int fd, \
386                                     int pad, off_t pos); }
387 198     AUE_NULL        NOPROTO { int nosys(void); } __syscall \
388                                     __syscall_args int
389 199     AUE_LSEEK       COMPAT6 { off_t lseek(int fd, int pad, \
390                                     off_t offset, int whence); }
391 200     AUE_TRUNCATE    COMPAT6 { int truncate(char *path, int pad, \
392                                     off_t length); }
393 201     AUE_FTRUNCATE   COMPAT6 { int ftruncate(int fd, int pad, \
394                                     off_t length); }
395 202     AUE_SYSCTL      STD     { int __sysctl(int *name, u_int namelen, \
396                                     void *old, size_t *oldlenp, void *new, \
397                                     size_t newlen); } __sysctl sysctl_args int
398 203     AUE_MLOCK       STD     { int mlock(const void *addr, size_t len); }
399 204     AUE_MUNLOCK     STD     { int munlock(const void *addr, size_t len); }
400 205     AUE_UNDELETE    STD     { int undelete(char *path); }
401 206     AUE_FUTIMES     STD     { int futimes(int fd, struct timeval *tptr); }
402 207     AUE_GETPGID     STD     { int getpgid(pid_t pid); }
403 208     AUE_NULL        UNIMPL  newreboot (NetBSD)
404 209     AUE_POLL        STD     { int poll(struct pollfd *fds, u_int nfds, \
405                                     int timeout); }
406
407 ;
408 ; The following are reserved for loadable syscalls
409 ;
410 210     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
411 211     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
412 212     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
413 213     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
414 214     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
415 215     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
416 216     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
417 217     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
418 218     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
419 219     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
420
421 ;
422 ; The following were introduced with NetBSD/4.4Lite-2
423 220     AUE_SEMCTL      COMPAT7|NOSTD { int __semctl(int semid, int semnum, \
424                                     int cmd, union semun_old *arg); }
425 221     AUE_SEMGET      NOSTD   { int semget(key_t key, int nsems, \
426                                     int semflg); }
427 222     AUE_SEMOP       NOSTD   { int semop(int semid, struct sembuf *sops, \
428                                     size_t nsops); }
429 223     AUE_NULL        UNIMPL  semconfig
430 224     AUE_MSGCTL      COMPAT7|NOSTD { int msgctl(int msqid, int cmd, \
431                                     struct msqid_ds_old *buf); }
432 225     AUE_MSGGET      NOSTD   { int msgget(key_t key, int msgflg); }
433 226     AUE_MSGSND      NOSTD   { int msgsnd(int msqid, const void *msgp, \
434                                     size_t msgsz, int msgflg); }
435 227     AUE_MSGRCV      NOSTD   { ssize_t msgrcv(int msqid, void *msgp, \
436                                     size_t msgsz, long msgtyp, int msgflg); }
437 228     AUE_SHMAT       NOSTD   { int shmat(int shmid, const void *shmaddr, \
438                                     int shmflg); }
439 229     AUE_SHMCTL      COMPAT7|NOSTD { int shmctl(int shmid, int cmd, \
440                                     struct shmid_ds_old *buf); }
441 230     AUE_SHMDT       NOSTD   { int shmdt(const void *shmaddr); }
442 231     AUE_SHMGET      NOSTD   { int shmget(key_t key, size_t size, \
443                                     int shmflg); }
444 ;
445 232     AUE_NULL        STD     { int clock_gettime(clockid_t clock_id, \
446                                     struct timespec *tp); }
447 233     AUE_CLOCK_SETTIME       STD     { int clock_settime( \
448                                     clockid_t clock_id, \
449                                     const struct timespec *tp); }
450 234     AUE_NULL        STD     { int clock_getres(clockid_t clock_id, \
451                                     struct timespec *tp); }
452 235     AUE_NULL        STD     { int ktimer_create(clockid_t clock_id, \
453                                     struct sigevent *evp, int *timerid); }
454 236     AUE_NULL        STD     { int ktimer_delete(int timerid); }
455 237     AUE_NULL        STD     { int ktimer_settime(int timerid, int flags, \
456                                     const struct itimerspec *value, \
457                                     struct itimerspec *ovalue); }
458 238     AUE_NULL        STD     { int ktimer_gettime(int timerid, struct \
459                                     itimerspec *value); }
460 239     AUE_NULL        STD     { int ktimer_getoverrun(int timerid); }
461 240     AUE_NULL        STD     { int nanosleep(const struct timespec *rqtp, \
462                                     struct timespec *rmtp); }
463 241     AUE_NULL        STD     { int ffclock_getcounter(ffcounter *ffcount); }
464 242     AUE_NULL        STD     { int ffclock_setestimate( \
465                                     struct ffclock_estimate *cest); }
466 243     AUE_NULL        STD     { int ffclock_getestimate( \
467                                     struct ffclock_estimate *cest); }
468 244     AUE_NULL        STD     { int clock_nanosleep(clockid_t clock_id, \
469                                     int flags, const struct timespec *rqtp, \
470                                     struct timespec *rmtp); }
471 245     AUE_NULL        UNIMPL  nosys
472 246     AUE_NULL        UNIMPL  nosys
473 247     AUE_NULL        STD     { int clock_getcpuclockid2(id_t id,\
474                                     int which, clockid_t *clock_id); }
475 248     AUE_NULL        STD     { int ntp_gettime(struct ntptimeval *ntvp); }
476 249     AUE_NULL        UNIMPL  nosys
477 ; syscall numbers initially used in OpenBSD
478 250     AUE_MINHERIT    STD     { int minherit(void *addr, size_t len, \
479                                     int inherit); }
480 251     AUE_RFORK       STD     { int rfork(int flags); }
481 252     AUE_POLL        OBSOL   openbsd_poll
482 253     AUE_ISSETUGID   STD     { int issetugid(void); }
483 254     AUE_LCHOWN      STD     { int lchown(char *path, int uid, int gid); }
484 255     AUE_AIO_READ    STD     { int aio_read(struct aiocb *aiocbp); }
485 256     AUE_AIO_WRITE   STD     { int aio_write(struct aiocb *aiocbp); }
486 257     AUE_LIO_LISTIO  STD     { int lio_listio(int mode, \
487                                     struct aiocb * const *acb_list, \
488                                     int nent, struct sigevent *sig); }
489 258     AUE_NULL        UNIMPL  nosys
490 259     AUE_NULL        UNIMPL  nosys
491 260     AUE_NULL        UNIMPL  nosys
492 261     AUE_NULL        UNIMPL  nosys
493 262     AUE_NULL        UNIMPL  nosys
494 263     AUE_NULL        UNIMPL  nosys
495 264     AUE_NULL        UNIMPL  nosys
496 265     AUE_NULL        UNIMPL  nosys
497 266     AUE_NULL        UNIMPL  nosys
498 267     AUE_NULL        UNIMPL  nosys
499 268     AUE_NULL        UNIMPL  nosys
500 269     AUE_NULL        UNIMPL  nosys
501 270     AUE_NULL        UNIMPL  nosys
502 271     AUE_NULL        UNIMPL  nosys
503 272     AUE_O_GETDENTS  COMPAT11 { int getdents(int fd, char *buf, \
504                                     size_t count); }
505 273     AUE_NULL        UNIMPL  nosys
506 274     AUE_LCHMOD      STD     { int lchmod(char *path, mode_t mode); }
507 275     AUE_LCHOWN      NOPROTO { int lchown(char *path, uid_t uid, \
508                                     gid_t gid); } netbsd_lchown lchown_args \
509                                     int
510 276     AUE_LUTIMES     STD     { int lutimes(char *path, \
511                                     struct timeval *tptr); }
512 277     AUE_MSYNC       NOPROTO { int msync(void *addr, size_t len, \
513                                     int flags); } netbsd_msync msync_args int
514 278     AUE_STAT        COMPAT11 { int nstat(char *path, struct nstat *ub); }
515 279     AUE_FSTAT       COMPAT11 { int nfstat(int fd, struct nstat *sb); }
516 280     AUE_LSTAT       COMPAT11 { int nlstat(char *path, struct nstat *ub); }
517 281     AUE_NULL        UNIMPL  nosys
518 282     AUE_NULL        UNIMPL  nosys
519 283     AUE_NULL        UNIMPL  nosys
520 284     AUE_NULL        UNIMPL  nosys
521 285     AUE_NULL        UNIMPL  nosys
522 286     AUE_NULL        UNIMPL  nosys
523 287     AUE_NULL        UNIMPL  nosys
524 288     AUE_NULL        UNIMPL  nosys
525 ; 289 and 290 from NetBSD (OpenBSD: 267 and 268)
526 289     AUE_PREADV      STD     { ssize_t preadv(int fd, struct iovec *iovp, \
527                                         u_int iovcnt, off_t offset); }
528 290     AUE_PWRITEV     STD     { ssize_t pwritev(int fd, struct iovec *iovp, \
529                                         u_int iovcnt, off_t offset); }
530 291     AUE_NULL        UNIMPL  nosys
531 292     AUE_NULL        UNIMPL  nosys
532 293     AUE_NULL        UNIMPL  nosys
533 294     AUE_NULL        UNIMPL  nosys
534 295     AUE_NULL        UNIMPL  nosys
535 296     AUE_NULL        UNIMPL  nosys
536 ; XXX 297 is 300 in NetBSD 
537 297     AUE_FHSTATFS    COMPAT4 { int fhstatfs( \
538                                     const struct fhandle *u_fhp, \
539                                     struct ostatfs *buf); }
540 298     AUE_FHOPEN      STD     { int fhopen(const struct fhandle *u_fhp, \
541                                     int flags); }
542 299     AUE_FHSTAT      COMPAT11 { int fhstat(const struct fhandle *u_fhp, \
543                                     struct freebsd11_stat *sb); }
544 ; syscall numbers for FreeBSD
545 300     AUE_NULL        STD     { int modnext(int modid); }
546 301     AUE_NULL        STD     { int modstat(int modid, \
547                                     struct module_stat *stat); }
548 302     AUE_NULL        STD     { int modfnext(int modid); }
549 303     AUE_NULL        STD     { int modfind(const char *name); }
550 304     AUE_MODLOAD     STD     { int kldload(const char *file); }
551 305     AUE_MODUNLOAD   STD     { int kldunload(int fileid); }
552 306     AUE_NULL        STD     { int kldfind(const char *file); }
553 307     AUE_NULL        STD     { int kldnext(int fileid); }
554 308     AUE_NULL        STD     { int kldstat(int fileid, struct \
555                                     kld_file_stat* stat); }
556 309     AUE_NULL        STD     { int kldfirstmod(int fileid); }
557 310     AUE_GETSID      STD     { int getsid(pid_t pid); }
558 311     AUE_SETRESUID   STD     { int setresuid(uid_t ruid, uid_t euid, \
559                                     uid_t suid); }
560 312     AUE_SETRESGID   STD     { int setresgid(gid_t rgid, gid_t egid, \
561                                     gid_t sgid); }
562 313     AUE_NULL        OBSOL   signanosleep
563 314     AUE_AIO_RETURN  STD     { ssize_t aio_return(struct aiocb *aiocbp); }
564 315     AUE_AIO_SUSPEND STD     { int aio_suspend( \
565                                     struct aiocb * const * aiocbp, int nent, \
566                                     const struct timespec *timeout); }
567 316     AUE_AIO_CANCEL  STD     { int aio_cancel(int fd, \
568                                     struct aiocb *aiocbp); }
569 317     AUE_AIO_ERROR   STD     { int aio_error(struct aiocb *aiocbp); }
570 318     AUE_AIO_READ    COMPAT6 { int aio_read(struct oaiocb *aiocbp); }
571 319     AUE_AIO_WRITE   COMPAT6 { int aio_write(struct oaiocb *aiocbp); }
572 320     AUE_LIO_LISTIO  COMPAT6 { int lio_listio(int mode, \
573                                     struct oaiocb * const *acb_list, \
574                                     int nent, struct osigevent *sig); }
575 321     AUE_NULL        STD     { int yield(void); }
576 322     AUE_NULL        OBSOL   thr_sleep
577 323     AUE_NULL        OBSOL   thr_wakeup
578 324     AUE_MLOCKALL    STD     { int mlockall(int how); }
579 325     AUE_MUNLOCKALL  STD     { int munlockall(void); }
580 326     AUE_GETCWD      STD     { int __getcwd(char *buf, size_t buflen); }
581
582 327     AUE_NULL        STD     { int sched_setparam (pid_t pid, \
583                                     const struct sched_param *param); }
584 328     AUE_NULL        STD     { int sched_getparam (pid_t pid, struct \
585                                     sched_param *param); }
586
587 329     AUE_NULL        STD     { int sched_setscheduler (pid_t pid, int \
588                                     policy, const struct sched_param \
589                                     *param); }
590 330     AUE_NULL        STD     { int sched_getscheduler (pid_t pid); }
591
592 331     AUE_NULL        STD     { int sched_yield (void); }
593 332     AUE_NULL        STD     { int sched_get_priority_max (int policy); }
594 333     AUE_NULL        STD     { int sched_get_priority_min (int policy); }
595 334     AUE_NULL        STD     { int sched_rr_get_interval (pid_t pid, \
596                                     struct timespec *interval); }
597 335     AUE_NULL        STD     { int utrace(const void *addr, size_t len); }
598 336     AUE_SENDFILE    COMPAT4 { int sendfile(int fd, int s, \
599                                     off_t offset, size_t nbytes, \
600                                     struct sf_hdtr *hdtr, off_t *sbytes, \
601                                     int flags); }
602 337     AUE_NULL        STD     { int kldsym(int fileid, int cmd, \
603                                     void *data); }
604 338     AUE_JAIL        STD     { int jail(struct jail *jail); }
605 339     AUE_NULL        NOSTD|NOTSTATIC { int nnpfs_syscall(int operation, \
606                                     char *a_pathP, int a_opcode, \
607                                     void *a_paramsP, int a_followSymlinks); }
608 340     AUE_SIGPROCMASK STD     { int sigprocmask(int how, \
609                                     const sigset_t *set, sigset_t *oset); }
610 341     AUE_SIGSUSPEND  STD     { int sigsuspend(const sigset_t *sigmask); }
611 342     AUE_SIGACTION   COMPAT4 { int sigaction(int sig, const \
612                                     struct sigaction *act, \
613                                     struct sigaction *oact); }
614 343     AUE_SIGPENDING  STD     { int sigpending(sigset_t *set); }
615 344     AUE_SIGRETURN   COMPAT4 { int sigreturn( \
616                                     const struct ucontext4 *sigcntxp); }
617 345     AUE_SIGWAIT     STD     { int sigtimedwait(const sigset_t *set, \
618                                     siginfo_t *info, \
619                                     const struct timespec *timeout); }
620 346     AUE_NULL        STD     { int sigwaitinfo(const sigset_t *set, \
621                                     siginfo_t *info); }
622 347     AUE_ACL_GET_FILE        STD     { int __acl_get_file(const char *path, \
623                                     acl_type_t type, struct acl *aclp); }
624 348     AUE_ACL_SET_FILE        STD     { int __acl_set_file(const char *path, \
625                                     acl_type_t type, struct acl *aclp); }
626 349     AUE_ACL_GET_FD  STD     { int __acl_get_fd(int filedes, \
627                                     acl_type_t type, struct acl *aclp); }
628 350     AUE_ACL_SET_FD  STD     { int __acl_set_fd(int filedes, \
629                                     acl_type_t type, struct acl *aclp); }
630 351     AUE_ACL_DELETE_FILE     STD     { int __acl_delete_file(const char *path, \
631                                     acl_type_t type); }
632 352     AUE_ACL_DELETE_FD       STD     { int __acl_delete_fd(int filedes, \
633                                     acl_type_t type); }
634 353     AUE_ACL_CHECK_FILE      STD     { int __acl_aclcheck_file(const char *path, \
635                                     acl_type_t type, struct acl *aclp); }
636 354     AUE_ACL_CHECK_FD        STD     { int __acl_aclcheck_fd(int filedes, \
637                                     acl_type_t type, struct acl *aclp); }
638 355     AUE_EXTATTRCTL  STD     { int extattrctl(const char *path, int cmd, \
639                                     const char *filename, int attrnamespace, \
640                                     const char *attrname); }
641 356     AUE_EXTATTR_SET_FILE    STD     { ssize_t extattr_set_file( \
642                                     const char *path, int attrnamespace, \
643                                     const char *attrname, void *data, \
644                                     size_t nbytes); }
645 357     AUE_EXTATTR_GET_FILE    STD     { ssize_t extattr_get_file( \
646                                     const char *path, int attrnamespace, \
647                                     const char *attrname, void *data, \
648                                     size_t nbytes); }
649 358     AUE_EXTATTR_DELETE_FILE STD     { int extattr_delete_file(const char *path, \
650                                     int attrnamespace, \
651                                     const char *attrname); }
652 359     AUE_AIO_WAITCOMPLETE    STD     { ssize_t aio_waitcomplete( \
653                                     struct aiocb **aiocbp, \
654                                     struct timespec *timeout); }
655 360     AUE_GETRESUID   STD     { int getresuid(uid_t *ruid, uid_t *euid, \
656                                     uid_t *suid); }
657 361     AUE_GETRESGID   STD     { int getresgid(gid_t *rgid, gid_t *egid, \
658                                     gid_t *sgid); }
659 362     AUE_KQUEUE      STD     { int kqueue(void); }
660 363     AUE_KEVENT      COMPAT11 { int kevent(int fd, \
661                                     struct kevent_freebsd11 *changelist, \
662                                     int nchanges, \
663                                     struct kevent_freebsd11 *eventlist, \
664                                     int nevents, \
665                                     const struct timespec *timeout); }
666 364     AUE_NULL        UNIMPL  __cap_get_proc
667 365     AUE_NULL        UNIMPL  __cap_set_proc
668 366     AUE_NULL        UNIMPL  __cap_get_fd
669 367     AUE_NULL        UNIMPL  __cap_get_file
670 368     AUE_NULL        UNIMPL  __cap_set_fd
671 369     AUE_NULL        UNIMPL  __cap_set_file
672 370     AUE_NULL        UNIMPL  nosys
673 371     AUE_EXTATTR_SET_FD      STD     { ssize_t extattr_set_fd(int fd, \
674                                     int attrnamespace, const char *attrname, \
675                                     void *data, size_t nbytes); }
676 372     AUE_EXTATTR_GET_FD      STD     { ssize_t extattr_get_fd(int fd, \
677                                     int attrnamespace, const char *attrname, \
678                                     void *data, size_t nbytes); }
679 373     AUE_EXTATTR_DELETE_FD   STD     { int extattr_delete_fd(int fd, \
680                                     int attrnamespace, \
681                                     const char *attrname); }
682 374     AUE_SETUGID     STD     { int __setugid(int flag); }
683 375     AUE_NULL        UNIMPL  nfsclnt
684 376     AUE_EACCESS     STD     { int eaccess(char *path, int amode); }
685 377     AUE_NULL        NOSTD|NOTSTATIC { int afs3_syscall(long syscall, \
686                                     long parm1, long parm2, long parm3, \
687                                     long parm4, long parm5, long parm6); }
688 378     AUE_NMOUNT      STD     { int nmount(struct iovec *iovp, \
689                                     unsigned int iovcnt, int flags); }
690 379     AUE_NULL        UNIMPL  kse_exit
691 380     AUE_NULL        UNIMPL  kse_wakeup
692 381     AUE_NULL        UNIMPL  kse_create
693 382     AUE_NULL        UNIMPL  kse_thr_interrupt
694 383     AUE_NULL        UNIMPL  kse_release
695 384     AUE_NULL        STD     { int __mac_get_proc(struct mac *mac_p); }
696 385     AUE_NULL        STD     { int __mac_set_proc(struct mac *mac_p); }
697 386     AUE_NULL        STD     { int __mac_get_fd(int fd, \
698                                     struct mac *mac_p); }
699 387     AUE_NULL        STD     { int __mac_get_file(const char *path_p, \
700                                     struct mac *mac_p); }
701 388     AUE_NULL        STD     { int __mac_set_fd(int fd, \
702                                     struct mac *mac_p); }
703 389     AUE_NULL        STD     { int __mac_set_file(const char *path_p, \
704                                     struct mac *mac_p); }
705 390     AUE_NULL        STD     { int kenv(int what, const char *name, \
706                                     char *value, int len); }
707 391     AUE_LCHFLAGS    STD     { int lchflags(const char *path, \
708                                     u_long flags); }
709 392     AUE_NULL        STD     { int uuidgen(struct uuid *store, \
710                                     int count); }
711 393     AUE_SENDFILE    STD     { int sendfile(int fd, int s, off_t offset, \
712                                     size_t nbytes, struct sf_hdtr *hdtr, \
713                                     off_t *sbytes, int flags); }
714 394     AUE_NULL        STD     { int mac_syscall(const char *policy, \
715                                     int call, void *arg); }
716 395     AUE_GETFSSTAT   COMPAT11 { int getfsstat(struct freebsd11_statfs *buf, \
717                                     long bufsize, int mode); }
718 396     AUE_STATFS      COMPAT11 { int statfs(char *path, \
719                                     struct freebsd11_statfs *buf); }
720 397     AUE_FSTATFS     COMPAT11 { int fstatfs(int fd, \
721                                     struct freebsd11_statfs *buf); }
722 398     AUE_FHSTATFS    COMPAT11 { int fhstatfs(const struct fhandle *u_fhp, \
723                                     struct freebsd11_statfs *buf); }
724 399     AUE_NULL        UNIMPL  nosys
725 400     AUE_SEMCLOSE    NOSTD   { int ksem_close(semid_t id); }
726 401     AUE_SEMPOST     NOSTD   { int ksem_post(semid_t id); }
727 402     AUE_SEMWAIT     NOSTD   { int ksem_wait(semid_t id); }
728 403     AUE_SEMTRYWAIT  NOSTD   { int ksem_trywait(semid_t id); }
729 404     AUE_SEMINIT     NOSTD   { int ksem_init(semid_t *idp, \
730                                     unsigned int value); }
731 405     AUE_SEMOPEN     NOSTD   { int ksem_open(semid_t *idp, \
732                                     const char *name, int oflag, \
733                                     mode_t mode, unsigned int value); }
734 406     AUE_SEMUNLINK   NOSTD   { int ksem_unlink(const char *name); }
735 407     AUE_SEMGETVALUE NOSTD   { int ksem_getvalue(semid_t id, int *val); }
736 408     AUE_SEMDESTROY  NOSTD   { int ksem_destroy(semid_t id); }
737 409     AUE_NULL        STD     { int __mac_get_pid(pid_t pid, \
738                                     struct mac *mac_p); }
739 410     AUE_NULL        STD     { int __mac_get_link(const char *path_p, \
740                                     struct mac *mac_p); }
741 411     AUE_NULL        STD     { int __mac_set_link(const char *path_p, \
742                                     struct mac *mac_p); }
743 412     AUE_EXTATTR_SET_LINK    STD     { ssize_t extattr_set_link( \
744                                     const char *path, int attrnamespace, \
745                                     const char *attrname, void *data, \
746                                     size_t nbytes); }
747 413     AUE_EXTATTR_GET_LINK    STD     { ssize_t extattr_get_link( \
748                                     const char *path, int attrnamespace, \
749                                     const char *attrname, void *data, \
750                                     size_t nbytes); }
751 414     AUE_EXTATTR_DELETE_LINK STD     { int extattr_delete_link( \
752                                     const char *path, int attrnamespace, \
753                                     const char *attrname); }
754 415     AUE_NULL        STD     { int __mac_execve(char *fname, char **argv, \
755                                     char **envv, struct mac *mac_p); }
756 416     AUE_SIGACTION   STD     { int sigaction(int sig, \
757                                     const struct sigaction *act, \
758                                     struct sigaction *oact); }
759 417     AUE_SIGRETURN   STD     { int sigreturn( \
760                                     const struct __ucontext *sigcntxp); }
761 418     AUE_NULL        UNIMPL  __xstat
762 419     AUE_NULL        UNIMPL  __xfstat
763 420     AUE_NULL        UNIMPL  __xlstat
764 421     AUE_NULL        STD     { int getcontext(struct __ucontext *ucp); }
765 422     AUE_NULL        STD     { int setcontext( \
766                                     const struct __ucontext *ucp); }
767 423     AUE_NULL        STD     { int swapcontext(struct __ucontext *oucp, \
768                                     const struct __ucontext *ucp); }
769 424     AUE_SWAPOFF     STD     { int swapoff(const char *name); }
770 425     AUE_ACL_GET_LINK        STD     { int __acl_get_link(const char *path, \
771                                     acl_type_t type, struct acl *aclp); }
772 426     AUE_ACL_SET_LINK        STD     { int __acl_set_link(const char *path, \
773                                     acl_type_t type, struct acl *aclp); }
774 427     AUE_ACL_DELETE_LINK     STD     { int __acl_delete_link(const char *path, \
775                                     acl_type_t type); }
776 428     AUE_ACL_CHECK_LINK      STD     { int __acl_aclcheck_link(const char *path, \
777                                     acl_type_t type, struct acl *aclp); }
778 429     AUE_SIGWAIT     STD     { int sigwait(const sigset_t *set, \
779                                     int *sig); }
780 430     AUE_THR_CREATE  STD     { int thr_create(ucontext_t *ctx, long *id, \
781                                     int flags); }
782 431     AUE_THR_EXIT    STD     { void thr_exit(long *state); }
783 432     AUE_NULL        STD     { int thr_self(long *id); }
784 433     AUE_THR_KILL    STD     { int thr_kill(long id, int sig); }
785 434     AUE_NULL        UNIMPL  nosys
786 435     AUE_NULL        UNIMPL  nosys
787 436     AUE_JAIL_ATTACH STD     { int jail_attach(int jid); }
788 437     AUE_EXTATTR_LIST_FD     STD     { ssize_t extattr_list_fd(int fd, \
789                                     int attrnamespace, void *data, \
790                                     size_t nbytes); }
791 438     AUE_EXTATTR_LIST_FILE   STD     { ssize_t extattr_list_file( \
792                                     const char *path, int attrnamespace, \
793                                     void *data, size_t nbytes); }
794 439     AUE_EXTATTR_LIST_LINK   STD     { ssize_t extattr_list_link( \
795                                     const char *path, int attrnamespace, \
796                                     void *data, size_t nbytes); }
797 440     AUE_NULL        UNIMPL  kse_switchin
798 441     AUE_SEMWAIT     NOSTD   { int ksem_timedwait(semid_t id, \
799                                     const struct timespec *abstime); }
800 442     AUE_NULL        STD     { int thr_suspend( \
801                                     const struct timespec *timeout); }
802 443     AUE_NULL        STD     { int thr_wake(long id); }
803 444     AUE_MODUNLOAD   STD     { int kldunloadf(int fileid, int flags); }
804 445     AUE_AUDIT       STD     { int audit(const void *record, \
805                                     u_int length); }
806 446     AUE_AUDITON     STD     { int auditon(int cmd, void *data, \
807                                     u_int length); }
808 447     AUE_GETAUID     STD     { int getauid(uid_t *auid); }
809 448     AUE_SETAUID     STD     { int setauid(uid_t *auid); }
810 449     AUE_GETAUDIT    STD     { int getaudit(struct auditinfo *auditinfo); }
811 450     AUE_SETAUDIT    STD     { int setaudit(struct auditinfo *auditinfo); }
812 451     AUE_GETAUDIT_ADDR       STD     { int getaudit_addr( \
813                                     struct auditinfo_addr *auditinfo_addr, \
814                                     u_int length); }
815 452     AUE_SETAUDIT_ADDR       STD     { int setaudit_addr( \
816                                     struct auditinfo_addr *auditinfo_addr, \
817                                     u_int length); }
818 453     AUE_AUDITCTL    STD     { int auditctl(char *path); }
819 454     AUE_NULL        STD     { int _umtx_op(void *obj, int op, \
820                                     u_long val, void *uaddr1, void *uaddr2); }
821 455     AUE_THR_NEW     STD     { int thr_new(struct thr_param *param, \
822                                     int param_size); }
823 456     AUE_NULL        STD     { int sigqueue(pid_t pid, int signum, void *value); }
824 457     AUE_MQ_OPEN     NOSTD   { int kmq_open(const char *path, int flags, \
825                                     mode_t mode, const struct mq_attr *attr); }
826 458     AUE_MQ_SETATTR  NOSTD   { int kmq_setattr(int mqd,              \
827                                     const struct mq_attr *attr,         \
828                                     struct mq_attr *oattr); }
829 459     AUE_MQ_TIMEDRECEIVE     NOSTD   { int kmq_timedreceive(int mqd, \
830                                     char *msg_ptr, size_t msg_len,      \
831                                     unsigned *msg_prio,                 \
832                                     const struct timespec *abs_timeout); }
833 460     AUE_MQ_TIMEDSEND        NOSTD   { int kmq_timedsend(int mqd,            \
834                                     const char *msg_ptr, size_t msg_len,\
835                                     unsigned msg_prio,                  \
836                                     const struct timespec *abs_timeout);}
837 461     AUE_MQ_NOTIFY   NOSTD   { int kmq_notify(int mqd,               \
838                                     const struct sigevent *sigev); }
839 462     AUE_MQ_UNLINK   NOSTD   { int kmq_unlink(const char *path); }
840 463     AUE_NULL        STD     { int abort2(const char *why, int nargs, void **args); }
841 464     AUE_NULL        STD     { int thr_set_name(long id, const char *name); }
842 465     AUE_AIO_FSYNC   STD     { int aio_fsync(int op, struct aiocb *aiocbp); }
843 466     AUE_RTPRIO      STD     { int rtprio_thread(int function, \
844                                     lwpid_t lwpid, struct rtprio *rtp); }
845 467     AUE_NULL        UNIMPL  nosys
846 468     AUE_NULL        UNIMPL  nosys
847 469     AUE_NULL        UNIMPL  __getpath_fromfd
848 470     AUE_NULL        UNIMPL  __getpath_fromaddr
849 471     AUE_SCTP_PEELOFF        NOSTD   { int sctp_peeloff(int sd, uint32_t name); }
850 472     AUE_SCTP_GENERIC_SENDMSG        NOSTD   { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
851                                     caddr_t to, __socklen_t tolen, \
852                                     struct sctp_sndrcvinfo *sinfo, int flags); }
853 473     AUE_SCTP_GENERIC_SENDMSG_IOV    NOSTD   { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
854                                     caddr_t to, __socklen_t tolen, \
855                                     struct sctp_sndrcvinfo *sinfo, int flags); }
856 474     AUE_SCTP_GENERIC_RECVMSG        NOSTD   { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
857                                     struct sockaddr * from, __socklen_t *fromlenaddr, \
858                                     struct sctp_sndrcvinfo *sinfo, int *msg_flags); }
859 475     AUE_PREAD       STD     { ssize_t pread(int fd, void *buf, \
860                                     size_t nbyte, off_t offset); }
861 476     AUE_PWRITE      STD     { ssize_t pwrite(int fd, const void *buf, \
862                                     size_t nbyte, off_t offset); }
863 477     AUE_MMAP        STD     { caddr_t mmap(caddr_t addr, size_t len, \
864                                     int prot, int flags, int fd, off_t pos); }
865 478     AUE_LSEEK       STD     { off_t lseek(int fd, off_t offset, \
866                                     int whence); }
867 479     AUE_TRUNCATE    STD     { int truncate(char *path, off_t length); }
868 480     AUE_FTRUNCATE   STD     { int ftruncate(int fd, off_t length); }
869 481     AUE_THR_KILL2   STD     { int thr_kill2(pid_t pid, long id, int sig); }
870 482     AUE_SHMOPEN     STD     { int shm_open(const char *path, int flags, \
871                                     mode_t mode); }
872 483     AUE_SHMUNLINK   STD     { int shm_unlink(const char *path); }
873 484     AUE_NULL        STD     { int cpuset(cpusetid_t *setid); }
874 485     AUE_NULL        STD     { int cpuset_setid(cpuwhich_t which, id_t id, \
875                                     cpusetid_t setid); }
876 486     AUE_NULL        STD     { int cpuset_getid(cpulevel_t level, \
877                                     cpuwhich_t which, id_t id, \
878                                     cpusetid_t *setid); }
879 487     AUE_NULL        STD     { int cpuset_getaffinity(cpulevel_t level, \
880                                     cpuwhich_t which, id_t id, size_t cpusetsize, \
881                                     cpuset_t *mask); }
882 488     AUE_NULL        STD     { int cpuset_setaffinity(cpulevel_t level, \
883                                     cpuwhich_t which, id_t id, size_t cpusetsize, \
884                                     const cpuset_t *mask); }
885 489     AUE_FACCESSAT   STD     { int faccessat(int fd, char *path, int amode, \
886                                     int flag); }
887 490     AUE_FCHMODAT    STD     { int fchmodat(int fd, char *path, mode_t mode, \
888                                     int flag); }
889 491     AUE_FCHOWNAT    STD     { int fchownat(int fd, char *path, uid_t uid, \
890                                     gid_t gid, int flag); }
891 492     AUE_FEXECVE     STD     { int fexecve(int fd, char **argv, \
892                                     char **envv); }
893 493     AUE_FSTATAT     COMPAT11 { int fstatat(int fd, char *path, \
894                                     struct freebsd11_stat *buf, int flag); }
895 494     AUE_FUTIMESAT   STD     { int futimesat(int fd, char *path, \
896                                     struct timeval *times); }
897 495     AUE_LINKAT      STD     { int linkat(int fd1, char *path1, int fd2, \
898                                     char *path2, int flag); }
899 496     AUE_MKDIRAT     STD     { int mkdirat(int fd, char *path, mode_t mode); }
900 497     AUE_MKFIFOAT    STD     { int mkfifoat(int fd, char *path, mode_t mode); }
901 498     AUE_MKNODAT     COMPAT11 { int mknodat(int fd, char *path, mode_t mode, \
902                                     uint32_t dev); }
903 ; XXX: see the comment for open
904 499     AUE_OPENAT_RWTC STD     { int openat(int fd, char *path, int flag, \
905                                     mode_t mode); }
906 500     AUE_READLINKAT  STD     { int readlinkat(int fd, char *path, char *buf, \
907                                     size_t bufsize); }
908 501     AUE_RENAMEAT    STD     { int renameat(int oldfd, char *old, int newfd, \
909                                      char *new); }
910 502     AUE_SYMLINKAT   STD     { int symlinkat(char *path1, int fd, \
911                                      char *path2); }
912 503     AUE_UNLINKAT    STD     { int unlinkat(int fd, char *path, int flag); }
913 504     AUE_POSIX_OPENPT        STD     { int posix_openpt(int flags); }
914 ; 505 is initialised by the kgssapi code, if present.
915 505     AUE_NULL        NOSTD   { int gssd_syscall(char *path); }
916 506     AUE_JAIL_GET    STD     { int jail_get(struct iovec *iovp, \
917                                     unsigned int iovcnt, int flags); }
918 507     AUE_JAIL_SET    STD     { int jail_set(struct iovec *iovp, \
919                                     unsigned int iovcnt, int flags); }
920 508     AUE_JAIL_REMOVE STD     { int jail_remove(int jid); }
921 509     AUE_CLOSEFROM   STD     { int closefrom(int lowfd); }
922 510     AUE_SEMCTL      NOSTD   { int __semctl(int semid, int semnum, \
923                                     int cmd, union semun *arg); }
924 511     AUE_MSGCTL      NOSTD   { int msgctl(int msqid, int cmd, \
925                                     struct msqid_ds *buf); }
926 512     AUE_SHMCTL      NOSTD   { int shmctl(int shmid, int cmd, \
927                                     struct shmid_ds *buf); }
928 513     AUE_LPATHCONF   STD     { int lpathconf(char *path, int name); }
929 514     AUE_NULL        OBSOL   cap_new
930 515     AUE_CAP_RIGHTS_GET      STD     { int __cap_rights_get(int version, \
931                                     int fd, cap_rights_t *rightsp); }
932 516     AUE_CAP_ENTER   STD     { int cap_enter(void); }
933 517     AUE_CAP_GETMODE STD     { int cap_getmode(u_int *modep); }
934 518     AUE_PDFORK      STD     { int pdfork(int *fdp, int flags); }
935 519     AUE_PDKILL      STD     { int pdkill(int fd, int signum); }
936 520     AUE_PDGETPID    STD     { int pdgetpid(int fd, pid_t *pidp); }
937 521     AUE_PDWAIT      UNIMPL  pdwait4
938 522     AUE_SELECT      STD     { int pselect(int nd, fd_set *in, \
939                                     fd_set *ou, fd_set *ex, \
940                                     const struct timespec *ts, \
941                                     const sigset_t *sm); }
942 523     AUE_GETLOGINCLASS       STD     { int getloginclass(char *namebuf, \
943                                     size_t namelen); }
944 524     AUE_SETLOGINCLASS       STD     { int setloginclass(const char *namebuf); }
945 525     AUE_NULL        STD     { int rctl_get_racct(const void *inbufp, \
946                                     size_t inbuflen, void *outbufp, \
947                                     size_t outbuflen); }
948 526     AUE_NULL        STD     { int rctl_get_rules(const void *inbufp, \
949                                     size_t inbuflen, void *outbufp, \
950                                     size_t outbuflen); }
951 527     AUE_NULL        STD     { int rctl_get_limits(const void *inbufp, \
952                                     size_t inbuflen, void *outbufp, \
953                                     size_t outbuflen); }
954 528     AUE_NULL        STD     { int rctl_add_rule(const void *inbufp, \
955                                     size_t inbuflen, void *outbufp, \
956                                     size_t outbuflen); }
957 529     AUE_NULL        STD     { int rctl_remove_rule(const void *inbufp, \
958                                     size_t inbuflen, void *outbufp, \
959                                     size_t outbuflen); }
960 530     AUE_POSIX_FALLOCATE     STD     { int posix_fallocate(int fd, \
961                                     off_t offset, off_t len); }
962 531     AUE_POSIX_FADVISE       STD     { int posix_fadvise(int fd, off_t offset, \
963                                     off_t len, int advice); }
964 532     AUE_WAIT6       STD     { int wait6(idtype_t idtype, id_t id, \
965                                     int *status, int options, \
966                                     struct __wrusage *wrusage, \
967                                     siginfo_t *info); }
968 533     AUE_CAP_RIGHTS_LIMIT    STD     { int cap_rights_limit(int fd, \
969                                             cap_rights_t *rightsp); }
970 534     AUE_CAP_IOCTLS_LIMIT    STD     { int cap_ioctls_limit(int fd, \
971                                             const u_long *cmds, size_t ncmds); }
972 535     AUE_CAP_IOCTLS_GET      STD     { ssize_t cap_ioctls_get(int fd, \
973                                             u_long *cmds, size_t maxcmds); }
974 536     AUE_CAP_FCNTLS_LIMIT    STD     { int cap_fcntls_limit(int fd, \
975                                             uint32_t fcntlrights); }
976 537     AUE_CAP_FCNTLS_GET      STD     { int cap_fcntls_get(int fd, \
977                                             uint32_t *fcntlrightsp); }
978 538     AUE_BINDAT      STD     { int bindat(int fd, int s, caddr_t name, \
979                                     int namelen); }
980 539     AUE_CONNECTAT   STD     { int connectat(int fd, int s, caddr_t name, \
981                                     int namelen); }
982 540     AUE_CHFLAGSAT   STD     { int chflagsat(int fd, const char *path, \
983                                     u_long flags, int atflag); }
984 541     AUE_ACCEPT      STD     { int accept4(int s, \
985                                     struct sockaddr * __restrict name, \
986                                     __socklen_t * __restrict anamelen, \
987                                     int flags); }
988 542     AUE_PIPE        STD     { int pipe2(int *fildes, int flags); }
989 543     AUE_AIO_MLOCK   STD     { int aio_mlock(struct aiocb *aiocbp); }
990 544     AUE_PROCCTL     STD     { int procctl(idtype_t idtype, id_t id, \
991                                     int com, void *data); }
992 545     AUE_POLL        STD     { int ppoll(struct pollfd *fds, u_int nfds, \
993                                     const struct timespec *ts, \
994                                     const sigset_t *set); }
995 546     AUE_FUTIMES     STD     { int futimens(int fd, \
996                                     struct timespec *times); }
997 547     AUE_FUTIMESAT   STD     { int utimensat(int fd, \
998                                     char *path, \
999                                     struct timespec *times, int flag); }
1000 548     AUE_NULL        STD     { int numa_getaffinity(cpuwhich_t which, \
1001                                     id_t id, \
1002                                     struct vm_domain_policy_entry *policy); }
1003 549     AUE_NULL        STD     { int numa_setaffinity(cpuwhich_t which, \
1004                                     id_t id, const struct \
1005                                     vm_domain_policy_entry *policy); }
1006 550     AUE_FSYNC       STD     { int fdatasync(int fd); }
1007 551     AUE_FSTAT       STD     { int fstat(int fd, struct stat *sb); }
1008 552     AUE_FSTATAT     STD     { int fstatat(int fd, char *path, \
1009                                     struct stat *buf, int flag); }
1010 553     AUE_FHSTAT      STD     { int fhstat(const struct fhandle *u_fhp, \
1011                                     struct stat *sb); }
1012 554     AUE_GETDIRENTRIES STD   { ssize_t getdirentries(int fd, char *buf, \
1013                                     size_t count, off_t *basep); }
1014 555     AUE_STATFS      STD     { int statfs(char *path, struct statfs *buf); }
1015 556     AUE_FSTATFS     STD     { int fstatfs(int fd, struct statfs *buf); }
1016 557     AUE_GETFSSTAT   STD     { int getfsstat(struct statfs *buf, \
1017                                     long bufsize, int mode); }
1018 558     AUE_FHSTATFS    STD     { int fhstatfs(const struct fhandle *u_fhp, \
1019                                     struct statfs *buf); }
1020 559     AUE_MKNODAT     STD     { int mknodat(int fd, char *path, mode_t mode, \
1021                                     dev_t dev); }
1022 560     AUE_KEVENT      STD     { int kevent(int fd, \
1023                                     struct kevent *changelist, int nchanges, \
1024                                     struct kevent *eventlist, int nevents, \
1025                                     const struct timespec *timeout); }
1026
1027 ; Please copy any additions and changes to the following compatability tables:
1028 ; sys/compat/freebsd32/syscalls.master
1029 ; vim: syntax=off