OLD | NEW |
(Empty) | |
| 1 // mksysnum_dragonfly.pl |
| 2 // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT |
| 3 |
| 4 package syscall |
| 5 |
| 6 const ( |
| 7 // SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int |
| 8 SYS_EXIT = 1 // { void exit(int rval); } |
| 9 SYS_FORK = 2 // { int fork(void); } |
| 10 SYS_READ = 3 // { ssize_t read(int fd, void *buf, size_t nbyt
e); } |
| 11 SYS_WRITE = 4 // { ssize_t write(int fd, const void *buf, size
_t nbyte); } |
| 12 SYS_OPEN = 5 // { int open(char *path, int flags, int mode);
} |
| 13 SYS_CLOSE = 6 // { int close(int fd); } |
| 14 SYS_WAIT4 = 7 // { int wait4(int pid, int *status, int options
, \ |
| 15 SYS_LINK = 9 // { int link(char *path, char *link); } |
| 16 SYS_UNLINK = 10 // { int unlink(char *path); } |
| 17 SYS_CHDIR = 12 // { int chdir(char *path); } |
| 18 SYS_FCHDIR = 13 // { int fchdir(int fd); } |
| 19 SYS_MKNOD = 14 // { int mknod(char *path, int mode, int dev); } |
| 20 SYS_CHMOD = 15 // { int chmod(char *path, int mode); } |
| 21 SYS_CHOWN = 16 // { int chown(char *path, int uid, int gid); } |
| 22 SYS_OBREAK = 17 // { int obreak(char *nsize); } break obreak_arg
s int |
| 23 SYS_GETFSSTAT = 18 // { int getfsstat(struct statfs *buf, long bufs
ize, \ |
| 24 SYS_GETPID = 20 // { pid_t getpid(void); } |
| 25 SYS_MOUNT = 21 // { int mount(char *type, char *path, int flags
, \ |
| 26 SYS_UNMOUNT = 22 // { int unmount(char *path, int flags); } |
| 27 SYS_SETUID = 23 // { int setuid(uid_t uid); } |
| 28 SYS_GETUID = 24 // { uid_t getuid(void); } |
| 29 SYS_GETEUID = 25 // { uid_t geteuid(void); } |
| 30 SYS_PTRACE = 26 // { int ptrace(int req, pid_t pid, caddr_t addr
, \ |
| 31 SYS_RECVMSG = 27 // { int recvmsg(int s, struct msghdr *msg, int
flags); } |
| 32 SYS_SENDMSG = 28 // { int sendmsg(int s, caddr_t msg, int flags);
} |
| 33 SYS_RECVFROM = 29 // { int recvfrom(int s, caddr_t buf, size_t len
, \ |
| 34 SYS_ACCEPT = 30 // { int accept(int s, caddr_t name, int *anamel
en); } |
| 35 SYS_GETPEERNAME = 31 // { int getpeername(int fdes, caddr_t asa, int
*alen); } |
| 36 SYS_GETSOCKNAME = 32 // { int getsockname(int fdes, caddr_t asa, int
*alen); } |
| 37 SYS_ACCESS = 33 // { int access(char *path, int flags); } |
| 38 SYS_CHFLAGS = 34 // { int chflags(char *path, int flags); } |
| 39 SYS_FCHFLAGS = 35 // { int fchflags(int fd, int flags); } |
| 40 SYS_SYNC = 36 // { int sync(void); } |
| 41 SYS_KILL = 37 // { int kill(int pid, int signum); } |
| 42 SYS_GETPPID = 39 // { pid_t getppid(void); } |
| 43 SYS_DUP = 41 // { int dup(u_int fd); } |
| 44 SYS_PIPE = 42 // { int pipe(void); } |
| 45 SYS_GETEGID = 43 // { gid_t getegid(void); } |
| 46 SYS_PROFIL = 44 // { int profil(caddr_t samples, size_t size, \ |
| 47 SYS_KTRACE = 45 // { int ktrace(const char *fname, int ops, int
facs, \ |
| 48 SYS_GETGID = 47 // { gid_t getgid(void); } |
| 49 SYS_GETLOGIN = 49 // { int getlogin(char *namebuf, u_int namelen);
} |
| 50 SYS_SETLOGIN = 50 // { int setlogin(char *namebuf); } |
| 51 SYS_ACCT = 51 // { int acct(char *path); } |
| 52 SYS_SIGALTSTACK = 53 // { int sigaltstack(stack_t *ss, stack_t *oss);
} |
| 53 SYS_IOCTL = 54 // { int ioctl(int fd, u_long com, caddr_t data)
; } |
| 54 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); } |
| 57 SYS_READLINK = 58 // { int readlink(char *path, char *buf, int cou
nt); } |
| 58 SYS_EXECVE = 59 // { int execve(char *fname, char **argv, char *
*envv); } |
| 59 SYS_UMASK = 60 // { int umask(int newmask); } umask umask_args
int |
| 60 SYS_CHROOT = 61 // { int chroot(char *path); } |
| 61 SYS_MSYNC = 65 // { int msync(void *addr, size_t len, int flags
); } |
| 62 SYS_VFORK = 66 // { pid_t vfork(void); } |
| 63 SYS_SBRK = 69 // { int sbrk(int incr); } |
| 64 SYS_SSTK = 70 // { int sstk(int incr); } |
| 65 SYS_MUNMAP = 73 // { int munmap(void *addr, size_t len); } |
| 66 SYS_MPROTECT = 74 // { int mprotect(void *addr, size_t len, int pr
ot); } |
| 67 SYS_MADVISE = 75 // { int madvise(void *addr, size_t len, int beh
av); } |
| 68 SYS_MINCORE = 78 // { int mincore(const void *addr, size_t len, \ |
| 69 SYS_GETGROUPS = 79 // { int getgroups(u_int gidsetsize, gid_t *gids
et); } |
| 70 SYS_SETGROUPS = 80 // { int setgroups(u_int gidsetsize, gid_t *gids
et); } |
| 71 SYS_GETPGRP = 81 // { int getpgrp(void); } |
| 72 SYS_SETPGID = 82 // { int setpgid(int pid, int pgid); } |
| 73 SYS_SETITIMER = 83 // { int setitimer(u_int which, struct itimerval
*itv, \ |
| 74 SYS_SWAPON = 85 // { int swapon(char *name); } |
| 75 SYS_GETITIMER = 86 // { int getitimer(u_int which, struct itimerval
*itv); } |
| 76 SYS_GETDTABLESIZE = 89 // { int getdtablesize(void); } |
| 77 SYS_DUP2 = 90 // { int dup2(u_int from, u_int to); } |
| 78 SYS_FCNTL = 92 // { int fcntl(int fd, int cmd, long arg); } |
| 79 SYS_SELECT = 93 // { int select(int nd, fd_set *in, fd_set *ou,
\ |
| 80 SYS_FSYNC = 95 // { int fsync(int fd); } |
| 81 SYS_SETPRIORITY = 96 // { int setpriority(int which, int who, int pri
o); } |
| 82 SYS_SOCKET = 97 // { int socket(int domain, int type, int protoc
ol); } |
| 83 SYS_CONNECT = 98 // { int connect(int s, caddr_t name, int namele
n); } |
| 84 SYS_GETPRIORITY = 100 // { int getpriority(int which, int who); } |
| 85 SYS_BIND = 104 // { int bind(int s, caddr_t name, int namelen);
} |
| 86 SYS_SETSOCKOPT = 105 // { int setsockopt(int s, int level, int name,
\ |
| 87 SYS_LISTEN = 106 // { int listen(int s, int backlog); } |
| 88 SYS_GETTIMEOFDAY = 116 // { int gettimeofday(struct timeval *tp, \ |
| 89 SYS_GETRUSAGE = 117 // { int getrusage(int who, struct rusage *rusag
e); } |
| 90 SYS_GETSOCKOPT = 118 // { int getsockopt(int s, int level, int name,
\ |
| 91 SYS_READV = 120 // { int readv(int fd, struct iovec *iovp, u_int
iovcnt); } |
| 92 SYS_WRITEV = 121 // { int writev(int fd, struct iovec *iovp, \ |
| 93 SYS_SETTIMEOFDAY = 122 // { int settimeofday(struct timeval *tv, \ |
| 94 SYS_FCHOWN = 123 // { int fchown(int fd, int uid, int gid); } |
| 95 SYS_FCHMOD = 124 // { int fchmod(int fd, int mode); } |
| 96 SYS_SETREUID = 126 // { int setreuid(int ruid, int euid); } |
| 97 SYS_SETREGID = 127 // { int setregid(int rgid, int egid); } |
| 98 SYS_RENAME = 128 // { int rename(char *from, char *to); } |
| 99 SYS_FLOCK = 131 // { int flock(int fd, int how); } |
| 100 SYS_MKFIFO = 132 // { int mkfifo(char *path, int mode); } |
| 101 SYS_SENDTO = 133 // { int sendto(int s, caddr_t buf, size_t len,
\ |
| 102 SYS_SHUTDOWN = 134 // { int shutdown(int s, int how); } |
| 103 SYS_SOCKETPAIR = 135 // { int socketpair(int domain, int type, int pr
otocol, \ |
| 104 SYS_MKDIR = 136 // { int mkdir(char *path, int mode); } |
| 105 SYS_RMDIR = 137 // { int rmdir(char *path); } |
| 106 SYS_UTIMES = 138 // { int utimes(char *path, struct timeval *tptr
); } |
| 107 SYS_ADJTIME = 140 // { int adjtime(struct timeval *delta, \ |
| 108 SYS_SETSID = 147 // { int setsid(void); } |
| 109 SYS_QUOTACTL = 148 // { int quotactl(char *path, int cmd, int uid,
\ |
| 110 SYS_STATFS = 157 // { int statfs(char *path, struct statfs *buf);
} |
| 111 SYS_FSTATFS = 158 // { int fstatfs(int fd, struct statfs *buf); } |
| 112 SYS_GETFH = 161 // { int getfh(char *fname, struct fhandle *fhp)
; } |
| 113 SYS_GETDOMAINNAME = 162 // { int getdomainname(char *domainname, int len
); } |
| 114 SYS_SETDOMAINNAME = 163 // { int setdomainname(char *domainname, int len
); } |
| 115 SYS_UNAME = 164 // { int uname(struct utsname *name); } |
| 116 SYS_SYSARCH = 165 // { int sysarch(int op, char *parms); } |
| 117 SYS_RTPRIO = 166 // { int rtprio(int function, pid_t pid, \ |
| 118 SYS_EXTPREAD = 173 // { ssize_t extpread(int fd, void *buf, \ |
| 119 SYS_EXTPWRITE = 174 // { ssize_t extpwrite(int fd, const void *buf,
\ |
| 120 SYS_NTP_ADJTIME = 176 // { int ntp_adjtime(struct timex *tp); } |
| 121 SYS_SETGID = 181 // { int setgid(gid_t gid); } |
| 122 SYS_SETEGID = 182 // { int setegid(gid_t egid); } |
| 123 SYS_SETEUID = 183 // { int seteuid(uid_t euid); } |
| 124 SYS_PATHCONF = 191 // { int pathconf(char *path, int name); } |
| 125 SYS_FPATHCONF = 192 // { int fpathconf(int fd, int name); } |
| 126 SYS_GETRLIMIT = 194 // { int getrlimit(u_int which, \ |
| 127 SYS_SETRLIMIT = 195 // { int setrlimit(u_int which, \ |
| 128 SYS_MMAP = 197 // { caddr_t mmap(caddr_t addr, size_t len, int
prot, \ |
| 129 // SYS_NOSYS = 198; // { int nosys(void); } __syscall __syscall_args in
t |
| 130 SYS_LSEEK = 199 // { off_t lseek(int fd, int pad, off_t
offset, \ |
| 131 SYS_TRUNCATE = 200 // { int truncate(char *path, int pad,
off_t length); } |
| 132 SYS_FTRUNCATE = 201 // { int ftruncate(int fd, int pad, off
_t length); } |
| 133 SYS___SYSCTL = 202 // { int __sysctl(int *name, u_int name
len, void *old, \ |
| 134 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); } |
| 139 SYS_POLL = 209 // { int poll(struct pollfd *fds, u_int
nfds, \ |
| 140 SYS___SEMCTL = 220 // { int __semctl(int semid, int semnum
, int cmd, \ |
| 141 SYS_SEMGET = 221 // { int semget(key_t key, int nsems, i
nt semflg); } |
| 142 SYS_SEMOP = 222 // { int semop(int semid, struct sembuf
*sops, \ |
| 143 SYS_MSGCTL = 224 // { int msgctl(int msqid, int cmd, \ |
| 144 SYS_MSGGET = 225 // { int msgget(key_t key, int msgflg);
} |
| 145 SYS_MSGSND = 226 // { int msgsnd(int msqid, void *msgp,
size_t msgsz, \ |
| 146 SYS_MSGRCV = 227 // { int msgrcv(int msqid, void *msgp,
size_t msgsz, \ |
| 147 SYS_SHMAT = 228 // { caddr_t shmat(int shmid, const voi
d *shmaddr, \ |
| 148 SYS_SHMCTL = 229 // { int shmctl(int shmid, int cmd, \ |
| 149 SYS_SHMDT = 230 // { int shmdt(const void *shmaddr); } |
| 150 SYS_SHMGET = 231 // { int shmget(key_t key, size_t size,
int shmflg); } |
| 151 SYS_CLOCK_GETTIME = 232 // { int clock_gettime(clockid_t clock_
id, \ |
| 152 SYS_CLOCK_SETTIME = 233 // { int clock_settime(clockid_t clock_
id, \ |
| 153 SYS_CLOCK_GETRES = 234 // { int clock_getres(clockid_t clock_i
d, \ |
| 154 SYS_NANOSLEEP = 240 // { int nanosleep(const struct timespe
c *rqtp, \ |
| 155 SYS_MINHERIT = 250 // { int minherit(void *addr, size_t le
n, int inherit); } |
| 156 SYS_RFORK = 251 // { int rfork(int flags); } |
| 157 SYS_OPENBSD_POLL = 252 // { int openbsd_poll(struct pollfd *fd
s, u_int nfds, \ |
| 158 SYS_ISSETUGID = 253 // { int issetugid(void); } |
| 159 SYS_LCHOWN = 254 // { int lchown(char *path, int uid, in
t gid); } |
| 160 SYS_LCHMOD = 274 // { int lchmod(char *path, mode_t mode
); } |
| 161 SYS_LUTIMES = 276 // { int lutimes(char *path, struct tim
eval *tptr); } |
| 162 SYS_EXTPREADV = 289 // { ssize_t extpreadv(int fd, struct i
ovec *iovp, \ |
| 163 SYS_EXTPWRITEV = 290 // { ssize_t extpwritev(int fd, struct
iovec *iovp,\ |
| 164 SYS_FHSTATFS = 297 // { int fhstatfs(const struct fhandle
*u_fhp, struct statfs *buf); } |
| 165 SYS_FHOPEN = 298 // { int fhopen(const struct fhandle *u
_fhp, int flags); } |
| 166 SYS_MODNEXT = 300 // { int modnext(int modid); } |
| 167 SYS_MODSTAT = 301 // { int modstat(int modid, struct modu
le_stat* stat); } |
| 168 SYS_MODFNEXT = 302 // { int modfnext(int modid); } |
| 169 SYS_MODFIND = 303 // { int modfind(const char *name); } |
| 170 SYS_KLDLOAD = 304 // { int kldload(const char *file); } |
| 171 SYS_KLDUNLOAD = 305 // { int kldunload(int fileid); } |
| 172 SYS_KLDFIND = 306 // { int kldfind(const char *file); } |
| 173 SYS_KLDNEXT = 307 // { int kldnext(int fileid); } |
| 174 SYS_KLDSTAT = 308 // { int kldstat(int fileid, struct kld
_file_stat* stat); } |
| 175 SYS_KLDFIRSTMOD = 309 // { int kldfirstmod(int fileid); } |
| 176 SYS_GETSID = 310 // { int getsid(pid_t pid); } |
| 177 SYS_SETRESUID = 311 // { int setresuid(uid_t ruid, uid_t eu
id, uid_t suid); } |
| 178 SYS_SETRESGID = 312 // { int setresgid(gid_t rgid, gid_t eg
id, gid_t sgid); } |
| 179 SYS_AIO_RETURN = 314 // { int aio_return(struct aiocb *aiocb
p); } |
| 180 SYS_AIO_SUSPEND = 315 // { int aio_suspend(struct aiocb * con
st * aiocbp, int nent, const struct timespec *timeout); } |
| 181 SYS_AIO_CANCEL = 316 // { int aio_cancel(int fd, struct aioc
b *aiocbp); } |
| 182 SYS_AIO_ERROR = 317 // { int aio_error(struct aiocb *aiocbp
); } |
| 183 SYS_AIO_READ = 318 // { int aio_read(struct aiocb *aiocbp)
; } |
| 184 SYS_AIO_WRITE = 319 // { int aio_write(struct aiocb *aiocbp
); } |
| 185 SYS_LIO_LISTIO = 320 // { int lio_listio(int mode, struct ai
ocb * const *acb_list, int nent, struct sigevent *sig); } |
| 186 SYS_YIELD = 321 // { int yield(void); } |
| 187 SYS_MLOCKALL = 324 // { int mlockall(int how); } |
| 188 SYS_MUNLOCKALL = 325 // { int munlockall(void); } |
| 189 SYS___GETCWD = 326 // { int __getcwd(u_char *buf, u_int bu
flen); } |
| 190 SYS_SCHED_SETPARAM = 327 // { int sched_setparam (pid_t pid, con
st struct sched_param *param); } |
| 191 SYS_SCHED_GETPARAM = 328 // { int sched_getparam (pid_t pid, str
uct sched_param *param); } |
| 192 SYS_SCHED_SETSCHEDULER = 329 // { int sched_setscheduler (pid_t pid,
int policy, const struct sched_param *param); } |
| 193 SYS_SCHED_GETSCHEDULER = 330 // { int sched_getscheduler (pid_t pid)
; } |
| 194 SYS_SCHED_YIELD = 331 // { int sched_yield (void); } |
| 195 SYS_SCHED_GET_PRIORITY_MAX = 332 // { int sched_get_priority_max (int po
licy); } |
| 196 SYS_SCHED_GET_PRIORITY_MIN = 333 // { int sched_get_priority_min (int po
licy); } |
| 197 SYS_SCHED_RR_GET_INTERVAL = 334 // { int sched_rr_get_interval (pid_t p
id, struct timespec *interval); } |
| 198 SYS_UTRACE = 335 // { int utrace(const void *addr, size_
t len); } |
| 199 SYS_KLDSYM = 337 // { int kldsym(int fileid, int cmd, vo
id *data); } |
| 200 SYS_JAIL = 338 // { int jail(struct jail *jail); } |
| 201 SYS_SIGPROCMASK = 340 // { int sigprocmask(int how, const sig
set_t *set, \ |
| 202 SYS_SIGSUSPEND = 341 // { int sigsuspend(const sigset_t *sig
mask); } |
| 203 SYS_SIGACTION = 342 // { int sigaction(int sig, const struc
t sigaction *act, \ |
| 204 SYS_SIGPENDING = 343 // { int sigpending(sigset_t *set); } |
| 205 SYS_SIGRETURN = 344 // { int sigreturn(ucontext_t *sigcntxp
); } |
| 206 SYS_SIGTIMEDWAIT = 345 // { int sigtimedwait(const sigset_t *s
et,\ |
| 207 SYS_SIGWAITINFO = 346 // { int sigwaitinfo(const sigset_t *se
t,\ |
| 208 SYS___ACL_GET_FILE = 347 // { int __acl_get_file(const char *pat
h, \ |
| 209 SYS___ACL_SET_FILE = 348 // { int __acl_set_file(const char *pat
h, \ |
| 210 SYS___ACL_GET_FD = 349 // { int __acl_get_fd(int filedes, acl_
type_t type, \ |
| 211 SYS___ACL_SET_FD = 350 // { int __acl_set_fd(int filedes, acl_
type_t type, \ |
| 212 SYS___ACL_DELETE_FILE = 351 // { int __acl_delete_file(const char *
path, \ |
| 213 SYS___ACL_DELETE_FD = 352 // { int __acl_delete_fd(int filedes, a
cl_type_t type); } |
| 214 SYS___ACL_ACLCHECK_FILE = 353 // { int __acl_aclcheck_file(const char
*path, \ |
| 215 SYS___ACL_ACLCHECK_FD = 354 // { int __acl_aclcheck_fd(int filedes,
acl_type_t type, \ |
| 216 SYS_EXTATTRCTL = 355 // { int extattrctl(const char *path, i
nt cmd, \ |
| 217 SYS_EXTATTR_SET_FILE = 356 // { int extattr_set_file(const char *p
ath, \ |
| 218 SYS_EXTATTR_GET_FILE = 357 // { int extattr_get_file(const char *p
ath, \ |
| 219 SYS_EXTATTR_DELETE_FILE = 358 // { int extattr_delete_file(const char
*path, \ |
| 220 SYS_AIO_WAITCOMPLETE = 359 // { int aio_waitcomplete(struct aiocb
**aiocbp, struct timespec *timeout); } |
| 221 SYS_GETRESUID = 360 // { int getresuid(uid_t *ruid, uid_t *
euid, uid_t *suid); } |
| 222 SYS_GETRESGID = 361 // { int getresgid(gid_t *rgid, gid_t *
egid, gid_t *sgid); } |
| 223 SYS_KQUEUE = 362 // { int kqueue(void); } |
| 224 SYS_KEVENT = 363 // { int kevent(int fd, \ |
| 225 SYS_SCTP_PEELOFF = 364 // { int sctp_peeloff(int sd, caddr_t n
ame ); } |
| 226 SYS_LCHFLAGS = 391 // { int lchflags(char *path, int flags
); } |
| 227 SYS_UUIDGEN = 392 // { int uuidgen(struct uuid *store, in
t count); } |
| 228 SYS_SENDFILE = 393 // { int sendfile(int fd, int s, off_t
offset, size_t nbytes, \ |
| 229 SYS_VARSYM_SET = 450 // { int varsym_set(int level, const ch
ar *name, const char *data); } |
| 230 SYS_VARSYM_GET = 451 // { int varsym_get(int mask, const cha
r *wild, char *buf, int bufsize); } |
| 231 SYS_VARSYM_LIST = 452 // { int varsym_list(int level, char *b
uf, int maxsize, int *marker); } |
| 232 SYS_EXEC_SYS_REGISTER = 465 // { int exec_sys_register(void *entry)
; } |
| 233 SYS_EXEC_SYS_UNREGISTER = 466 // { int exec_sys_unregister(int id); } |
| 234 SYS_SYS_CHECKPOINT = 467 // { int sys_checkpoint(int type, int f
d, pid_t pid, int retval); } |
| 235 SYS_MOUNTCTL = 468 // { int mountctl(const char *path, int
op, int fd, const void *ctl, int ctllen, void *buf, int buflen); } |
| 236 SYS_UMTX_SLEEP = 469 // { int umtx_sleep(volatile const int
*ptr, int value, int timeout); } |
| 237 SYS_UMTX_WAKEUP = 470 // { int umtx_wakeup(volatile const int
*ptr, int count); } |
| 238 SYS_JAIL_ATTACH = 471 // { int jail_attach(int jid); } |
| 239 SYS_SET_TLS_AREA = 472 // { int set_tls_area(int which, struct
tls_info *info, size_t infosize); } |
| 240 SYS_GET_TLS_AREA = 473 // { int get_tls_area(int which, struct
tls_info *info, size_t infosize); } |
| 241 SYS_CLOSEFROM = 474 // { int closefrom(int fd); } |
| 242 SYS_STAT = 475 // { int stat(const char *path, struct
stat *ub); } |
| 243 SYS_FSTAT = 476 // { int fstat(int fd, struct stat *sb)
; } |
| 244 SYS_LSTAT = 477 // { int lstat(const char *path, struct
stat *ub); } |
| 245 SYS_FHSTAT = 478 // { int fhstat(const struct fhandle *u
_fhp, struct stat *sb); } |
| 246 SYS_GETDIRENTRIES = 479 // { int getdirentries(int fd, char *bu
f, u_int count, \ |
| 247 SYS_GETDENTS = 480 // { int getdents(int fd, char *buf, si
ze_t count); } |
| 248 SYS_USCHED_SET = 481 // { int usched_set(pid_t pid, int cmd,
void *data, \ |
| 249 SYS_EXTACCEPT = 482 // { int extaccept(int s, int flags, ca
ddr_t name, int *anamelen); } |
| 250 SYS_EXTCONNECT = 483 // { int extconnect(int s, int flags, c
addr_t name, int namelen); } |
| 251 SYS_MCONTROL = 485 // { int mcontrol(void *addr, size_t le
n, int behav, off_t value); } |
| 252 SYS_VMSPACE_CREATE = 486 // { int vmspace_create(void *id, int t
ype, void *data); } |
| 253 SYS_VMSPACE_DESTROY = 487 // { int vmspace_destroy(void *id); } |
| 254 SYS_VMSPACE_CTL = 488 // { int vmspace_ctl(void *id, int cmd,
\ |
| 255 SYS_VMSPACE_MMAP = 489 // { int vmspace_mmap(void *id, void *a
ddr, size_t len, \ |
| 256 SYS_VMSPACE_MUNMAP = 490 // { int vmspace_munmap(void *id, void
*addr, \ |
| 257 SYS_VMSPACE_MCONTROL = 491 // { int vmspace_mcontrol(void *id, voi
d *addr, \ |
| 258 SYS_VMSPACE_PREAD = 492 // { ssize_t vmspace_pread(void *id, vo
id *buf, \ |
| 259 SYS_VMSPACE_PWRITE = 493 // { ssize_t vmspace_pwrite(void *id, c
onst void *buf, \ |
| 260 SYS_EXTEXIT = 494 // { void extexit(int how, int status,
void *addr); } |
| 261 SYS_LWP_CREATE = 495 // { int lwp_create(struct lwp_params *
params); } |
| 262 SYS_LWP_GETTID = 496 // { lwpid_t lwp_gettid(void); } |
| 263 SYS_LWP_KILL = 497 // { int lwp_kill(pid_t pid, lwpid_t ti
d, int signum); } |
| 264 SYS_LWP_RTPRIO = 498 // { int lwp_rtprio(int function, pid_t
pid, lwpid_t tid, struct rtprio *rtp); } |
| 265 SYS_PSELECT = 499 // { int pselect(int nd, fd_set *in, fd
_set *ou, \ |
| 266 SYS_STATVFS = 500 // { int statvfs(const char *path, stru
ct statvfs *buf); } |
| 267 SYS_FSTATVFS = 501 // { int fstatvfs(int fd, struct statvf
s *buf); } |
| 268 SYS_FHSTATVFS = 502 // { int fhstatvfs(const struct fhandle
*u_fhp, struct statvfs *buf); } |
| 269 SYS_GETVFSSTAT = 503 // { int getvfsstat(struct statfs *buf,
\ |
| 270 SYS_OPENAT = 504 // { int openat(int fd, char *path, int
flags, int mode); } |
| 271 SYS_FSTATAT = 505 // { int fstatat(int fd, char *path,
\ |
| 272 SYS_FCHMODAT = 506 // { int fchmodat(int fd, char *path, i
nt mode, \ |
| 273 SYS_FCHOWNAT = 507 // { int fchownat(int fd, char *path, i
nt uid, int gid, \ |
| 274 SYS_UNLINKAT = 508 // { int unlinkat(int fd, char *path, i
nt flags); } |
| 275 SYS_FACCESSAT = 509 // { int faccessat(int fd, char *path,
int amode, \ |
| 276 SYS_MQ_OPEN = 510 // { mqd_t mq_open(const char * name, i
nt oflag, \ |
| 277 SYS_MQ_CLOSE = 511 // { int mq_close(mqd_t mqdes); } |
| 278 SYS_MQ_UNLINK = 512 // { int mq_unlink(const char *name); } |
| 279 SYS_MQ_GETATTR = 513 // { int mq_getattr(mqd_t mqdes, \ |
| 280 SYS_MQ_SETATTR = 514 // { int mq_setattr(mqd_t mqdes, \ |
| 281 SYS_MQ_NOTIFY = 515 // { int mq_notify(mqd_t mqdes, \ |
| 282 SYS_MQ_SEND = 516 // { int mq_send(mqd_t mqdes, const cha
r *msg_ptr, \ |
| 283 SYS_MQ_RECEIVE = 517 // { ssize_t mq_receive(mqd_t mqdes, ch
ar *msg_ptr, \ |
| 284 SYS_MQ_TIMEDSEND = 518 // { int mq_timedsend(mqd_t mqdes, \ |
| 285 SYS_MQ_TIMEDRECEIVE = 519 // { ssize_t mq_timedreceive(mqd_t mqde
s, \ |
| 286 SYS_IOPRIO_SET = 520 // { int ioprio_set(int which, int who,
int prio); } |
| 287 SYS_IOPRIO_GET = 521 // { int ioprio_get(int which, int who)
; } |
| 288 SYS_CHROOT_KERNEL = 522 // { int chroot_kernel(char *path); } |
| 289 SYS_RENAMEAT = 523 // { int renameat(int oldfd, char *old,
int newfd, \ |
| 290 SYS_MKDIRAT = 524 // { int mkdirat(int fd, char *path, mo
de_t mode); } |
| 291 SYS_MKFIFOAT = 525 // { int mkfifoat(int fd, char *path, m
ode_t mode); } |
| 292 SYS_MKNODAT = 526 // { int mknodat(int fd, char *path, mo
de_t mode, \ |
| 293 SYS_READLINKAT = 527 // { int readlinkat(int fd, char *path,
char *buf, \ |
| 294 SYS_SYMLINKAT = 528 // { int symlinkat(char *path1, int fd,
char *path2); } |
| 295 SYS_SWAPOFF = 529 // { int swapoff(char *name); } |
| 296 SYS_VQUOTACTL = 530 // { int vquotactl(const char *path, \ |
| 297 SYS_LINKAT = 531 // { int linkat(int fd1, char *path1, i
nt fd2, \ |
| 298 SYS_EACCESS = 532 // { int eaccess(char *path, int flags)
; } |
| 299 SYS_LPATHCONF = 533 // { int lpathconf(char *path, int name
); } |
| 300 SYS_VMM_GUEST_CTL = 534 // { int vmm_guest_ctl(int op, struct v
mm_guest_options *options); } |
| 301 SYS_VMM_GUEST_SYNC_ADDR = 535 // { int vmm_guest_sync_addr(long *dsta
ddr, long *srcaddr); } |
| 302 ) |
OLD | NEW |