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