1 $FreeBSD: releng/11.0/sys/kern/syscalls.master 303854 2016-08-08 20:23:11Z bdrewery $
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, 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;	OBSOL	obsolete, not included in system, only specifies name
33;	UNIMPL	not implemented, placeholder only
34;	NOSTD	implemented but as a lkm that can be statically
35;		compiled in; sysent entry will be filled with lkmressys
36;		so the SYSCALL_MODULE macro works
37;	NOARGS	same as STD except do not create structure in sys/sysproto.h
38;	NODEF	same as STD except only have the entry in the syscall table
39;		added.  Meaning - do not create structure or function
40;		prototype in sys/sysproto.h
41;	NOPROTO	same as STD except do not create structure or
42;		function prototype in sys/sysproto.h.  Does add a
43;		definition to syscall.h besides adding a sysent.
44;	NOTSTATIC syscall is loadable
45;
46; Please copy any additions and changes to the following compatability tables:
47; sys/compat/freebsd32/syscalls.master
48
49; #ifdef's, etc. may be included, and are copied to the output files.
50
51#include <sys/param.h>
52#include <sys/sysent.h>
53#include <sys/sysproto.h>
54
55; Reserved/unimplemented system calls in the range 0-150 inclusive
56; are reserved for use in future Berkeley releases.
57; Additional system calls implemented in vendor and other
58; redistributions should be placed in the reserved range at the end
59; of the current calls.
60
610	AUE_NULL	STD	{ int nosys(void); } syscall nosys_args int
621	AUE_EXIT	STD	{ void sys_exit(int rval); } exit \
63				    sys_exit_args void
642	AUE_FORK	STD	{ int fork(void); }
653	AUE_NULL	STD	{ ssize_t read(int fd, void *buf, \
66				    size_t nbyte); }
674	AUE_NULL	STD	{ ssize_t write(int fd, const void *buf, \
68				    size_t nbyte); }
695	AUE_OPEN_RWTC	STD	{ int open(char *path, int flags, int mode); }
70; XXX should be		{ int open(const char *path, int flags, ...); }
71; but we're not ready for `const' or varargs.
72; XXX man page says `mode_t mode'.
736	AUE_CLOSE	STD	{ int close(int fd); }
747	AUE_WAIT4	STD	{ int wait4(int pid, int *status, \
75				    int options, struct rusage *rusage); }
768	AUE_CREAT	COMPAT	{ int creat(char *path, int mode); }
779	AUE_LINK	STD	{ int link(char *path, char *link); }
7810	AUE_UNLINK	STD	{ int unlink(char *path); }
7911	AUE_NULL	OBSOL	execv
8012	AUE_CHDIR	STD	{ int chdir(char *path); }
8113	AUE_FCHDIR	STD	{ int fchdir(int fd); }
8214	AUE_MKNOD	STD	{ int mknod(char *path, int mode, int dev); }
8315	AUE_CHMOD	STD	{ int chmod(char *path, int mode); }
8416	AUE_CHOWN	STD	{ int chown(char *path, int uid, int gid); }
8517	AUE_NULL	STD	{ int obreak(char *nsize); } break \
86				    obreak_args int
8718	AUE_GETFSSTAT	COMPAT4	{ int getfsstat(struct ostatfs *buf, \
88				    long bufsize, int flags); }
8919	AUE_LSEEK	COMPAT	{ long lseek(int fd, long offset, \
90				    int whence); }
9120	AUE_GETPID	STD	{ pid_t getpid(void); }
9221	AUE_MOUNT	STD	{ int mount(char *type, char *path, \
93				    int flags, caddr_t data); }
94; XXX `path' should have type `const char *' but we're not ready for that.
9522	AUE_UMOUNT	STD	{ int unmount(char *path, int flags); }
9623	AUE_SETUID	STD	{ int setuid(uid_t uid); }
9724	AUE_GETUID	STD	{ uid_t getuid(void); }
9825	AUE_GETEUID	STD	{ uid_t geteuid(void); }
9926	AUE_PTRACE	STD	{ int ptrace(int req, pid_t pid, \
100				    caddr_t addr, int data); }
10127	AUE_RECVMSG	STD	{ int recvmsg(int s, struct msghdr *msg, \
102				    int flags); }
10328	AUE_SENDMSG	STD	{ int sendmsg(int s, struct msghdr *msg, \
104				    int flags); }
10529	AUE_RECVFROM	STD	{ int recvfrom(int s, caddr_t buf, \
106				    size_t len, int flags, \
107				    struct sockaddr * __restrict from, \
108				    __socklen_t * __restrict fromlenaddr); }
10930	AUE_ACCEPT	STD	{ int accept(int s, \
110				    struct sockaddr * __restrict name, \
111				    __socklen_t * __restrict anamelen); }
11231	AUE_GETPEERNAME	STD	{ int getpeername(int fdes, \
113				    struct sockaddr * __restrict asa, \
114				    __socklen_t * __restrict alen); }
11532	AUE_GETSOCKNAME	STD	{ int getsockname(int fdes, \
116				    struct sockaddr * __restrict asa, \
117				    __socklen_t * __restrict alen); }
11833	AUE_ACCESS	STD	{ int access(char *path, int amode); }
11934	AUE_CHFLAGS	STD	{ int chflags(const char *path, u_long flags); }
12035	AUE_FCHFLAGS	STD	{ int fchflags(int fd, u_long flags); }
12136	AUE_SYNC	STD	{ int sync(void); }
12237	AUE_KILL	STD	{ int kill(int pid, int signum); }
12338	AUE_STAT	COMPAT	{ int stat(char *path, struct ostat *ub); }
12439	AUE_GETPPID	STD	{ pid_t getppid(void); }
12540	AUE_LSTAT	COMPAT	{ int lstat(char *path, struct ostat *ub); }
12641	AUE_DUP		STD	{ int dup(u_int fd); }
12742	AUE_PIPE	COMPAT10	{ int pipe(void); }
12843	AUE_GETEGID	STD	{ gid_t getegid(void); }
12944	AUE_PROFILE	STD	{ int profil(caddr_t samples, size_t size, \
130				    size_t offset, u_int scale); }
13145	AUE_KTRACE	STD	{ int ktrace(const char *fname, int ops, \
132				    int facs, int pid); }
13346	AUE_SIGACTION	COMPAT	{ int sigaction(int signum, \
134				    struct osigaction *nsa, \
135				    struct osigaction *osa); }
13647	AUE_GETGID	STD	{ gid_t getgid(void); }
13748	AUE_SIGPROCMASK	COMPAT	{ int sigprocmask(int how, osigset_t mask); }
138; XXX note nonstandard (bogus) calling convention - the libc stub passes
139; us the mask, not a pointer to it, and we return the old mask as the
140; (int) return value.
14149	AUE_GETLOGIN	STD	{ int getlogin(char *namebuf, u_int \
142				    namelen); }
14350	AUE_SETLOGIN	STD	{ int setlogin(char *namebuf); }
14451	AUE_ACCT	STD	{ int acct(char *path); }
14552	AUE_SIGPENDING	COMPAT	{ int sigpending(void); }
14653	AUE_SIGALTSTACK	STD	{ int sigaltstack(stack_t *ss, \
147				    stack_t *oss); }
14854	AUE_IOCTL	STD	{ int ioctl(int fd, u_long com, \
149				    caddr_t data); }
15055	AUE_REBOOT	STD	{ int reboot(int opt); }
15156	AUE_REVOKE	STD	{ int revoke(char *path); }
15257	AUE_SYMLINK	STD	{ int symlink(char *path, char *link); }
15358	AUE_READLINK	STD	{ ssize_t readlink(char *path, char *buf, \
154				    size_t count); }
15559	AUE_EXECVE	STD	{ int execve(char *fname, char **argv, \
156				    char **envv); }
15760	AUE_UMASK	STD	{ int umask(int newmask); } umask umask_args \
158				    int
15961	AUE_CHROOT	STD	{ int chroot(char *path); }
16062	AUE_FSTAT	COMPAT	{ int fstat(int fd, struct ostat *sb); }
16163	AUE_NULL	COMPAT	{ int getkerninfo(int op, char *where, \
162				    size_t *size, int arg); } getkerninfo \
163				    getkerninfo_args int
16464	AUE_NULL	COMPAT	{ int getpagesize(void); } getpagesize \
165				    getpagesize_args int
16665	AUE_MSYNC	STD	{ int msync(void *addr, size_t len, \
167				    int flags); }
16866	AUE_VFORK	STD	{ int vfork(void); }
16967	AUE_NULL	OBSOL	vread
17068	AUE_NULL	OBSOL	vwrite
17169	AUE_SBRK	STD	{ int sbrk(int incr); }
17270	AUE_SSTK	STD	{ int sstk(int incr); }
17371	AUE_MMAP	COMPAT	{ int mmap(void *addr, int len, int prot, \
174				    int flags, int fd, long pos); }
17572	AUE_O_VADVISE	STD	{ int ovadvise(int anom); } vadvise \
176				    ovadvise_args int
17773	AUE_MUNMAP	STD	{ int munmap(void *addr, size_t len); }
17874	AUE_MPROTECT	STD	{ int mprotect(const void *addr, size_t len, \
179				    int prot); }
18075	AUE_MADVISE	STD	{ int madvise(void *addr, size_t len, \
181				    int behav); }
18276	AUE_NULL	OBSOL	vhangup
18377	AUE_NULL	OBSOL	vlimit
18478	AUE_MINCORE	STD	{ int mincore(const void *addr, size_t len, \
185				    char *vec); }
18679	AUE_GETGROUPS	STD	{ int getgroups(u_int gidsetsize, \
187				    gid_t *gidset); }
18880	AUE_SETGROUPS	STD	{ int setgroups(u_int gidsetsize, \
189				    gid_t *gidset); }
19081	AUE_GETPGRP	STD	{ int getpgrp(void); }
19182	AUE_SETPGRP	STD	{ int setpgid(int pid, int pgid); }
19283	AUE_SETITIMER	STD	{ int setitimer(u_int which, struct \
193				    itimerval *itv, struct itimerval *oitv); }
19484	AUE_WAIT4	COMPAT	{ int wait(void); }
19585	AUE_SWAPON	STD	{ int swapon(char *name); }
19686	AUE_GETITIMER	STD	{ int getitimer(u_int which, \
197				    struct itimerval *itv); }
19887	AUE_SYSCTL	COMPAT	{ int gethostname(char *hostname, \
199				    u_int len); } gethostname \
200				    gethostname_args int
20188	AUE_SYSCTL	COMPAT	{ int sethostname(char *hostname, \
202				    u_int len); } sethostname \
203				    sethostname_args int
20489	AUE_GETDTABLESIZE	STD	{ int getdtablesize(void); }
20590	AUE_DUP2	STD	{ int dup2(u_int from, u_int to); }
20691	AUE_NULL	UNIMPL	getdopt
20792	AUE_FCNTL	STD	{ int fcntl(int fd, int cmd, long arg); }
208; XXX should be	{ int fcntl(int fd, int cmd, ...); }
209; but we're not ready for varargs.
21093	AUE_SELECT	STD	{ int select(int nd, fd_set *in, fd_set *ou, \
211				    fd_set *ex, struct timeval *tv); }
21294	AUE_NULL	UNIMPL	setdopt
21395	AUE_FSYNC	STD	{ int fsync(int fd); }
21496	AUE_SETPRIORITY	STD	{ int setpriority(int which, int who, \
215				    int prio); }
21697	AUE_SOCKET	STD	{ int socket(int domain, int type, \
217				    int protocol); }
21898	AUE_CONNECT	STD	{ int connect(int s, caddr_t name, \
219				    int namelen); }
22099	AUE_ACCEPT	COMPAT|NOARGS { int accept(int s, caddr_t name, \
221				    int *anamelen); } accept accept_args int
222100	AUE_GETPRIORITY	STD	{ int getpriority(int which, int who); }
223101	AUE_SEND	COMPAT	{ int send(int s, caddr_t buf, int len, \
224				    int flags); }
225102	AUE_RECV	COMPAT	{ int recv(int s, caddr_t buf, int len, \
226				    int flags); }
227103	AUE_SIGRETURN	COMPAT	{ int sigreturn( \
228				    struct osigcontext *sigcntxp); }
229104	AUE_BIND	STD	{ int bind(int s, caddr_t name, \
230				    int namelen); }
231105	AUE_SETSOCKOPT	STD	{ int setsockopt(int s, int level, int name, \
232				    caddr_t val, int valsize); }
233106	AUE_LISTEN	STD	{ int listen(int s, int backlog); }
234107	AUE_NULL	OBSOL	vtimes
235108	AUE_NULL	COMPAT	{ int sigvec(int signum, struct sigvec *nsv, \
236				    struct sigvec *osv); }
237109	AUE_NULL	COMPAT	{ int sigblock(int mask); }
238110	AUE_NULL	COMPAT	{ int sigsetmask(int mask); }
239111	AUE_NULL	COMPAT	{ int sigsuspend(osigset_t mask); }
240; XXX note nonstandard (bogus) calling convention - the libc stub passes
241; us the mask, not a pointer to it.
242112	AUE_NULL	COMPAT	{ int sigstack(struct sigstack *nss, \
243				    struct sigstack *oss); }
244113	AUE_RECVMSG	COMPAT	{ int recvmsg(int s, struct omsghdr *msg, \
245				    int flags); }
246114	AUE_SENDMSG	COMPAT	{ int sendmsg(int s, caddr_t msg, \
247				    int flags); }
248115	AUE_NULL	OBSOL	vtrace
249116	AUE_GETTIMEOFDAY	STD	{ int gettimeofday(struct timeval *tp, \
250				    struct timezone *tzp); }
251117	AUE_GETRUSAGE	STD	{ int getrusage(int who, \
252				    struct rusage *rusage); }
253118	AUE_GETSOCKOPT	STD	{ int getsockopt(int s, int level, int name, \
254				    caddr_t val, int *avalsize); }
255119	AUE_NULL	UNIMPL	resuba (BSD/OS 2.x)
256120	AUE_READV	STD	{ int readv(int fd, struct iovec *iovp, \
257				    u_int iovcnt); }
258121	AUE_WRITEV	STD	{ int writev(int fd, struct iovec *iovp, \
259				    u_int iovcnt); }
260122	AUE_SETTIMEOFDAY	STD	{ int settimeofday(struct timeval *tv, \
261				    struct timezone *tzp); }
262123	AUE_FCHOWN	STD	{ int fchown(int fd, int uid, int gid); }
263124	AUE_FCHMOD	STD	{ int fchmod(int fd, int mode); }
264125	AUE_RECVFROM	COMPAT|NOARGS { int recvfrom(int s, caddr_t buf, \
265				    size_t len, int flags, caddr_t from, int \
266				    *fromlenaddr); } recvfrom recvfrom_args \
267				    int
268126	AUE_SETREUID	STD	{ int setreuid(int ruid, int euid); }
269127	AUE_SETREGID	STD	{ int setregid(int rgid, int egid); }
270128	AUE_RENAME	STD	{ int rename(char *from, char *to); }
271129	AUE_TRUNCATE	COMPAT	{ int truncate(char *path, long length); }
272130	AUE_FTRUNCATE	COMPAT	{ int ftruncate(int fd, long length); }
273131	AUE_FLOCK	STD	{ int flock(int fd, int how); }
274132	AUE_MKFIFO	STD	{ int mkfifo(char *path, int mode); }
275133	AUE_SENDTO	STD	{ int sendto(int s, caddr_t buf, size_t len, \
276				    int flags, caddr_t to, int tolen); }
277134	AUE_SHUTDOWN	STD	{ int shutdown(int s, int how); }
278135	AUE_SOCKETPAIR	STD	{ int socketpair(int domain, int type, \
279				    int protocol, int *rsv); }
280136	AUE_MKDIR	STD	{ int mkdir(char *path, int mode); }
281137	AUE_RMDIR	STD	{ int rmdir(char *path); }
282138	AUE_UTIMES	STD	{ int utimes(char *path, \
283				    struct timeval *tptr); }
284139	AUE_NULL	OBSOL	4.2 sigreturn
285140	AUE_ADJTIME	STD	{ int adjtime(struct timeval *delta, \
286				    struct timeval *olddelta); }
287141	AUE_GETPEERNAME	COMPAT	{ int getpeername(int fdes, caddr_t asa, \
288				    int *alen); }
289142	AUE_SYSCTL	COMPAT	{ long gethostid(void); }
290143	AUE_SYSCTL	COMPAT	{ int sethostid(long hostid); }
291144	AUE_GETRLIMIT	COMPAT	{ int getrlimit(u_int which, struct \
292				    orlimit *rlp); }
293145	AUE_SETRLIMIT	COMPAT	{ int setrlimit(u_int which, \
294				    struct orlimit *rlp); }
295146	AUE_KILLPG	COMPAT	{ int killpg(int pgid, int signum); }
296147	AUE_SETSID	STD	{ int setsid(void); }
297148	AUE_QUOTACTL	STD	{ int quotactl(char *path, int cmd, int uid, \
298				    caddr_t arg); }
299149	AUE_O_QUOTA	COMPAT	{ int quota(void); }
300150	AUE_GETSOCKNAME	COMPAT|NOARGS { int getsockname(int fdec, \
301				    caddr_t asa, int *alen); } getsockname \
302				    getsockname_args int
303
304; Syscalls 151-180 inclusive are reserved for vendor-specific
305; system calls.  (This includes various calls added for compatibity
306; with other Unix variants.)
307; Some of these calls are now supported by BSD...
308151	AUE_NULL	UNIMPL	sem_lock (BSD/OS 2.x)
309152	AUE_NULL	UNIMPL	sem_wakeup (BSD/OS 2.x)
310153	AUE_NULL	UNIMPL	asyncdaemon (BSD/OS 2.x)
311; 154 is initialised by the NLM code, if present.
312154	AUE_NULL	NOSTD	{ int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }
313; 155 is initialized by the NFS code, if present.
314155	AUE_NFS_SVC	NOSTD	{ int nfssvc(int flag, caddr_t argp); }
315156	AUE_GETDIRENTRIES	COMPAT	{ int getdirentries(int fd, char *buf, \
316				    u_int count, long *basep); }
317157	AUE_STATFS	COMPAT4	{ int statfs(char *path, \
318				    struct ostatfs *buf); }
319158	AUE_FSTATFS	COMPAT4	{ int fstatfs(int fd, \
320				    struct ostatfs *buf); }
321159	AUE_NULL	UNIMPL	nosys
322160	AUE_LGETFH	STD	{ int lgetfh(char *fname, \
323				    struct fhandle *fhp); }
324161	AUE_NFS_GETFH	STD	{ int getfh(char *fname, \
325				    struct fhandle *fhp); }
326162	AUE_SYSCTL	COMPAT4	{ int getdomainname(char *domainname, \
327				    int len); }
328163	AUE_SYSCTL	COMPAT4	{ int setdomainname(char *domainname, \
329				    int len); }
330164	AUE_NULL	COMPAT4	{ int uname(struct utsname *name); }
331165	AUE_SYSARCH	STD	{ int sysarch(int op, char *parms); }
332166	AUE_RTPRIO	STD	{ int rtprio(int function, pid_t pid, \
333				    struct rtprio *rtp); }
334167	AUE_NULL	UNIMPL	nosys
335168	AUE_NULL	UNIMPL	nosys
336169	AUE_SEMSYS	NOSTD	{ int semsys(int which, int a2, int a3, \
337				    int a4, int a5); }
338; XXX should be	{ int semsys(int which, ...); }
339170	AUE_MSGSYS	NOSTD	{ int msgsys(int which, int a2, int a3, \
340				    int a4, int a5, int a6); }
341; XXX should be	{ int msgsys(int which, ...); }
342171	AUE_SHMSYS	NOSTD	{ int shmsys(int which, int a2, int a3, \
343				    int a4); }
344; XXX should be	{ int shmsys(int which, ...); }
345172	AUE_NULL	UNIMPL	nosys
346173	AUE_PREAD	COMPAT6	{ ssize_t pread(int fd, void *buf, \
347				    size_t nbyte, int pad, off_t offset); }
348174	AUE_PWRITE	COMPAT6	{ ssize_t pwrite(int fd, \
349				    const void *buf, \
350				    size_t nbyte, int pad, off_t offset); }
351175	AUE_NULL	STD	{ int setfib(int fibnum); }
352176	AUE_NTP_ADJTIME	STD	{ int ntp_adjtime(struct timex *tp); }
353177	AUE_NULL	UNIMPL	sfork (BSD/OS 2.x)
354178	AUE_NULL	UNIMPL	getdescriptor (BSD/OS 2.x)
355179	AUE_NULL	UNIMPL	setdescriptor (BSD/OS 2.x)
356180	AUE_NULL	UNIMPL	nosys
357
358; Syscalls 181-199 are used by/reserved for BSD
359181	AUE_SETGID	STD	{ int setgid(gid_t gid); }
360182	AUE_SETEGID	STD	{ int setegid(gid_t egid); }
361183	AUE_SETEUID	STD	{ int seteuid(uid_t euid); }
362184	AUE_NULL	UNIMPL	lfs_bmapv
363185	AUE_NULL	UNIMPL	lfs_markv
364186	AUE_NULL	UNIMPL	lfs_segclean
365187	AUE_NULL	UNIMPL	lfs_segwait
366188	AUE_STAT	STD	{ int stat(char *path, struct stat *ub); }
367189	AUE_FSTAT	STD	{ int fstat(int fd, struct stat *sb); }
368190	AUE_LSTAT	STD	{ int lstat(char *path, struct stat *ub); }
369191	AUE_PATHCONF	STD	{ int pathconf(char *path, int name); }
370192	AUE_FPATHCONF	STD	{ int fpathconf(int fd, int name); }
371193	AUE_NULL	UNIMPL	nosys
372194	AUE_GETRLIMIT	STD	{ int getrlimit(u_int which, \
373				    struct rlimit *rlp); } getrlimit \
374				    __getrlimit_args int
375195	AUE_SETRLIMIT	STD	{ int setrlimit(u_int which, \
376				    struct rlimit *rlp); } setrlimit \
377				    __setrlimit_args int
378196	AUE_GETDIRENTRIES	STD	{ int getdirentries(int fd, char *buf, \
379				    u_int count, long *basep); }
380197	AUE_MMAP	COMPAT6	{ caddr_t mmap(caddr_t addr, \
381				    size_t len, int prot, int flags, int fd, \
382				    int pad, off_t pos); }
383198	AUE_NULL	NOPROTO	{ int nosys(void); } __syscall \
384				    __syscall_args int
385199	AUE_LSEEK	COMPAT6	{ off_t lseek(int fd, int pad, \
386				    off_t offset, int whence); }
387200	AUE_TRUNCATE	COMPAT6	{ int truncate(char *path, int pad, \
388				    off_t length); }
389201	AUE_FTRUNCATE	COMPAT6	{ int ftruncate(int fd, int pad, \
390				    off_t length); }
391202	AUE_SYSCTL	STD	{ int __sysctl(int *name, u_int namelen, \
392				    void *old, size_t *oldlenp, void *new, \
393				    size_t newlen); } __sysctl sysctl_args int
394203	AUE_MLOCK	STD	{ int mlock(const void *addr, size_t len); }
395204	AUE_MUNLOCK	STD	{ int munlock(const void *addr, size_t len); }
396205	AUE_UNDELETE	STD	{ int undelete(char *path); }
397206	AUE_FUTIMES	STD	{ int futimes(int fd, struct timeval *tptr); }
398207	AUE_GETPGID	STD	{ int getpgid(pid_t pid); }
399208	AUE_NULL	UNIMPL	newreboot (NetBSD)
400209	AUE_POLL	STD	{ int poll(struct pollfd *fds, u_int nfds, \
401				    int timeout); }
402
403;
404; The following are reserved for loadable syscalls
405;
406210	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
407211	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
408212	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
409213	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
410214	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
411215	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
412216	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
413217	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
414218	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
415219	AUE_NULL	NODEF|NOTSTATIC	lkmnosys lkmnosys nosys_args int
416
417;
418; The following were introduced with NetBSD/4.4Lite-2
419220	AUE_SEMCTL	COMPAT7|NOSTD { int __semctl(int semid, int semnum, \
420				    int cmd, union semun_old *arg); }
421221	AUE_SEMGET	NOSTD	{ int semget(key_t key, int nsems, \
422				    int semflg); }
423222	AUE_SEMOP	NOSTD	{ int semop(int semid, struct sembuf *sops, \
424				    size_t nsops); }
425223	AUE_NULL	UNIMPL	semconfig
426224	AUE_MSGCTL	COMPAT7|NOSTD { int msgctl(int msqid, int cmd, \
427				    struct msqid_ds_old *buf); }
428225	AUE_MSGGET	NOSTD	{ int msgget(key_t key, int msgflg); }
429226	AUE_MSGSND	NOSTD	{ int msgsnd(int msqid, const void *msgp, \
430				    size_t msgsz, int msgflg); }
431227	AUE_MSGRCV	NOSTD	{ int msgrcv(int msqid, void *msgp, \
432				    size_t msgsz, long msgtyp, int msgflg); }
433228	AUE_SHMAT	NOSTD	{ int shmat(int shmid, const void *shmaddr, \
434				    int shmflg); }
435229	AUE_SHMCTL	COMPAT7|NOSTD { int shmctl(int shmid, int cmd, \
436				    struct shmid_ds_old *buf); }
437230	AUE_SHMDT	NOSTD	{ int shmdt(const void *shmaddr); }
438231	AUE_SHMGET	NOSTD	{ int shmget(key_t key, size_t size, \
439				    int shmflg); }
440;
441232	AUE_NULL	STD	{ int clock_gettime(clockid_t clock_id, \
442				    struct timespec *tp); }
443233	AUE_CLOCK_SETTIME	STD	{ int clock_settime( \
444				    clockid_t clock_id, \
445				    const struct timespec *tp); }
446234	AUE_NULL	STD	{ int clock_getres(clockid_t clock_id, \
447				    struct timespec *tp); }
448235	AUE_NULL	STD	{ int ktimer_create(clockid_t clock_id, \
449				    struct sigevent *evp, int *timerid); }
450236	AUE_NULL	STD	{ int ktimer_delete(int timerid); }
451237	AUE_NULL	STD	{ int ktimer_settime(int timerid, int flags, \
452				    const struct itimerspec *value, \
453				    struct itimerspec *ovalue); }
454238	AUE_NULL	STD	{ int ktimer_gettime(int timerid, struct \
455				    itimerspec *value); }
456239	AUE_NULL	STD	{ int ktimer_getoverrun(int timerid); }
457240	AUE_NULL	STD	{ int nanosleep(const struct timespec *rqtp, \
458				    struct timespec *rmtp); }
459241	AUE_NULL	STD	{ int ffclock_getcounter(ffcounter *ffcount); }
460242	AUE_NULL	STD	{ int ffclock_setestimate( \
461				    struct ffclock_estimate *cest); }
462243	AUE_NULL	STD	{ int ffclock_getestimate( \
463				    struct ffclock_estimate *cest); }
464244	AUE_NULL	UNIMPL	nosys
465245	AUE_NULL	UNIMPL	nosys
466246	AUE_NULL	UNIMPL	nosys
467247	AUE_NULL	STD	{ int clock_getcpuclockid2(id_t id,\
468				    int which, clockid_t *clock_id); }
469248	AUE_NULL	STD	{ int ntp_gettime(struct ntptimeval *ntvp); }
470249	AUE_NULL	UNIMPL	nosys
471; syscall numbers initially used in OpenBSD
472250	AUE_MINHERIT	STD	{ int minherit(void *addr, size_t len, \
473				    int inherit); }
474251	AUE_RFORK	STD	{ int rfork(int flags); }
475252	AUE_POLL	STD	{ int openbsd_poll(struct pollfd *fds, \
476				    u_int nfds, int timeout); }
477253	AUE_ISSETUGID	STD	{ int issetugid(void); }
478254	AUE_LCHOWN	STD	{ int lchown(char *path, int uid, int gid); }
479255	AUE_NULL	STD	{ int aio_read(struct aiocb *aiocbp); }
480256	AUE_NULL	STD	{ int aio_write(struct aiocb *aiocbp); }
481257	AUE_NULL	STD	{ int lio_listio(int mode, \
482				    struct aiocb * const *acb_list, \
483				    int nent, struct sigevent *sig); }
484258	AUE_NULL	UNIMPL	nosys
485259	AUE_NULL	UNIMPL	nosys
486260	AUE_NULL	UNIMPL	nosys
487261	AUE_NULL	UNIMPL	nosys
488262	AUE_NULL	UNIMPL	nosys
489263	AUE_NULL	UNIMPL	nosys
490264	AUE_NULL	UNIMPL	nosys
491265	AUE_NULL	UNIMPL	nosys
492266	AUE_NULL	UNIMPL	nosys
493267	AUE_NULL	UNIMPL	nosys
494268	AUE_NULL	UNIMPL	nosys
495269	AUE_NULL	UNIMPL	nosys
496270	AUE_NULL	UNIMPL	nosys
497271	AUE_NULL	UNIMPL	nosys
498272	AUE_O_GETDENTS	STD	{ int getdents(int fd, char *buf, \
499				    size_t count); }
500273	AUE_NULL	UNIMPL	nosys
501274	AUE_LCHMOD	STD	{ int lchmod(char *path, mode_t mode); }
502275	AUE_LCHOWN	NOPROTO	{ int lchown(char *path, uid_t uid, \
503				    gid_t gid); } netbsd_lchown lchown_args \
504				    int
505276	AUE_LUTIMES	STD	{ int lutimes(char *path, \
506				    struct timeval *tptr); }
507277	AUE_MSYNC	NOPROTO	{ int msync(void *addr, size_t len, \
508				    int flags); } netbsd_msync msync_args int
509278	AUE_STAT	STD	{ int nstat(char *path, struct nstat *ub); }
510279	AUE_FSTAT	STD	{ int nfstat(int fd, struct nstat *sb); }
511280	AUE_LSTAT	STD	{ int nlstat(char *path, struct nstat *ub); }
512281	AUE_NULL	UNIMPL	nosys
513282	AUE_NULL	UNIMPL	nosys
514283	AUE_NULL	UNIMPL	nosys
515284	AUE_NULL	UNIMPL	nosys
516285	AUE_NULL	UNIMPL	nosys
517286	AUE_NULL	UNIMPL	nosys
518287	AUE_NULL	UNIMPL	nosys
519288	AUE_NULL	UNIMPL	nosys
520; 289 and 290 from NetBSD (OpenBSD: 267 and 268)
521289	AUE_PREADV	STD	{ ssize_t preadv(int fd, struct iovec *iovp, \
522					u_int iovcnt, off_t offset); }
523290	AUE_PWRITEV	STD	{ ssize_t pwritev(int fd, struct iovec *iovp, \
524					u_int iovcnt, off_t offset); }
525291	AUE_NULL	UNIMPL	nosys
526292	AUE_NULL	UNIMPL	nosys
527293	AUE_NULL	UNIMPL	nosys
528294	AUE_NULL	UNIMPL	nosys
529295	AUE_NULL	UNIMPL	nosys
530296	AUE_NULL	UNIMPL	nosys
531; XXX 297 is 300 in NetBSD 
532297	AUE_FHSTATFS	COMPAT4	{ int fhstatfs( \
533				    const struct fhandle *u_fhp, \
534				    struct ostatfs *buf); }
535298	AUE_FHOPEN	STD	{ int fhopen(const struct fhandle *u_fhp, \
536				    int flags); }
537299	AUE_FHSTAT	STD	{ int fhstat(const struct fhandle *u_fhp, \
538				    struct stat *sb); }
539; syscall numbers for FreeBSD
540300	AUE_NULL	STD	{ int modnext(int modid); }
541301	AUE_NULL	STD	{ int modstat(int modid, \
542				    struct module_stat *stat); }
543302	AUE_NULL	STD	{ int modfnext(int modid); }
544303	AUE_NULL	STD	{ int modfind(const char *name); }
545304	AUE_MODLOAD	STD	{ int kldload(const char *file); }
546305	AUE_MODUNLOAD	STD	{ int kldunload(int fileid); }
547306	AUE_NULL	STD	{ int kldfind(const char *file); }
548307	AUE_NULL	STD	{ int kldnext(int fileid); }
549308	AUE_NULL	STD	{ int kldstat(int fileid, struct \
550				    kld_file_stat* stat); }
551309	AUE_NULL	STD	{ int kldfirstmod(int fileid); }
552310	AUE_GETSID	STD	{ int getsid(pid_t pid); }
553311	AUE_SETRESUID	STD	{ int setresuid(uid_t ruid, uid_t euid, \
554				    uid_t suid); }
555312	AUE_SETRESGID	STD	{ int setresgid(gid_t rgid, gid_t egid, \
556				    gid_t sgid); }
557313	AUE_NULL	OBSOL	signanosleep
558314	AUE_NULL	STD	{ ssize_t aio_return(struct aiocb *aiocbp); }
559315	AUE_NULL	STD	{ int aio_suspend( \
560				    struct aiocb * const * aiocbp, int nent, \
561				    const struct timespec *timeout); }
562316	AUE_NULL	STD	{ int aio_cancel(int fd, \
563				    struct aiocb *aiocbp); }
564317	AUE_NULL	STD	{ int aio_error(struct aiocb *aiocbp); }
565318	AUE_NULL	COMPAT6	{ int aio_read(struct oaiocb *aiocbp); }
566319	AUE_NULL	COMPAT6	{ int aio_write(struct oaiocb *aiocbp); }
567320	AUE_NULL	COMPAT6	{ int lio_listio(int mode, \
568				    struct oaiocb * const *acb_list, \
569				    int nent, struct osigevent *sig); }
570321	AUE_NULL	STD	{ int yield(void); }
571322	AUE_NULL	OBSOL	thr_sleep
572323	AUE_NULL	OBSOL	thr_wakeup
573324	AUE_MLOCKALL	STD	{ int mlockall(int how); }
574325	AUE_MUNLOCKALL	STD	{ int munlockall(void); }
575326	AUE_GETCWD	STD	{ int __getcwd(char *buf, u_int buflen); }
576
577327	AUE_NULL	STD	{ int sched_setparam (pid_t pid, \
578				    const struct sched_param *param); }
579328	AUE_NULL	STD	{ int sched_getparam (pid_t pid, struct \
580				    sched_param *param); }
581
582329	AUE_NULL	STD	{ int sched_setscheduler (pid_t pid, int \
583				    policy, const struct sched_param \
584				    *param); }
585330	AUE_NULL	STD	{ int sched_getscheduler (pid_t pid); }
586
587331	AUE_NULL	STD	{ int sched_yield (void); }
588332	AUE_NULL	STD	{ int sched_get_priority_max (int policy); }
589333	AUE_NULL	STD	{ int sched_get_priority_min (int policy); }
590334	AUE_NULL	STD	{ int sched_rr_get_interval (pid_t pid, \
591				    struct timespec *interval); }
592335	AUE_NULL	STD	{ int utrace(const void *addr, size_t len); }
593336	AUE_SENDFILE	COMPAT4	{ int sendfile(int fd, int s, \
594				    off_t offset, size_t nbytes, \
595				    struct sf_hdtr *hdtr, off_t *sbytes, \
596				    int flags); }
597337	AUE_NULL	STD	{ int kldsym(int fileid, int cmd, \
598				    void *data); }
599338	AUE_JAIL	STD	{ int jail(struct jail *jail); }
600339	AUE_NULL	NOSTD|NOTSTATIC	{ int nnpfs_syscall(int operation, \
601				    char *a_pathP, int a_opcode, \
602				    void *a_paramsP, int a_followSymlinks); }
603340	AUE_SIGPROCMASK	STD	{ int sigprocmask(int how, \
604				    const sigset_t *set, sigset_t *oset); }
605341	AUE_SIGSUSPEND	STD	{ int sigsuspend(const sigset_t *sigmask); }
606342	AUE_SIGACTION	COMPAT4	{ int sigaction(int sig, const \
607				    struct sigaction *act, \
608				    struct sigaction *oact); }
609343	AUE_SIGPENDING	STD	{ int sigpending(sigset_t *set); }
610344	AUE_SIGRETURN	COMPAT4	{ int sigreturn( \
611				    const struct ucontext4 *sigcntxp); }
612345	AUE_SIGWAIT	STD	{ int sigtimedwait(const sigset_t *set, \
613				    siginfo_t *info, \
614				    const struct timespec *timeout); }
615346	AUE_NULL	STD	{ int sigwaitinfo(const sigset_t *set, \
616				    siginfo_t *info); }
617347	AUE_NULL	STD	{ int __acl_get_file(const char *path, \
618				    acl_type_t type, struct acl *aclp); }
619348	AUE_NULL	STD	{ int __acl_set_file(const char *path, \
620				    acl_type_t type, struct acl *aclp); }
621349	AUE_NULL	STD	{ int __acl_get_fd(int filedes, \
622				    acl_type_t type, struct acl *aclp); }
623350	AUE_NULL	STD	{ int __acl_set_fd(int filedes, \
624				    acl_type_t type, struct acl *aclp); }
625351	AUE_NULL	STD	{ int __acl_delete_file(const char *path, \
626				    acl_type_t type); }
627352	AUE_NULL	STD	{ int __acl_delete_fd(int filedes, \
628				    acl_type_t type); }
629353	AUE_NULL	STD	{ int __acl_aclcheck_file(const char *path, \
630				    acl_type_t type, struct acl *aclp); }
631354	AUE_NULL	STD	{ int __acl_aclcheck_fd(int filedes, \
632				    acl_type_t type, struct acl *aclp); }
633355	AUE_EXTATTRCTL	STD	{ int extattrctl(const char *path, int cmd, \
634				    const char *filename, int attrnamespace, \
635				    const char *attrname); }
636356	AUE_EXTATTR_SET_FILE	STD	{ ssize_t extattr_set_file( \
637				    const char *path, int attrnamespace, \
638				    const char *attrname, void *data, \
639				    size_t nbytes); }
640357	AUE_EXTATTR_GET_FILE	STD	{ ssize_t extattr_get_file( \
641				    const char *path, int attrnamespace, \
642				    const char *attrname, void *data, \
643				    size_t nbytes); }
644358	AUE_EXTATTR_DELETE_FILE	STD	{ int extattr_delete_file(const char *path, \
645				    int attrnamespace, \
646				    const char *attrname); }
647359	AUE_NULL	STD	{ ssize_t aio_waitcomplete( \
648				    struct aiocb **aiocbp, \
649				    struct timespec *timeout); }
650360	AUE_GETRESUID	STD	{ int getresuid(uid_t *ruid, uid_t *euid, \
651				    uid_t *suid); }
652361	AUE_GETRESGID	STD	{ int getresgid(gid_t *rgid, gid_t *egid, \
653				    gid_t *sgid); }
654362	AUE_KQUEUE	STD	{ int kqueue(void); }
655363	AUE_NULL	STD	{ int kevent(int fd, \
656				    struct kevent *changelist, int nchanges, \
657				    struct kevent *eventlist, int nevents, \
658				    const struct timespec *timeout); }
659364	AUE_NULL	UNIMPL	__cap_get_proc
660365	AUE_NULL	UNIMPL	__cap_set_proc
661366	AUE_NULL	UNIMPL	__cap_get_fd
662367	AUE_NULL	UNIMPL	__cap_get_file
663368	AUE_NULL	UNIMPL	__cap_set_fd
664369	AUE_NULL	UNIMPL	__cap_set_file
665370	AUE_NULL	UNIMPL	nosys
666371	AUE_EXTATTR_SET_FD	STD	{ ssize_t extattr_set_fd(int fd, \
667				    int attrnamespace, const char *attrname, \
668				    void *data, size_t nbytes); }
669372	AUE_EXTATTR_GET_FD	STD	{ ssize_t extattr_get_fd(int fd, \
670				    int attrnamespace, const char *attrname, \
671				    void *data, size_t nbytes); }
672373	AUE_EXTATTR_DELETE_FD	STD	{ int extattr_delete_fd(int fd, \
673				    int attrnamespace, \
674				    const char *attrname); }
675374	AUE_NULL	STD	{ int __setugid(int flag); }
676375	AUE_NULL	UNIMPL	nfsclnt
677376	AUE_EACCESS	STD	{ int eaccess(char *path, int amode); }
678377	AUE_NULL	NOSTD|NOTSTATIC	{ int afs3_syscall(long syscall, \
679				    long parm1, long parm2, long parm3, \
680				    long parm4, long parm5, long parm6); }
681378	AUE_NMOUNT	STD	{ int nmount(struct iovec *iovp, \
682				    unsigned int iovcnt, int flags); }
683379	AUE_NULL	UNIMPL	kse_exit
684380	AUE_NULL	UNIMPL	kse_wakeup
685381	AUE_NULL	UNIMPL	kse_create
686382	AUE_NULL	UNIMPL	kse_thr_interrupt
687383	AUE_NULL	UNIMPL	kse_release
688384	AUE_NULL	STD	{ int __mac_get_proc(struct mac *mac_p); }
689385	AUE_NULL	STD	{ int __mac_set_proc(struct mac *mac_p); }
690386	AUE_NULL	STD	{ int __mac_get_fd(int fd, \
691				    struct mac *mac_p); }
692387	AUE_NULL	STD	{ int __mac_get_file(const char *path_p, \
693				    struct mac *mac_p); }
694388	AUE_NULL	STD	{ int __mac_set_fd(int fd, \
695				    struct mac *mac_p); }
696389	AUE_NULL	STD	{ int __mac_set_file(const char *path_p, \
697				    struct mac *mac_p); }
698390	AUE_NULL	STD	{ int kenv(int what, const char *name, \
699				    char *value, int len); }
700391	AUE_LCHFLAGS	STD	{ int lchflags(const char *path, \
701				    u_long flags); }
702392	AUE_NULL	STD	{ int uuidgen(struct uuid *store, \
703				    int count); }
704393	AUE_SENDFILE	STD	{ int sendfile(int fd, int s, off_t offset, \
705				    size_t nbytes, struct sf_hdtr *hdtr, \
706				    off_t *sbytes, int flags); }
707394	AUE_NULL	STD	{ int mac_syscall(const char *policy, \
708				    int call, void *arg); }
709395	AUE_GETFSSTAT	STD	{ int getfsstat(struct statfs *buf, \
710				    long bufsize, int flags); }
711396	AUE_STATFS	STD	{ int statfs(char *path, \
712				    struct statfs *buf); }
713397	AUE_FSTATFS	STD	{ int fstatfs(int fd, struct statfs *buf); }
714398	AUE_FHSTATFS	STD	{ int fhstatfs(const struct fhandle *u_fhp, \
715				    struct statfs *buf); }
716399	AUE_NULL	UNIMPL	nosys
717400	AUE_NULL	NOSTD	{ int ksem_close(semid_t id); }
718401	AUE_NULL	NOSTD	{ int ksem_post(semid_t id); }
719402	AUE_NULL	NOSTD	{ int ksem_wait(semid_t id); }
720403	AUE_NULL	NOSTD	{ int ksem_trywait(semid_t id); }
721404	AUE_NULL	NOSTD	{ int ksem_init(semid_t *idp, \
722				    unsigned int value); }
723405	AUE_NULL	NOSTD	{ int ksem_open(semid_t *idp, \
724				    const char *name, int oflag, \
725				    mode_t mode, unsigned int value); }
726406	AUE_NULL	NOSTD	{ int ksem_unlink(const char *name); }
727407	AUE_NULL	NOSTD	{ int ksem_getvalue(semid_t id, int *val); }
728408	AUE_NULL	NOSTD	{ int ksem_destroy(semid_t id); }
729409	AUE_NULL	STD	{ int __mac_get_pid(pid_t pid, \
730				    struct mac *mac_p); }
731410	AUE_NULL	STD	{ int __mac_get_link(const char *path_p, \
732				    struct mac *mac_p); }
733411	AUE_NULL	STD	{ int __mac_set_link(const char *path_p, \
734				    struct mac *mac_p); }
735412	AUE_EXTATTR_SET_LINK	STD	{ ssize_t extattr_set_link( \
736				    const char *path, int attrnamespace, \
737				    const char *attrname, void *data, \
738				    size_t nbytes); }
739413	AUE_EXTATTR_GET_LINK	STD	{ ssize_t extattr_get_link( \
740				    const char *path, int attrnamespace, \
741				    const char *attrname, void *data, \
742				    size_t nbytes); }
743414	AUE_EXTATTR_DELETE_LINK	STD	{ int extattr_delete_link( \
744				    const char *path, int attrnamespace, \
745				    const char *attrname); }
746415	AUE_NULL	STD	{ int __mac_execve(char *fname, char **argv, \
747				    char **envv, struct mac *mac_p); }
748416	AUE_SIGACTION	STD	{ int sigaction(int sig, \
749				    const struct sigaction *act, \
750				    struct sigaction *oact); }
751417	AUE_SIGRETURN	STD	{ int sigreturn( \
752				    const struct __ucontext *sigcntxp); }
753418	AUE_NULL	UNIMPL	__xstat
754419	AUE_NULL	UNIMPL	__xfstat
755420	AUE_NULL	UNIMPL	__xlstat
756421	AUE_NULL	STD	{ int getcontext(struct __ucontext *ucp); }
757422	AUE_NULL	STD	{ int setcontext( \
758				    const struct __ucontext *ucp); }
759423	AUE_NULL	STD	{ int swapcontext(struct __ucontext *oucp, \
760				    const struct __ucontext *ucp); }
761424	AUE_SWAPOFF	STD	{ int swapoff(const char *name); }
762425	AUE_NULL	STD	{ int __acl_get_link(const char *path, \
763				    acl_type_t type, struct acl *aclp); }
764426	AUE_NULL	STD	{ int __acl_set_link(const char *path, \
765				    acl_type_t type, struct acl *aclp); }
766427	AUE_NULL	STD	{ int __acl_delete_link(const char *path, \
767				    acl_type_t type); }
768428	AUE_NULL	STD	{ int __acl_aclcheck_link(const char *path, \
769				    acl_type_t type, struct acl *aclp); }
770429	AUE_SIGWAIT	STD	{ int sigwait(const sigset_t *set, \
771				    int *sig); }
772430	AUE_NULL	STD	{ int thr_create(ucontext_t *ctx, long *id, \
773				    int flags); }
774431	AUE_NULL	STD	{ void thr_exit(long *state); }
775432	AUE_NULL	STD	{ int thr_self(long *id); }
776433	AUE_NULL	STD	{ int thr_kill(long id, int sig); }
777434	AUE_NULL	UNIMPL	nosys
778435	AUE_NULL	UNIMPL	nosys
779436	AUE_NULL	STD	{ int jail_attach(int jid); }
780437	AUE_EXTATTR_LIST_FD	STD	{ ssize_t extattr_list_fd(int fd, \
781				    int attrnamespace, void *data, \
782				    size_t nbytes); }
783438	AUE_EXTATTR_LIST_FILE	STD	{ ssize_t extattr_list_file( \
784				    const char *path, int attrnamespace, \
785				    void *data, size_t nbytes); }
786439	AUE_EXTATTR_LIST_LINK	STD	{ ssize_t extattr_list_link( \
787				    const char *path, int attrnamespace, \
788				    void *data, size_t nbytes); }
789440	AUE_NULL	UNIMPL	kse_switchin
790441	AUE_NULL	NOSTD	{ int ksem_timedwait(semid_t id, \
791				    const struct timespec *abstime); }
792442	AUE_NULL	STD	{ int thr_suspend( \
793				    const struct timespec *timeout); }
794443	AUE_NULL	STD	{ int thr_wake(long id); }
795444	AUE_MODUNLOAD	STD	{ int kldunloadf(int fileid, int flags); }
796445	AUE_AUDIT	STD	{ int audit(const void *record, \
797				    u_int length); }
798446	AUE_AUDITON	STD	{ int auditon(int cmd, void *data, \
799				    u_int length); }
800447	AUE_GETAUID	STD	{ int getauid(uid_t *auid); }
801448	AUE_SETAUID	STD	{ int setauid(uid_t *auid); }
802449	AUE_GETAUDIT	STD	{ int getaudit(struct auditinfo *auditinfo); }
803450	AUE_SETAUDIT	STD	{ int setaudit(struct auditinfo *auditinfo); }
804451	AUE_GETAUDIT_ADDR	STD	{ int getaudit_addr( \
805				    struct auditinfo_addr *auditinfo_addr, \
806				    u_int length); }
807452	AUE_SETAUDIT_ADDR	STD	{ int setaudit_addr( \
808				    struct auditinfo_addr *auditinfo_addr, \
809				    u_int length); }
810453	AUE_AUDITCTL	STD	{ int auditctl(char *path); }
811454	AUE_NULL	STD	{ int _umtx_op(void *obj, int op, \
812				    u_long val, void *uaddr1, void *uaddr2); }
813455	AUE_NULL	STD	{ int thr_new(struct thr_param *param, \
814				    int param_size); }
815456	AUE_NULL	STD	{ int sigqueue(pid_t pid, int signum, void *value); }
816457	AUE_NULL	NOSTD	{ int kmq_open(const char *path, int flags, \
817				    mode_t mode, const struct mq_attr *attr); }
818458	AUE_NULL	NOSTD	{ int kmq_setattr(int mqd,		\
819				    const struct mq_attr *attr,		\
820				    struct mq_attr *oattr); }
821459	AUE_NULL	NOSTD	{ int kmq_timedreceive(int mqd,	\
822				    char *msg_ptr, size_t msg_len,	\
823				    unsigned *msg_prio,			\
824				    const struct timespec *abs_timeout); }
825460	AUE_NULL	NOSTD	{ int kmq_timedsend(int mqd,		\
826				    const char *msg_ptr, size_t msg_len,\
827				    unsigned msg_prio,			\
828				    const struct timespec *abs_timeout);}
829461	AUE_NULL	NOSTD	{ int kmq_notify(int mqd,		\
830				    const struct sigevent *sigev); }
831462	AUE_NULL	NOSTD	{ int kmq_unlink(const char *path); }
832463	AUE_NULL	STD	{ int abort2(const char *why, int nargs, void **args); }
833464	AUE_NULL	STD	{ int thr_set_name(long id, const char *name); }
834465	AUE_NULL	STD	{ int aio_fsync(int op, struct aiocb *aiocbp); }
835466	AUE_RTPRIO	STD	{ int rtprio_thread(int function, \
836				    lwpid_t lwpid, struct rtprio *rtp); }
837467	AUE_NULL	UNIMPL	nosys
838468	AUE_NULL	UNIMPL	nosys
839469	AUE_NULL	UNIMPL	__getpath_fromfd
840470	AUE_NULL	UNIMPL	__getpath_fromaddr
841471	AUE_NULL	NOSTD	{ int sctp_peeloff(int sd, uint32_t name); }
842472     AUE_NULL        NOSTD	{ int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
843	                            caddr_t to, __socklen_t tolen, \
844				    struct sctp_sndrcvinfo *sinfo, int flags); }
845473     AUE_NULL        NOSTD	{ int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
846	                            caddr_t to, __socklen_t tolen, \
847				    struct sctp_sndrcvinfo *sinfo, int flags); }
848474     AUE_NULL        NOSTD	{ int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
849				    struct sockaddr * from, __socklen_t *fromlenaddr, \
850				    struct sctp_sndrcvinfo *sinfo, int *msg_flags); }
851475	AUE_PREAD	STD	{ ssize_t pread(int fd, void *buf, \
852				    size_t nbyte, off_t offset); }
853476	AUE_PWRITE	STD	{ ssize_t pwrite(int fd, const void *buf, \
854				    size_t nbyte, off_t offset); }
855477	AUE_MMAP	STD	{ caddr_t mmap(caddr_t addr, size_t len, \
856				    int prot, int flags, int fd, off_t pos); }
857478	AUE_LSEEK	STD	{ off_t lseek(int fd, off_t offset, \
858				    int whence); }
859479	AUE_TRUNCATE	STD	{ int truncate(char *path, off_t length); }
860480	AUE_FTRUNCATE	STD	{ int ftruncate(int fd, off_t length); }
861481	AUE_KILL	STD	{ int thr_kill2(pid_t pid, long id, int sig); }
862482	AUE_SHMOPEN	STD	{ int shm_open(const char *path, int flags, \
863				    mode_t mode); }
864483	AUE_SHMUNLINK	STD	{ int shm_unlink(const char *path); }
865484	AUE_NULL	STD	{ int cpuset(cpusetid_t *setid); }
866485	AUE_NULL	STD	{ int cpuset_setid(cpuwhich_t which, id_t id, \
867				    cpusetid_t setid); }
868486	AUE_NULL	STD	{ int cpuset_getid(cpulevel_t level, \
869				    cpuwhich_t which, id_t id, \
870				    cpusetid_t *setid); }
871487	AUE_NULL	STD	{ int cpuset_getaffinity(cpulevel_t level, \
872				    cpuwhich_t which, id_t id, size_t cpusetsize, \
873				    cpuset_t *mask); }
874488	AUE_NULL	STD	{ int cpuset_setaffinity(cpulevel_t level, \
875				    cpuwhich_t which, id_t id, size_t cpusetsize, \
876				    const cpuset_t *mask); }
877489	AUE_FACCESSAT	STD	{ int faccessat(int fd, char *path, int amode, \
878				    int flag); }
879490	AUE_FCHMODAT	STD	{ int fchmodat(int fd, char *path, mode_t mode, \
880				    int flag); }
881491	AUE_FCHOWNAT	STD	{ int fchownat(int fd, char *path, uid_t uid, \
882				    gid_t gid, int flag); }
883492	AUE_FEXECVE	STD	{ int fexecve(int fd, char **argv, \
884				    char **envv); }
885493	AUE_FSTATAT	STD	{ int fstatat(int fd, char *path, \
886				    struct stat *buf, int flag); }
887494	AUE_FUTIMESAT	STD	{ int futimesat(int fd, char *path, \
888				    struct timeval *times); }
889495	AUE_LINKAT	STD	{ int linkat(int fd1, char *path1, int fd2, \
890				    char *path2, int flag); }
891496	AUE_MKDIRAT	STD	{ int mkdirat(int fd, char *path, mode_t mode); }
892497	AUE_MKFIFOAT	STD	{ int mkfifoat(int fd, char *path, mode_t mode); }
893498	AUE_MKNODAT	STD	{ int mknodat(int fd, char *path, mode_t mode, \
894				    dev_t dev); }
895; XXX: see the comment for open
896499	AUE_OPENAT_RWTC	STD	{ int openat(int fd, char *path, int flag, \
897				    mode_t mode); }
898500	AUE_READLINKAT	STD	{ int readlinkat(int fd, char *path, char *buf, \
899				    size_t bufsize); }
900501	AUE_RENAMEAT	STD	{ int renameat(int oldfd, char *old, int newfd, \
901				     char *new); }
902502	AUE_SYMLINKAT	STD	{ int symlinkat(char *path1, int fd, \
903				     char *path2); }
904503	AUE_UNLINKAT	STD	{ int unlinkat(int fd, char *path, int flag); }
905504	AUE_POSIX_OPENPT	STD	{ int posix_openpt(int flags); }
906; 505 is initialised by the kgssapi code, if present.
907505	AUE_NULL	NOSTD	{ int gssd_syscall(char *path); }
908506	AUE_NULL	STD	{ int jail_get(struct iovec *iovp, \
909				    unsigned int iovcnt, int flags); }
910507	AUE_NULL	STD	{ int jail_set(struct iovec *iovp, \
911				    unsigned int iovcnt, int flags); }
912508	AUE_NULL	STD	{ int jail_remove(int jid); }
913509	AUE_CLOSEFROM	STD	{ int closefrom(int lowfd); }
914510	AUE_SEMCTL	NOSTD	{ int __semctl(int semid, int semnum, \
915				    int cmd, union semun *arg); }
916511	AUE_MSGCTL	NOSTD	{ int msgctl(int msqid, int cmd, \
917				    struct msqid_ds *buf); }
918512	AUE_SHMCTL	NOSTD	{ int shmctl(int shmid, int cmd, \
919				    struct shmid_ds *buf); }
920513	AUE_LPATHCONF	STD	{ int lpathconf(char *path, int name); }
921514	AUE_NULL	OBSOL	cap_new
922515	AUE_CAP_RIGHTS_GET	STD	{ int __cap_rights_get(int version, \
923				    int fd, cap_rights_t *rightsp); }
924516	AUE_CAP_ENTER	STD	{ int cap_enter(void); }
925517	AUE_CAP_GETMODE	STD	{ int cap_getmode(u_int *modep); }
926518	AUE_PDFORK	STD	{ int pdfork(int *fdp, int flags); }
927519	AUE_PDKILL	STD	{ int pdkill(int fd, int signum); }
928520	AUE_PDGETPID	STD	{ int pdgetpid(int fd, pid_t *pidp); }
929521	AUE_PDWAIT	UNIMPL	pdwait4
930522	AUE_SELECT	STD	{ int pselect(int nd, fd_set *in, \
931				    fd_set *ou, fd_set *ex, \
932				    const struct timespec *ts, \
933				    const sigset_t *sm); }
934523	AUE_NULL	STD	{ int getloginclass(char *namebuf, \
935				    size_t namelen); }
936524	AUE_NULL	STD	{ int setloginclass(const char *namebuf); }
937525	AUE_NULL	STD	{ int rctl_get_racct(const void *inbufp, \
938				    size_t inbuflen, void *outbufp, \
939				    size_t outbuflen); }
940526	AUE_NULL	STD	{ int rctl_get_rules(const void *inbufp, \
941				    size_t inbuflen, void *outbufp, \
942				    size_t outbuflen); }
943527	AUE_NULL	STD	{ int rctl_get_limits(const void *inbufp, \
944				    size_t inbuflen, void *outbufp, \
945				    size_t outbuflen); }
946528	AUE_NULL	STD	{ int rctl_add_rule(const void *inbufp, \
947				    size_t inbuflen, void *outbufp, \
948				    size_t outbuflen); }
949529	AUE_NULL	STD	{ int rctl_remove_rule(const void *inbufp, \
950				    size_t inbuflen, void *outbufp, \
951				    size_t outbuflen); }
952530	AUE_NULL	STD	{ int posix_fallocate(int fd, \
953				    off_t offset, off_t len); }
954531	AUE_NULL	STD	{ int posix_fadvise(int fd, off_t offset, \
955				    off_t len, int advice); }
956532	AUE_WAIT6	STD	{ int wait6(idtype_t idtype, id_t id, \
957				    int *status, int options, \
958				    struct __wrusage *wrusage, \
959				    siginfo_t *info); }
960533	AUE_CAP_RIGHTS_LIMIT	STD	{ int cap_rights_limit(int fd, \
961					    cap_rights_t *rightsp); }
962534	AUE_CAP_IOCTLS_LIMIT	STD	{ int cap_ioctls_limit(int fd, \
963					    const u_long *cmds, size_t ncmds); }
964535	AUE_CAP_IOCTLS_GET	STD	{ ssize_t cap_ioctls_get(int fd, \
965					    u_long *cmds, size_t maxcmds); }
966536	AUE_CAP_FCNTLS_LIMIT	STD	{ int cap_fcntls_limit(int fd, \
967					    uint32_t fcntlrights); }
968537	AUE_CAP_FCNTLS_GET	STD	{ int cap_fcntls_get(int fd, \
969					    uint32_t *fcntlrightsp); }
970538	AUE_BINDAT	STD	{ int bindat(int fd, int s, caddr_t name, \
971				    int namelen); }
972539	AUE_CONNECTAT	STD	{ int connectat(int fd, int s, caddr_t name, \
973				    int namelen); }
974540	AUE_CHFLAGSAT	STD	{ int chflagsat(int fd, const char *path, \
975				    u_long flags, int atflag); }
976541	AUE_ACCEPT	STD	{ int accept4(int s, \
977				    struct sockaddr * __restrict name, \
978				    __socklen_t * __restrict anamelen, \
979				    int flags); }
980542	AUE_PIPE	STD	{ int pipe2(int *fildes, int flags); }
981543	AUE_NULL	STD	{ int aio_mlock(struct aiocb *aiocbp); }
982544	AUE_NULL	STD	{ int procctl(idtype_t idtype, id_t id, \
983				    int com, void *data); }
984545	AUE_POLL	STD	{ int ppoll(struct pollfd *fds, u_int nfds, \
985				    const struct timespec *ts, \
986				    const sigset_t *set); }
987546	AUE_FUTIMES	STD	{ int futimens(int fd, \
988				    struct timespec *times); }
989547	AUE_FUTIMESAT	STD	{ int utimensat(int fd, \
990				    char *path, \
991				    struct timespec *times, int flag); }
992548	AUE_NULL	STD	{ int numa_getaffinity(cpuwhich_t which, \
993				    id_t id, \
994				    struct vm_domain_policy_entry *policy); }
995549	AUE_NULL	STD	{ int numa_setaffinity(cpuwhich_t which, \
996				    id_t id, \
997				    const struct vm_domain_policy_entry *policy); }
998
999; Please copy any additions and changes to the following compatability tables:
1000; sys/compat/freebsd32/syscalls.master
1001