syscalls.master revision 177788
1 $FreeBSD: head/sys/kern/syscalls.master 177788 2008-03-31 12:06:55Z kib $
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, CPT_NOA, LIBCOMPAT,
15;		NODEF, NOARGS, NOPROTO, NOIMPL, NOSTD, COMPAT4
16;	name	psuedo-prototype of syscall routine
17;		If one of the following alts is different, then all appear:
18;	altname	name of system call if different
19;	alttag	name of args struct tag if different from [o]`name'"_args"
20;	altrtyp	return type if not int (bogus - syscalls always return int)
21;		for UNIMPL/OBSOL, name continues with comments
22
23; types:
24;	STD	always included
25;	COMPAT	included on COMPAT #ifdef
26;	COMPAT4	included on COMPAT4 #ifdef (FreeBSD 4 compat)
27;	LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
28;	OBSOL	obsolete, not included in system, only specifies name
29;	UNIMPL	not implemented, placeholder only
30;	NOSTD	implemented but as a lkm that can be statically
31;		compiled in; sysent entry will be filled with lkmsys
32;		so the SYSCALL_MODULE macro works
33;
34; Please copy any additions and changes to the following compatability tables:
35; sys/compat/freebsd32/syscalls.master
36
37; #ifdef's, etc. may be included, and are copied to the output files.
38
39#include <sys/param.h>
40#include <sys/sysent.h>
41#include <sys/sysproto.h>
42
43; Reserved/unimplemented system calls in the range 0-150 inclusive
44; are reserved for use in future Berkeley releases.
45; Additional system calls implemented in vendor and other
46; redistributions should be placed in the reserved range at the end
47; of the current calls.
48
490	AUE_NULL	STD	{ int nosys(void); } syscall nosys_args int
501	AUE_EXIT	STD	{ void sys_exit(int rval); } exit \
51				    sys_exit_args void
522	AUE_FORK	STD	{ int fork(void); }
533	AUE_NULL	STD	{ ssize_t read(int fd, void *buf, \
54				    size_t nbyte); }
554	AUE_NULL	STD	{ ssize_t write(int fd, const void *buf, \
56				    size_t nbyte); }
575	AUE_OPEN_RWTC	STD	{ int open(char *path, int flags, int mode); }
58; XXX should be		{ int open(const char *path, int flags, ...); }
59; but we're not ready for `const' or varargs.
60; XXX man page says `mode_t mode'.
616	AUE_CLOSE	STD	{ int close(int fd); }
627	AUE_WAIT4	STD	{ int wait4(int pid, int *status, \
63				    int options, struct rusage *rusage); } \
64				    wait4 wait_args int
658	AUE_CREAT	COMPAT	{ int creat(char *path, int mode); }
669	AUE_LINK	STD	{ int link(char *path, char *link); }
6710	AUE_UNLINK	STD	{ int unlink(char *path); }
6811	AUE_NULL	OBSOL	execv
6912	AUE_CHDIR	STD	{ int chdir(char *path); }
7013	AUE_FCHDIR	STD	{ int fchdir(int fd); }
7114	AUE_MKNOD	STD	{ int mknod(char *path, int mode, int dev); }
7215	AUE_CHMOD	STD	{ int chmod(char *path, int mode); }
7316	AUE_CHOWN	STD	{ int chown(char *path, int uid, int gid); }
7417	AUE_NULL	STD	{ int obreak(char *nsize); } break \
75				    obreak_args int
7618	AUE_GETFSSTAT	COMPAT4	{ int getfsstat(struct ostatfs *buf, \
77				    long bufsize, int flags); }
7819	AUE_LSEEK	COMPAT	{ long lseek(int fd, long offset, \
79				    int whence); }
8020	AUE_GETPID	STD	{ pid_t getpid(void); }
8121	AUE_MOUNT	STD	{ int mount(char *type, char *path, \
82				    int flags, caddr_t data); }
83; XXX `path' should have type `const char *' but we're not ready for that.
8422	AUE_UMOUNT	STD	{ int unmount(char *path, int flags); }
8523	AUE_SETUID	STD	{ int setuid(uid_t uid); }
8624	AUE_GETUID	STD	{ uid_t getuid(void); }
8725	AUE_GETEUID	STD	{ uid_t geteuid(void); }
8826	AUE_PTRACE	STD	{ int ptrace(int req, pid_t pid, \
89				    caddr_t addr, int data); }
9027	AUE_RECVMSG	STD	{ int recvmsg(int s, struct msghdr *msg, \
91				    int flags); }
9228	AUE_SENDMSG	STD	{ int sendmsg(int s, struct msghdr *msg, \
93				    int flags); }
9429	AUE_RECVFROM	STD	{ int recvfrom(int s, caddr_t buf, \
95				    size_t len, int flags, \
96				    struct sockaddr * __restrict from, \
97				    __socklen_t * __restrict fromlenaddr); }
9830	AUE_ACCEPT	STD	{ int accept(int s, \
99				    struct sockaddr * __restrict name, \
100				    __socklen_t * __restrict anamelen); }
10131	AUE_GETPEERNAME	STD	{ int getpeername(int fdes, \
102				    struct sockaddr * __restrict asa, \
103				    __socklen_t * __restrict alen); }
10432	AUE_GETSOCKNAME	STD	{ int getsockname(int fdes, \
105				    struct sockaddr * __restrict asa, \
106				    __socklen_t * __restrict alen); }
10733	AUE_ACCESS	STD	{ int access(char *path, int flags); }
10834	AUE_CHFLAGS	STD	{ int chflags(char *path, int flags); }
10935	AUE_FCHFLAGS	STD	{ int fchflags(int fd, int flags); }
11036	AUE_SYNC	STD	{ int sync(void); }
11137	AUE_KILL	STD	{ int kill(int pid, int signum); }
11238	AUE_STAT	COMPAT	{ int stat(char *path, struct ostat *ub); }
11339	AUE_GETPPID	STD	{ pid_t getppid(void); }
11440	AUE_LSTAT	COMPAT	{ int lstat(char *path, struct ostat *ub); }
11541	AUE_DUP		STD	{ int dup(u_int fd); }
11642	AUE_PIPE	STD	{ int pipe(void); }
11743	AUE_GETEGID	STD	{ gid_t getegid(void); }
11844	AUE_PROFILE	STD	{ int profil(caddr_t samples, size_t size, \
119				    size_t offset, u_int scale); }
12045	AUE_KTRACE	STD	{ int ktrace(const char *fname, int ops, \
121				    int facs, int pid); }
12246	AUE_SIGACTION	COMPAT	{ int sigaction(int signum, \
123				    struct osigaction *nsa, \
124				    struct osigaction *osa); }
12547	AUE_GETGID	STD	{ gid_t getgid(void); }
12648	AUE_SIGPROCMASK	COMPAT	{ int sigprocmask(int how, osigset_t mask); }
127; XXX note nonstandard (bogus) calling convention - the libc stub passes
128; us the mask, not a pointer to it, and we return the old mask as the
129; (int) return value.
13049	AUE_GETLOGIN	STD	{ int getlogin(char *namebuf, u_int \
131				    namelen); }
13250	AUE_SETLOGIN	STD	{ int setlogin(char *namebuf); }
13351	AUE_ACCT	STD	{ int acct(char *path); }
13452	AUE_SIGPENDING	COMPAT	{ int sigpending(void); }
13553	AUE_SIGALTSTACK	STD	{ int sigaltstack(stack_t *ss, \
136				    stack_t *oss); }
13754	AUE_IOCTL	STD	{ int ioctl(int fd, u_long com, \
138				    caddr_t data); }
13955	AUE_REBOOT	STD	{ int reboot(int opt); }
14056	AUE_REVOKE	STD	{ int revoke(char *path); }
14157	AUE_SYMLINK	STD	{ int symlink(char *path, char *link); }
14258	AUE_READLINK	STD	{ ssize_t readlink(char *path, char *buf, \
143				    size_t count); }
14459	AUE_EXECVE	STD	{ int execve(char *fname, char **argv, \
145				    char **envv); }
14660	AUE_UMASK	STD	{ int umask(int newmask); } umask umask_args \
147				    int
14861	AUE_CHROOT	STD	{ int chroot(char *path); }
14962	AUE_FSTAT	COMPAT	{ int fstat(int fd, struct ostat *sb); }
15063	AUE_NULL	COMPAT	{ int getkerninfo(int op, char *where, \
151				    size_t *size, int arg); } getkerninfo \
152				    getkerninfo_args int
15364	AUE_NULL	COMPAT	{ int getpagesize(void); } getpagesize \
154				    getpagesize_args int
15565	AUE_MSYNC	STD	{ int msync(void *addr, size_t len, \
156				    int flags); }
15766	AUE_VFORK	STD	{ int vfork(void); }
15867	AUE_NULL	OBSOL	vread
15968	AUE_NULL	OBSOL	vwrite
16069	AUE_SBRK	STD	{ int sbrk(int incr); }
16170	AUE_SSTK	STD	{ int sstk(int incr); }
16271	AUE_MMAP	COMPAT	{ int mmap(void *addr, int len, int prot, \
163				    int flags, int fd, long pos); }
16472	AUE_O_VADVISE	STD	{ int ovadvise(int anom); } vadvise \
165				    ovadvise_args int
16673	AUE_MUNMAP	STD	{ int munmap(void *addr, size_t len); }
16774	AUE_MPROTECT	STD	{ int mprotect(const void *addr, size_t len, \
168				    int prot); }
16975	AUE_MADVISE	STD	{ int madvise(void *addr, size_t len, \
170				    int behav); }
17176	AUE_NULL	OBSOL	vhangup
17277	AUE_NULL	OBSOL	vlimit
17378	AUE_MINCORE	STD	{ int mincore(const void *addr, size_t len, \
174				    char *vec); }
17579	AUE_GETGROUPS	STD	{ int getgroups(u_int gidsetsize, \
176				    gid_t *gidset); }
17780	AUE_SETGROUPS	STD	{ int setgroups(u_int gidsetsize, \
178				    gid_t *gidset); }
17981	AUE_GETPGRP	STD	{ int getpgrp(void); }
18082	AUE_SETPGRP	STD	{ int setpgid(int pid, int pgid); }
18183	AUE_SETITIMER	STD	{ int setitimer(u_int which, struct \
182				    itimerval *itv, struct itimerval *oitv); }
18384	AUE_WAIT4	COMPAT	{ int wait(void); }
18485	AUE_SWAPON	STD	{ int swapon(char *name); }
18586	AUE_GETITIMER	STD	{ int getitimer(u_int which, \
186				    struct itimerval *itv); }
18787	AUE_SYSCTL	COMPAT	{ int gethostname(char *hostname, \
188				    u_int len); } gethostname \
189				    gethostname_args int
19088	AUE_SYSCTL	COMPAT	{ int sethostname(char *hostname, \
191				    u_int len); } sethostname \
192				    sethostname_args int
19389	AUE_GETDTABLESIZE	STD	{ int getdtablesize(void); }
19490	AUE_DUP2	STD	{ int dup2(u_int from, u_int to); }
19591	AUE_NULL	UNIMPL	getdopt
19692	AUE_FCNTL	STD	{ int fcntl(int fd, int cmd, long arg); }
197; XXX should be	{ int fcntl(int fd, int cmd, ...); }
198; but we're not ready for varargs.
19993	AUE_SELECT	STD	{ int select(int nd, fd_set *in, fd_set *ou, \
200				    fd_set *ex, struct timeval *tv); }
20194	AUE_NULL	UNIMPL	setdopt
20295	AUE_FSYNC	STD	{ int fsync(int fd); }
20396	AUE_SETPRIORITY	STD	{ int setpriority(int which, int who, \
204				    int prio); }
20597	AUE_SOCKET	STD	{ int socket(int domain, int type, \
206				    int protocol); }
20798	AUE_CONNECT	STD	{ int connect(int s, caddr_t name, \
208				    int namelen); }
20999	AUE_ACCEPT	CPT_NOA	{ int accept(int s, caddr_t name, \
210				    int *anamelen); } accept accept_args int
211100	AUE_GETPRIORITY	STD	{ int getpriority(int which, int who); }
212101	AUE_SEND	COMPAT	{ int send(int s, caddr_t buf, int len, \
213				    int flags); }
214102	AUE_RECV	COMPAT	{ int recv(int s, caddr_t buf, int len, \
215				    int flags); }
216103	AUE_SIGRETURN	COMPAT	{ int sigreturn( \
217				    struct osigcontext *sigcntxp); }
218104	AUE_BIND	STD	{ int bind(int s, caddr_t name, \
219				    int namelen); }
220105	AUE_SETSOCKOPT	STD	{ int setsockopt(int s, int level, int name, \
221				    caddr_t val, int valsize); }
222106	AUE_LISTEN	STD	{ int listen(int s, int backlog); }
223107	AUE_NULL	OBSOL	vtimes
224108	AUE_NULL	COMPAT	{ int sigvec(int signum, struct sigvec *nsv, \
225				    struct sigvec *osv); }
226109	AUE_NULL	COMPAT	{ int sigblock(int mask); }
227110	AUE_NULL	COMPAT	{ int sigsetmask(int mask); }
228111	AUE_NULL	COMPAT	{ int sigsuspend(osigset_t mask); }
229; XXX note nonstandard (bogus) calling convention - the libc stub passes
230; us the mask, not a pointer to it.
231112	AUE_NULL	COMPAT	{ int sigstack(struct sigstack *nss, \
232				    struct sigstack *oss); }
233113	AUE_RECVMSG	COMPAT	{ int recvmsg(int s, struct omsghdr *msg, \
234				    int flags); }
235114	AUE_SENDMSG	COMPAT	{ int sendmsg(int s, caddr_t msg, \
236				    int flags); }
237115	AUE_NULL	OBSOL	vtrace
238116	AUE_GETTIMEOFDAY	STD	{ int gettimeofday(struct timeval *tp, \
239				    struct timezone *tzp); }
240117	AUE_GETRUSAGE	STD	{ int getrusage(int who, \
241				    struct rusage *rusage); }
242118	AUE_GETSOCKOPT	STD	{ int getsockopt(int s, int level, int name, \
243				    caddr_t val, int *avalsize); }
244119	AUE_NULL	UNIMPL	resuba (BSD/OS 2.x)
245120	AUE_READV	STD	{ int readv(int fd, struct iovec *iovp, \
246				    u_int iovcnt); }
247121	AUE_WRITEV	STD	{ int writev(int fd, struct iovec *iovp, \
248				    u_int iovcnt); }
249122	AUE_SETTIMEOFDAY	STD	{ int settimeofday(struct timeval *tv, \
250				    struct timezone *tzp); }
251123	AUE_FCHOWN	STD	{ int fchown(int fd, int uid, int gid); }
252124	AUE_FCHMOD	STD	{ int fchmod(int fd, int mode); }
253125	AUE_RECVFROM	CPT_NOA	{ int recvfrom(int s, caddr_t buf, \
254				    size_t len, int flags, caddr_t from, int \
255				    *fromlenaddr); } recvfrom recvfrom_args \
256				    int
257126	AUE_SETREUID	STD	{ int setreuid(int ruid, int euid); }
258127	AUE_SETREGID	STD	{ int setregid(int rgid, int egid); }
259128	AUE_RENAME	STD	{ int rename(char *from, char *to); }
260129	AUE_TRUNCATE	COMPAT	{ int truncate(char *path, long length); }
261130	AUE_FTRUNCATE	COMPAT	{ int ftruncate(int fd, long length); }
262131	AUE_FLOCK	STD	{ int flock(int fd, int how); }
263132	AUE_MKFIFO	STD	{ int mkfifo(char *path, int mode); }
264133	AUE_SENDTO	STD	{ int sendto(int s, caddr_t buf, size_t len, \
265				    int flags, caddr_t to, int tolen); }
266134	AUE_SHUTDOWN	STD	{ int shutdown(int s, int how); }
267135	AUE_SOCKETPAIR	STD	{ int socketpair(int domain, int type, \
268				    int protocol, int *rsv); }
269136	AUE_MKDIR	STD	{ int mkdir(char *path, int mode); }
270137	AUE_RMDIR	STD	{ int rmdir(char *path); }
271138	AUE_UTIMES	STD	{ int utimes(char *path, \
272				    struct timeval *tptr); }
273139	AUE_NULL	OBSOL	4.2 sigreturn
274140	AUE_ADJTIME	STD	{ int adjtime(struct timeval *delta, \
275				    struct timeval *olddelta); }
276141	AUE_GETPEERNAME	COMPAT	{ int getpeername(int fdes, caddr_t asa, \
277				    int *alen); }
278142	AUE_SYSCTL	COMPAT	{ long gethostid(void); }
279143	AUE_SYSCTL	COMPAT	{ int sethostid(long hostid); }
280144	AUE_GETRLIMIT	COMPAT	{ int getrlimit(u_int which, struct \
281				    orlimit *rlp); }
282145	AUE_SETRLIMIT	COMPAT	{ int setrlimit(u_int which, \
283				    struct orlimit *rlp); }
284146	AUE_KILLPG	COMPAT	{ int killpg(int pgid, int signum); }
285147	AUE_SETSID	STD	{ int setsid(void); }
286148	AUE_QUOTACTL	STD	{ int quotactl(char *path, int cmd, int uid, \
287				    caddr_t arg); }
288149	AUE_O_QUOTA	COMPAT	{ int quota(void); }
289150	AUE_GETSOCKNAME	CPT_NOA	{ int getsockname(int fdec, \
290				    caddr_t asa, int *alen); } getsockname \
291				    getsockname_args int
292
293; Syscalls 151-180 inclusive are reserved for vendor-specific
294; system calls.  (This includes various calls added for compatibity
295; with other Unix variants.)
296; Some of these calls are now supported by BSD...
297151	AUE_NULL	UNIMPL	sem_lock (BSD/OS 2.x)
298152	AUE_NULL	UNIMPL	sem_wakeup (BSD/OS 2.x)
299153	AUE_NULL	UNIMPL	asyncdaemon (BSD/OS 2.x)
300; 154 is initialised by the NLM code, if present.
301154	AUE_NULL	NOSTD	{ int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }
302; 155 is initialized by the NFS code, if present.
303155	AUE_NFS_SVC	NOSTD	{ int nfssvc(int flag, caddr_t argp); }
304156	AUE_GETDIRENTRIES	COMPAT	{ int getdirentries(int fd, char *buf, \
305				    u_int count, long *basep); }
306157	AUE_STATFS	COMPAT4	{ int statfs(char *path, \
307				    struct ostatfs *buf); }
308158	AUE_FSTATFS	COMPAT4	{ int fstatfs(int fd, \
309				    struct ostatfs *buf); }
310159	AUE_NULL	UNIMPL	nosys
311160	AUE_LGETFH	STD	{ int lgetfh(char *fname, \
312				    struct fhandle *fhp); }
313161	AUE_NFS_GETFH	STD	{ int getfh(char *fname, \
314				    struct fhandle *fhp); }
315162	AUE_SYSCTL	STD	{ int getdomainname(char *domainname, \
316				    int len); }
317163	AUE_SYSCTL	STD	{ int setdomainname(char *domainname, \
318				    int len); }
319164	AUE_NULL	STD	{ int uname(struct utsname *name); }
320165	AUE_SYSARCH	STD	{ int sysarch(int op, char *parms); }
321166	AUE_RTPRIO	STD	{ int rtprio(int function, pid_t pid, \
322				    struct rtprio *rtp); }
323167	AUE_NULL	UNIMPL	nosys
324168	AUE_NULL	UNIMPL	nosys
325; 169 is initialized by the SYSVSEM code if present or loaded
326169	AUE_SEMSYS	NOSTD	{ int semsys(int which, int a2, int a3, \
327				    int a4, int a5); }
328; XXX should be	{ int semsys(int which, ...); }
329; 170 is initialized by the SYSVMSG code if present or loaded
330170	AUE_MSGSYS	NOSTD	{ int msgsys(int which, int a2, int a3, \
331				    int a4, int a5, int a6); }
332; XXX should be	{ int msgsys(int which, ...); }
333; 171 is initialized by the SYSVSHM code if present or loaded
334171	AUE_SHMSYS	NOSTD	{ int shmsys(int which, int a2, int a3, \
335				    int a4); }
336; XXX should be	{ int shmsys(int which, ...); }
337172	AUE_NULL	UNIMPL	nosys
338173	AUE_PREAD	STD	{ ssize_t freebsd6_pread(int fd, void *buf, \
339				    size_t nbyte, int pad, off_t offset); }
340174	AUE_PWRITE	STD	{ ssize_t freebsd6_pwrite(int fd, \
341				    const void *buf, \
342				    size_t nbyte, int pad, off_t offset); }
343175	AUE_NULL	UNIMPL	nosys
344176	AUE_NTP_ADJTIME	STD	{ int ntp_adjtime(struct timex *tp); }
345177	AUE_NULL	UNIMPL	sfork (BSD/OS 2.x)
346178	AUE_NULL	UNIMPL	getdescriptor (BSD/OS 2.x)
347179	AUE_NULL	UNIMPL	setdescriptor (BSD/OS 2.x)
348180	AUE_NULL	UNIMPL	nosys
349
350; Syscalls 181-199 are used by/reserved for BSD
351181	AUE_SETGID	STD	{ int setgid(gid_t gid); }
352182	AUE_SETEGID	STD	{ int setegid(gid_t egid); }
353183	AUE_SETEUID	STD	{ int seteuid(uid_t euid); }
354184	AUE_NULL	UNIMPL	lfs_bmapv
355185	AUE_NULL	UNIMPL	lfs_markv
356186	AUE_NULL	UNIMPL	lfs_segclean
357187	AUE_NULL	UNIMPL	lfs_segwait
358188	AUE_STAT	STD	{ int stat(char *path, struct stat *ub); }
359189	AUE_FSTAT	STD	{ int fstat(int fd, struct stat *sb); }
360190	AUE_LSTAT	STD	{ int lstat(char *path, struct stat *ub); }
361191	AUE_PATHCONF	STD	{ int pathconf(char *path, int name); }
362192	AUE_FPATHCONF	STD	{ int fpathconf(int fd, int name); }
363193	AUE_NULL	UNIMPL	nosys
364194	AUE_GETRLIMIT	STD	{ int getrlimit(u_int which, \
365				    struct rlimit *rlp); } getrlimit \
366				    __getrlimit_args int
367195	AUE_SETRLIMIT	STD	{ int setrlimit(u_int which, \
368				    struct rlimit *rlp); } setrlimit \
369				    __setrlimit_args int
370196	AUE_GETDIRENTRIES	STD	{ int getdirentries(int fd, char *buf, \
371				    u_int count, long *basep); }
372197	AUE_MMAP	STD	{ caddr_t freebsd6_mmap(caddr_t addr, \
373				    size_t len, int prot, int flags, int fd, \
374				    int pad, off_t pos); }
375198	AUE_NULL	STD	{ int nosys(void); } __syscall \
376				    __syscall_args int
377199	AUE_LSEEK	STD	{ off_t freebsd6_lseek(int fd, int pad, \
378				    off_t offset, int whence); }
379200	AUE_TRUNCATE	STD	{ int freebsd6_truncate(char *path, int pad, \
380				    off_t length); }
381201	AUE_FTRUNCATE	STD	{ int freebsd6_ftruncate(int fd, int pad, \
382				    off_t length); }
383202	AUE_SYSCTL	STD	{ int __sysctl(int *name, u_int namelen, \
384				    void *old, size_t *oldlenp, void *new, \
385				    size_t newlen); } __sysctl sysctl_args int
386203	AUE_MLOCK	STD	{ int mlock(const void *addr, size_t len); }
387204	AUE_MUNLOCK	STD	{ int munlock(const void *addr, size_t len); }
388205	AUE_UNDELETE	STD	{ int undelete(char *path); }
389206	AUE_FUTIMES	STD	{ int futimes(int fd, struct timeval *tptr); }
390207	AUE_GETPGID	STD	{ int getpgid(pid_t pid); }
391208	AUE_NULL	UNIMPL	newreboot (NetBSD)
392209	AUE_POLL	STD	{ int poll(struct pollfd *fds, u_int nfds, \
393				    int timeout); }
394
395;
396; The following are reserved for loadable syscalls
397;
398210	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
399211	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
400212	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
401213	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
402214	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
403215	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
404216	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
405217	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
406218	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
407219	AUE_NULL	NODEF	lkmnosys lkmnosys nosys_args int
408
409;
410; The following were introduced with NetBSD/4.4Lite-2
411220	AUE_SEMCTL	NOSTD	{ int __semctl(int semid, int semnum, \
412				    int cmd, union semun *arg); }
413221	AUE_SEMGET	NOSTD	{ int semget(key_t key, int nsems, \
414				    int semflg); }
415222	AUE_SEMOP	NOSTD	{ int semop(int semid, struct sembuf *sops, \
416				    size_t nsops); }
417223	AUE_NULL	UNIMPL	semconfig
418224	AUE_MSGCTL	NOSTD	{ int msgctl(int msqid, int cmd, \
419				    struct msqid_ds *buf); }
420225	AUE_MSGGET	NOSTD	{ int msgget(key_t key, int msgflg); }
421226	AUE_MSGSND	NOSTD	{ int msgsnd(int msqid, const void *msgp, \
422				    size_t msgsz, int msgflg); }
423227	AUE_MSGRCV	NOSTD	{ int msgrcv(int msqid, void *msgp, \
424				    size_t msgsz, long msgtyp, int msgflg); }
425228	AUE_SHMAT	NOSTD	{ int shmat(int shmid, const void *shmaddr, \
426				    int shmflg); }
427229	AUE_SHMCTL	NOSTD	{ int shmctl(int shmid, int cmd, \
428				    struct shmid_ds *buf); }
429230	AUE_SHMDT	NOSTD	{ int shmdt(const void *shmaddr); }
430231	AUE_SHMGET	NOSTD	{ int shmget(key_t key, size_t size, \
431				    int shmflg); }
432;
433232	AUE_NULL	STD	{ int clock_gettime(clockid_t clock_id, \
434				    struct timespec *tp); }
435233	AUE_CLOCK_SETTIME	STD	{ int clock_settime( \
436				    clockid_t clock_id, \
437				    const struct timespec *tp); }
438234	AUE_NULL	STD	{ int clock_getres(clockid_t clock_id, \
439				    struct timespec *tp); }
440235	AUE_NULL	STD	{ int ktimer_create(clockid_t clock_id, \
441				    struct sigevent *evp, int *timerid); }
442236	AUE_NULL	STD	{ int ktimer_delete(int timerid); }
443237	AUE_NULL	STD	{ int ktimer_settime(int timerid, int flags, \
444				    const struct itimerspec *value, \
445				    struct itimerspec *ovalue); }
446238	AUE_NULL	STD	{ int ktimer_gettime(int timerid, struct \
447				    itimerspec *value); }
448239	AUE_NULL	STD	{ int ktimer_getoverrun(int timerid); }
449240	AUE_NULL	STD	{ int nanosleep(const struct timespec *rqtp, \
450				    struct timespec *rmtp); }
451241	AUE_NULL	UNIMPL	nosys
452242	AUE_NULL	UNIMPL	nosys
453243	AUE_NULL	UNIMPL	nosys
454244	AUE_NULL	UNIMPL	nosys
455245	AUE_NULL	UNIMPL	nosys
456246	AUE_NULL	UNIMPL	nosys
457247	AUE_NULL	UNIMPL	nosys
458248	AUE_NULL	STD	{ int ntp_gettime(struct ntptimeval *ntvp); }
459249	AUE_NULL	UNIMPL	nosys
460; syscall numbers initially used in OpenBSD
461250	AUE_MINHERIT	STD	{ int minherit(void *addr, size_t len, \
462				    int inherit); }
463251	AUE_RFORK	STD	{ int rfork(int flags); }
464252	AUE_POLL	STD	{ int openbsd_poll(struct pollfd *fds, \
465				    u_int nfds, int timeout); }
466253	AUE_ISSETUGID	STD	{ int issetugid(void); }
467254	AUE_LCHOWN	STD	{ int lchown(char *path, int uid, int gid); }
468255	AUE_NULL	NOSTD	{ int aio_read(struct aiocb *aiocbp); }
469256	AUE_NULL	NOSTD	{ int aio_write(struct aiocb *aiocbp); }
470257	AUE_NULL	NOSTD	{ int lio_listio(int mode, \
471				    struct aiocb * const *acb_list, \
472				    int nent, struct sigevent *sig); }
473258	AUE_NULL	UNIMPL	nosys
474259	AUE_NULL	UNIMPL	nosys
475260	AUE_NULL	UNIMPL	nosys
476261	AUE_NULL	UNIMPL	nosys
477262	AUE_NULL	UNIMPL	nosys
478263	AUE_NULL	UNIMPL	nosys
479264	AUE_NULL	UNIMPL	nosys
480265	AUE_NULL	UNIMPL	nosys
481266	AUE_NULL	UNIMPL	nosys
482267	AUE_NULL	UNIMPL	nosys
483268	AUE_NULL	UNIMPL	nosys
484269	AUE_NULL	UNIMPL	nosys
485270	AUE_NULL	UNIMPL	nosys
486271	AUE_NULL	UNIMPL	nosys
487272	AUE_O_GETDENTS	STD	{ int getdents(int fd, char *buf, \
488				    size_t count); }
489273	AUE_NULL	UNIMPL	nosys
490274	AUE_LCHMOD	STD	{ int lchmod(char *path, mode_t mode); }
491275	AUE_LCHOWN	NOPROTO	{ int lchown(char *path, uid_t uid, \
492				    gid_t gid); } netbsd_lchown lchown_args \
493				    int
494276	AUE_LUTIMES	STD	{ int lutimes(char *path, \
495				    struct timeval *tptr); }
496277	AUE_MSYNC	NOPROTO	{ int msync(void *addr, size_t len, \
497				    int flags); } netbsd_msync msync_args int
498278	AUE_STAT	STD	{ int nstat(char *path, struct nstat *ub); }
499279	AUE_FSTAT	STD	{ int nfstat(int fd, struct nstat *sb); }
500280	AUE_LSTAT	STD	{ int nlstat(char *path, struct nstat *ub); }
501281	AUE_NULL	UNIMPL	nosys
502282	AUE_NULL	UNIMPL	nosys
503283	AUE_NULL	UNIMPL	nosys
504284	AUE_NULL	UNIMPL	nosys
505285	AUE_NULL	UNIMPL	nosys
506286	AUE_NULL	UNIMPL	nosys
507287	AUE_NULL	UNIMPL	nosys
508288	AUE_NULL	UNIMPL	nosys
509; 289 and 290 from NetBSD (OpenBSD: 267 and 268)
510289	AUE_PREADV	STD	{ ssize_t preadv(int fd, struct iovec *iovp, \
511					u_int iovcnt, off_t offset); }
512290	AUE_PWRITEV	STD	{ ssize_t pwritev(int fd, struct iovec *iovp, \
513					u_int iovcnt, off_t offset); }
514291	AUE_NULL	UNIMPL	nosys
515292	AUE_NULL	UNIMPL	nosys
516293	AUE_NULL	UNIMPL	nosys
517294	AUE_NULL	UNIMPL	nosys
518295	AUE_NULL	UNIMPL	nosys
519296	AUE_NULL	UNIMPL	nosys
520; XXX 297 is 300 in NetBSD 
521297	AUE_FHSTATFS	COMPAT4	{ int fhstatfs( \
522				    const struct fhandle *u_fhp, \
523				    struct ostatfs *buf); }
524298	AUE_FHOPEN	STD	{ int fhopen(const struct fhandle *u_fhp, \
525				    int flags); }
526299	AUE_FHSTAT	STD	{ int fhstat(const struct fhandle *u_fhp, \
527				    struct stat *sb); }
528; syscall numbers for FreeBSD
529300	AUE_NULL	STD	{ int modnext(int modid); }
530301	AUE_NULL	STD	{ int modstat(int modid, \
531				    struct module_stat *stat); }
532302	AUE_NULL	STD	{ int modfnext(int modid); }
533303	AUE_NULL	STD	{ int modfind(const char *name); }
534304	AUE_MODLOAD	STD	{ int kldload(const char *file); }
535305	AUE_MODUNLOAD	STD	{ int kldunload(int fileid); }
536306	AUE_NULL	STD	{ int kldfind(const char *file); }
537307	AUE_NULL	STD	{ int kldnext(int fileid); }
538308	AUE_NULL	STD	{ int kldstat(int fileid, struct \
539				    kld_file_stat* stat); }
540309	AUE_NULL	STD	{ int kldfirstmod(int fileid); }
541310	AUE_GETSID	STD	{ int getsid(pid_t pid); }
542311	AUE_SETRESUID	STD	{ int setresuid(uid_t ruid, uid_t euid, \
543				    uid_t suid); }
544312	AUE_SETRESGID	STD	{ int setresgid(gid_t rgid, gid_t egid, \
545				    gid_t sgid); }
546313	AUE_NULL	OBSOL	signanosleep
547314	AUE_NULL	NOSTD	{ int aio_return(struct aiocb *aiocbp); }
548315	AUE_NULL	NOSTD	{ int aio_suspend( \
549				    struct aiocb * const * aiocbp, int nent, \
550				    const struct timespec *timeout); }
551316	AUE_NULL	NOSTD	{ int aio_cancel(int fd, \
552				    struct aiocb *aiocbp); }
553317	AUE_NULL	NOSTD	{ int aio_error(struct aiocb *aiocbp); }
554318	AUE_NULL	NOSTD	{ int oaio_read(struct oaiocb *aiocbp); }
555319	AUE_NULL	NOSTD	{ int oaio_write(struct oaiocb *aiocbp); }
556320	AUE_NULL	NOSTD	{ int olio_listio(int mode, \
557				    struct oaiocb * const *acb_list, \
558				    int nent, struct osigevent *sig); }
559321	AUE_NULL	STD	{ int yield(void); }
560322	AUE_NULL	OBSOL	thr_sleep
561323	AUE_NULL	OBSOL	thr_wakeup
562324	AUE_MLOCKALL	STD	{ int mlockall(int how); }
563325	AUE_MUNLOCKALL	STD	{ int munlockall(void); }
564326	AUE_GETCWD	STD	{ int __getcwd(u_char *buf, u_int buflen); }
565
566327	AUE_NULL	STD	{ int sched_setparam (pid_t pid, \
567				    const struct sched_param *param); }
568328	AUE_NULL	STD	{ int sched_getparam (pid_t pid, struct \
569				    sched_param *param); }
570
571329	AUE_NULL	STD	{ int sched_setscheduler (pid_t pid, int \
572				    policy, const struct sched_param \
573				    *param); }
574330	AUE_NULL	STD	{ int sched_getscheduler (pid_t pid); }
575
576331	AUE_NULL	STD	{ int sched_yield (void); }
577332	AUE_NULL	STD	{ int sched_get_priority_max (int policy); }
578333	AUE_NULL	STD	{ int sched_get_priority_min (int policy); }
579334	AUE_NULL	STD	{ int sched_rr_get_interval (pid_t pid, \
580				    struct timespec *interval); }
581335	AUE_NULL	STD	{ int utrace(const void *addr, size_t len); }
582336	AUE_SENDFILE	COMPAT4	{ int sendfile(int fd, int s, \
583				    off_t offset, size_t nbytes, \
584				    struct sf_hdtr *hdtr, off_t *sbytes, \
585				    int flags); }
586337	AUE_NULL	STD	{ int kldsym(int fileid, int cmd, \
587				    void *data); }
588338	AUE_JAIL	STD	{ int jail(struct jail *jail); }
589339	AUE_NULL	UNIMPL	pioctl
590340	AUE_SIGPROCMASK	STD	{ int sigprocmask(int how, \
591				    const sigset_t *set, sigset_t *oset); }
592341	AUE_SIGSUSPEND	STD	{ int sigsuspend(const sigset_t *sigmask); }
593342	AUE_SIGACTION	COMPAT4	{ int sigaction(int sig, const \
594				    struct sigaction *act, \
595				    struct sigaction *oact); }
596343	AUE_SIGPENDING	STD	{ int sigpending(sigset_t *set); }
597344	AUE_SIGRETURN	COMPAT4	{ int sigreturn( \
598				    const struct ucontext4 *sigcntxp); }
599345	AUE_SIGWAIT	STD	{ int sigtimedwait(const sigset_t *set, \
600				    siginfo_t *info, \
601				    const struct timespec *timeout); }
602346	AUE_NULL	STD	{ int sigwaitinfo(const sigset_t *set, \
603				    siginfo_t *info); }
604347	AUE_NULL	STD	{ int __acl_get_file(const char *path, \
605				    acl_type_t type, struct acl *aclp); }
606348	AUE_NULL	STD	{ int __acl_set_file(const char *path, \
607				    acl_type_t type, struct acl *aclp); }
608349	AUE_NULL	STD	{ int __acl_get_fd(int filedes, \
609				    acl_type_t type, struct acl *aclp); }
610350	AUE_NULL	STD	{ int __acl_set_fd(int filedes, \
611				    acl_type_t type, struct acl *aclp); }
612351	AUE_NULL	STD	{ int __acl_delete_file(const char *path, \
613				    acl_type_t type); }
614352	AUE_NULL	STD	{ int __acl_delete_fd(int filedes, \
615				    acl_type_t type); }
616353	AUE_NULL	STD	{ int __acl_aclcheck_file(const char *path, \
617				    acl_type_t type, struct acl *aclp); }
618354	AUE_NULL	STD	{ int __acl_aclcheck_fd(int filedes, \
619				    acl_type_t type, struct acl *aclp); }
620355	AUE_EXTATTRCTL	STD	{ int extattrctl(const char *path, int cmd, \
621				    const char *filename, int attrnamespace, \
622				    const char *attrname); }
623356	AUE_EXTATTR_SET_FILE	STD	{ int extattr_set_file( \
624				    const char *path, int attrnamespace, \
625				    const char *attrname, void *data, \
626				    size_t nbytes); }
627357	AUE_EXTATTR_GET_FILE	STD	{ ssize_t extattr_get_file( \
628				    const char *path, int attrnamespace, \
629				    const char *attrname, void *data, \
630				    size_t nbytes); }
631358	AUE_EXTATTR_DELETE_FILE	STD	{ int extattr_delete_file(const char *path, \
632				    int attrnamespace, \
633				    const char *attrname); }
634359	AUE_NULL	NOSTD	{ int aio_waitcomplete( \
635				    struct aiocb **aiocbp, \
636				    struct timespec *timeout); }
637360	AUE_GETRESUID	STD	{ int getresuid(uid_t *ruid, uid_t *euid, \
638				    uid_t *suid); }
639361	AUE_GETRESGID	STD	{ int getresgid(gid_t *rgid, gid_t *egid, \
640				    gid_t *sgid); }
641362	AUE_KQUEUE	STD	{ int kqueue(void); }
642363	AUE_NULL	STD	{ int kevent(int fd, \
643				    struct kevent *changelist, int nchanges, \
644				    struct kevent *eventlist, int nevents, \
645				    const struct timespec *timeout); }
646364	AUE_NULL	UNIMPL	__cap_get_proc
647365	AUE_NULL	UNIMPL	__cap_set_proc
648366	AUE_NULL	UNIMPL	__cap_get_fd
649367	AUE_NULL	UNIMPL	__cap_get_file
650368	AUE_NULL	UNIMPL	__cap_set_fd
651369	AUE_NULL	UNIMPL	__cap_set_file
652370	AUE_NULL	NODEF	lkmressys lkmressys nosys_args int
653371	AUE_EXTATTR_SET_FD	STD	{ int extattr_set_fd(int fd, \
654				    int attrnamespace, const char *attrname, \
655				    void *data, size_t nbytes); }
656372	AUE_EXTATTR_GET_FD	STD	{ ssize_t extattr_get_fd(int fd, \
657				    int attrnamespace, const char *attrname, \
658				    void *data, size_t nbytes); }
659373	AUE_EXTATTR_DELETE_FD	STD	{ int extattr_delete_fd(int fd, \
660				    int attrnamespace, \
661				    const char *attrname); }
662374	AUE_NULL	STD	{ int __setugid(int flag); }
663375	AUE_NULL	NOIMPL	{ int nfsclnt(int flag, caddr_t argp); }
664376	AUE_EACCESS	STD	{ int eaccess(char *path, int flags); }
665377	AUE_NULL	UNIMPL	afs_syscall
666378	AUE_NMOUNT	STD	{ int nmount(struct iovec *iovp, \
667				    unsigned int iovcnt, int flags); }
668379	AUE_NULL	UNIMPL	kse_exit
669380	AUE_NULL	UNIMPL	kse_wakeup
670381	AUE_NULL	UNIMPL	kse_create
671382	AUE_NULL	UNIMPL	kse_thr_interrupt
672383	AUE_NULL	UNIMPL	kse_release
673384	AUE_NULL	STD	{ int __mac_get_proc(struct mac *mac_p); }
674385	AUE_NULL	STD	{ int __mac_set_proc(struct mac *mac_p); }
675386	AUE_NULL	STD	{ int __mac_get_fd(int fd, \
676				    struct mac *mac_p); }
677387	AUE_NULL	STD	{ int __mac_get_file(const char *path_p, \
678				    struct mac *mac_p); }
679388	AUE_NULL	STD	{ int __mac_set_fd(int fd, \
680				    struct mac *mac_p); }
681389	AUE_NULL	STD	{ int __mac_set_file(const char *path_p, \
682				    struct mac *mac_p); }
683390	AUE_NULL	STD	{ int kenv(int what, const char *name, \
684				    char *value, int len); }
685391	AUE_LCHFLAGS	STD	{ int lchflags(const char *path, int flags); }
686392	AUE_NULL	STD	{ int uuidgen(struct uuid *store, \
687				    int count); }
688393	AUE_SENDFILE	STD	{ int sendfile(int fd, int s, off_t offset, \
689				    size_t nbytes, struct sf_hdtr *hdtr, \
690				    off_t *sbytes, int flags); }
691394	AUE_NULL	STD	{ int mac_syscall(const char *policy, \
692				    int call, void *arg); }
693395	AUE_GETFSSTAT	STD	{ int getfsstat(struct statfs *buf, \
694				    long bufsize, int flags); }
695396	AUE_STATFS	STD	{ int statfs(char *path, \
696				    struct statfs *buf); }
697397	AUE_FSTATFS	STD	{ int fstatfs(int fd, struct statfs *buf); }
698398	AUE_FHSTATFS	STD	{ int fhstatfs(const struct fhandle *u_fhp, \
699				    struct statfs *buf); }
700399	AUE_NULL	UNIMPL	nosys
701400	AUE_NULL	NOSTD	{ int ksem_close(semid_t id); }
702401	AUE_NULL	NOSTD	{ int ksem_post(semid_t id); }
703402	AUE_NULL	NOSTD	{ int ksem_wait(semid_t id); }
704403	AUE_NULL	NOSTD	{ int ksem_trywait(semid_t id); }
705404	AUE_NULL	NOSTD	{ int ksem_init(semid_t *idp, \
706				    unsigned int value); }
707405	AUE_NULL	NOSTD	{ int ksem_open(semid_t *idp, \
708				    const char *name, int oflag, \
709				    mode_t mode, unsigned int value); }
710406	AUE_NULL	NOSTD	{ int ksem_unlink(const char *name); }
711407	AUE_NULL	NOSTD	{ int ksem_getvalue(semid_t id, int *val); }
712408	AUE_NULL	NOSTD	{ int ksem_destroy(semid_t id); }
713409	AUE_NULL	STD	{ int __mac_get_pid(pid_t pid, \
714				    struct mac *mac_p); }
715410	AUE_NULL	STD	{ int __mac_get_link(const char *path_p, \
716				    struct mac *mac_p); }
717411	AUE_NULL	STD	{ int __mac_set_link(const char *path_p, \
718				    struct mac *mac_p); }
719412	AUE_EXTATTR_SET_LINK	STD	{ int extattr_set_link( \
720				    const char *path, int attrnamespace, \
721				    const char *attrname, void *data, \
722				    size_t nbytes); }
723413	AUE_EXTATTR_GET_LINK	STD	{ ssize_t extattr_get_link( \
724				    const char *path, int attrnamespace, \
725				    const char *attrname, void *data, \
726				    size_t nbytes); }
727414	AUE_EXTATTR_DELETE_LINK	STD	{ int extattr_delete_link( \
728				    const char *path, int attrnamespace, \
729				    const char *attrname); }
730415	AUE_NULL	STD	{ int __mac_execve(char *fname, char **argv, \
731				    char **envv, struct mac *mac_p); }
732416	AUE_SIGACTION	STD	{ int sigaction(int sig, \
733				    const struct sigaction *act, \
734				    struct sigaction *oact); }
735417	AUE_SIGRETURN	STD	{ int sigreturn( \
736				    const struct __ucontext *sigcntxp); }
737418	AUE_NULL	UNIMPL	__xstat
738419	AUE_NULL	UNIMPL	__xfstat
739420	AUE_NULL	UNIMPL	__xlstat
740421	AUE_NULL	STD	{ int getcontext(struct __ucontext *ucp); }
741422	AUE_NULL	STD	{ int setcontext( \
742				    const struct __ucontext *ucp); }
743423	AUE_NULL	STD	{ int swapcontext(struct __ucontext *oucp, \
744				    const struct __ucontext *ucp); }
745424	AUE_SWAPOFF	STD	{ int swapoff(const char *name); }
746425	AUE_NULL	STD	{ int __acl_get_link(const char *path, \
747				    acl_type_t type, struct acl *aclp); }
748426	AUE_NULL	STD	{ int __acl_set_link(const char *path, \
749				    acl_type_t type, struct acl *aclp); }
750427	AUE_NULL	STD	{ int __acl_delete_link(const char *path, \
751				    acl_type_t type); }
752428	AUE_NULL	STD	{ int __acl_aclcheck_link(const char *path, \
753				    acl_type_t type, struct acl *aclp); }
754429	AUE_SIGWAIT	STD	{ int sigwait(const sigset_t *set, \
755				    int *sig); }
756430	AUE_NULL	STD	{ int thr_create(ucontext_t *ctx, long *id, \
757				    int flags); }
758431	AUE_NULL	STD	{ void thr_exit(long *state); }
759432	AUE_NULL	STD	{ int thr_self(long *id); }
760433	AUE_NULL	STD	{ int thr_kill(long id, int sig); }
761434	AUE_NULL	STD	{ int _umtx_lock(struct umtx *umtx); }
762435	AUE_NULL	STD	{ int _umtx_unlock(struct umtx *umtx); }
763436	AUE_NULL	STD	{ int jail_attach(int jid); }
764437	AUE_EXTATTR_LIST_FD	STD	{ ssize_t extattr_list_fd(int fd, \
765				    int attrnamespace, void *data, \
766				    size_t nbytes); }
767438	AUE_EXTATTR_LIST_FILE	STD	{ ssize_t extattr_list_file( \
768				    const char *path, int attrnamespace, \
769				    void *data, size_t nbytes); }
770439	AUE_EXTATTR_LIST_LINK	STD	{ ssize_t extattr_list_link( \
771				    const char *path, int attrnamespace, \
772				    void *data, size_t nbytes); }
773440	AUE_NULL	UNIMPL	kse_switchin
774441	AUE_NULL	NOSTD	{ int ksem_timedwait(semid_t id, \
775				    const struct timespec *abstime); }
776442	AUE_NULL	STD	{ int thr_suspend( \
777				    const struct timespec *timeout); }
778443	AUE_NULL	STD	{ int thr_wake(long id); }
779444	AUE_MODUNLOAD	STD	{ int kldunloadf(int fileid, int flags); }
780445	AUE_AUDIT	STD	{ int audit(const void *record, \
781				    u_int length); }
782446	AUE_AUDITON	STD	{ int auditon(int cmd, void *data, \
783				    u_int length); }
784447	AUE_GETAUID	STD	{ int getauid(uid_t *auid); }
785448	AUE_SETAUID	STD	{ int setauid(uid_t *auid); }
786449	AUE_GETAUDIT	STD	{ int getaudit(struct auditinfo *auditinfo); }
787450	AUE_SETAUDIT	STD	{ int setaudit(struct auditinfo *auditinfo); }
788451	AUE_GETAUDIT_ADDR	STD	{ int getaudit_addr( \
789				    struct auditinfo_addr *auditinfo_addr, \
790				    u_int length); }
791452	AUE_SETAUDIT_ADDR	STD	{ int setaudit_addr( \
792				    struct auditinfo_addr *auditinfo_addr, \
793				    u_int length); }
794453	AUE_AUDITCTL	STD	{ int auditctl(char *path); }
795454	AUE_NULL	STD	{ int _umtx_op(void *obj, int op, \
796				    u_long val, void *uaddr1, void *uaddr2); }
797455	AUE_NULL	STD	{ int thr_new(struct thr_param *param, \
798				    int param_size); }
799456	AUE_NULL	STD	{ int sigqueue(pid_t pid, int signum, void *value); }
800457	AUE_NULL	NOSTD	{ int kmq_open(const char *path, int flags, \
801				    mode_t mode, const struct mq_attr *attr); }
802458	AUE_NULL	NOSTD	{ int kmq_setattr(int mqd,		\
803				    const struct mq_attr *attr,		\
804				    struct mq_attr *oattr); }
805459	AUE_NULL	NOSTD	{ int kmq_timedreceive(int mqd,	\
806				    char *msg_ptr, size_t msg_len,	\
807				    unsigned *msg_prio,			\
808				    const struct timespec *abs_timeout); }
809460	AUE_NULL	NOSTD	{ int kmq_timedsend(int mqd,		\
810				    const char *msg_ptr, size_t msg_len,\
811				    unsigned msg_prio,			\
812				    const struct timespec *abs_timeout);}
813461	AUE_NULL	NOSTD	{ int kmq_notify(int mqd,		\
814				    const struct sigevent *sigev); }
815462	AUE_NULL	NOSTD	{ int kmq_unlink(const char *path); }
816463	AUE_NULL	STD	{ int abort2(const char *why, int nargs, void **args); }
817464	AUE_NULL	STD	{ int thr_set_name(long id, const char *name); }
818465	AUE_NULL	NOSTD	{ int aio_fsync(int op, struct aiocb *aiocbp); }
819466	AUE_RTPRIO	STD	{ int rtprio_thread(int function, \
820				    lwpid_t lwpid, struct rtprio *rtp); }
821467	AUE_NULL	UNIMPL	nosys
822468	AUE_NULL	UNIMPL	nosys
823469	AUE_NULL	UNIMPL	__getpath_fromfd
824470	AUE_NULL	UNIMPL	__getpath_fromaddr
825471	AUE_NULL	STD	{ int sctp_peeloff(int sd, uint32_t name); }
826472     AUE_NULL        STD    { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
827	                            caddr_t to, __socklen_t tolen, \
828				    struct sctp_sndrcvinfo *sinfo, int flags); }
829473     AUE_NULL        STD    { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
830	                            caddr_t to, __socklen_t tolen, \
831				    struct sctp_sndrcvinfo *sinfo, int flags); }
832474     AUE_NULL        STD    { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
833				    struct sockaddr * from, __socklen_t *fromlenaddr, \
834				    struct sctp_sndrcvinfo *sinfo, int *msg_flags); }
835475	AUE_PREAD	STD	{ ssize_t pread(int fd, void *buf, \
836				    size_t nbyte, off_t offset); }
837476	AUE_PWRITE	STD	{ ssize_t pwrite(int fd, const void *buf, \
838				    size_t nbyte, off_t offset); }
839477	AUE_MMAP	STD	{ caddr_t mmap(caddr_t addr, size_t len, \
840				    int prot, int flags, int fd, off_t pos); }
841478	AUE_LSEEK	STD	{ off_t lseek(int fd, off_t offset, \
842				    int whence); }
843479	AUE_TRUNCATE	STD	{ int truncate(char *path, off_t length); }
844480	AUE_FTRUNCATE	STD	{ int ftruncate(int fd, off_t length); }
845481	AUE_KILL	STD	{ int thr_kill2(pid_t pid, long id, int sig); }
846482	AUE_SHMOPEN	STD	{ int shm_open(const char *path, int flags, \
847				    mode_t mode); }
848483	AUE_SHMUNLINK	STD	{ int shm_unlink(const char *path); }
849484	AUE_NULL	STD	{ int cpuset(cpusetid_t *setid); }
850485	AUE_NULL	STD	{ int cpuset_setid(cpuwhich_t which, id_t id, \
851				    cpusetid_t setid); }
852486	AUE_NULL	STD	{ int cpuset_getid(cpulevel_t level, \
853				    cpuwhich_t which, id_t id, \
854				    cpusetid_t *setid); }
855487	AUE_NULL	STD	{ int cpuset_getaffinity(cpulevel_t level, \
856				    cpuwhich_t which, id_t id, size_t cpusetsize, \
857				    cpuset_t *mask); }
858488	AUE_NULL	STD	{ int cpuset_setaffinity(cpulevel_t level, \
859				    cpuwhich_t which, id_t id, size_t cpusetsize, \
860				    const cpuset_t *mask); }
861489	AUE_FACCESSAT	STD	{ int faccessat(int fd, char *path, int mode, \
862				    int flag); }
863490	AUE_FCHMODAT	STD	{ int fchmodat(int fd, char *path, mode_t mode, \
864				    int flag); }
865491	AUE_FCHOWNAT	STD	{ int fchownat(int fd, char *path, uid_t uid, \
866				    gid_t gid, int flag); }
867492	AUE_FEXECVE	STD	{ int fexecve(int fd, char **argv, \
868				    char **envv); }
869493	AUE_FSTATAT	STD	{ int fstatat(int fd, char *path, \
870				    struct stat *buf, int flag); }
871494	AUE_FUTIMESAT	STD	{ int futimesat(int fd, char *path, \
872				    struct timeval *times); }
873495	AUE_LINKAT	STD	{ int linkat(int fd1, char *path1, int fd2, \
874				    char *path2, int flag); }
875496	AUE_MKDIRAT	STD	{ int mkdirat(int fd, char *path, mode_t mode); }
876497	AUE_MKFIFOAT	STD	{ int mkfifoat(int fd, char *path, mode_t mode); }
877498	AUE_MKNODAT	STD	{ int mknodat(int fd, char *path, mode_t mode, \
878				    dev_t dev); }
879; XXX: see the comment for open
880499	AUE_OPENAT_RWTC	STD	{ int openat(int fd, char *path, int flag, \
881				    mode_t mode); }
882500	AUE_READLINKAT	STD	{ int readlinkat(int fd, char *path, char *buf, \
883				    size_t bufsize); }
884501	AUE_RENAMEAT	STD	{ int renameat(int oldfd, char *old, int newfd, \
885				     char *new); }
886502	AUE_SYMLINKAT	STD	{ int symlinkat(char *path1, int fd, \
887				     char *path2); }
888503	AUE_UNLINKAT	STD	{ int unlinkat(int fd, char *path, int flag); }
889; Please copy any additions and changes to the following compatability tables:
890; sys/compat/freebsd32/syscalls.master
891