syscalls.master revision 163018
154359Sroberto $FreeBSD: head/sys/compat/freebsd32/syscalls.master 163018 2006-10-05 01:56:11Z davidxu $
254359Sroberto;	from: @(#)syscalls.master	8.2 (Berkeley) 1/13/94
354359Sroberto;	from: src/sys/kern/syscalls.master 1.107
454359Sroberto;
554359Sroberto; System call name/number master file.
682498Sroberto; Processed to created init_sysent.c, syscalls.c and syscall.h.
782498Sroberto
882498Sroberto; Columns: number audit type nargs name alt{name,tag,rtyp}/comments
982498Sroberto;	number	system call number, must be in order
1082498Sroberto;	audit	the audit event associated with the system call
1182498Sroberto;		A value of AUE_NULL means no auditing, but it also means that
1254359Sroberto;		there is no audit event for the call at this time. For the
1354359Sroberto;		case where the event exists, but we don't want auditing, the
1454359Sroberto;		event should be #defined to AUE_NULL in audit_kevents.h.
1554359Sroberto;	type	one of STD, OBSOL, UNIMPL, COMPAT, CPT_NOA, LIBCOMPAT,
1654359Sroberto;		NODEF, NOARGS, NOPROTO, NOIMPL, NOSTD, COMPAT4
1754359Sroberto;	name	psuedo-prototype of syscall routine
1854359Sroberto;		If one of the following alts is different, then all appear:
1954359Sroberto;	altname	name of system call if different
2054359Sroberto;	alttag	name of args struct tag if different from [o]`name'"_args"
2182498Sroberto;	altrtyp	return type if not int (bogus - syscalls always return int)
2254359Sroberto;		for UNIMPL/OBSOL, name continues with comments
2354359Sroberto
2454359Sroberto; types:
2554359Sroberto;	STD	always included
2654359Sroberto;	COMPAT	included on COMPAT #ifdef
2754359Sroberto;	COMPAT4	included on COMPAT4 #ifdef (FreeBSD 4 compat)
2854359Sroberto;	LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
2954359Sroberto;	OBSOL	obsolete, not included in system, only specifies name
3054359Sroberto;	UNIMPL	not implemented, placeholder only
3154359Sroberto;	NOSTD	implemented but as a lkm that can be statically
3254359Sroberto;		compiled in; sysent entry will be filled with lkmsys
3354359Sroberto;		so the SYSCALL_MODULE macro works
3454359Sroberto
3554359Sroberto; #ifdef's, etc. may be included, and are copied to the output files.
3654359Sroberto
3754359Sroberto#include <sys/param.h>
3854359Sroberto#include <sys/sysent.h>
3954359Sroberto#include <sys/sysproto.h>
4054359Sroberto#include <sys/mount.h>
4154359Sroberto#include <compat/freebsd32/freebsd32.h>
4254359Sroberto#include <compat/freebsd32/freebsd32_proto.h>
4354359Sroberto
4454359Sroberto; Reserved/unimplemented system calls in the range 0-150 inclusive
4554359Sroberto; are reserved for use in future Berkeley releases.
4654359Sroberto; Additional system calls implemented in vendor and other
4754359Sroberto; redistributions should be placed in the reserved range at the end
4854359Sroberto; of the current calls.
4954359Sroberto
5054359Sroberto0	AUE_NULL	NOPROTO	{ int nosys(void); } syscall nosys_args int
5154359Sroberto1	AUE_EXIT	NOPROTO	{ void sys_exit(int rval); } exit \
5254359Sroberto				    sys_exit_args void
5354359Sroberto2	AUE_FORK	NOPROTO	{ int fork(void); }
5454359Sroberto3	AUE_READ	NOPROTO	{ ssize_t read(int fd, void *buf, \
5554359Sroberto				    size_t nbyte); }
5654359Sroberto4	AUE_WRITE	NOPROTO	{ ssize_t write(int fd, const void *buf, \
5754359Sroberto				    size_t nbyte); }
5854359Sroberto5	AUE_OPEN_RWTC	NOPROTO	{ int open(char *path, int flags, \
5954359Sroberto				    int mode); }
6054359Sroberto6	AUE_CLOSE	NOPROTO	{ int close(int fd); }
6154359Sroberto7	AUE_WAIT4	STD	{ int freebsd32_wait4(int pid, int *status, \
6254359Sroberto				    int options, struct rusage32 *rusage); }
6354359Sroberto8	AUE_CREAT	OBSOL	old creat
6454359Sroberto9	AUE_LINK	NOPROTO	{ int link(char *path, char *link); }
6554359Sroberto10	AUE_UNLINK	NOPROTO	{ int unlink(char *path); }
6654359Sroberto11	AUE_NULL	OBSOL	execv
6754359Sroberto12	AUE_CHDIR	NOPROTO	{ int chdir(char *path); }
6854359Sroberto13	AUE_FCHDIR	NOPROTO	{ int fchdir(int fd); }
6954359Sroberto14	AUE_MKNOD	NOPROTO	{ int mknod(char *path, int mode, int dev); }
7054359Sroberto15	AUE_CHMOD	NOPROTO	{ int chmod(char *path, int mode); }
7154359Sroberto16	AUE_CHOWN	NOPROTO	{ int chown(char *path, int uid, int gid); }
7254359Sroberto17	AUE_NULL	NOPROTO	{ int obreak(char *nsize); } break \
7354359Sroberto				    obreak_args int
7454359Sroberto18	AUE_GETFSSTAT	COMPAT4	{ int freebsd32_getfsstat( \
7554359Sroberto				    struct statfs32 *buf, long bufsize, \
7654359Sroberto				    int flags); }
7754359Sroberto19	AUE_LSEEK	OBSOL	olseek
7854359Sroberto20	AUE_GETPID	NOPROTO	{ pid_t getpid(void); }
7954359Sroberto21	AUE_MOUNT	NOPROTO	{ int mount(char *type, char *path, \
8054359Sroberto				    int flags, caddr_t data); }
8154359Sroberto22	AUE_UMOUNT	NOPROTO	{ int unmount(char *path, int flags); }
8254359Sroberto23	AUE_SETUID	NOPROTO	{ int setuid(uid_t uid); }
8354359Sroberto24	AUE_GETUID	NOPROTO	{ uid_t getuid(void); }
8454359Sroberto25	AUE_GETEUID	NOPROTO	{ uid_t geteuid(void); }
8554359Sroberto26	AUE_PTRACE	NOPROTO	{ int ptrace(int req, pid_t pid, \
8654359Sroberto				    caddr_t addr, int data); }
8754359Sroberto; XXX implement
8854359Sroberto27	AUE_RECVMSG	STD	{ int freebsd32_recvmsg(int s, struct msghdr32 *msg, \
8954359Sroberto				    int flags); }
9054359Sroberto28	AUE_SENDMSG	STD	{ int freebsd32_sendmsg(int s, struct msghdr32 *msg, \
9154359Sroberto				    int flags); }
9254359Sroberto29	AUE_RECVFROM	STD	{ int freebsd32_recvfrom(int s, u_int32_t buf, \
9354359Sroberto				    u_int32_t len, int flags, u_int32_t from, \
9454359Sroberto				    u_int32_t fromlenaddr); }
9554359Sroberto30	AUE_ACCEPT	NOPROTO	{ int accept(int s, caddr_t name, \
9654359Sroberto				    int *anamelen); }
9754359Sroberto31	AUE_GETPEERNAME	NOPROTO	{ int getpeername(int fdes, caddr_t asa, \
9854359Sroberto				    int *alen); }
9954359Sroberto32	AUE_GETSOCKNAME	NOPROTO	{ int getsockname(int fdes, caddr_t asa, \
10054359Sroberto				    int *alen); }
10154359Sroberto33	AUE_ACCESS	NOPROTO	{ int access(char *path, int flags); }
10254359Sroberto34	AUE_CHFLAGS	NOPROTO	{ int chflags(char *path, int flags); }
10354359Sroberto35	AUE_FCHFLAGS	NOPROTO	{ int fchflags(int fd, int flags); }
10454359Sroberto36	AUE_SYNC	NOPROTO	{ int sync(void); }
10554359Sroberto37	AUE_KILL	NOPROTO	{ int kill(int pid, int signum); }
10654359Sroberto38	AUE_STAT	UNIMPL	ostat
10754359Sroberto39	AUE_GETPPID	NOPROTO	{ pid_t getppid(void); }
10854359Sroberto40	AUE_LSTAT	UNIMPL	olstat
10954359Sroberto41	AUE_DUP		NOPROTO	{ int dup(u_int fd); }
11054359Sroberto42	AUE_PIPE	NOPROTO	{ int pipe(void); }
11154359Sroberto43	AUE_GETEGID	NOPROTO	{ gid_t getegid(void); }
11254359Sroberto44	AUE_PROFILE	NOPROTO	{ int profil(caddr_t samples, size_t size, \
11354359Sroberto				    size_t offset, u_int scale); }
11454359Sroberto45	AUE_KTRACE	NOPROTO	{ int ktrace(const char *fname, int ops, \
11554359Sroberto				    int facs, int pid); }
11654359Sroberto46	AUE_SIGACTION	COMPAT	{ int freebsd32_sigaction( int signum, \
11754359Sroberto				   struct osigaction32 *nsa, \
11854359Sroberto				   struct osigaction32 *osa); }
11954359Sroberto47	AUE_GETGID	NOPROTO	{ gid_t getgid(void); }
12054359Sroberto48	AUE_SIGPROCMASK	COMPAT	{ int freebsd32_sigprocmask(int how, \
12154359Sroberto				   osigset_t mask); }
12254359Sroberto49	AUE_GETLOGIN	NOPROTO	{ int getlogin(char *namebuf, \
12354359Sroberto				    u_int namelen); }
12454359Sroberto50	AUE_SETLOGIN	NOPROTO	{ int setlogin(char *namebuf); }
12554359Sroberto51	AUE_ACCT	NOPROTO	{ int acct(char *path); }
12654359Sroberto52	AUE_SIGPENDING	COMPAT	{ int freebsd32_sigpending(void); }
12754359Sroberto53	AUE_SIGALTSTACK	STD	{ int freebsd32_sigaltstack( \
12854359Sroberto				    struct sigaltstack32 *ss, \
12954359Sroberto				    struct sigaltstack32 *oss); }
13054359Sroberto54	AUE_IOCTL	NOPROTO	{ int ioctl(int fd, u_long com, \
13154359Sroberto				    caddr_t data); }
13254359Sroberto55	AUE_REBOOT	NOPROTO	{ int reboot(int opt); }
13354359Sroberto56	AUE_REVOKE	NOPROTO	{ int revoke(char *path); }
13454359Sroberto57	AUE_SYMLINK	NOPROTO	{ int symlink(char *path, char *link); }
13554359Sroberto58	AUE_READLINK	NOPROTO	{ int readlink(char *path, char *buf, \
13654359Sroberto				    int count); }
13754359Sroberto59	AUE_EXECVE	STD	{ int freebsd32_execve(char *fname, \
13854359Sroberto				    u_int32_t *argv, u_int32_t *envv); }
13954359Sroberto60	AUE_UMASK	NOPROTO	{ int umask(int newmask); } umask \
14054359Sroberto				    umask_args int
14154359Sroberto61	AUE_CHROOT	NOPROTO	{ int chroot(char *path); }
14254359Sroberto62	AUE_FSTAT	OBSOL	ofstat
14354359Sroberto63	AUE_NULL	OBSOL	ogetkerninfo
14454359Sroberto64	AUE_NULL	OBSOL	ogetpagesize
14554359Sroberto; XXX implement (not OBSOL at all)
14654359Sroberto65	AUE_MSYNC	NOPROTO	{ int msync(void *addr, size_t len, \
14754359Sroberto				    int flags); }
14854359Sroberto66	AUE_VFORK	NOPROTO	{ int vfork(void); }
14954359Sroberto67	AUE_NULL	OBSOL	vread
15054359Sroberto68	AUE_NULL	OBSOL	vwrite
15154359Sroberto69	AUE_SBRK	NOPROTO	{ int sbrk(int incr); }
15254359Sroberto70	AUE_SSTK	NOPROTO	{ int sstk(int incr); }
15354359Sroberto71	AUE_MMAP	OBSOL	ommap
15454359Sroberto72	AUE_O_VADVISE	NOPROTO	{ int ovadvise(int anom); } vadvise \
15554359Sroberto				    ovadvise_args int
15654359Sroberto73	AUE_MUNMAP	NOPROTO	{ int munmap(void *addr, size_t len); }
15754359Sroberto74	AUE_MPROTECT	NOPROTO	{ int mprotect(const void *addr, \
15854359Sroberto				    size_t len, int prot); }
15954359Sroberto75	AUE_MADVISE	NOPROTO	{ int madvise(void *addr, size_t len, \
16054359Sroberto				    int behav); }
16154359Sroberto76	AUE_NULL	OBSOL	vhangup
16254359Sroberto77	AUE_NULL	OBSOL	vlimit
16354359Sroberto78	AUE_MINCORE	NOPROTO	{ int mincore(const void *addr, size_t len, \
16454359Sroberto				    char *vec); }
16554359Sroberto79	AUE_GETGROUPS	NOPROTO	{ int getgroups(u_int gidsetsize, \
16654359Sroberto				    gid_t *gidset); }
16754359Sroberto80	AUE_SETGROUPS	NOPROTO	{ int setgroups(u_int gidsetsize, \
16854359Sroberto				    gid_t *gidset); }
16954359Sroberto81	AUE_GETPGRP	NOPROTO	{ int getpgrp(void); }
17054359Sroberto82	AUE_SETPGRP	NOPROTO	{ int setpgid(int pid, int pgid); }
17154359Sroberto83	AUE_SETITIMER	STD	{ int freebsd32_setitimer(u_int which, \
17254359Sroberto				    struct itimerval32 *itv, \
17354359Sroberto				    struct itimerval32 *oitv); }
17454359Sroberto84	AUE_NULL	OBSOL	owait
17554359Sroberto; XXX implement
17654359Sroberto85	AUE_SWAPON	OBSOL	oswapon
17754359Sroberto86	AUE_GETITIMER	STD	{ int freebsd32_getitimer(u_int which, \
17854359Sroberto				    struct itimerval32 *itv); }
17954359Sroberto87	AUE_O_GETHOSTNAME	OBSOL	ogethostname
18054359Sroberto88	AUE_O_SETHOSTNAME	OBSOL	osethostname
18154359Sroberto89	AUE_GETDTABLESIZE	NOPROTO	{ int getdtablesize(void); }
18254359Sroberto90	AUE_DUP2	NOPROTO	{ int dup2(u_int from, u_int to); }
18354359Sroberto91	AUE_NULL	UNIMPL	getdopt
18454359Sroberto92	AUE_FCNTL	NOPROTO	{ int fcntl(int fd, int cmd, long arg); }
18554359Sroberto93	AUE_SELECT	STD	{ int freebsd32_select(int nd, fd_set *in, \
18654359Sroberto				    fd_set *ou, fd_set *ex, \
18754359Sroberto				    struct timeval32 *tv); }
18854359Sroberto; XXX need to override for big-endian - little-endian should work fine.
18954359Sroberto94	AUE_NULL	UNIMPL	setdopt
19054359Sroberto95	AUE_FSYNC	NOPROTO	{ int fsync(int fd); }
19154359Sroberto96	AUE_SETPRIORITY	NOPROTO	{ int setpriority(int which, int who, \
19254359Sroberto				    int prio); }
19354359Sroberto97	AUE_SOCKET	NOPROTO	{ int socket(int domain, int type, \
19454359Sroberto				    int protocol); }
19554359Sroberto98	AUE_CONNECT	NOPROTO	{ int connect(int s, caddr_t name, \
19654359Sroberto				    int namelen); }
19754359Sroberto99	AUE_NULL	OBSOL	oaccept
19854359Sroberto100	AUE_GETPRIORITY	NOPROTO	{ int getpriority(int which, int who); }
19954359Sroberto101	AUE_NULL	OBSOL	osend
20054359Sroberto102	AUE_NULL	OBSOL	orecv
20154359Sroberto103	AUE_NULL	OBSOL	osigreturn
20254359Sroberto104	AUE_BIND	NOPROTO	{ int bind(int s, caddr_t name, \
20354359Sroberto				    int namelen); }
20454359Sroberto105	AUE_SETSOCKOPT	NOPROTO	{ int setsockopt(int s, int level, \
20554359Sroberto				    int name, caddr_t val, int valsize); }
20654359Sroberto106	AUE_LISTEN	NOPROTO	{ int listen(int s, int backlog); }
20754359Sroberto107	AUE_NULL	OBSOL	vtimes
20854359Sroberto108	AUE_O_SIGVEC	COMPAT	{ int freebsd32_sigvec(int signum, \
20954359Sroberto				     struct sigvec32 *nsv, \
21054359Sroberto				     struct sigvec32 *osv); }
21154359Sroberto109	AUE_O_SIGBLOCK	COMPAT	{ int freebsd32_sigblock(int mask); }
21254359Sroberto110	AUE_O_SIGSETMASK	COMPAT	{ int freebsd32_sigsetmask( int mask); }
21354359Sroberto111	AUE_SIGSUSPEND	COMPAT	{ int freebsd32_sigsuspend( int mask); }
21454359Sroberto112	AUE_O_SIGSTACK	COMPAT	{ int freebsd32_sigstack( \
21554359Sroberto				     struct sigstack32 *nss, \
21654359Sroberto				     struct sigstack32 *oss); }
21754359Sroberto113	AUE_NULL	OBSOL	orecvmsg
21854359Sroberto114	AUE_NULL	OBSOL	osendmsg
21954359Sroberto115	AUE_NULL	OBSOL	vtrace
22054359Sroberto116	AUE_GETTIMEOFDAY	STD	{ int freebsd32_gettimeofday( \
22154359Sroberto				    struct timeval32 *tp, \
22254359Sroberto				    struct timezone *tzp); }
22354359Sroberto117	AUE_GETRUSAGE	STD	{ int freebsd32_getrusage(int who, \
22454359Sroberto				    struct rusage32 *rusage); }
22554359Sroberto118	AUE_GETSOCKOPT	NOPROTO	{ int getsockopt(int s, int level, \
22654359Sroberto				    int name, caddr_t val, int *avalsize); }
22754359Sroberto119	AUE_NULL	UNIMPL	resuba (BSD/OS 2.x)
22854359Sroberto120	AUE_READV	STD	{ int freebsd32_readv(int fd, \
22954359Sroberto				    struct iovec32 *iovp, u_int iovcnt); }
23054359Sroberto121	AUE_WRITEV	STD	{ int freebsd32_writev(int fd, \
23154359Sroberto				    struct iovec32 *iovp, u_int iovcnt); }
23254359Sroberto122	AUE_SETTIMEOFDAY	STD	{ int freebsd32_settimeofday( \
23354359Sroberto				    struct timeval32 *tv, \
23454359Sroberto				    struct timezone *tzp); }
23554359Sroberto123	AUE_FCHOWN	NOPROTO	{ int fchown(int fd, int uid, int gid); }
23654359Sroberto124	AUE_FCHMOD	NOPROTO	{ int fchmod(int fd, int mode); }
23754359Sroberto125	AUE_RECVFROM	OBSOL	orecvfrom
23854359Sroberto126	AUE_SETREUID	NOPROTO	{ int setreuid(int ruid, int euid); }
23954359Sroberto127	AUE_SETREGID	NOPROTO	{ int setregid(int rgid, int egid); }
24054359Sroberto128	AUE_RENAME	NOPROTO	{ int rename(char *from, char *to); }
24154359Sroberto129	AUE_TRUNCATE	OBSOL	otruncate
24254359Sroberto130	AUE_FTRUNCATE	OBSOL	ftruncate
24354359Sroberto131	AUE_FLOCK	NOPROTO	{ int flock(int fd, int how); }
24454359Sroberto132	AUE_MKFIFO	NOPROTO	{ int mkfifo(char *path, int mode); }
24554359Sroberto133	AUE_SENDTO	NOPROTO	{ int sendto(int s, caddr_t buf, \
24654359Sroberto				    size_t len, int flags, caddr_t to, \
24754359Sroberto				    int tolen); }
24854359Sroberto134	AUE_SHUTDOWN	NOPROTO	{ int shutdown(int s, int how); }
24954359Sroberto135	AUE_SOCKETPAIR	NOPROTO	{ int socketpair(int domain, int type, \
25054359Sroberto				    int protocol, int *rsv); }
25154359Sroberto136	AUE_MKDIR	NOPROTO	{ int mkdir(char *path, int mode); }
25254359Sroberto137	AUE_RMDIR	NOPROTO	{ int rmdir(char *path); }
25354359Sroberto138	AUE_UTIMES	STD	{ int freebsd32_utimes(char *path, \
25454359Sroberto				    struct timeval32 *tptr); }
25554359Sroberto139	AUE_NULL	OBSOL	4.2 sigreturn
25654359Sroberto140	AUE_ADJTIME	STD	{ int freebsd32_adjtime( \
25754359Sroberto				    struct timeval32 *delta, \
25854359Sroberto				    struct timeval32 *olddelta); }
25954359Sroberto141	AUE_GETPEERNAME	OBSOL	ogetpeername
26054359Sroberto142	AUE_SYSCTL	OBSOL	ogethostid
26154359Sroberto143	AUE_SYSCTL	OBSOL	sethostid
26254359Sroberto144	AUE_GETRLIMIT	OBSOL	getrlimit
26354359Sroberto145	AUE_SETRLIMIT	OBSOL	setrlimit
26454359Sroberto146	AUE_KILLPG	OBSOL	killpg
26554359Sroberto147	AUE_SETSID	NOPROTO	{ int setsid(void); }
26654359Sroberto148	AUE_QUOTACTL	NOPROTO	{ int quotactl(char *path, int cmd, int uid, \
26754359Sroberto				    caddr_t arg); }
26854359Sroberto149	AUE_O_QUOTA	OBSOL oquota
26954359Sroberto150	AUE_GETSOCKNAME	OBSOL ogetsockname
27054359Sroberto
27154359Sroberto; Syscalls 151-180 inclusive are reserved for vendor-specific
27254359Sroberto; system calls.  (This includes various calls added for compatibity
27354359Sroberto; with other Unix variants.)
27454359Sroberto; Some of these calls are now supported by BSD...
27554359Sroberto151	AUE_NULL	UNIMPL	sem_lock (BSD/OS 2.x)
27654359Sroberto152	AUE_NULL	UNIMPL	sem_wakeup (BSD/OS 2.x)
27754359Sroberto153	AUE_NULL	UNIMPL	asyncdaemon (BSD/OS 2.x)
27854359Sroberto154	AUE_NULL	UNIMPL	nosys
27954359Sroberto; 155 is initialized by the NFS code, if present.
28054359Sroberto; XXX this is a problem!!!
28154359Sroberto155	AUE_NFS_SVC	UNIMPL	nfssvc
28254359Sroberto156	AUE_GETDIRENTRIES	OBSOL	ogetdirentries
28354359Sroberto157	AUE_STATFS	COMPAT4	{ int freebsd32_statfs(char *path, \
28454359Sroberto				    struct statfs32 *buf); }
28554359Sroberto158	AUE_FSTATFS	COMPAT4	{ int freebsd32_fstatfs(int fd, \
28654359Sroberto				    struct statfs32 *buf); }
28754359Sroberto159	AUE_NULL	UNIMPL	nosys
28854359Sroberto160	AUE_LGETFH	UNIMPL	lgetfh
28954359Sroberto161	AUE_NFS_GETFH	NOPROTO	{ int getfh(char *fname, \
29054359Sroberto				    struct fhandle *fhp); }
29154359Sroberto162	AUE_SYSCTL	NOPROTO	{ int getdomainname(char *domainname, \
29254359Sroberto				    int len); }
29354359Sroberto163	AUE_SYSCTL	NOPROTO	{ int setdomainname(char *domainname, \
29454359Sroberto				    int len); }
29554359Sroberto164	AUE_NULL	NOPROTO	{ int uname(struct utsname *name); }
29654359Sroberto165	AUE_SYSARCH	NOPROTO	{ int sysarch(int op, char *parms); }
29754359Sroberto166	AUE_RTPRIO	NOPROTO	{ int rtprio(int function, pid_t pid, \
29854359Sroberto				    struct rtprio *rtp); }
29954359Sroberto167	AUE_NULL	UNIMPL	nosys
30054359Sroberto168	AUE_NULL	UNIMPL	nosys
30154359Sroberto169	AUE_SEMSYS	STD	{ int freebsd32_semsys(int which, int a2, \
30254359Sroberto				    int a3, int a4, int a5); }
30354359Sroberto170	AUE_MSGSYS	STD	{ int freebsd32_msgsys(int which, int a2, \
30454359Sroberto				    int a3, int a4, int a5, int a6); }
30554359Sroberto171	AUE_SHMSYS	STD	{ int freebsd32_shmsys(uint32_t which, uint32_t a2, \
30654359Sroberto				    uint32_t a3, uint32_t a4); }
30754359Sroberto172	AUE_NULL	UNIMPL	nosys
30854359Sroberto173	AUE_PREAD	STD	{ ssize_t freebsd32_pread(int fd, void *buf, \
30954359Sroberto				    size_t nbyte, int pad, \
31054359Sroberto				    u_int32_t offsetlo, u_int32_t offsethi); }
31154359Sroberto; XXX note - bigendian is different
31254359Sroberto174	AUE_PWRITE	STD	{ ssize_t freebsd32_pwrite(int fd, \
31354359Sroberto				    const void *buf, size_t nbyte, int pad, \
31454359Sroberto				    u_int32_t offsetlo, u_int32_t offsethi); }
31554359Sroberto; XXX note - bigendian is different
31654359Sroberto175	AUE_NULL	UNIMPL	nosys
31754359Sroberto176	AUE_NTP_ADJTIME	NOPROTO	{ int ntp_adjtime(struct timex *tp); }
31854359Sroberto177	AUE_NULL	UNIMPL	sfork (BSD/OS 2.x)
31954359Sroberto178	AUE_NULL	UNIMPL	getdescriptor (BSD/OS 2.x)
32054359Sroberto179	AUE_NULL	UNIMPL	setdescriptor (BSD/OS 2.x)
32154359Sroberto180	AUE_NULL	UNIMPL	nosys
32254359Sroberto
32354359Sroberto; Syscalls 181-199 are used by/reserved for BSD
32454359Sroberto181	AUE_SETGID	NOPROTO	{ int setgid(gid_t gid); }
32554359Sroberto182	AUE_SETEGID	NOPROTO	{ int setegid(gid_t egid); }
32654359Sroberto183	AUE_SETEUID	NOPROTO	{ int seteuid(uid_t euid); }
32754359Sroberto184	AUE_NULL	UNIMPL	lfs_bmapv
32854359Sroberto185	AUE_NULL	UNIMPL	lfs_markv
32954359Sroberto186	AUE_NULL	UNIMPL	lfs_segclean
33054359Sroberto187	AUE_NULL	UNIMPL	lfs_segwait
33154359Sroberto188	AUE_STAT	STD	{ int freebsd32_stat(char *path, \
33254359Sroberto				    struct stat32 *ub); }
33354359Sroberto189	AUE_FSTAT	STD	{ int freebsd32_fstat(int fd, \
33454359Sroberto				    struct stat32 *ub); }
33554359Sroberto190	AUE_LSTAT	STD	{ int freebsd32_lstat(char *path, \
33654359Sroberto				    struct stat32 *ub); }
33754359Sroberto191	AUE_PATHCONF	NOPROTO	{ int pathconf(char *path, int name); }
33854359Sroberto192	AUE_FPATHCONF	NOPROTO	{ int fpathconf(int fd, int name); }
33954359Sroberto193	AUE_NULL	UNIMPL	nosys
34054359Sroberto194	AUE_GETRLIMIT	NOPROTO	{ int getrlimit(u_int which, \
34154359Sroberto				    struct rlimit *rlp); } getrlimit \
34254359Sroberto				    __getrlimit_args int
34354359Sroberto195	AUE_SETRLIMIT	NOPROTO	{ int setrlimit(u_int which, \
34454359Sroberto				    struct rlimit *rlp); } setrlimit \
34554359Sroberto				    __setrlimit_args int
34654359Sroberto196	AUE_GETDIRENTRIES	NOPROTO	{ int getdirentries(int fd, char *buf, \
34754359Sroberto				    u_int count, long *basep); }
34854359Sroberto197	AUE_MMAP	STD 	{ caddr_t freebsd32_mmap(caddr_t addr, \
34954359Sroberto				    size_t len, int prot, int flags, int fd, \
35054359Sroberto				    int pad, u_int32_t poslo, \
35154359Sroberto				    u_int32_t poshi); }
35254359Sroberto198	AUE_NULL	NOPROTO	{ int nosys(void); } __syscall \
35354359Sroberto				    __syscall_args int
35454359Sroberto; XXX note - bigendian is different
35554359Sroberto199	AUE_LSEEK	STD	{ off_t freebsd32_lseek(int fd, int pad, \
35654359Sroberto				    u_int32_t offsetlo, u_int32_t offsethi, \
35754359Sroberto				    int whence); }
35854359Sroberto; XXX note - bigendian is different
35954359Sroberto200	AUE_TRUNCATE	STD	{ int freebsd32_truncate(char *path, \
36054359Sroberto				    int pad, u_int32_t lengthlo, \
36154359Sroberto				    u_int32_t lengthhi); }
36254359Sroberto; XXX note - bigendian is different
36354359Sroberto201	AUE_FTRUNCATE	STD	{ int freebsd32_ftruncate(int fd, int pad, \
36454359Sroberto				    u_int32_t lengthlo, u_int32_t lengthhi); }
36554359Sroberto202	AUE_SYSCTL	STD	{ int freebsd32_sysctl(int *name, \
36654359Sroberto				    u_int namelen, void *old, \
36754359Sroberto				    u_int32_t *oldlenp, void *new, \
36854359Sroberto				    u_int32_t newlen); }
36954359Sroberto203	AUE_MLOCK	NOPROTO	{ int mlock(const void *addr, \
37054359Sroberto				    size_t len); }
37154359Sroberto204	AUE_MUNLOCK	NOPROTO	{ int munlock(const void *addr, \
37254359Sroberto				    size_t len); }
37354359Sroberto205	AUE_UNDELETE	NOPROTO	{ int undelete(char *path); }
37454359Sroberto206	AUE_FUTIMES	STD	{ int freebsd32_futimes(int fd, \
37554359Sroberto				    struct timeval32 *tptr); }
37654359Sroberto207	AUE_GETPGID	NOPROTO	{ int getpgid(pid_t pid); }
37754359Sroberto208	AUE_NULL	UNIMPL	newreboot (NetBSD)
37854359Sroberto209	AUE_POLL	NOPROTO	{ int poll(struct pollfd *fds, u_int nfds, \
37954359Sroberto				    int timeout); }
38054359Sroberto
38154359Sroberto;
38254359Sroberto; The following are reserved for loadable syscalls
38354359Sroberto;
38454359Sroberto210	AUE_NULL	UNIMPL
38554359Sroberto211	AUE_NULL	UNIMPL
38654359Sroberto212	AUE_NULL	UNIMPL
38754359Sroberto213	AUE_NULL	UNIMPL
38854359Sroberto214	AUE_NULL	UNIMPL
38954359Sroberto215	AUE_NULL	UNIMPL
39054359Sroberto216	AUE_NULL	UNIMPL
39154359Sroberto217	AUE_NULL	UNIMPL
39254359Sroberto218	AUE_NULL	UNIMPL
39354359Sroberto219	AUE_NULL	UNIMPL
39454359Sroberto
39554359Sroberto;
39654359Sroberto; The following were introduced with NetBSD/4.4Lite-2
39754359Sroberto; They are initialized by thier respective modules/sysinits
39854359Sroberto; XXX PROBLEM!!
39954359Sroberto220	AUE_SEMCTL	NOPROTO	{ int __semctl(int semid, int semnum, \
40054359Sroberto				    int cmd, union semun *arg); }
40154359Sroberto221	AUE_SEMGET	NOPROTO	{ int semget(key_t key, int nsems, \
40254359Sroberto				    int semflg); }
40354359Sroberto222	AUE_SEMOP	NOPROTO	{ int semop(int semid, struct sembuf *sops, \
40454359Sroberto				    u_int nsops); }
40554359Sroberto223	AUE_NULL	UNIMPL	semconfig
40654359Sroberto224	AUE_MSGCTL	NOPROTO	{ int msgctl(int msqid, int cmd, \
40754359Sroberto				    struct msqid_ds *buf); }
40854359Sroberto225	AUE_MSGGET	NOPROTO	{ int msgget(key_t key, int msgflg); }
40954359Sroberto226	AUE_MSGSND	NOPROTO	{ int msgsnd(int msqid, void *msgp, \
41054359Sroberto				    size_t msgsz, int msgflg); }
41154359Sroberto227	AUE_MSGRCV	NOPROTO	{ int msgrcv(int msqid, void *msgp, \
41254359Sroberto				    size_t msgsz, long msgtyp, int msgflg); }
41354359Sroberto228	AUE_SHMAT	NOPROTO	{ int shmat(int shmid, void *shmaddr, \
41454359Sroberto				    int shmflg); }
41554359Sroberto229	AUE_SHMCTL	STD	{ int freebsd32_shmctl(int shmid, int cmd, \
41654359Sroberto				    struct shmid_ds *buf); }
41754359Sroberto230	AUE_SHMDT	NOPROTO	{ int shmdt(void *shmaddr); }
41854359Sroberto231	AUE_SHMGET	NOPROTO	{ int shmget(key_t key, int size, \
41954359Sroberto				    int shmflg); }
42054359Sroberto;
42154359Sroberto232	AUE_NULL	STD 	{ int freebsd32_clock_gettime(clockid_t clock_id, \
42254359Sroberto				    struct timespec32 *tp); }
42354359Sroberto233	AUE_CLOCK_SETTIME	STD	{ int freebsd32_clock_settime(clockid_t clock_id, \
42454359Sroberto				    const struct timespec32 *tp); }
42554359Sroberto234	AUE_NULL	STD	{ int freebsd32_clock_getres(clockid_t clock_id, \
42654359Sroberto				    struct timespec32 *tp); }
42754359Sroberto235	AUE_NULL	UNIMPL	timer_create
42854359Sroberto236	AUE_NULL	UNIMPL	timer_delete
42954359Sroberto237	AUE_NULL	UNIMPL	timer_settime
43054359Sroberto238	AUE_NULL	UNIMPL	timer_gettime
43154359Sroberto239	AUE_NULL	UNIMPL	timer_getoverrun
43254359Sroberto240	AUE_NULL	STD	{ int freebsd32_nanosleep( \
43354359Sroberto				    const struct timespec32 *rqtp, \
43454359Sroberto				    struct timespec32 *rmtp); }
43554359Sroberto241	AUE_NULL	UNIMPL	nosys
43654359Sroberto242	AUE_NULL	UNIMPL	nosys
43754359Sroberto243	AUE_NULL	UNIMPL	nosys
43854359Sroberto244	AUE_NULL	UNIMPL	nosys
43954359Sroberto245	AUE_NULL	UNIMPL	nosys
44054359Sroberto246	AUE_NULL	UNIMPL	nosys
44154359Sroberto247	AUE_NULL	UNIMPL	nosys
44254359Sroberto248	AUE_NULL	UNIMPL	ntp_gettime
44354359Sroberto249	AUE_NULL	UNIMPL	nosys
44454359Sroberto; syscall numbers initially used in OpenBSD
44554359Sroberto250	AUE_MINHERIT	NOPROTO	{ int minherit(void *addr, size_t len, \
44654359Sroberto				    int inherit); }
44754359Sroberto251	AUE_RFORK	NOPROTO	{ int rfork(int flags); }
44854359Sroberto252	AUE_POLL	NOPROTO	{ int openbsd_poll(struct pollfd *fds, \
44954359Sroberto				    u_int nfds, int timeout); }
45054359Sroberto253	AUE_ISSETUGID	NOPROTO	{ int issetugid(void); }
45154359Sroberto254	AUE_LCHOWN	NOPROTO	{ int lchown(char *path, int uid, int gid); }
45254359Sroberto255	AUE_NULL	UNIMPL	nosys
45354359Sroberto256	AUE_NULL	UNIMPL	nosys
45454359Sroberto257	AUE_NULL	UNIMPL	nosys
45554359Sroberto258	AUE_NULL	UNIMPL	nosys
45654359Sroberto259	AUE_NULL	UNIMPL	nosys
45754359Sroberto260	AUE_NULL	UNIMPL	nosys
45854359Sroberto261	AUE_NULL	UNIMPL	nosys
45954359Sroberto262	AUE_NULL	UNIMPL	nosys
46054359Sroberto263	AUE_NULL	UNIMPL	nosys
46154359Sroberto264	AUE_NULL	UNIMPL	nosys
46254359Sroberto265	AUE_NULL	UNIMPL	nosys
46354359Sroberto266	AUE_NULL	UNIMPL	nosys
46454359Sroberto267	AUE_NULL	UNIMPL	nosys
46554359Sroberto268	AUE_NULL	UNIMPL	nosys
46654359Sroberto269	AUE_NULL	UNIMPL	nosys
46754359Sroberto270	AUE_NULL	UNIMPL	nosys
46854359Sroberto271	AUE_NULL	UNIMPL	nosys
46954359Sroberto272	AUE_O_GETDENTS	NOPROTO	{ int getdents(int fd, char *buf, \
47054359Sroberto				    size_t count); }
47154359Sroberto273	AUE_NULL	UNIMPL	nosys
47254359Sroberto274	AUE_LCHMOD	NOPROTO	{ int lchmod(char *path, mode_t mode); }
47354359Sroberto275	AUE_LCHOWN	NOPROTO	{ int lchown(char *path, uid_t uid, \
47454359Sroberto				    gid_t gid); } netbsd_lchown \
47554359Sroberto				    lchown_args int
47654359Sroberto276	AUE_LUTIMES	STD	{ int freebsd32_lutimes(char *path, \
47754359Sroberto				    struct timeval32 *tptr); }
47854359Sroberto277	AUE_MSYNC	NOPROTO	{ int msync(void *addr, size_t len, \
47954359Sroberto				    int flags); } netbsd_msync msync_args int
48054359Sroberto278	AUE_STAT	NOPROTO	{ int nstat(char *path, struct nstat *ub); }
48154359Sroberto279	AUE_FSTAT	NOPROTO	{ int nfstat(int fd, struct nstat *sb); }
48254359Sroberto280	AUE_LSTAT	NOPROTO	{ int nlstat(char *path, struct nstat *ub); }
48354359Sroberto281	AUE_NULL	UNIMPL	nosys
48454359Sroberto282	AUE_NULL	UNIMPL	nosys
48554359Sroberto283	AUE_NULL	UNIMPL	nosys
48654359Sroberto284	AUE_NULL	UNIMPL	nosys
48754359Sroberto285	AUE_NULL	UNIMPL	nosys
48854359Sroberto286	AUE_NULL	UNIMPL	nosys
48954359Sroberto287	AUE_NULL	UNIMPL	nosys
49054359Sroberto288	AUE_NULL	UNIMPL	nosys
49154359Sroberto; 289 and 290 from NetBSD (OpenBSD: 267 and 268)
49254359Sroberto289	AUE_PREADV	STD	{ ssize_t freebsd32_preadv(int fd, \
49354359Sroberto					struct iovec32 *iovp, \
49454359Sroberto					u_int iovcnt, off_t offset); }
49554359Sroberto; XXX note - bigendian is different
49654359Sroberto290	AUE_PWRITEV	STD	{ ssize_t freebsd32_pwritev(int fd, \
49754359Sroberto					struct iovec32 *iovp, \
49854359Sroberto					u_int iovcnt, off_t offset); }
49954359Sroberto; XXX note - bigendian is different
50054359Sroberto291	AUE_NULL	UNIMPL	nosys
50154359Sroberto292	AUE_NULL	UNIMPL	nosys
50254359Sroberto293	AUE_NULL	UNIMPL	nosys
50354359Sroberto294	AUE_NULL	UNIMPL	nosys
50454359Sroberto295	AUE_NULL	UNIMPL	nosys
50554359Sroberto296	AUE_NULL	UNIMPL	nosys
506; XXX 297 is 300 in NetBSD 
507297	AUE_FHSTATFS	COMPAT4	{ int freebsd32_fhstatfs( \
508				    const struct fhandle *u_fhp, \
509				    struct statfs32 *buf); }
510298	AUE_FHOPEN	NOPROTO	{ int fhopen(const struct fhandle *u_fhp, \
511			 	    int flags); }
512299	AUE_FHSTAT	NOPROTO	{ int fhstat(const struct fhandle *u_fhp, \
513				    struct stat *sb); }
514; syscall numbers for FreeBSD
515300	AUE_NULL	NOPROTO	{ int modnext(int modid); }
516301	AUE_NULL	STD	{ int freebsd32_modstat(int modid, \
517				    struct module_stat32* stat); }
518302	AUE_NULL	NOPROTO	{ int modfnext(int modid); }
519303	AUE_NULL	NOPROTO	{ int modfind(const char *name); }
520304	AUE_MODLOAD	NOPROTO	{ int kldload(const char *file); }
521305	AUE_MODUNLOAD	NOPROTO	{ int kldunload(int fileid); }
522306	AUE_NULL	NOPROTO	{ int kldfind(const char *file); }
523307	AUE_NULL	NOPROTO	{ int kldnext(int fileid); }
524308	AUE_NULL	NOPROTO	{ int kldstat(int fileid, \
525				    struct kld_file_stat* stat); }
526309	AUE_NULL	NOPROTO	{ int kldfirstmod(int fileid); }
527310	AUE_GETSID	NOPROTO	{ int getsid(pid_t pid); }
528311	AUE_SETRESUID	NOPROTO	{ int setresuid(uid_t ruid, uid_t euid, \
529				    uid_t suid); }
530312	AUE_SETRESGID	NOPROTO	{ int setresgid(gid_t rgid, gid_t egid, \
531				    gid_t sgid); }
532313	AUE_NULL	OBSOL	signanosleep
533314	AUE_NULL	UNIMPL	aio_return
534315	AUE_NULL	UNIMPL	aio_suspend
535316	AUE_NULL	UNIMPL	aio_cancel
536317	AUE_NULL	UNIMPL	aio_error
537318	AUE_NULL	UNIMPL	aio_read
538319	AUE_NULL	UNIMPL	aio_write
539320	AUE_NULL	UNIMPL	lio_listio
540321	AUE_NULL	NOPROTO	{ int yield(void); }
541322	AUE_NULL	OBSOL	thr_sleep
542323	AUE_NULL	OBSOL	thr_wakeup
543324	AUE_MLOCKALL	NOPROTO	{ int mlockall(int how); }
544325	AUE_MUNLOCKALL	NOPROTO	{ int munlockall(void); }
545326	AUE_GETCWD	NOPROTO	{ int __getcwd(u_char *buf, u_int buflen); }
546
547327	AUE_NULL	NOPROTO	{ int sched_setparam (pid_t pid, \
548				    const struct sched_param *param); }
549328	AUE_NULL	NOPROTO	{ int sched_getparam (pid_t pid, \
550				    struct sched_param *param); }
551
552329	AUE_NULL	NOPROTO	{ int sched_setscheduler (pid_t pid, \
553				    int policy, \
554				    const struct sched_param *param); }
555330	AUE_NULL	NOPROTO	{ int sched_getscheduler (pid_t pid); }
556
557331	AUE_NULL	NOPROTO	{ int sched_yield (void); }
558332	AUE_NULL	NOPROTO	{ int sched_get_priority_max (int policy); }
559333	AUE_NULL	NOPROTO	{ int sched_get_priority_min (int policy); }
560334	AUE_NULL	NOPROTO	{ int sched_rr_get_interval (pid_t pid, \
561				    struct timespec *interval); }
562335	AUE_NULL	NOPROTO	{ int utrace(const void *addr, size_t len); }
563; XXX note - bigendian is different
564336	AUE_SENDFILE	COMPAT4	{ int freebsd32_sendfile(int fd, int s, \
565				    u_int32_t offsetlo, u_int32_t offsethi, \
566				    size_t nbytes, struct sf_hdtr32 *hdtr, \
567				    off_t *sbytes, int flags); }
568337	AUE_NULL	NOPROTO	{ int kldsym(int fileid, int cmd, \
569				    void *data); }
570338	AUE_JAIL	NOPROTO	{ int jail(struct jail *jail); }
571339	AUE_NULL	UNIMPL	pioctl
572340	AUE_SIGPROCMASK	NOPROTO	{ int sigprocmask(int how, \
573				    const sigset_t *set, sigset_t *oset); }
574341	AUE_SIGSUSPEND	NOPROTO	{ int sigsuspend(const sigset_t *sigmask); }
575342	AUE_SIGACTION	COMPAT4	{ int freebsd32_sigaction(int sig, \
576				    struct sigaction32 *act, \
577				    struct sigaction32 *oact); }
578343	AUE_SIGPENDING	NOPROTO	{ int sigpending(sigset_t *set); }
579344	AUE_SIGRETURN	COMPAT4	{ int freebsd32_sigreturn( \
580		    const struct freebsd4_freebsd32_ucontext *sigcntxp); }
581345	AUE_SIGWAIT	STD	{ int freebsd32_sigtimedwait(const sigset_t *set, \
582				    siginfo_t *info, \
583				    const struct timespec *timeout); }
584346	AUE_NULL	STD	{ int freebsd32_sigwaitinfo(const sigset_t *set, \
585				    siginfo_t *info); }
586347	AUE_NULL	NOPROTO	{ int __acl_get_file(const char *path, \
587				    acl_type_t type, struct acl *aclp); }
588348	AUE_NULL	NOPROTO	{ int __acl_set_file(const char *path, \
589				    acl_type_t type, struct acl *aclp); }
590349	AUE_NULL	NOPROTO	{ int __acl_get_fd(int filedes, \
591				    acl_type_t type, struct acl *aclp); }
592350	AUE_NULL	NOPROTO	{ int __acl_set_fd(int filedes, \
593				    acl_type_t type, struct acl *aclp); }
594351	AUE_NULL	NOPROTO	{ int __acl_delete_file(const char *path, \
595				    acl_type_t type); }
596352	AUE_NULL	NOPROTO	{ int __acl_delete_fd(int filedes, \
597				    acl_type_t type); }
598353	AUE_NULL	NOPROTO	{ int __acl_aclcheck_file(const char *path, \
599				    acl_type_t type, struct acl *aclp); }
600354	AUE_NULL	NOPROTO	{ int __acl_aclcheck_fd(int filedes, \
601				    acl_type_t type, struct acl *aclp); }
602355	AUE_EXTATTRCTL	NOPROTO	{ int extattrctl(const char *path, int cmd, \
603				    const char *filename, int attrnamespace, \
604				    const char *attrname); }
605356	AUE_EXTATTR_SET_FILE	NOPROTO	{ int extattr_set_file( \
606				    const char *path, int attrnamespace, \
607				    const char *attrname, void *data, \
608				    size_t nbytes); }
609357	AUE_EXTATTR_GET_FILE	NOPROTO	{ ssize_t extattr_get_file( \
610				    const char *path, int attrnamespace, \
611				    const char *attrname, void *data, \
612				    size_t nbytes); }
613358	AUE_EXTATTR_DELETE_FILE	NOPROTO	{ int extattr_delete_file( \
614				    const char *path, int attrnamespace, \
615				    const char *attrname); }
616359	AUE_NULL	UNIMPL	aio_waitcomplete
617360	AUE_GETRESUID	NOPROTO	{ int getresuid(uid_t *ruid, uid_t *euid, \
618				    uid_t *suid); }
619361	AUE_GETRESGID	NOPROTO	{ int getresgid(gid_t *rgid, gid_t *egid, \
620				    gid_t *sgid); }
621362	AUE_KQUEUE	NOPROTO	{ int kqueue(void); }
622363	AUE_NULL	STD	{ int freebsd32_kevent(int fd, \
623				    const struct kevent32 *changelist, \
624				    int nchanges, \
625				    struct kevent32 *eventlist, int nevents, \
626				    const struct timespec32 *timeout); }
627364	AUE_NULL	UNIMPL	__cap_get_proc
628365	AUE_NULL	UNIMPL	__cap_set_proc
629366	AUE_NULL	UNIMPL	__cap_get_fd
630367	AUE_NULL	UNIMPL	__cap_get_file
631368	AUE_NULL	UNIMPL	__cap_set_fd
632369	AUE_NULL	UNIMPL	__cap_set_file
633370	AUE_NULL	UNIMPL	lkmressys
634371	AUE_EXTATTR_SET_FD	NOPROTO	{ int extattr_set_fd(int fd, \
635				    int attrnamespace, const char *attrname, \
636				    void *data, size_t nbytes); }
637372	AUE_EXTATTR_GET_FD	NOPROTO	{ ssize_t extattr_get_fd(int fd, \
638				    int attrnamespace, const char *attrname, \
639				    void *data, size_t nbytes); }
640373	AUE_EXTATTR_DELETE_FD	NOPROTO	{ int extattr_delete_fd(int fd, \
641				    int attrnamespace, \
642				    const char *attrname); }
643374	AUE_NULL	NOPROTO	{ int __setugid(int flag); }
644375	AUE_NULL	UNIMPL	nfsclnt
645376	AUE_EACCESS	NOPROTO	{ int eaccess(char *path, int flags); }
646377	AUE_NULL	UNIMPL	afs_syscall
647378	AUE_NMOUNT	NOPROTO	{ int nmount(struct iovec *iovp, \
648				    unsigned int iovcnt, int flags); }
649379	AUE_NULL	NOPROTO	{ int kse_exit(void); }
650380	AUE_NULL	NOPROTO	{ int kse_wakeup(struct kse_mailbox *mbx); }
651381	AUE_NULL	NOPROTO	{ int kse_create(struct kse_mailbox *mbx, \
652				    int newgroup); }
653382	AUE_NULL	NOPROTO	{ int kse_thr_interrupt( \
654				    struct kse_thr_mailbox *tmbx); }
655383	AUE_NULL	NOPROTO	{ int kse_release(void); }
656384	AUE_NULL	UNIMPL	__mac_get_proc
657385	AUE_NULL	UNIMPL	__mac_set_proc
658386	AUE_NULL	UNIMPL	__mac_get_fd
659387	AUE_NULL	UNIMPL	__mac_get_file
660388	AUE_NULL	UNIMPL	__mac_set_fd
661389	AUE_NULL	UNIMPL	__mac_set_file
662390	AUE_NULL	NOPROTO	{ int kenv(int what, const char *name, \
663				    char *value, int len); }
664391	AUE_LCHFLAGS	NOPROTO	{ int lchflags(const char *path, int flags); }
665392	AUE_NULL	NOPROTO	{ int uuidgen(struct uuid *store, \
666				    int count); }
667393	AUE_SENDFILE	STD	{ int freebsd32_sendfile(int fd, int s, \
668				    u_int32_t offsetlo, u_int32_t offsethi, \
669				    size_t nbytes, struct sf_hdtr32 *hdtr, \
670				    off_t *sbytes, int flags); }
671394	AUE_NULL	UNIMPL	mac_syscall
672395	AUE_GETFSSTAT	NOPROTO	{ int getfsstat(struct statfs *buf, \
673				    long bufsize, int flags); }
674396	AUE_STATFS	NOPROTO	{ int statfs(char *path, \
675				    struct statfs *buf); }
676397	AUE_FSTATFS	NOPROTO	{ int fstatfs(int fd, struct statfs *buf); }
677398	AUE_FHSTATFS	NOPROTO	{ int fhstatfs(const struct fhandle *u_fhp, \
678				    struct statfs *buf); }
679399	AUE_NULL	UNIMPL	nosys
680; XXX implement these?
681400	AUE_NULL	UNIMPL	ksem_close
682401	AUE_NULL	UNIMPL	ksem_post
683402	AUE_NULL	UNIMPL	ksem_wait
684403	AUE_NULL	UNIMPL	ksem_trywait
685404	AUE_NULL	UNIMPL	ksem_init
686405	AUE_NULL	UNIMPL	ksem_open
687406	AUE_NULL	UNIMPL	ksem_unlink
688407	AUE_NULL	UNIMPL	ksem_getvalue
689408	AUE_NULL	UNIMPL	ksem_destroy
690409	AUE_NULL	UNIMPL	__mac_get_pid
691410	AUE_NULL	UNIMPL	__mac_get_link
692411	AUE_NULL	UNIMPL	__mac_set_link
693412	AUE_EXTATTR_SET_LINK	UNIMPL	extattr_set_link
694413	AUE_EXTATTR_GET_LINK	UNIMPL	extattr_get_link
695414	AUE_EXTATTR_DELETE_LINK	UNIMPL	extattr_delete_link
696415	AUE_NULL	UNIMPL	__mac_execve
697416	AUE_SIGACTION	STD	{ int freebsd32_sigaction(int sig, \
698				    struct sigaction32 *act, \
699				    struct sigaction32 *oact); }
700417	AUE_SIGRETURN	STD	{ int freebsd32_sigreturn( \
701		    const struct freebsd32_ucontext *sigcntxp); }
702418	AUE_NULL	UNIMPL	__xstat
703419	AUE_NULL	UNIMPL	__xfstat
704420	AUE_NULL	UNIMPL	__xlstat
705421	AUE_NULL	STD	{ int freebsd32_getcontext( \
706				    struct freebsd32_ucontext *ucp); }
707422	AUE_NULL	STD	{ int freebsd32_setcontext( \
708				    const struct freebsd32_ucontext *ucp); }
709423	AUE_NULL	STD	{ int freebsd32_swapcontext( \
710				    struct freebsd32_ucontext *oucp, \
711				    const struct freebsd32_ucontext *ucp); }
712424	AUE_SWAPOFF	UNIMPL	swapoff
713425	AUE_NULL	UNIMPL	__acl_get_link
714426	AUE_NULL	UNIMPL	__acl_set_link
715427	AUE_NULL	UNIMPL	__acl_delete_link
716428	AUE_NULL	UNIMPL	__acl_aclcheck_link
717; XXX implement
718429	AUE_SIGWAIT	NOPROTO	{ int sigwait(const sigset_t *set, \
719				    int *sig); }
720430	AUE_NULL	UNIMPL	thr_create;
721431	AUE_NULL	NOPROTO	{ void thr_exit(long *state); }
722432	AUE_NULL	NOPROTO	{ int thr_self(long *id); }
723433	AUE_NULL	NOPROTO	{ int thr_kill(long id, int sig); }
724434	AUE_NULL	NOPROTO	{ int _umtx_lock(struct umtx *umtx); }
725435	AUE_NULL	NOPROTO	{ int _umtx_unlock(struct umtx *umtx); }
726436	AUE_NULL	NOPROTO	{ int jail_attach(int jid); }
727437	AUE_EXTATTR_LIST_FD	UNIMPL	extattr_list_fd
728438	AUE_EXTATTR_LIST_FILE	UNIMPL	extattr_list_file
729439	AUE_EXTATTR_LIST_LINK	UNIMPL	extattr_list_link
730440	AUE_NULL	UNIMPL	kse_switchin
731441	AUE_NULL	UNIMPL	ksem_timedwait
732442	AUE_NULL	STD	{ int freebsd32_thr_suspend( \
733				    const struct timespec32 *timeout); }
734443	AUE_NULL	NOPROTO	{ int thr_wake(long id); }
735444	AUE_MODUNLOAD	NOPROTO	{ int kldunloadf(int fileid, int flags); }
736445	AUE_AUDIT	UNIMPL	audit
737446	AUE_AUDITON	UNIMPL	auditon
738447	AUE_GETAUID	UNIMPL	getauid
739448	AUE_SETAUID	UNIMPL	setauid
740449	AUE_GETAUDIT	UNIMPL	getaudit
741450	AUE_SETAUDIT	UNIMPL	setaudit
742451	AUE_GETAUDIT_ADDR	UNIMPL	getaudit_addr
743452	AUE_SETAUDIT_ADDR	UNIMPL	setaudit_addr
744453	AUE_AUDITCTL	UNIMPL	auditctl
745454	AUE_NULL	STD	{ int freebsd32_umtx_op(void *obj, int op,\
746				    uintptr_t val, void *uaddr, \
747				    void *uaddr2); }
748455	AUE_NULL	STD	{ int freebsd32_thr_new(	\
749				    struct thr_param32 *param,	\
750				    int param_size); }
751456	AUE_NULL	NOPROTO	{ int sigqueue(pid_t pid, int signum, \
752				    void *value); }
753457	AUE_NULL	UNIMPL	kmq_open
754458	AUE_NULL	UNIMPL	kmq_setattr
755459	AUE_NULL	UNIMPL	kmq_timedreceive
756460	AUE_NULL	UNIMPL  kmq_timedsend
757461	AUE_NULL	UNIMPL	kmq_notify
758462	AUE_NULL	UNIMPL	kmq_unlink
759463	AUE_NULL	NOPROTO	{ int abort2(const char *why, int nargs, void **args); }
760464	AUE_NULL 	NOPROTO	{ int thr_set_name(long id, const char *name); }
761465	AUE_NULL	UNIMPL	aio_fsync
762466	AUE_RTPRIO	NOPROTO	{ int rtprio_thread(int function, \
763				    lwpid_t lwpid, struct rtprio *rtp); }
764467	AUE_NULL	UNIMPL	nosys
765468	AUE_NULL	UNIMPL	nosys
766469	AUE_NULL	UNIMPL	__getpath_fromfd
767470	AUE_NULL	UNIMPL	__getpath_fromaddr
768