blob: 9f21e9550edd6b3fce22a5155239dbbecd05ef1b [file] [log] [blame]
Don Newtone0d34a82019-11-14 10:58:06 -05001// go run mksysnum.go https://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master
Don Newton98fd8812019-09-23 15:15:02 -04002// Code generated by the command above; see README.md. DO NOT EDIT.
3
4// +build arm64,freebsd
5
6package unix
7
8const (
9 // SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
Don Newtone0d34a82019-11-14 10:58:06 -050010 SYS_EXIT = 1 // { void sys_exit(int rval); } exit \
Don Newton98fd8812019-09-23 15:15:02 -040011 SYS_FORK = 2 // { int fork(void); }
Don Newtone0d34a82019-11-14 10:58:06 -050012 SYS_READ = 3 // { ssize_t read(int fd, void *buf, \
13 SYS_WRITE = 4 // { ssize_t write(int fd, const void *buf, \
Don Newton98fd8812019-09-23 15:15:02 -040014 SYS_OPEN = 5 // { int open(char *path, int flags, int mode); }
15 SYS_CLOSE = 6 // { int close(int fd); }
Don Newtone0d34a82019-11-14 10:58:06 -050016 SYS_WAIT4 = 7 // { int wait4(int pid, int *status, \
Don Newton98fd8812019-09-23 15:15:02 -040017 SYS_LINK = 9 // { int link(char *path, char *link); }
18 SYS_UNLINK = 10 // { int unlink(char *path); }
19 SYS_CHDIR = 12 // { int chdir(char *path); }
20 SYS_FCHDIR = 13 // { int fchdir(int fd); }
21 SYS_MKNOD = 14 // { int mknod(char *path, int mode, int dev); }
22 SYS_CHMOD = 15 // { int chmod(char *path, int mode); }
23 SYS_CHOWN = 16 // { int chown(char *path, int uid, int gid); }
Don Newtone0d34a82019-11-14 10:58:06 -050024 SYS_OBREAK = 17 // { int obreak(char *nsize); } break \
Don Newton98fd8812019-09-23 15:15:02 -040025 SYS_GETPID = 20 // { pid_t getpid(void); }
Don Newtone0d34a82019-11-14 10:58:06 -050026 SYS_MOUNT = 21 // { int mount(char *type, char *path, \
Don Newton98fd8812019-09-23 15:15:02 -040027 SYS_UNMOUNT = 22 // { int unmount(char *path, int flags); }
28 SYS_SETUID = 23 // { int setuid(uid_t uid); }
29 SYS_GETUID = 24 // { uid_t getuid(void); }
30 SYS_GETEUID = 25 // { uid_t geteuid(void); }
Don Newtone0d34a82019-11-14 10:58:06 -050031 SYS_PTRACE = 26 // { int ptrace(int req, pid_t pid, \
32 SYS_RECVMSG = 27 // { int recvmsg(int s, struct msghdr *msg, \
33 SYS_SENDMSG = 28 // { int sendmsg(int s, struct msghdr *msg, \
34 SYS_RECVFROM = 29 // { int recvfrom(int s, caddr_t buf, \
35 SYS_ACCEPT = 30 // { int accept(int s, \
36 SYS_GETPEERNAME = 31 // { int getpeername(int fdes, \
37 SYS_GETSOCKNAME = 32 // { int getsockname(int fdes, \
Don Newton98fd8812019-09-23 15:15:02 -040038 SYS_ACCESS = 33 // { int access(char *path, int amode); }
39 SYS_CHFLAGS = 34 // { int chflags(const char *path, u_long flags); }
40 SYS_FCHFLAGS = 35 // { int fchflags(int fd, u_long flags); }
41 SYS_SYNC = 36 // { int sync(void); }
42 SYS_KILL = 37 // { int kill(int pid, int signum); }
43 SYS_GETPPID = 39 // { pid_t getppid(void); }
44 SYS_DUP = 41 // { int dup(u_int fd); }
Don Newton98fd8812019-09-23 15:15:02 -040045 SYS_GETEGID = 43 // { gid_t getegid(void); }
Don Newtone0d34a82019-11-14 10:58:06 -050046 SYS_PROFIL = 44 // { int profil(caddr_t samples, size_t size, \
47 SYS_KTRACE = 45 // { int ktrace(const char *fname, int ops, \
Don Newton98fd8812019-09-23 15:15:02 -040048 SYS_GETGID = 47 // { gid_t getgid(void); }
Don Newtone0d34a82019-11-14 10:58:06 -050049 SYS_GETLOGIN = 49 // { int getlogin(char *namebuf, u_int \
Don Newton98fd8812019-09-23 15:15:02 -040050 SYS_SETLOGIN = 50 // { int setlogin(char *namebuf); }
51 SYS_ACCT = 51 // { int acct(char *path); }
Don Newtone0d34a82019-11-14 10:58:06 -050052 SYS_SIGALTSTACK = 53 // { int sigaltstack(stack_t *ss, \
53 SYS_IOCTL = 54 // { int ioctl(int fd, u_long com, \
Don Newton98fd8812019-09-23 15:15:02 -040054 SYS_REBOOT = 55 // { int reboot(int opt); }
55 SYS_REVOKE = 56 // { int revoke(char *path); }
56 SYS_SYMLINK = 57 // { int symlink(char *path, char *link); }
Don Newtone0d34a82019-11-14 10:58:06 -050057 SYS_READLINK = 58 // { ssize_t readlink(char *path, char *buf, \
58 SYS_EXECVE = 59 // { int execve(char *fname, char **argv, \
59 SYS_UMASK = 60 // { int umask(int newmask); } umask umask_args \
Don Newton98fd8812019-09-23 15:15:02 -040060 SYS_CHROOT = 61 // { int chroot(char *path); }
Don Newtone0d34a82019-11-14 10:58:06 -050061 SYS_MSYNC = 65 // { int msync(void *addr, size_t len, \
Don Newton98fd8812019-09-23 15:15:02 -040062 SYS_VFORK = 66 // { int vfork(void); }
63 SYS_SBRK = 69 // { int sbrk(int incr); }
64 SYS_SSTK = 70 // { int sstk(int incr); }
Don Newtone0d34a82019-11-14 10:58:06 -050065 SYS_OVADVISE = 72 // { int ovadvise(int anom); } vadvise \
Don Newton98fd8812019-09-23 15:15:02 -040066 SYS_MUNMAP = 73 // { int munmap(void *addr, size_t len); }
Don Newtone0d34a82019-11-14 10:58:06 -050067 SYS_MPROTECT = 74 // { int mprotect(const void *addr, size_t len, \
68 SYS_MADVISE = 75 // { int madvise(void *addr, size_t len, \
69 SYS_MINCORE = 78 // { int mincore(const void *addr, size_t len, \
70 SYS_GETGROUPS = 79 // { int getgroups(u_int gidsetsize, \
71 SYS_SETGROUPS = 80 // { int setgroups(u_int gidsetsize, \
Don Newton98fd8812019-09-23 15:15:02 -040072 SYS_GETPGRP = 81 // { int getpgrp(void); }
73 SYS_SETPGID = 82 // { int setpgid(int pid, int pgid); }
Don Newtone0d34a82019-11-14 10:58:06 -050074 SYS_SETITIMER = 83 // { int setitimer(u_int which, struct \
Don Newton98fd8812019-09-23 15:15:02 -040075 SYS_SWAPON = 85 // { int swapon(char *name); }
Don Newtone0d34a82019-11-14 10:58:06 -050076 SYS_GETITIMER = 86 // { int getitimer(u_int which, \
Don Newton98fd8812019-09-23 15:15:02 -040077 SYS_GETDTABLESIZE = 89 // { int getdtablesize(void); }
78 SYS_DUP2 = 90 // { int dup2(u_int from, u_int to); }
79 SYS_FCNTL = 92 // { int fcntl(int fd, int cmd, long arg); }
Don Newtone0d34a82019-11-14 10:58:06 -050080 SYS_SELECT = 93 // { int select(int nd, fd_set *in, fd_set *ou, \
Don Newton98fd8812019-09-23 15:15:02 -040081 SYS_FSYNC = 95 // { int fsync(int fd); }
Don Newtone0d34a82019-11-14 10:58:06 -050082 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, \
83 SYS_SOCKET = 97 // { int socket(int domain, int type, \
84 SYS_CONNECT = 98 // { int connect(int s, caddr_t name, \
Don Newton98fd8812019-09-23 15:15:02 -040085 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); }
Don Newtone0d34a82019-11-14 10:58:06 -050086 SYS_BIND = 104 // { int bind(int s, caddr_t name, \
87 SYS_SETSOCKOPT = 105 // { int setsockopt(int s, int level, int name, \
Don Newton98fd8812019-09-23 15:15:02 -040088 SYS_LISTEN = 106 // { int listen(int s, int backlog); }
Don Newtone0d34a82019-11-14 10:58:06 -050089 SYS_GETTIMEOFDAY = 116 // { int gettimeofday(struct timeval *tp, \
90 SYS_GETRUSAGE = 117 // { int getrusage(int who, \
91 SYS_GETSOCKOPT = 118 // { int getsockopt(int s, int level, int name, \
92 SYS_READV = 120 // { int readv(int fd, struct iovec *iovp, \
93 SYS_WRITEV = 121 // { int writev(int fd, struct iovec *iovp, \
94 SYS_SETTIMEOFDAY = 122 // { int settimeofday(struct timeval *tv, \
Don Newton98fd8812019-09-23 15:15:02 -040095 SYS_FCHOWN = 123 // { int fchown(int fd, int uid, int gid); }
96 SYS_FCHMOD = 124 // { int fchmod(int fd, int mode); }
97 SYS_SETREUID = 126 // { int setreuid(int ruid, int euid); }
98 SYS_SETREGID = 127 // { int setregid(int rgid, int egid); }
99 SYS_RENAME = 128 // { int rename(char *from, char *to); }
100 SYS_FLOCK = 131 // { int flock(int fd, int how); }
101 SYS_MKFIFO = 132 // { int mkfifo(char *path, int mode); }
Don Newtone0d34a82019-11-14 10:58:06 -0500102 SYS_SENDTO = 133 // { int sendto(int s, caddr_t buf, size_t len, \
Don Newton98fd8812019-09-23 15:15:02 -0400103 SYS_SHUTDOWN = 134 // { int shutdown(int s, int how); }
Don Newtone0d34a82019-11-14 10:58:06 -0500104 SYS_SOCKETPAIR = 135 // { int socketpair(int domain, int type, \
Don Newton98fd8812019-09-23 15:15:02 -0400105 SYS_MKDIR = 136 // { int mkdir(char *path, int mode); }
106 SYS_RMDIR = 137 // { int rmdir(char *path); }
Don Newtone0d34a82019-11-14 10:58:06 -0500107 SYS_UTIMES = 138 // { int utimes(char *path, \
108 SYS_ADJTIME = 140 // { int adjtime(struct timeval *delta, \
Don Newton98fd8812019-09-23 15:15:02 -0400109 SYS_SETSID = 147 // { int setsid(void); }
Don Newtone0d34a82019-11-14 10:58:06 -0500110 SYS_QUOTACTL = 148 // { int quotactl(char *path, int cmd, int uid, \
Don Newton98fd8812019-09-23 15:15:02 -0400111 SYS_NLM_SYSCALL = 154 // { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }
112 SYS_NFSSVC = 155 // { int nfssvc(int flag, caddr_t argp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500113 SYS_LGETFH = 160 // { int lgetfh(char *fname, \
114 SYS_GETFH = 161 // { int getfh(char *fname, \
Don Newton98fd8812019-09-23 15:15:02 -0400115 SYS_SYSARCH = 165 // { int sysarch(int op, char *parms); }
Don Newtone0d34a82019-11-14 10:58:06 -0500116 SYS_RTPRIO = 166 // { int rtprio(int function, pid_t pid, \
117 SYS_SEMSYS = 169 // { int semsys(int which, int a2, int a3, \
118 SYS_MSGSYS = 170 // { int msgsys(int which, int a2, int a3, \
119 SYS_SHMSYS = 171 // { int shmsys(int which, int a2, int a3, \
Don Newton98fd8812019-09-23 15:15:02 -0400120 SYS_SETFIB = 175 // { int setfib(int fibnum); }
121 SYS_NTP_ADJTIME = 176 // { int ntp_adjtime(struct timex *tp); }
122 SYS_SETGID = 181 // { int setgid(gid_t gid); }
123 SYS_SETEGID = 182 // { int setegid(gid_t egid); }
124 SYS_SETEUID = 183 // { int seteuid(uid_t euid); }
125 SYS_STAT = 188 // { int stat(char *path, struct stat *ub); }
126 SYS_FSTAT = 189 // { int fstat(int fd, struct stat *sb); }
127 SYS_LSTAT = 190 // { int lstat(char *path, struct stat *ub); }
128 SYS_PATHCONF = 191 // { int pathconf(char *path, int name); }
129 SYS_FPATHCONF = 192 // { int fpathconf(int fd, int name); }
Don Newtone0d34a82019-11-14 10:58:06 -0500130 SYS_GETRLIMIT = 194 // { int getrlimit(u_int which, \
131 SYS_SETRLIMIT = 195 // { int setrlimit(u_int which, \
132 SYS_GETDIRENTRIES = 196 // { int getdirentries(int fd, char *buf, \
133 SYS___SYSCTL = 202 // { int __sysctl(int *name, u_int namelen, \
Don Newton98fd8812019-09-23 15:15:02 -0400134 SYS_MLOCK = 203 // { int mlock(const void *addr, size_t len); }
135 SYS_MUNLOCK = 204 // { int munlock(const void *addr, size_t len); }
136 SYS_UNDELETE = 205 // { int undelete(char *path); }
137 SYS_FUTIMES = 206 // { int futimes(int fd, struct timeval *tptr); }
138 SYS_GETPGID = 207 // { int getpgid(pid_t pid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500139 SYS_POLL = 209 // { int poll(struct pollfd *fds, u_int nfds, \
140 SYS_SEMGET = 221 // { int semget(key_t key, int nsems, \
141 SYS_SEMOP = 222 // { int semop(int semid, struct sembuf *sops, \
Don Newton98fd8812019-09-23 15:15:02 -0400142 SYS_MSGGET = 225 // { int msgget(key_t key, int msgflg); }
Don Newtone0d34a82019-11-14 10:58:06 -0500143 SYS_MSGSND = 226 // { int msgsnd(int msqid, const void *msgp, \
144 SYS_MSGRCV = 227 // { int msgrcv(int msqid, void *msgp, \
145 SYS_SHMAT = 228 // { int shmat(int shmid, const void *shmaddr, \
Don Newton98fd8812019-09-23 15:15:02 -0400146 SYS_SHMDT = 230 // { int shmdt(const void *shmaddr); }
Don Newtone0d34a82019-11-14 10:58:06 -0500147 SYS_SHMGET = 231 // { int shmget(key_t key, size_t size, \
148 SYS_CLOCK_GETTIME = 232 // { int clock_gettime(clockid_t clock_id, \
149 SYS_CLOCK_SETTIME = 233 // { int clock_settime( \
150 SYS_CLOCK_GETRES = 234 // { int clock_getres(clockid_t clock_id, \
151 SYS_KTIMER_CREATE = 235 // { int ktimer_create(clockid_t clock_id, \
Don Newton98fd8812019-09-23 15:15:02 -0400152 SYS_KTIMER_DELETE = 236 // { int ktimer_delete(int timerid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500153 SYS_KTIMER_SETTIME = 237 // { int ktimer_settime(int timerid, int flags, \
154 SYS_KTIMER_GETTIME = 238 // { int ktimer_gettime(int timerid, struct \
Don Newton98fd8812019-09-23 15:15:02 -0400155 SYS_KTIMER_GETOVERRUN = 239 // { int ktimer_getoverrun(int timerid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500156 SYS_NANOSLEEP = 240 // { int nanosleep(const struct timespec *rqtp, \
Don Newton98fd8812019-09-23 15:15:02 -0400157 SYS_FFCLOCK_GETCOUNTER = 241 // { int ffclock_getcounter(ffcounter *ffcount); }
Don Newtone0d34a82019-11-14 10:58:06 -0500158 SYS_FFCLOCK_SETESTIMATE = 242 // { int ffclock_setestimate( \
159 SYS_FFCLOCK_GETESTIMATE = 243 // { int ffclock_getestimate( \
160 SYS_CLOCK_NANOSLEEP = 244 // { int clock_nanosleep(clockid_t clock_id, \
161 SYS_CLOCK_GETCPUCLOCKID2 = 247 // { int clock_getcpuclockid2(id_t id,\
Don Newton98fd8812019-09-23 15:15:02 -0400162 SYS_NTP_GETTIME = 248 // { int ntp_gettime(struct ntptimeval *ntvp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500163 SYS_MINHERIT = 250 // { int minherit(void *addr, size_t len, \
Don Newton98fd8812019-09-23 15:15:02 -0400164 SYS_RFORK = 251 // { int rfork(int flags); }
Don Newtone0d34a82019-11-14 10:58:06 -0500165 SYS_OPENBSD_POLL = 252 // { int openbsd_poll(struct pollfd *fds, \
Don Newton98fd8812019-09-23 15:15:02 -0400166 SYS_ISSETUGID = 253 // { int issetugid(void); }
167 SYS_LCHOWN = 254 // { int lchown(char *path, int uid, int gid); }
168 SYS_AIO_READ = 255 // { int aio_read(struct aiocb *aiocbp); }
169 SYS_AIO_WRITE = 256 // { int aio_write(struct aiocb *aiocbp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500170 SYS_LIO_LISTIO = 257 // { int lio_listio(int mode, \
171 SYS_GETDENTS = 272 // { int getdents(int fd, char *buf, \
Don Newton98fd8812019-09-23 15:15:02 -0400172 SYS_LCHMOD = 274 // { int lchmod(char *path, mode_t mode); }
Don Newtone0d34a82019-11-14 10:58:06 -0500173 SYS_LUTIMES = 276 // { int lutimes(char *path, \
Don Newton98fd8812019-09-23 15:15:02 -0400174 SYS_NSTAT = 278 // { int nstat(char *path, struct nstat *ub); }
175 SYS_NFSTAT = 279 // { int nfstat(int fd, struct nstat *sb); }
176 SYS_NLSTAT = 280 // { int nlstat(char *path, struct nstat *ub); }
Don Newtone0d34a82019-11-14 10:58:06 -0500177 SYS_PREADV = 289 // { ssize_t preadv(int fd, struct iovec *iovp, \
178 SYS_PWRITEV = 290 // { ssize_t pwritev(int fd, struct iovec *iovp, \
179 SYS_FHOPEN = 298 // { int fhopen(const struct fhandle *u_fhp, \
180 SYS_FHSTAT = 299 // { int fhstat(const struct fhandle *u_fhp, \
Don Newton98fd8812019-09-23 15:15:02 -0400181 SYS_MODNEXT = 300 // { int modnext(int modid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500182 SYS_MODSTAT = 301 // { int modstat(int modid, \
Don Newton98fd8812019-09-23 15:15:02 -0400183 SYS_MODFNEXT = 302 // { int modfnext(int modid); }
184 SYS_MODFIND = 303 // { int modfind(const char *name); }
185 SYS_KLDLOAD = 304 // { int kldload(const char *file); }
186 SYS_KLDUNLOAD = 305 // { int kldunload(int fileid); }
187 SYS_KLDFIND = 306 // { int kldfind(const char *file); }
188 SYS_KLDNEXT = 307 // { int kldnext(int fileid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500189 SYS_KLDSTAT = 308 // { int kldstat(int fileid, struct \
Don Newton98fd8812019-09-23 15:15:02 -0400190 SYS_KLDFIRSTMOD = 309 // { int kldfirstmod(int fileid); }
191 SYS_GETSID = 310 // { int getsid(pid_t pid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500192 SYS_SETRESUID = 311 // { int setresuid(uid_t ruid, uid_t euid, \
193 SYS_SETRESGID = 312 // { int setresgid(gid_t rgid, gid_t egid, \
Don Newton98fd8812019-09-23 15:15:02 -0400194 SYS_AIO_RETURN = 314 // { ssize_t aio_return(struct aiocb *aiocbp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500195 SYS_AIO_SUSPEND = 315 // { int aio_suspend( \
196 SYS_AIO_CANCEL = 316 // { int aio_cancel(int fd, \
Don Newton98fd8812019-09-23 15:15:02 -0400197 SYS_AIO_ERROR = 317 // { int aio_error(struct aiocb *aiocbp); }
198 SYS_YIELD = 321 // { int yield(void); }
199 SYS_MLOCKALL = 324 // { int mlockall(int how); }
200 SYS_MUNLOCKALL = 325 // { int munlockall(void); }
201 SYS___GETCWD = 326 // { int __getcwd(char *buf, u_int buflen); }
Don Newtone0d34a82019-11-14 10:58:06 -0500202 SYS_SCHED_SETPARAM = 327 // { int sched_setparam (pid_t pid, \
203 SYS_SCHED_GETPARAM = 328 // { int sched_getparam (pid_t pid, struct \
204 SYS_SCHED_SETSCHEDULER = 329 // { int sched_setscheduler (pid_t pid, int \
Don Newton98fd8812019-09-23 15:15:02 -0400205 SYS_SCHED_GETSCHEDULER = 330 // { int sched_getscheduler (pid_t pid); }
206 SYS_SCHED_YIELD = 331 // { int sched_yield (void); }
207 SYS_SCHED_GET_PRIORITY_MAX = 332 // { int sched_get_priority_max (int policy); }
208 SYS_SCHED_GET_PRIORITY_MIN = 333 // { int sched_get_priority_min (int policy); }
Don Newtone0d34a82019-11-14 10:58:06 -0500209 SYS_SCHED_RR_GET_INTERVAL = 334 // { int sched_rr_get_interval (pid_t pid, \
Don Newton98fd8812019-09-23 15:15:02 -0400210 SYS_UTRACE = 335 // { int utrace(const void *addr, size_t len); }
Don Newtone0d34a82019-11-14 10:58:06 -0500211 SYS_KLDSYM = 337 // { int kldsym(int fileid, int cmd, \
Don Newton98fd8812019-09-23 15:15:02 -0400212 SYS_JAIL = 338 // { int jail(struct jail *jail); }
Don Newtone0d34a82019-11-14 10:58:06 -0500213 SYS_SIGPROCMASK = 340 // { int sigprocmask(int how, \
Don Newton98fd8812019-09-23 15:15:02 -0400214 SYS_SIGSUSPEND = 341 // { int sigsuspend(const sigset_t *sigmask); }
215 SYS_SIGPENDING = 343 // { int sigpending(sigset_t *set); }
Don Newtone0d34a82019-11-14 10:58:06 -0500216 SYS_SIGTIMEDWAIT = 345 // { int sigtimedwait(const sigset_t *set, \
217 SYS_SIGWAITINFO = 346 // { int sigwaitinfo(const sigset_t *set, \
218 SYS___ACL_GET_FILE = 347 // { int __acl_get_file(const char *path, \
219 SYS___ACL_SET_FILE = 348 // { int __acl_set_file(const char *path, \
220 SYS___ACL_GET_FD = 349 // { int __acl_get_fd(int filedes, \
221 SYS___ACL_SET_FD = 350 // { int __acl_set_fd(int filedes, \
222 SYS___ACL_DELETE_FILE = 351 // { int __acl_delete_file(const char *path, \
223 SYS___ACL_DELETE_FD = 352 // { int __acl_delete_fd(int filedes, \
224 SYS___ACL_ACLCHECK_FILE = 353 // { int __acl_aclcheck_file(const char *path, \
225 SYS___ACL_ACLCHECK_FD = 354 // { int __acl_aclcheck_fd(int filedes, \
226 SYS_EXTATTRCTL = 355 // { int extattrctl(const char *path, int cmd, \
227 SYS_EXTATTR_SET_FILE = 356 // { ssize_t extattr_set_file( \
228 SYS_EXTATTR_GET_FILE = 357 // { ssize_t extattr_get_file( \
229 SYS_EXTATTR_DELETE_FILE = 358 // { int extattr_delete_file(const char *path, \
230 SYS_AIO_WAITCOMPLETE = 359 // { ssize_t aio_waitcomplete( \
231 SYS_GETRESUID = 360 // { int getresuid(uid_t *ruid, uid_t *euid, \
232 SYS_GETRESGID = 361 // { int getresgid(gid_t *rgid, gid_t *egid, \
Don Newton98fd8812019-09-23 15:15:02 -0400233 SYS_KQUEUE = 362 // { int kqueue(void); }
Don Newtone0d34a82019-11-14 10:58:06 -0500234 SYS_KEVENT = 363 // { int kevent(int fd, \
235 SYS_EXTATTR_SET_FD = 371 // { ssize_t extattr_set_fd(int fd, \
236 SYS_EXTATTR_GET_FD = 372 // { ssize_t extattr_get_fd(int fd, \
237 SYS_EXTATTR_DELETE_FD = 373 // { int extattr_delete_fd(int fd, \
Don Newton98fd8812019-09-23 15:15:02 -0400238 SYS___SETUGID = 374 // { int __setugid(int flag); }
239 SYS_EACCESS = 376 // { int eaccess(char *path, int amode); }
Don Newtone0d34a82019-11-14 10:58:06 -0500240 SYS_NMOUNT = 378 // { int nmount(struct iovec *iovp, \
Don Newton98fd8812019-09-23 15:15:02 -0400241 SYS___MAC_GET_PROC = 384 // { int __mac_get_proc(struct mac *mac_p); }
242 SYS___MAC_SET_PROC = 385 // { int __mac_set_proc(struct mac *mac_p); }
Don Newtone0d34a82019-11-14 10:58:06 -0500243 SYS___MAC_GET_FD = 386 // { int __mac_get_fd(int fd, \
244 SYS___MAC_GET_FILE = 387 // { int __mac_get_file(const char *path_p, \
245 SYS___MAC_SET_FD = 388 // { int __mac_set_fd(int fd, \
246 SYS___MAC_SET_FILE = 389 // { int __mac_set_file(const char *path_p, \
247 SYS_KENV = 390 // { int kenv(int what, const char *name, \
248 SYS_LCHFLAGS = 391 // { int lchflags(const char *path, \
249 SYS_UUIDGEN = 392 // { int uuidgen(struct uuid *store, \
250 SYS_SENDFILE = 393 // { int sendfile(int fd, int s, off_t offset, \
251 SYS_MAC_SYSCALL = 394 // { int mac_syscall(const char *policy, \
252 SYS_GETFSSTAT = 395 // { int getfsstat(struct statfs *buf, \
253 SYS_STATFS = 396 // { int statfs(char *path, \
Don Newton98fd8812019-09-23 15:15:02 -0400254 SYS_FSTATFS = 397 // { int fstatfs(int fd, struct statfs *buf); }
Don Newtone0d34a82019-11-14 10:58:06 -0500255 SYS_FHSTATFS = 398 // { int fhstatfs(const struct fhandle *u_fhp, \
Don Newton98fd8812019-09-23 15:15:02 -0400256 SYS_KSEM_CLOSE = 400 // { int ksem_close(semid_t id); }
257 SYS_KSEM_POST = 401 // { int ksem_post(semid_t id); }
258 SYS_KSEM_WAIT = 402 // { int ksem_wait(semid_t id); }
259 SYS_KSEM_TRYWAIT = 403 // { int ksem_trywait(semid_t id); }
Don Newtone0d34a82019-11-14 10:58:06 -0500260 SYS_KSEM_INIT = 404 // { int ksem_init(semid_t *idp, \
261 SYS_KSEM_OPEN = 405 // { int ksem_open(semid_t *idp, \
Don Newton98fd8812019-09-23 15:15:02 -0400262 SYS_KSEM_UNLINK = 406 // { int ksem_unlink(const char *name); }
263 SYS_KSEM_GETVALUE = 407 // { int ksem_getvalue(semid_t id, int *val); }
264 SYS_KSEM_DESTROY = 408 // { int ksem_destroy(semid_t id); }
Don Newtone0d34a82019-11-14 10:58:06 -0500265 SYS___MAC_GET_PID = 409 // { int __mac_get_pid(pid_t pid, \
266 SYS___MAC_GET_LINK = 410 // { int __mac_get_link(const char *path_p, \
267 SYS___MAC_SET_LINK = 411 // { int __mac_set_link(const char *path_p, \
268 SYS_EXTATTR_SET_LINK = 412 // { ssize_t extattr_set_link( \
269 SYS_EXTATTR_GET_LINK = 413 // { ssize_t extattr_get_link( \
270 SYS_EXTATTR_DELETE_LINK = 414 // { int extattr_delete_link( \
271 SYS___MAC_EXECVE = 415 // { int __mac_execve(char *fname, char **argv, \
272 SYS_SIGACTION = 416 // { int sigaction(int sig, \
273 SYS_SIGRETURN = 417 // { int sigreturn( \
Don Newton98fd8812019-09-23 15:15:02 -0400274 SYS_GETCONTEXT = 421 // { int getcontext(struct __ucontext *ucp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500275 SYS_SETCONTEXT = 422 // { int setcontext( \
276 SYS_SWAPCONTEXT = 423 // { int swapcontext(struct __ucontext *oucp, \
Don Newton98fd8812019-09-23 15:15:02 -0400277 SYS_SWAPOFF = 424 // { int swapoff(const char *name); }
Don Newtone0d34a82019-11-14 10:58:06 -0500278 SYS___ACL_GET_LINK = 425 // { int __acl_get_link(const char *path, \
279 SYS___ACL_SET_LINK = 426 // { int __acl_set_link(const char *path, \
280 SYS___ACL_DELETE_LINK = 427 // { int __acl_delete_link(const char *path, \
281 SYS___ACL_ACLCHECK_LINK = 428 // { int __acl_aclcheck_link(const char *path, \
282 SYS_SIGWAIT = 429 // { int sigwait(const sigset_t *set, \
283 SYS_THR_CREATE = 430 // { int thr_create(ucontext_t *ctx, long *id, \
Don Newton98fd8812019-09-23 15:15:02 -0400284 SYS_THR_EXIT = 431 // { void thr_exit(long *state); }
285 SYS_THR_SELF = 432 // { int thr_self(long *id); }
286 SYS_THR_KILL = 433 // { int thr_kill(long id, int sig); }
287 SYS_JAIL_ATTACH = 436 // { int jail_attach(int jid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500288 SYS_EXTATTR_LIST_FD = 437 // { ssize_t extattr_list_fd(int fd, \
289 SYS_EXTATTR_LIST_FILE = 438 // { ssize_t extattr_list_file( \
290 SYS_EXTATTR_LIST_LINK = 439 // { ssize_t extattr_list_link( \
291 SYS_KSEM_TIMEDWAIT = 441 // { int ksem_timedwait(semid_t id, \
292 SYS_THR_SUSPEND = 442 // { int thr_suspend( \
Don Newton98fd8812019-09-23 15:15:02 -0400293 SYS_THR_WAKE = 443 // { int thr_wake(long id); }
294 SYS_KLDUNLOADF = 444 // { int kldunloadf(int fileid, int flags); }
Don Newtone0d34a82019-11-14 10:58:06 -0500295 SYS_AUDIT = 445 // { int audit(const void *record, \
296 SYS_AUDITON = 446 // { int auditon(int cmd, void *data, \
Don Newton98fd8812019-09-23 15:15:02 -0400297 SYS_GETAUID = 447 // { int getauid(uid_t *auid); }
298 SYS_SETAUID = 448 // { int setauid(uid_t *auid); }
299 SYS_GETAUDIT = 449 // { int getaudit(struct auditinfo *auditinfo); }
300 SYS_SETAUDIT = 450 // { int setaudit(struct auditinfo *auditinfo); }
Don Newtone0d34a82019-11-14 10:58:06 -0500301 SYS_GETAUDIT_ADDR = 451 // { int getaudit_addr( \
302 SYS_SETAUDIT_ADDR = 452 // { int setaudit_addr( \
Don Newton98fd8812019-09-23 15:15:02 -0400303 SYS_AUDITCTL = 453 // { int auditctl(char *path); }
Don Newtone0d34a82019-11-14 10:58:06 -0500304 SYS__UMTX_OP = 454 // { int _umtx_op(void *obj, int op, \
305 SYS_THR_NEW = 455 // { int thr_new(struct thr_param *param, \
Don Newton98fd8812019-09-23 15:15:02 -0400306 SYS_SIGQUEUE = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
Don Newtone0d34a82019-11-14 10:58:06 -0500307 SYS_KMQ_OPEN = 457 // { int kmq_open(const char *path, int flags, \
308 SYS_KMQ_SETATTR = 458 // { int kmq_setattr(int mqd, \
309 SYS_KMQ_TIMEDRECEIVE = 459 // { int kmq_timedreceive(int mqd, \
310 SYS_KMQ_TIMEDSEND = 460 // { int kmq_timedsend(int mqd, \
311 SYS_KMQ_NOTIFY = 461 // { int kmq_notify(int mqd, \
Don Newton98fd8812019-09-23 15:15:02 -0400312 SYS_KMQ_UNLINK = 462 // { int kmq_unlink(const char *path); }
313 SYS_ABORT2 = 463 // { int abort2(const char *why, int nargs, void **args); }
314 SYS_THR_SET_NAME = 464 // { int thr_set_name(long id, const char *name); }
315 SYS_AIO_FSYNC = 465 // { int aio_fsync(int op, struct aiocb *aiocbp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500316 SYS_RTPRIO_THREAD = 466 // { int rtprio_thread(int function, \
Don Newton98fd8812019-09-23 15:15:02 -0400317 SYS_SCTP_PEELOFF = 471 // { int sctp_peeloff(int sd, uint32_t name); }
Don Newtone0d34a82019-11-14 10:58:06 -0500318 SYS_SCTP_GENERIC_SENDMSG = 472 // { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
319 SYS_SCTP_GENERIC_SENDMSG_IOV = 473 // { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
320 SYS_SCTP_GENERIC_RECVMSG = 474 // { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
321 SYS_PREAD = 475 // { ssize_t pread(int fd, void *buf, \
322 SYS_PWRITE = 476 // { ssize_t pwrite(int fd, const void *buf, \
323 SYS_MMAP = 477 // { caddr_t mmap(caddr_t addr, size_t len, \
324 SYS_LSEEK = 478 // { off_t lseek(int fd, off_t offset, \
Don Newton98fd8812019-09-23 15:15:02 -0400325 SYS_TRUNCATE = 479 // { int truncate(char *path, off_t length); }
326 SYS_FTRUNCATE = 480 // { int ftruncate(int fd, off_t length); }
327 SYS_THR_KILL2 = 481 // { int thr_kill2(pid_t pid, long id, int sig); }
Don Newtone0d34a82019-11-14 10:58:06 -0500328 SYS_SHM_OPEN = 482 // { int shm_open(const char *path, int flags, \
Don Newton98fd8812019-09-23 15:15:02 -0400329 SYS_SHM_UNLINK = 483 // { int shm_unlink(const char *path); }
330 SYS_CPUSET = 484 // { int cpuset(cpusetid_t *setid); }
Don Newtone0d34a82019-11-14 10:58:06 -0500331 SYS_CPUSET_SETID = 485 // { int cpuset_setid(cpuwhich_t which, id_t id, \
332 SYS_CPUSET_GETID = 486 // { int cpuset_getid(cpulevel_t level, \
333 SYS_CPUSET_GETAFFINITY = 487 // { int cpuset_getaffinity(cpulevel_t level, \
334 SYS_CPUSET_SETAFFINITY = 488 // { int cpuset_setaffinity(cpulevel_t level, \
335 SYS_FACCESSAT = 489 // { int faccessat(int fd, char *path, int amode, \
336 SYS_FCHMODAT = 490 // { int fchmodat(int fd, char *path, mode_t mode, \
337 SYS_FCHOWNAT = 491 // { int fchownat(int fd, char *path, uid_t uid, \
338 SYS_FEXECVE = 492 // { int fexecve(int fd, char **argv, \
339 SYS_FSTATAT = 493 // { int fstatat(int fd, char *path, \
340 SYS_FUTIMESAT = 494 // { int futimesat(int fd, char *path, \
341 SYS_LINKAT = 495 // { int linkat(int fd1, char *path1, int fd2, \
Don Newton98fd8812019-09-23 15:15:02 -0400342 SYS_MKDIRAT = 496 // { int mkdirat(int fd, char *path, mode_t mode); }
343 SYS_MKFIFOAT = 497 // { int mkfifoat(int fd, char *path, mode_t mode); }
Don Newtone0d34a82019-11-14 10:58:06 -0500344 SYS_MKNODAT = 498 // { int mknodat(int fd, char *path, mode_t mode, \
345 SYS_OPENAT = 499 // { int openat(int fd, char *path, int flag, \
346 SYS_READLINKAT = 500 // { int readlinkat(int fd, char *path, char *buf, \
347 SYS_RENAMEAT = 501 // { int renameat(int oldfd, char *old, int newfd, \
348 SYS_SYMLINKAT = 502 // { int symlinkat(char *path1, int fd, \
Don Newton98fd8812019-09-23 15:15:02 -0400349 SYS_UNLINKAT = 503 // { int unlinkat(int fd, char *path, int flag); }
350 SYS_POSIX_OPENPT = 504 // { int posix_openpt(int flags); }
351 SYS_GSSD_SYSCALL = 505 // { int gssd_syscall(char *path); }
Don Newtone0d34a82019-11-14 10:58:06 -0500352 SYS_JAIL_GET = 506 // { int jail_get(struct iovec *iovp, \
353 SYS_JAIL_SET = 507 // { int jail_set(struct iovec *iovp, \
Don Newton98fd8812019-09-23 15:15:02 -0400354 SYS_JAIL_REMOVE = 508 // { int jail_remove(int jid); }
355 SYS_CLOSEFROM = 509 // { int closefrom(int lowfd); }
Don Newtone0d34a82019-11-14 10:58:06 -0500356 SYS___SEMCTL = 510 // { int __semctl(int semid, int semnum, \
357 SYS_MSGCTL = 511 // { int msgctl(int msqid, int cmd, \
358 SYS_SHMCTL = 512 // { int shmctl(int shmid, int cmd, \
Don Newton98fd8812019-09-23 15:15:02 -0400359 SYS_LPATHCONF = 513 // { int lpathconf(char *path, int name); }
Don Newtone0d34a82019-11-14 10:58:06 -0500360 SYS___CAP_RIGHTS_GET = 515 // { int __cap_rights_get(int version, \
Don Newton98fd8812019-09-23 15:15:02 -0400361 SYS_CAP_ENTER = 516 // { int cap_enter(void); }
362 SYS_CAP_GETMODE = 517 // { int cap_getmode(u_int *modep); }
363 SYS_PDFORK = 518 // { int pdfork(int *fdp, int flags); }
364 SYS_PDKILL = 519 // { int pdkill(int fd, int signum); }
365 SYS_PDGETPID = 520 // { int pdgetpid(int fd, pid_t *pidp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500366 SYS_PSELECT = 522 // { int pselect(int nd, fd_set *in, \
367 SYS_GETLOGINCLASS = 523 // { int getloginclass(char *namebuf, \
Don Newton98fd8812019-09-23 15:15:02 -0400368 SYS_SETLOGINCLASS = 524 // { int setloginclass(const char *namebuf); }
Don Newtone0d34a82019-11-14 10:58:06 -0500369 SYS_RCTL_GET_RACCT = 525 // { int rctl_get_racct(const void *inbufp, \
370 SYS_RCTL_GET_RULES = 526 // { int rctl_get_rules(const void *inbufp, \
371 SYS_RCTL_GET_LIMITS = 527 // { int rctl_get_limits(const void *inbufp, \
372 SYS_RCTL_ADD_RULE = 528 // { int rctl_add_rule(const void *inbufp, \
373 SYS_RCTL_REMOVE_RULE = 529 // { int rctl_remove_rule(const void *inbufp, \
374 SYS_POSIX_FALLOCATE = 530 // { int posix_fallocate(int fd, \
375 SYS_POSIX_FADVISE = 531 // { int posix_fadvise(int fd, off_t offset, \
376 SYS_WAIT6 = 532 // { int wait6(idtype_t idtype, id_t id, \
377 SYS_CAP_RIGHTS_LIMIT = 533 // { int cap_rights_limit(int fd, \
378 SYS_CAP_IOCTLS_LIMIT = 534 // { int cap_ioctls_limit(int fd, \
379 SYS_CAP_IOCTLS_GET = 535 // { ssize_t cap_ioctls_get(int fd, \
380 SYS_CAP_FCNTLS_LIMIT = 536 // { int cap_fcntls_limit(int fd, \
381 SYS_CAP_FCNTLS_GET = 537 // { int cap_fcntls_get(int fd, \
382 SYS_BINDAT = 538 // { int bindat(int fd, int s, caddr_t name, \
383 SYS_CONNECTAT = 539 // { int connectat(int fd, int s, caddr_t name, \
384 SYS_CHFLAGSAT = 540 // { int chflagsat(int fd, const char *path, \
385 SYS_ACCEPT4 = 541 // { int accept4(int s, \
Don Newton98fd8812019-09-23 15:15:02 -0400386 SYS_PIPE2 = 542 // { int pipe2(int *fildes, int flags); }
387 SYS_AIO_MLOCK = 543 // { int aio_mlock(struct aiocb *aiocbp); }
Don Newtone0d34a82019-11-14 10:58:06 -0500388 SYS_PROCCTL = 544 // { int procctl(idtype_t idtype, id_t id, \
389 SYS_PPOLL = 545 // { int ppoll(struct pollfd *fds, u_int nfds, \
390 SYS_FUTIMENS = 546 // { int futimens(int fd, \
391 SYS_UTIMENSAT = 547 // { int utimensat(int fd, \
392 SYS_NUMA_GETAFFINITY = 548 // { int numa_getaffinity(cpuwhich_t which, \
393 SYS_NUMA_SETAFFINITY = 549 // { int numa_setaffinity(cpuwhich_t which, \
Don Newton98fd8812019-09-23 15:15:02 -0400394 SYS_FDATASYNC = 550 // { int fdatasync(int fd); }
395)