syscalls.master revision 194645
117680Spst $FreeBSD: head/sys/kern/syscalls.master 194645 2009-06-22 20:12:40Z jhb $
217680Spst;	from: @(#)syscalls.master	8.2 (Berkeley) 1/13/94
317680Spst;
417680Spst; System call name/number master file.
517680Spst; Processed to created init_sysent.c, syscalls.c and syscall.h.
617680Spst
717680Spst; Columns: number audit type name alt{name,tag,rtyp}/comments
817680Spst;	number	system call number, must be in order
917680Spst;	audit	the audit event associated with the system call
1017680Spst;		A value of AUE_NULL means no auditing, but it also means that
1117680Spst;		there is no audit event for the call at this time. For the
1217680Spst;		case where the event exists, but we don't want auditing, the
1317680Spst;		event should be #defined to AUE_NULL in audit_kevents.h.
1417680Spst;	type	one of STD, OBSOL, UNIMPL, COMPAT, COMPAT4, COMPAT6,
1517680Spst;		LIBCOMPAT, NODEF, NOARGS, NOPROTO, NOSTD
1617680Spst;		The COMPAT* options may be combined with one or more NO*
1717680Spst;		options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
1817680Spst;	name	psuedo-prototype of syscall routine
1917680Spst;		If one of the following alts is different, then all appear:
2017680Spst;	altname	name of system call if different
2117680Spst;	alttag	name of args struct tag if different from [o]`name'"_args"
2217680Spst;	altrtyp	return type if not int (bogus - syscalls always return int)
2317680Spst;		for UNIMPL/OBSOL, name continues with comments
2417680Spst
2517680Spst; types:
2617680Spst;	STD	always included
2717680Spst;	COMPAT	included on COMPAT #ifdef
2817680Spst;	COMPAT4	included on COMPAT4 #ifdef (FreeBSD 4 compat)
2917680Spst;	COMPAT6	included on COMPAT6 #ifdef (FreeBSD 6 compat)
3017680Spst;	LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
3117680Spst;	OBSOL	obsolete, not included in system, only specifies name
3217680Spst;	UNIMPL	not implemented, placeholder only
3317680Spst;	NOSTD	implemented but as a lkm that can be statically
3417680Spst;		compiled in; sysent entry will be filled with lkmressys
3517680Spst;		so the SYSCALL_MODULE macro works
3617680Spst;	NOARGS	same as STD except do not create structure in sys/sysproto.h
3717680Spst;	NODEF	same as STD except only have the entry in the syscall table
3817680Spst;		added.  Meaning - do not create structure or function
3917680Spst;		prototype in sys/sysproto.h
4017680Spst;	NOPROTO	same as STD except do not create structure or
4117680Spst;		function prototype in sys/sysproto.h.  Does add a
4217680Spst;		definition to syscall.h besides adding a sysent.
4317680Spst
4417680Spst;
4517680Spst; Please copy any additions and changes to the following compatability tables:
4617680Spst; sys/compat/freebsd32/syscalls.master
4717680Spst
4817680Spst; #ifdef's, etc. may be included, and are copied to the output files.
4917680Spst
5017680Spst#include <sys/param.h>
5117680Spst#include <sys/sysent.h>
5217680Spst#include <sys/sysproto.h>
5317680Spst
5417680Spst; Reserved/unimplemented system calls in the range 0-150 inclusive
5517680Spst; are reserved for use in future Berkeley releases.
5617680Spst; Additional system calls implemented in vendor and other
5717680Spst; redistributions should be placed in the reserved range at the end
5817680Spst; of the current calls.
5917680Spst
6017680Spst0	AUE_NULL	STD	{ int nosys(void); } syscall nosys_args int
6117680Spst1	AUE_EXIT	STD	{ void sys_exit(int rval); } exit \
6217680Spst				    sys_exit_args void
6317680Spst2	AUE_FORK	STD	{ int fork(void); }
6417680Spst3	AUE_NULL	STD	{ ssize_t read(int fd, void *buf, \
6517680Spst				    size_t nbyte); }
6617680Spst4	AUE_NULL	STD	{ ssize_t write(int fd, const void *buf, \
6717680Spst				    size_t nbyte); }
6817680Spst5	AUE_OPEN_RWTC	STD	{ int open(char *path, int flags, int mode); }
6917680Spst; XXX should be		{ int open(const char *path, int flags, ...); }
7017680Spst; but we're not ready for `const' or varargs.
7117680Spst; XXX man page says `mode_t mode'.
7217680Spst6	AUE_CLOSE	STD	{ int close(int fd); }
7317680Spst7	AUE_WAIT4	STD	{ int wait4(int pid, int *status, \
7417680Spst				    int options, struct rusage *rusage); } \
7517680Spst				    wait4 wait_args int
7617680Spst8	AUE_CREAT	COMPAT	{ int creat(char *path, int mode); }
7717680Spst9	AUE_LINK	STD	{ int link(char *path, char *link); }
7817680Spst10	AUE_UNLINK	STD	{ int unlink(char *path); }
7917680Spst11	AUE_NULL	OBSOL	execv
8017680Spst12	AUE_CHDIR	STD	{ int chdir(char *path); }
8117680Spst13	AUE_FCHDIR	STD	{ int fchdir(int fd); }
8217680Spst14	AUE_MKNOD	STD	{ int mknod(char *path, int mode, int dev); }
8317680Spst15	AUE_CHMOD	STD	{ int chmod(char *path, int mode); }
8417680Spst16	AUE_CHOWN	STD	{ int chown(char *path, int uid, int gid); }
8517680Spst17	AUE_NULL	STD	{ int obreak(char *nsize); } break \
8617680Spst				    obreak_args int
8717680Spst18	AUE_GETFSSTAT	COMPAT4	{ int getfsstat(struct ostatfs *buf, \
8817680Spst				    long bufsize, int flags); }
8917680Spst19	AUE_LSEEK	COMPAT	{ long lseek(int fd, long offset, \
9017680Spst				    int whence); }
9117680Spst20	AUE_GETPID	STD	{ pid_t getpid(void); }
9217680Spst21	AUE_MOUNT	STD	{ int mount(char *type, char *path, \
9317680Spst				    int flags, caddr_t data); }
9417680Spst; XXX `path' should have type `const char *' but we're not ready for that.
9517680Spst22	AUE_UMOUNT	STD	{ int unmount(char *path, int flags); }
9617680Spst23	AUE_SETUID	STD	{ int setuid(uid_t uid); }
9717680Spst24	AUE_GETUID	STD	{ uid_t getuid(void); }
9817680Spst25	AUE_GETEUID	STD	{ uid_t geteuid(void); }
9917680Spst26	AUE_PTRACE	STD	{ int ptrace(int req, pid_t pid, \
10017680Spst				    caddr_t addr, int data); }
10117680Spst27	AUE_RECVMSG	STD	{ int recvmsg(int s, struct msghdr *msg, \
10217680Spst				    int flags); }
10317680Spst28	AUE_SENDMSG	STD	{ int sendmsg(int s, struct msghdr *msg, \
10417680Spst				    int flags); }
10517680Spst29	AUE_RECVFROM	STD	{ int recvfrom(int s, caddr_t buf, \
10617680Spst				    size_t len, int flags, \
10717680Spst				    struct sockaddr * __restrict from, \
10817680Spst				    __socklen_t * __restrict fromlenaddr); }
10917680Spst30	AUE_ACCEPT	STD	{ int accept(int s, \
11017680Spst				    struct sockaddr * __restrict name, \
11117680Spst				    __socklen_t * __restrict anamelen); }
11217680Spst31	AUE_GETPEERNAME	STD	{ int getpeername(int fdes, \
11317680Spst				    struct sockaddr * __restrict asa, \
11417680Spst				    __socklen_t * __restrict alen); }
11517680Spst32	AUE_GETSOCKNAME	STD	{ int getsockname(int fdes, \
11617680Spst				    struct sockaddr * __restrict asa, \
11717680Spst				    __socklen_t * __restrict alen); }
11817680Spst33	AUE_ACCESS	STD	{ int access(char *path, int flags); }
11917680Spst34	AUE_CHFLAGS	STD	{ int chflags(char *path, int flags); }
12017680Spst35	AUE_FCHFLAGS	STD	{ int fchflags(int fd, int flags); }
12117680Spst36	AUE_SYNC	STD	{ int sync(void); }
12217680Spst37	AUE_KILL	STD	{ int kill(int pid, int signum); }
12317680Spst38	AUE_STAT	COMPAT	{ int stat(char *path, struct ostat *ub); }
12417680Spst39	AUE_GETPPID	STD	{ pid_t getppid(void); }
12517680Spst40	AUE_LSTAT	COMPAT	{ int lstat(char *path, struct ostat *ub); }
12617680Spst41	AUE_DUP		STD	{ int dup(u_int fd); }
12717680Spst42	AUE_PIPE	STD	{ int pipe(void); }
12817680Spst43	AUE_GETEGID	STD	{ gid_t getegid(void); }
12917680Spst44	AUE_PROFILE	STD	{ int profil(caddr_t samples, size_t size, \
13017680Spst				    size_t offset, u_int scale); }
13117680Spst45	AUE_KTRACE	STD	{ int ktrace(const char *fname, int ops, \
13217680Spst				    int facs, int pid); }
13317680Spst46	AUE_SIGACTION	COMPAT	{ int sigaction(int signum, \
13417680Spst				    struct osigaction *nsa, \
13517680Spst				    struct osigaction *osa); }
13617680Spst47	AUE_GETGID	STD	{ gid_t getgid(void); }
13717680Spst48	AUE_SIGPROCMASK	COMPAT	{ int sigprocmask(int how, osigset_t mask); }
13817680Spst; XXX note nonstandard (bogus) calling convention - the libc stub passes
13917680Spst; us the mask, not a pointer to it, and we return the old mask as the
14017680Spst; (int) return value.
14117680Spst49	AUE_GETLOGIN	STD	{ int getlogin(char *namebuf, u_int \
14217680Spst				    namelen); }
14317680Spst50	AUE_SETLOGIN	STD	{ int setlogin(char *namebuf); }
14417680Spst51	AUE_ACCT	STD	{ int acct(char *path); }
14517680Spst52	AUE_SIGPENDING	COMPAT	{ int sigpending(void); }
14617680Spst53	AUE_SIGALTSTACK	STD	{ int sigaltstack(stack_t *ss, \
14717680Spst				    stack_t *oss); }
14817680Spst54	AUE_IOCTL	STD	{ int ioctl(int fd, u_long com, \
14917680Spst				    caddr_t data); }
15017680Spst55	AUE_REBOOT	STD	{ int reboot(int opt); }
15117680Spst56	AUE_REVOKE	STD	{ int revoke(char *path); }
15217680Spst57	AUE_SYMLINK	STD	{ int symlink(char *path, char *link); }
15317680Spst58	AUE_READLINK	STD	{ ssize_t readlink(char *path, char *buf, \
15417680Spst				    size_t count); }
15517680Spst59	AUE_EXECVE	STD	{ int execve(char *fname, char **argv, \
15617680Spst				    char **envv); }
15717680Spst60	AUE_UMASK	STD	{ int umask(int newmask); } umask umask_args \
15817680Spst				    int
15917680Spst61	AUE_CHROOT	STD	{ int chroot(char *path); }
16017680Spst62	AUE_FSTAT	COMPAT	{ int fstat(int fd, struct ostat *sb); }
16117680Spst63	AUE_NULL	COMPAT	{ int getkerninfo(int op, char *where, \
16217680Spst				    size_t *size, int arg); } getkerninfo \
16317680Spst				    getkerninfo_args int
16417680Spst64	AUE_NULL	COMPAT	{ int getpagesize(void); } getpagesize \
16517680Spst				    getpagesize_args int
16617680Spst65	AUE_MSYNC	STD	{ int msync(void *addr, size_t len, \
16717680Spst				    int flags); }
16817680Spst66	AUE_VFORK	STD	{ int vfork(void); }
16917680Spst67	AUE_NULL	OBSOL	vread
17017680Spst68	AUE_NULL	OBSOL	vwrite
17117680Spst69	AUE_SBRK	STD	{ int sbrk(int incr); }
17217680Spst70	AUE_SSTK	STD	{ int sstk(int incr); }
17317680Spst71	AUE_MMAP	COMPAT	{ int mmap(void *addr, int len, int prot, \
17417680Spst				    int flags, int fd, long pos); }
17517680Spst72	AUE_O_VADVISE	STD	{ int ovadvise(int anom); } vadvise \
17617680Spst				    ovadvise_args int
17717680Spst73	AUE_MUNMAP	STD	{ int munmap(void *addr, size_t len); }
17817680Spst74	AUE_MPROTECT	STD	{ int mprotect(const void *addr, size_t len, \
17917680Spst				    int prot); }
18017680Spst75	AUE_MADVISE	STD	{ int madvise(void *addr, size_t len, \
18117680Spst				    int behav); }
18217680Spst76	AUE_NULL	OBSOL	vhangup
18317680Spst77	AUE_NULL	OBSOL	vlimit
18417680Spst78	AUE_MINCORE	STD	{ int mincore(const void *addr, size_t len, \
18517680Spst				    char *vec); }
18617680Spst79	AUE_GETGROUPS	STD	{ int getgroups(u_int gidsetsize, \
18717680Spst				    gid_t *gidset); }
18817680Spst80	AUE_SETGROUPS	STD	{ int setgroups(u_int gidsetsize, \
18917680Spst				    gid_t *gidset); }
19017680Spst81	AUE_GETPGRP	STD	{ int getpgrp(void); }
19117680Spst82	AUE_SETPGRP	STD	{ int setpgid(int pid, int pgid); }
19217680Spst83	AUE_SETITIMER	STD	{ int setitimer(u_int which, struct \
19317680Spst				    itimerval *itv, struct itimerval *oitv); }
19417680Spst84	AUE_WAIT4	COMPAT	{ int wait(void); }
19517680Spst85	AUE_SWAPON	STD	{ int swapon(char *name); }
19617680Spst86	AUE_GETITIMER	STD	{ int getitimer(u_int which, \
19717680Spst				    struct itimerval *itv); }
19817680Spst87	AUE_SYSCTL	COMPAT	{ int gethostname(char *hostname, \
19917680Spst				    u_int len); } gethostname \
20017680Spst				    gethostname_args int
20117680Spst88	AUE_SYSCTL	COMPAT	{ int sethostname(char *hostname, \
20217680Spst				    u_int len); } sethostname \
20317680Spst				    sethostname_args int
20417680Spst89	AUE_GETDTABLESIZE	STD	{ int getdtablesize(void); }
20517680Spst90	AUE_DUP2	STD	{ int dup2(u_int from, u_int to); }
20617680Spst91	AUE_NULL	UNIMPL	getdopt
20717680Spst92	AUE_FCNTL	STD	{ int fcntl(int fd, int cmd, long arg); }
20817680Spst; XXX should be	{ int fcntl(int fd, int cmd, ...); }
20917680Spst; but we're not ready for varargs.
21017680Spst93	AUE_SELECT	STD	{ int select(int nd, fd_set *in, fd_set *ou, \
21117680Spst				    fd_set *ex, struct timeval *tv); }
21217680Spst94	AUE_NULL	UNIMPL	setdopt
21317680Spst95	AUE_FSYNC	STD	{ int fsync(int fd); }
21417680Spst96	AUE_SETPRIORITY	STD	{ int setpriority(int which, int who, \
21517680Spst				    int prio); }
21617680Spst97	AUE_SOCKET	STD	{ int socket(int domain, int type, \
21717680Spst				    int protocol); }
21817680Spst98	AUE_CONNECT	STD	{ int connect(int s, caddr_t name, \
21917680Spst				    int namelen); }
22017680Spst99	AUE_ACCEPT	COMPAT|NOARGS { int accept(int s, caddr_t name, \
22117680Spst				    int *anamelen); } accept accept_args int
22217680Spst100	AUE_GETPRIORITY	STD	{ int getpriority(int which, int who); }
22317680Spst101	AUE_SEND	COMPAT	{ int send(int s, caddr_t buf, int len, \
22417680Spst				    int flags); }
22517680Spst102	AUE_RECV	COMPAT	{ int recv(int s, caddr_t buf, int len, \
22617680Spst				    int flags); }
22717680Spst103	AUE_SIGRETURN	COMPAT	{ int sigreturn( \
22817680Spst				    struct osigcontext *sigcntxp); }
22917680Spst104	AUE_BIND	STD	{ int bind(int s, caddr_t name, \
23017680Spst				    int namelen); }
23117680Spst105	AUE_SETSOCKOPT	STD	{ int setsockopt(int s, int level, int name, \
23217680Spst				    caddr_t val, int valsize); }
23317680Spst106	AUE_LISTEN	STD	{ int listen(int s, int backlog); }
23417680Spst107	AUE_NULL	OBSOL	vtimes
23517680Spst108	AUE_NULL	COMPAT	{ int sigvec(int signum, struct sigvec *nsv, \
23617680Spst				    struct sigvec *osv); }
23717680Spst109	AUE_NULL	COMPAT	{ int sigblock(int mask); }
23817680Spst110	AUE_NULL	COMPAT	{ int sigsetmask(int mask); }
23917680Spst111	AUE_NULL	COMPAT	{ int sigsuspend(osigset_t mask); }
24017680Spst; XXX note nonstandard (bogus) calling convention - the libc stub passes
24117680Spst; us the mask, not a pointer to it.
24217680Spst112	AUE_NULL	COMPAT	{ int sigstack(struct sigstack *nss, \
24317680Spst				    struct sigstack *oss); }
24417680Spst113	AUE_RECVMSG	COMPAT	{ int recvmsg(int s, struct omsghdr *msg, \
24517680Spst				    int flags); }
24617680Spst114	AUE_SENDMSG	COMPAT	{ int sendmsg(int s, caddr_t msg, \
24717680Spst				    int flags); }
24817680Spst115	AUE_NULL	OBSOL	vtrace
24917680Spst116	AUE_GETTIMEOFDAY	STD	{ int gettimeofday(struct timeval *tp, \
25017680Spst				    struct timezone *tzp); }
25117680Spst117	AUE_GETRUSAGE	STD	{ int getrusage(int who, \
25217680Spst				    struct rusage *rusage); }
25317680Spst118	AUE_GETSOCKOPT	STD	{ int getsockopt(int s, int level, int name, \
25417680Spst				    caddr_t val, int *avalsize); }
25517680Spst119	AUE_NULL	UNIMPL	resuba (BSD/OS 2.x)
25617680Spst120	AUE_READV	STD	{ int readv(int fd, struct iovec *iovp, \
25717680Spst				    u_int iovcnt); }
25817680Spst121	AUE_WRITEV	STD	{ int writev(int fd, struct iovec *iovp, \
25917680Spst				    u_int iovcnt); }
26017680Spst122	AUE_SETTIMEOFDAY	STD	{ int settimeofday(struct timeval *tv, \
26117680Spst				    struct timezone *tzp); }
26217680Spst123	AUE_FCHOWN	STD	{ int fchown(int fd, int uid, int gid); }
26317680Spst124	AUE_FCHMOD	STD	{ int fchmod(int fd, int mode); }
26417680Spst125	AUE_RECVFROM	COMPAT|NOARGS { int recvfrom(int s, caddr_t buf, \
26517680Spst				    size_t len, int flags, caddr_t from, int \
26617680Spst				    *fromlenaddr); } recvfrom recvfrom_args \
26717680Spst				    int
26817680Spst126	AUE_SETREUID	STD	{ int setreuid(int ruid, int euid); }
26917680Spst127	AUE_SETREGID	STD	{ int setregid(int rgid, int egid); }
27017680Spst128	AUE_RENAME	STD	{ int rename(char *from, char *to); }
27117680Spst129	AUE_TRUNCATE	COMPAT	{ int truncate(char *path, long length); }
27217680Spst130	AUE_FTRUNCATE	COMPAT	{ int ftruncate(int fd, long length); }
27317680Spst131	AUE_FLOCK	STD	{ int flock(int fd, int how); }
27417680Spst132	AUE_MKFIFO	STD	{ int mkfifo(char *path, int mode); }
27517680Spst133	AUE_SENDTO	STD	{ int sendto(int s, caddr_t buf, size_t len, \
27617680Spst				    int flags, caddr_t to, int tolen); }
27717680Spst134	AUE_SHUTDOWN	STD	{ int shutdown(int s, int how); }
27817680Spst135	AUE_SOCKETPAIR	STD	{ int socketpair(int domain, int type, \
27917680Spst				    int protocol, int *rsv); }
28017680Spst136	AUE_MKDIR	STD	{ int mkdir(char *path, int mode); }
28117680Spst137	AUE_RMDIR	STD	{ int rmdir(char *path); }
28217680Spst138	AUE_UTIMES	STD	{ int utimes(char *path, \
28317680Spst				    struct timeval *tptr); }
28417680Spst139	AUE_NULL	OBSOL	4.2 sigreturn
28517680Spst140	AUE_ADJTIME	STD	{ int adjtime(struct timeval *delta, \
28617680Spst				    struct timeval *olddelta); }
28717680Spst141	AUE_GETPEERNAME	COMPAT	{ int getpeername(int fdes, caddr_t asa, \
28817680Spst				    int *alen); }
28917680Spst142	AUE_SYSCTL	COMPAT	{ long gethostid(void); }
29017680Spst143	AUE_SYSCTL	COMPAT	{ int sethostid(long hostid); }
29117680Spst144	AUE_GETRLIMIT	COMPAT	{ int getrlimit(u_int which, struct \
29217680Spst				    orlimit *rlp); }
29317680Spst145	AUE_SETRLIMIT	COMPAT	{ int setrlimit(u_int which, \
29417680Spst				    struct orlimit *rlp); }
29517680Spst146	AUE_KILLPG	COMPAT	{ int killpg(int pgid, int signum); }
29617680Spst147	AUE_SETSID	STD	{ int setsid(void); }
29717680Spst148	AUE_QUOTACTL	STD	{ int quotactl(char *path, int cmd, int uid, \
29817680Spst				    caddr_t arg); }
29917680Spst149	AUE_O_QUOTA	COMPAT	{ int quota(void); }
30017680Spst150	AUE_GETSOCKNAME	COMPAT|NOARGS { int getsockname(int fdec, \
30117680Spst				    caddr_t asa, int *alen); } getsockname \
30217680Spst				    getsockname_args int
30317680Spst
30417680Spst; Syscalls 151-180 inclusive are reserved for vendor-specific
30517680Spst; system calls.  (This includes various calls added for compatibity
30617680Spst; with other Unix variants.)
30717680Spst; Some of these calls are now supported by BSD...
30817680Spst151	AUE_NULL	UNIMPL	sem_lock (BSD/OS 2.x)
30917680Spst152	AUE_NULL	UNIMPL	sem_wakeup (BSD/OS 2.x)
31017680Spst153	AUE_NULL	UNIMPL	asyncdaemon (BSD/OS 2.x)
31117680Spst; 154 is initialised by the NLM code, if present.
31217680Spst154	AUE_NULL	NOSTD	{ int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }
31317680Spst; 155 is initialized by the NFS code, if present.
31417680Spst155	AUE_NFS_SVC	NOSTD	{ int nfssvc(int flag, caddr_t argp); }
31517680Spst156	AUE_GETDIRENTRIES	COMPAT	{ int getdirentries(int fd, char *buf, \
31617680Spst				    u_int count, long *basep); }
31717680Spst157	AUE_STATFS	COMPAT4	{ int statfs(char *path, \
31817680Spst				    struct ostatfs *buf); }
31917680Spst158	AUE_FSTATFS	COMPAT4	{ int fstatfs(int fd, \
32017680Spst				    struct ostatfs *buf); }
32117680Spst159	AUE_NULL	UNIMPL	nosys
32217680Spst160	AUE_LGETFH	STD	{ int lgetfh(char *fname, \
32317680Spst				    struct fhandle *fhp); }
32417680Spst161	AUE_NFS_GETFH	STD	{ int getfh(char *fname, \
32517680Spst				    struct fhandle *fhp); }
32617680Spst162	AUE_SYSCTL	COMPAT4	{ int getdomainname(char *domainname, \
32717680Spst				    int len); }
32817680Spst163	AUE_SYSCTL	COMPAT4	{ int setdomainname(char *domainname, \
32917680Spst				    int len); }
33017680Spst164	AUE_NULL	COMPAT4	{ int uname(struct utsname *name); }
33117680Spst165	AUE_SYSARCH	STD	{ int sysarch(int op, char *parms); }
33217680Spst166	AUE_RTPRIO	STD	{ int rtprio(int function, pid_t pid, \
33317680Spst				    struct rtprio *rtp); }
33417680Spst167	AUE_NULL	UNIMPL	nosys
33517680Spst168	AUE_NULL	UNIMPL	nosys
33617680Spst; 169 is initialized by the SYSVSEM code if present or loaded
33717680Spst169	AUE_SEMSYS	NOSTD	{ int semsys(int which, int a2, int a3, \
33817680Spst				    int a4, int a5); }
33917680Spst; XXX should be	{ int semsys(int which, ...); }
34017680Spst; 170 is initialized by the SYSVMSG code if present or loaded
34117680Spst170	AUE_MSGSYS	NOSTD	{ int msgsys(int which, int a2, int a3, \
34217680Spst				    int a4, int a5, int a6); }
34317680Spst; XXX should be	{ int msgsys(int which, ...); }
34417680Spst; 171 is initialized by the SYSVSHM code if present or loaded
34517680Spst171	AUE_SHMSYS	NOSTD	{ int shmsys(int which, int a2, int a3, \
34617680Spst				    int a4); }
34717680Spst; XXX should be	{ int shmsys(int which, ...); }
34817680Spst172	AUE_NULL	UNIMPL	nosys
34917680Spst173	AUE_PREAD	STD	{ ssize_t freebsd6_pread(int fd, void *buf, \
35017680Spst				    size_t nbyte, int pad, off_t offset); }
35117680Spst174	AUE_PWRITE	STD	{ ssize_t freebsd6_pwrite(int fd, \
35217680Spst				    const void *buf, \
35317680Spst				    size_t nbyte, int pad, off_t offset); }
35417680Spst175	AUE_NULL	STD	{ int setfib(int fibnum); }
355176	AUE_NTP_ADJTIME	STD	{ int ntp_adjtime(struct timex *tp); }
356177	AUE_NULL	UNIMPL	sfork (BSD/OS 2.x)
357178	AUE_NULL	UNIMPL	getdescriptor (BSD/OS 2.x)
358179	AUE_NULL	UNIMPL	setdescriptor (BSD/OS 2.x)
359180	AUE_NULL	UNIMPL	nosys
360
361; Syscalls 181-199 are used by/reserved for BSD
362181	AUE_SETGID	STD	{ int setgid(gid_t gid); }
363182	AUE_SETEGID	STD	{ int setegid(gid_t egid); }
364183	AUE_SETEUID	STD	{ int seteuid(uid_t euid); }
365184	AUE_NULL	UNIMPL	lfs_bmapv
366185	AUE_NULL	UNIMPL	lfs_markv
367186	AUE_NULL	UNIMPL	lfs_segclean
368187	AUE_NULL	UNIMPL	lfs_segwait
369188	AUE_STAT	STD	{ int stat(char *path, struct stat *ub); }
370189	AUE_FSTAT	STD	{ int fstat(int fd, struct stat *sb); }
371190	AUE_LSTAT	STD	{ int lstat(char *path, struct stat *ub); }
372191	AUE_PATHCONF	STD	{ int pathconf(char *path, int name); }
373192	AUE_FPATHCONF	STD	{ int fpathconf(int fd, int name); }
374193	AUE_NULL	UNIMPL	nosys
375194	AUE_GETRLIMIT	STD	{ int getrlimit(u_int which, \
376				    struct rlimit *rlp); } getrlimit \
377				    __getrlimit_args int
378195	AUE_SETRLIMIT	STD	{ int setrlimit(u_int which, \
379				    struct rlimit *rlp); } setrlimit \
380				    __setrlimit_args int
381196	AUE_GETDIRENTRIES	STD	{ int getdirentries(int fd, char *buf, \
382				    u_int count, long *basep); }
383197	AUE_MMAP	STD	{ caddr_t freebsd6_mmap(caddr_t addr, \
384				    size_t len, int prot, int flags, int fd, \
385				    int pad, off_t pos); }
386198	AUE_NULL	NOPROTO	{ int nosys(void); } __syscall \
387				    __syscall_args int
388199	AUE_LSEEK	STD	{ off_t freebsd6_lseek(int fd, int pad, \
389				    off_t offset, int whence); }
390200	AUE_TRUNCATE	STD	{ int freebsd6_truncate(char *path, int pad, \
391				    off_t length); }
392201	AUE_FTRUNCATE	STD	{ int freebsd6_ftruncate(int fd, int pad, \
393				    off_t length); }
394202	AUE_SYSCTL	STD	{ int __sysctl(int *name, u_int namelen, \
395				    void *old, size_t *oldlenp, void *new, \
396				    size_t newlen); } __sysctl sysctl_args int
397203	AUE_MLOCK	STD	{ int mlock(const void *addr, size_t len); }
398204	AUE_MUNLOCK	STD	{ int munlock(const void *addr, size_t len); }
399205	AUE_UNDELETE	STD	{ int undelete(char *path); }
400206	AUE_FUTIMES	STD	{ int futimes(int fd, struct timeval *tptr); }
401207	AUE_GETPGID	STD	{ int getpgid(pid_t pid); }
402208	AUE_NULL	UNIMPL	newreboot (NetBSD)
403209	AUE_POLL	STD	{ int poll(struct pollfd *fds, u_int nfds, \
404				    int timeout); }
405
406;
407; The following are reserved for loadable syscalls
408;
409210	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
410211	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
411212	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
412213	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
413214	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
414215	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
415216	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
416217	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
417218	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
418219	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
419
420;
421; The following were introduced with NetBSD/4.4Lite-2
422220	AUE_SEMCTL	NOSTD	{ int __semctl(int semid, int semnum, \
423				    int cmd, union semun *arg); }
424221	AUE_SEMGET	NOSTD	{ int semget(key_t key, int nsems, \
425				    int semflg); }
426222	AUE_SEMOP	NOSTD	{ int semop(int semid, struct sembuf *sops, \
427				    size_t nsops); }
428223	AUE_NULL	UNIMPL	semconfig
429224	AUE_MSGCTL	NOSTD	{ int msgctl(int msqid, int cmd, \
430				    struct msqid_ds *buf); }
431225	AUE_MSGGET	NOSTD	{ int msgget(key_t key, int msgflg); }
432226	AUE_MSGSND	NOSTD	{ int msgsnd(int msqid, const void *msgp, \
433				    size_t msgsz, int msgflg); }
434227	AUE_MSGRCV	NOSTD	{ int msgrcv(int msqid, void *msgp, \
435				    size_t msgsz, long msgtyp, int msgflg); }
436228	AUE_SHMAT	NOSTD	{ int shmat(int shmid, const void *shmaddr, \
437				    int shmflg); }
438229	AUE_SHMCTL	NOSTD	{ int shmctl(int shmid, int cmd, \
439				    struct shmid_ds *buf); }
440230	AUE_SHMDT	NOSTD	{ int shmdt(const void *shmaddr); }
441231	AUE_SHMGET	NOSTD	{ int shmget(key_t key, size_t size, \
442				    int shmflg); }
443;
444232	AUE_NULL	STD	{ int clock_gettime(clockid_t clock_id, \
445				    struct timespec *tp); }
446233	AUE_CLOCK_SETTIME	STD	{ int clock_settime( \
447				    clockid_t clock_id, \
448				    const struct timespec *tp); }
449234	AUE_NULL	STD	{ int clock_getres(clockid_t clock_id, \
450				    struct timespec *tp); }
451235	AUE_NULL	STD	{ int ktimer_create(clockid_t clock_id, \
452				    struct sigevent *evp, int *timerid); }
453236	AUE_NULL	STD	{ int ktimer_delete(int timerid); }
454237	AUE_NULL	STD	{ int ktimer_settime(int timerid, int flags, \
455				    const struct itimerspec *value, \
456				    struct itimerspec *ovalue); }
457238	AUE_NULL	STD	{ int ktimer_gettime(int timerid, struct \
458				    itimerspec *value); }
459239	AUE_NULL	STD	{ int ktimer_getoverrun(int timerid); }
460240	AUE_NULL	STD	{ int nanosleep(const struct timespec *rqtp, \
461				    struct timespec *rmtp); }
462241	AUE_NULL	UNIMPL	nosys
463242	AUE_NULL	UNIMPL	nosys
464243	AUE_NULL	UNIMPL	nosys
465244	AUE_NULL	UNIMPL	nosys
466245	AUE_NULL	UNIMPL	nosys
467246	AUE_NULL	UNIMPL	nosys
468247	AUE_NULL	UNIMPL	nosys
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	NOSTD	{ int aio_read(struct aiocb *aiocbp); }
480256	AUE_NULL	NOSTD	{ int aio_write(struct aiocb *aiocbp); }
481257	AUE_NULL	NOSTD	{ 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	NOSTD	{ int aio_return(struct aiocb *aiocbp); }
559315	AUE_NULL	NOSTD	{ int aio_suspend( \
560				    struct aiocb * const * aiocbp, int nent, \
561				    const struct timespec *timeout); }
562316	AUE_NULL	NOSTD	{ int aio_cancel(int fd, \
563				    struct aiocb *aiocbp); }
564317	AUE_NULL	NOSTD	{ int aio_error(struct aiocb *aiocbp); }
565318	AUE_NULL	NOSTD	{ int oaio_read(struct oaiocb *aiocbp); }
566319	AUE_NULL	NOSTD	{ int oaio_write(struct oaiocb *aiocbp); }
567320	AUE_NULL	NOSTD	{ int olio_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(u_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	UNIMPL	pioctl
601340	AUE_SIGPROCMASK	STD	{ int sigprocmask(int how, \
602				    const sigset_t *set, sigset_t *oset); }
603341	AUE_SIGSUSPEND	STD	{ int sigsuspend(const sigset_t *sigmask); }
604342	AUE_SIGACTION	COMPAT4	{ int sigaction(int sig, const \
605				    struct sigaction *act, \
606				    struct sigaction *oact); }
607343	AUE_SIGPENDING	STD	{ int sigpending(sigset_t *set); }
608344	AUE_SIGRETURN	COMPAT4	{ int sigreturn( \
609				    const struct ucontext4 *sigcntxp); }
610345	AUE_SIGWAIT	STD	{ int sigtimedwait(const sigset_t *set, \
611				    siginfo_t *info, \
612				    const struct timespec *timeout); }
613346	AUE_NULL	STD	{ int sigwaitinfo(const sigset_t *set, \
614				    siginfo_t *info); }
615347	AUE_NULL	STD	{ int __acl_get_file(const char *path, \
616				    acl_type_t type, struct acl *aclp); }
617348	AUE_NULL	STD	{ int __acl_set_file(const char *path, \
618				    acl_type_t type, struct acl *aclp); }
619349	AUE_NULL	STD	{ int __acl_get_fd(int filedes, \
620				    acl_type_t type, struct acl *aclp); }
621350	AUE_NULL	STD	{ int __acl_set_fd(int filedes, \
622				    acl_type_t type, struct acl *aclp); }
623351	AUE_NULL	STD	{ int __acl_delete_file(const char *path, \
624				    acl_type_t type); }
625352	AUE_NULL	STD	{ int __acl_delete_fd(int filedes, \
626				    acl_type_t type); }
627353	AUE_NULL	STD	{ int __acl_aclcheck_file(const char *path, \
628				    acl_type_t type, struct acl *aclp); }
629354	AUE_NULL	STD	{ int __acl_aclcheck_fd(int filedes, \
630				    acl_type_t type, struct acl *aclp); }
631355	AUE_EXTATTRCTL	STD	{ int extattrctl(const char *path, int cmd, \
632				    const char *filename, int attrnamespace, \
633				    const char *attrname); }
634356	AUE_EXTATTR_SET_FILE	STD	{ int extattr_set_file( \
635				    const char *path, int attrnamespace, \
636				    const char *attrname, void *data, \
637				    size_t nbytes); }
638357	AUE_EXTATTR_GET_FILE	STD	{ ssize_t extattr_get_file( \
639				    const char *path, int attrnamespace, \
640				    const char *attrname, void *data, \
641				    size_t nbytes); }
642358	AUE_EXTATTR_DELETE_FILE	STD	{ int extattr_delete_file(const char *path, \
643				    int attrnamespace, \
644				    const char *attrname); }
645359	AUE_NULL	NOSTD	{ int aio_waitcomplete( \
646				    struct aiocb **aiocbp, \
647				    struct timespec *timeout); }
648360	AUE_GETRESUID	STD	{ int getresuid(uid_t *ruid, uid_t *euid, \
649				    uid_t *suid); }
650361	AUE_GETRESGID	STD	{ int getresgid(gid_t *rgid, gid_t *egid, \
651				    gid_t *sgid); }
652362	AUE_KQUEUE	STD	{ int kqueue(void); }
653363	AUE_NULL	STD	{ int kevent(int fd, \
654				    struct kevent *changelist, int nchanges, \
655				    struct kevent *eventlist, int nevents, \
656				    const struct timespec *timeout); }
657364	AUE_NULL	UNIMPL	__cap_get_proc
658365	AUE_NULL	UNIMPL	__cap_set_proc
659366	AUE_NULL	UNIMPL	__cap_get_fd
660367	AUE_NULL	UNIMPL	__cap_get_file
661368	AUE_NULL	UNIMPL	__cap_set_fd
662369	AUE_NULL	UNIMPL	__cap_set_file
663370	AUE_NULL	UNIMPL	nosys
664371	AUE_EXTATTR_SET_FD	STD	{ int extattr_set_fd(int fd, \
665				    int attrnamespace, const char *attrname, \
666				    void *data, size_t nbytes); }
667372	AUE_EXTATTR_GET_FD	STD	{ ssize_t extattr_get_fd(int fd, \
668				    int attrnamespace, const char *attrname, \
669				    void *data, size_t nbytes); }
670373	AUE_EXTATTR_DELETE_FD	STD	{ int extattr_delete_fd(int fd, \
671				    int attrnamespace, \
672				    const char *attrname); }
673374	AUE_NULL	STD	{ int __setugid(int flag); }
674375	AUE_NULL	UNIMPL	nfsclnt
675376	AUE_EACCESS	STD	{ int eaccess(char *path, int flags); }
676377	AUE_NULL	UNIMPL	afs_syscall
677378	AUE_NMOUNT	STD	{ int nmount(struct iovec *iovp, \
678				    unsigned int iovcnt, int flags); }
679379	AUE_NULL	UNIMPL	kse_exit
680380	AUE_NULL	UNIMPL	kse_wakeup
681381	AUE_NULL	UNIMPL	kse_create
682382	AUE_NULL	UNIMPL	kse_thr_interrupt
683383	AUE_NULL	UNIMPL	kse_release
684384	AUE_NULL	STD	{ int __mac_get_proc(struct mac *mac_p); }
685385	AUE_NULL	STD	{ int __mac_set_proc(struct mac *mac_p); }
686386	AUE_NULL	STD	{ int __mac_get_fd(int fd, \
687				    struct mac *mac_p); }
688387	AUE_NULL	STD	{ int __mac_get_file(const char *path_p, \
689				    struct mac *mac_p); }
690388	AUE_NULL	STD	{ int __mac_set_fd(int fd, \
691				    struct mac *mac_p); }
692389	AUE_NULL	STD	{ int __mac_set_file(const char *path_p, \
693				    struct mac *mac_p); }
694390	AUE_NULL	STD	{ int kenv(int what, const char *name, \
695				    char *value, int len); }
696391	AUE_LCHFLAGS	STD	{ int lchflags(const char *path, int flags); }
697392	AUE_NULL	STD	{ int uuidgen(struct uuid *store, \
698				    int count); }
699393	AUE_SENDFILE	STD	{ int sendfile(int fd, int s, off_t offset, \
700				    size_t nbytes, struct sf_hdtr *hdtr, \
701				    off_t *sbytes, int flags); }
702394	AUE_NULL	STD	{ int mac_syscall(const char *policy, \
703				    int call, void *arg); }
704395	AUE_GETFSSTAT	STD	{ int getfsstat(struct statfs *buf, \
705				    long bufsize, int flags); }
706396	AUE_STATFS	STD	{ int statfs(char *path, \
707				    struct statfs *buf); }
708397	AUE_FSTATFS	STD	{ int fstatfs(int fd, struct statfs *buf); }
709398	AUE_FHSTATFS	STD	{ int fhstatfs(const struct fhandle *u_fhp, \
710				    struct statfs *buf); }
711399	AUE_NULL	UNIMPL	nosys
712400	AUE_NULL	NOSTD	{ int ksem_close(semid_t id); }
713401	AUE_NULL	NOSTD	{ int ksem_post(semid_t id); }
714402	AUE_NULL	NOSTD	{ int ksem_wait(semid_t id); }
715403	AUE_NULL	NOSTD	{ int ksem_trywait(semid_t id); }
716404	AUE_NULL	NOSTD	{ int ksem_init(semid_t *idp, \
717				    unsigned int value); }
718405	AUE_NULL	NOSTD	{ int ksem_open(semid_t *idp, \
719				    const char *name, int oflag, \
720				    mode_t mode, unsigned int value); }
721406	AUE_NULL	NOSTD	{ int ksem_unlink(const char *name); }
722407	AUE_NULL	NOSTD	{ int ksem_getvalue(semid_t id, int *val); }
723408	AUE_NULL	NOSTD	{ int ksem_destroy(semid_t id); }
724409	AUE_NULL	STD	{ int __mac_get_pid(pid_t pid, \
725				    struct mac *mac_p); }
726410	AUE_NULL	STD	{ int __mac_get_link(const char *path_p, \
727				    struct mac *mac_p); }
728411	AUE_NULL	STD	{ int __mac_set_link(const char *path_p, \
729				    struct mac *mac_p); }
730412	AUE_EXTATTR_SET_LINK	STD	{ int extattr_set_link( \
731				    const char *path, int attrnamespace, \
732				    const char *attrname, void *data, \
733				    size_t nbytes); }
734413	AUE_EXTATTR_GET_LINK	STD	{ ssize_t extattr_get_link( \
735				    const char *path, int attrnamespace, \
736				    const char *attrname, void *data, \
737				    size_t nbytes); }
738414	AUE_EXTATTR_DELETE_LINK	STD	{ int extattr_delete_link( \
739				    const char *path, int attrnamespace, \
740				    const char *attrname); }
741415	AUE_NULL	STD	{ int __mac_execve(char *fname, char **argv, \
742				    char **envv, struct mac *mac_p); }
743416	AUE_SIGACTION	STD	{ int sigaction(int sig, \
744				    const struct sigaction *act, \
745				    struct sigaction *oact); }
746417	AUE_SIGRETURN	STD	{ int sigreturn( \
747				    const struct __ucontext *sigcntxp); }
748418	AUE_NULL	UNIMPL	__xstat
749419	AUE_NULL	UNIMPL	__xfstat
750420	AUE_NULL	UNIMPL	__xlstat
751421	AUE_NULL	STD	{ int getcontext(struct __ucontext *ucp); }
752422	AUE_NULL	STD	{ int setcontext( \
753				    const struct __ucontext *ucp); }
754423	AUE_NULL	STD	{ int swapcontext(struct __ucontext *oucp, \
755				    const struct __ucontext *ucp); }
756424	AUE_SWAPOFF	STD	{ int swapoff(const char *name); }
757425	AUE_NULL	STD	{ int __acl_get_link(const char *path, \
758				    acl_type_t type, struct acl *aclp); }
759426	AUE_NULL	STD	{ int __acl_set_link(const char *path, \
760				    acl_type_t type, struct acl *aclp); }
761427	AUE_NULL	STD	{ int __acl_delete_link(const char *path, \
762				    acl_type_t type); }
763428	AUE_NULL	STD	{ int __acl_aclcheck_link(const char *path, \
764				    acl_type_t type, struct acl *aclp); }
765429	AUE_SIGWAIT	STD	{ int sigwait(const sigset_t *set, \
766				    int *sig); }
767430	AUE_NULL	STD	{ int thr_create(ucontext_t *ctx, long *id, \
768				    int flags); }
769431	AUE_NULL	STD	{ void thr_exit(long *state); }
770432	AUE_NULL	STD	{ int thr_self(long *id); }
771433	AUE_NULL	STD	{ int thr_kill(long id, int sig); }
772434	AUE_NULL	STD	{ int _umtx_lock(struct umtx *umtx); }
773435	AUE_NULL	STD	{ int _umtx_unlock(struct umtx *umtx); }
774436	AUE_NULL	STD	{ int jail_attach(int jid); }
775437	AUE_EXTATTR_LIST_FD	STD	{ ssize_t extattr_list_fd(int fd, \
776				    int attrnamespace, void *data, \
777				    size_t nbytes); }
778438	AUE_EXTATTR_LIST_FILE	STD	{ ssize_t extattr_list_file( \
779				    const char *path, int attrnamespace, \
780				    void *data, size_t nbytes); }
781439	AUE_EXTATTR_LIST_LINK	STD	{ ssize_t extattr_list_link( \
782				    const char *path, int attrnamespace, \
783				    void *data, size_t nbytes); }
784440	AUE_NULL	UNIMPL	kse_switchin
785441	AUE_NULL	NOSTD	{ int ksem_timedwait(semid_t id, \
786				    const struct timespec *abstime); }
787442	AUE_NULL	STD	{ int thr_suspend( \
788				    const struct timespec *timeout); }
789443	AUE_NULL	STD	{ int thr_wake(long id); }
790444	AUE_MODUNLOAD	STD	{ int kldunloadf(int fileid, int flags); }
791445	AUE_AUDIT	STD	{ int audit(const void *record, \
792				    u_int length); }
793446	AUE_AUDITON	STD	{ int auditon(int cmd, void *data, \
794				    u_int length); }
795447	AUE_GETAUID	STD	{ int getauid(uid_t *auid); }
796448	AUE_SETAUID	STD	{ int setauid(uid_t *auid); }
797449	AUE_GETAUDIT	STD	{ int getaudit(struct auditinfo *auditinfo); }
798450	AUE_SETAUDIT	STD	{ int setaudit(struct auditinfo *auditinfo); }
799451	AUE_GETAUDIT_ADDR	STD	{ int getaudit_addr( \
800				    struct auditinfo_addr *auditinfo_addr, \
801				    u_int length); }
802452	AUE_SETAUDIT_ADDR	STD	{ int setaudit_addr( \
803				    struct auditinfo_addr *auditinfo_addr, \
804				    u_int length); }
805453	AUE_AUDITCTL	STD	{ int auditctl(char *path); }
806454	AUE_NULL	STD	{ int _umtx_op(void *obj, int op, \
807				    u_long val, void *uaddr1, void *uaddr2); }
808455	AUE_NULL	STD	{ int thr_new(struct thr_param *param, \
809				    int param_size); }
810456	AUE_NULL	STD	{ int sigqueue(pid_t pid, int signum, void *value); }
811457	AUE_NULL	NOSTD	{ int kmq_open(const char *path, int flags, \
812				    mode_t mode, const struct mq_attr *attr); }
813458	AUE_NULL	NOSTD	{ int kmq_setattr(int mqd,		\
814				    const struct mq_attr *attr,		\
815				    struct mq_attr *oattr); }
816459	AUE_NULL	NOSTD	{ int kmq_timedreceive(int mqd,	\
817				    char *msg_ptr, size_t msg_len,	\
818				    unsigned *msg_prio,			\
819				    const struct timespec *abs_timeout); }
820460	AUE_NULL	NOSTD	{ int kmq_timedsend(int mqd,		\
821				    const char *msg_ptr, size_t msg_len,\
822				    unsigned msg_prio,			\
823				    const struct timespec *abs_timeout);}
824461	AUE_NULL	NOSTD	{ int kmq_notify(int mqd,		\
825				    const struct sigevent *sigev); }
826462	AUE_NULL	NOSTD	{ int kmq_unlink(const char *path); }
827463	AUE_NULL	STD	{ int abort2(const char *why, int nargs, void **args); }
828464	AUE_NULL	STD	{ int thr_set_name(long id, const char *name); }
829465	AUE_NULL	NOSTD	{ int aio_fsync(int op, struct aiocb *aiocbp); }
830466	AUE_RTPRIO	STD	{ int rtprio_thread(int function, \
831				    lwpid_t lwpid, struct rtprio *rtp); }
832467	AUE_NULL	UNIMPL	nosys
833468	AUE_NULL	UNIMPL	nosys
834469	AUE_NULL	UNIMPL	__getpath_fromfd
835470	AUE_NULL	UNIMPL	__getpath_fromaddr
836471	AUE_NULL	STD	{ int sctp_peeloff(int sd, uint32_t name); }
837472     AUE_NULL        STD    { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
838	                            caddr_t to, __socklen_t tolen, \
839				    struct sctp_sndrcvinfo *sinfo, int flags); }
840473     AUE_NULL        STD    { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
841	                            caddr_t to, __socklen_t tolen, \
842				    struct sctp_sndrcvinfo *sinfo, int flags); }
843474     AUE_NULL        STD    { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
844				    struct sockaddr * from, __socklen_t *fromlenaddr, \
845				    struct sctp_sndrcvinfo *sinfo, int *msg_flags); }
846475	AUE_PREAD	STD	{ ssize_t pread(int fd, void *buf, \
847				    size_t nbyte, off_t offset); }
848476	AUE_PWRITE	STD	{ ssize_t pwrite(int fd, const void *buf, \
849				    size_t nbyte, off_t offset); }
850477	AUE_MMAP	STD	{ caddr_t mmap(caddr_t addr, size_t len, \
851				    int prot, int flags, int fd, off_t pos); }
852478	AUE_LSEEK	STD	{ off_t lseek(int fd, off_t offset, \
853				    int whence); }
854479	AUE_TRUNCATE	STD	{ int truncate(char *path, off_t length); }
855480	AUE_FTRUNCATE	STD	{ int ftruncate(int fd, off_t length); }
856481	AUE_KILL	STD	{ int thr_kill2(pid_t pid, long id, int sig); }
857482	AUE_SHMOPEN	STD	{ int shm_open(const char *path, int flags, \
858				    mode_t mode); }
859483	AUE_SHMUNLINK	STD	{ int shm_unlink(const char *path); }
860484	AUE_NULL	STD	{ int cpuset(cpusetid_t *setid); }
861485	AUE_NULL	STD	{ int cpuset_setid(cpuwhich_t which, id_t id, \
862				    cpusetid_t setid); }
863486	AUE_NULL	STD	{ int cpuset_getid(cpulevel_t level, \
864				    cpuwhich_t which, id_t id, \
865				    cpusetid_t *setid); }
866487	AUE_NULL	STD	{ int cpuset_getaffinity(cpulevel_t level, \
867				    cpuwhich_t which, id_t id, size_t cpusetsize, \
868				    cpuset_t *mask); }
869488	AUE_NULL	STD	{ int cpuset_setaffinity(cpulevel_t level, \
870				    cpuwhich_t which, id_t id, size_t cpusetsize, \
871				    const cpuset_t *mask); }
872489	AUE_FACCESSAT	STD	{ int faccessat(int fd, char *path, int mode, \
873				    int flag); }
874490	AUE_FCHMODAT	STD	{ int fchmodat(int fd, char *path, mode_t mode, \
875				    int flag); }
876491	AUE_FCHOWNAT	STD	{ int fchownat(int fd, char *path, uid_t uid, \
877				    gid_t gid, int flag); }
878492	AUE_FEXECVE	STD	{ int fexecve(int fd, char **argv, \
879				    char **envv); }
880493	AUE_FSTATAT	STD	{ int fstatat(int fd, char *path, \
881				    struct stat *buf, int flag); }
882494	AUE_FUTIMESAT	STD	{ int futimesat(int fd, char *path, \
883				    struct timeval *times); }
884495	AUE_LINKAT	STD	{ int linkat(int fd1, char *path1, int fd2, \
885				    char *path2, int flag); }
886496	AUE_MKDIRAT	STD	{ int mkdirat(int fd, char *path, mode_t mode); }
887497	AUE_MKFIFOAT	STD	{ int mkfifoat(int fd, char *path, mode_t mode); }
888498	AUE_MKNODAT	STD	{ int mknodat(int fd, char *path, mode_t mode, \
889				    dev_t dev); }
890; XXX: see the comment for open
891499	AUE_OPENAT_RWTC	STD	{ int openat(int fd, char *path, int flag, \
892				    mode_t mode); }
893500	AUE_READLINKAT	STD	{ int readlinkat(int fd, char *path, char *buf, \
894				    size_t bufsize); }
895501	AUE_RENAMEAT	STD	{ int renameat(int oldfd, char *old, int newfd, \
896				     char *new); }
897502	AUE_SYMLINKAT	STD	{ int symlinkat(char *path1, int fd, \
898				     char *path2); }
899503	AUE_UNLINKAT	STD	{ int unlinkat(int fd, char *path, int flag); }
900504	AUE_POSIX_OPENPT	STD	{ int posix_openpt(int flags); }
901; 505 is initialised by the kgssapi code, if present.
902505	AUE_NULL	NOSTD	{ int gssd_syscall(char *path); }
903506	AUE_NULL	STD	{ int jail_get(struct iovec *iovp, \
904				    unsigned int iovcnt, int flags); }
905507	AUE_NULL	STD	{ int jail_set(struct iovec *iovp, \
906				    unsigned int iovcnt, int flags); }
907508	AUE_NULL	STD	{ int jail_remove(int jid); }
908509	AUE_CLOSEFROM	STD	{ int closefrom(int lowfd); }
909; Please copy any additions and changes to the following compatability tables:
910; sys/compat/freebsd32/syscalls.master
911