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