syscalls.master revision 1.169
11.169Srmind $NetBSD: syscalls.master,v 1.169 2007/04/30 14:44:30 rmind Exp $ 21.28Smycroft 31.22Scgd; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 41.1Sglass 51.23Scgd; NetBSD system call name/number "master" file. 61.23Scgd; (See syscalls.conf to see what it is processed into.) 71.23Scgd; 81.23Scgd; Fields: number type [type-dependent ...] 91.1Sglass; number system call number, must be in order 101.23Scgd; type one of STD, OBSOL, UNIMPL, NODEF, NOARGS, or one of 111.24Smycroft; the compatibility options defined in syscalls.conf. 121.23Scgd; 131.108Sthorpej; An optional field, MPSAFE, after the type field, indicates that 141.108Sthorpej; the system call is MP-safe. 151.108Sthorpej; 161.1Sglass; types: 171.1Sglass; STD always included 181.23Scgd; OBSOL obsolete, not included in system 191.24Smycroft; UNIMPL unimplemented, not included in system 201.92Schristos; EXCL implemented, but not included in system 211.23Scgd; NODEF included, but don't define the syscall number 221.23Scgd; NOARGS included, but don't define the syscall args structure 231.43Scgd; INDIR included, but don't define the syscall args structure, 241.43Scgd; and allow it to be "really" varargs. 251.23Scgd; 261.23Scgd; The compat options are defined in the syscalls.conf file, and the 271.23Scgd; compat option name is prefixed to the syscall name. Other than 281.23Scgd; that, they're like NODEF (for 'compat' options), or STD (for 291.23Scgd; 'libcompat' options). 301.23Scgd; 311.23Scgd; The type-dependent arguments are as follows: 321.23Scgd; For STD, NODEF, NOARGS, and compat syscalls: 331.23Scgd; { pseudo-proto } [alias] 341.23Scgd; For other syscalls: 351.23Scgd; [comment] 361.23Scgd; 371.23Scgd; #ifdef's, etc. may be included, and are copied to the output files. 381.70Sthorpej; #include's are copied to the syscall names and switch definition files only. 391.77Sthorpej 401.77Sthorpej#include "opt_ktrace.h" 411.78Sthorpej#include "opt_nfsserver.h" 421.102Sbjh21#include "opt_ntp.h" 431.81Sjonathan#include "opt_compat_netbsd.h" 441.85Stron#include "opt_sysv.h" 451.87Schristos#include "opt_compat_43.h" 461.119Schristos#include "opt_posix.h" 471.70Sthorpej 481.70Sthorpej#include "fs_lfs.h" 491.70Sthorpej#include "fs_nfs.h" 501.1Sglass 511.23Scgd#include <sys/param.h> 521.23Scgd#include <sys/systm.h> 531.23Scgd#include <sys/signal.h> 541.23Scgd#include <sys/mount.h> 551.23Scgd#include <sys/syscallargs.h> 561.103Smycroft 571.103Smycroft%% 581.1Sglass 591.1Sglass; Reserved/unimplemented system calls in the range 0-150 inclusive 601.1Sglass; are reserved for use in future Berkeley releases. 611.1Sglass; Additional system calls implemented in vendor and other 621.1Sglass; redistributions should be placed in the reserved range at the end 631.1Sglass; of the current calls. 641.1Sglass 651.43Scgd0 INDIR { int sys_syscall(int number, ...); } 661.44Scgd1 STD { void sys_exit(int rval); } 671.28Smycroft2 STD { int sys_fork(void); } 681.46Scgd3 STD { ssize_t sys_read(int fd, void *buf, size_t nbyte); } 691.46Scgd4 STD { ssize_t sys_write(int fd, const void *buf, \ 701.46Scgd size_t nbyte); } 711.46Scgd5 STD { int sys_open(const char *path, \ 721.60Schristos int flags, ... mode_t mode); } 731.28Smycroft6 STD { int sys_close(int fd); } 741.163Sad7 STD MPSAFE { int sys_wait4(int pid, int *status, int options, \ 751.23Scgd struct rusage *rusage); } 761.60Schristos8 COMPAT_43 { int sys_creat(const char *path, mode_t mode); } ocreat 771.46Scgd9 STD { int sys_link(const char *path, const char *link); } 781.46Scgd10 STD { int sys_unlink(const char *path); } 791.23Scgd11 OBSOL execv 801.46Scgd12 STD { int sys_chdir(const char *path); } 811.28Smycroft13 STD { int sys_fchdir(int fd); } 821.60Schristos14 STD { int sys_mknod(const char *path, mode_t mode, \ 831.60Schristos dev_t dev); } 841.60Schristos15 STD { int sys_chmod(const char *path, mode_t mode); } 851.46Scgd16 STD { int sys_chown(const char *path, uid_t uid, \ 861.46Scgd gid_t gid); } 871.28Smycroft17 STD { int sys_obreak(char *nsize); } break 881.139Schristos18 COMPAT_20 { int sys_getfsstat(struct statfs12 *buf, \ 891.139Schristos long bufsize, int flags); } 901.29Smycroft19 COMPAT_43 { long sys_lseek(int fd, long offset, int whence); } \ 911.29Smycroft olseek 921.104Smycroft#ifdef COMPAT_43 931.163Sad20 STD MPSAFE { pid_t sys_getpid_with_ppid(void); } getpid 941.104Smycroft#else 951.108Sthorpej20 STD MPSAFE { pid_t sys_getpid(void); } 961.104Smycroft#endif 971.46Scgd21 STD { int sys_mount(const char *type, const char *path, \ 981.46Scgd int flags, void *data); } 991.46Scgd22 STD { int sys_unmount(const char *path, int flags); } 1001.163Sad23 STD { int sys_setuid(uid_t uid); } 1011.104Smycroft#ifdef COMPAT_43 1021.104Smycroft24 STD { uid_t sys_getuid_with_euid(void); } getuid 1031.104Smycroft#else 1041.163Sad24 STD MPSAFE { uid_t sys_getuid(void); } 1051.104Smycroft#endif 1061.163Sad25 STD MPSAFE { uid_t sys_geteuid(void); } 1071.167Schristos26 STD { int sys_ptrace(int req, pid_t pid, void *addr, \ 1081.23Scgd int data); } 1091.44Scgd27 STD { ssize_t sys_recvmsg(int s, struct msghdr *msg, \ 1101.28Smycroft int flags); } 1111.46Scgd28 STD { ssize_t sys_sendmsg(int s, \ 1121.46Scgd const struct msghdr *msg, int flags); } 1131.46Scgd29 STD { ssize_t sys_recvfrom(int s, void *buf, size_t len, \ 1141.46Scgd int flags, struct sockaddr *from, \ 1151.88Skleink unsigned int *fromlenaddr); } 1161.46Scgd30 STD { int sys_accept(int s, struct sockaddr *name, \ 1171.88Skleink unsigned int *anamelen); } 1181.46Scgd31 STD { int sys_getpeername(int fdes, struct sockaddr *asa, \ 1191.88Skleink unsigned int *alen); } 1201.46Scgd32 STD { int sys_getsockname(int fdes, struct sockaddr *asa, \ 1211.88Skleink unsigned int *alen); } 1221.46Scgd33 STD { int sys_access(const char *path, int flags); } 1231.46Scgd34 STD { int sys_chflags(const char *path, u_long flags); } 1241.46Scgd35 STD { int sys_fchflags(int fd, u_long flags); } 1251.44Scgd36 STD { void sys_sync(void); } 1261.163Sad37 STD { int sys_kill(int pid, int signum); } 1271.60Schristos38 COMPAT_43 { int sys_stat(const char *path, struct stat43 *ub); } \ 1281.60Schristos stat43 1291.163Sad39 STD MPSAFE { pid_t sys_getppid(void); } 1301.60Schristos40 COMPAT_43 { int sys_lstat(const char *path, \ 1311.60Schristos struct stat43 *ub); } lstat43 1321.59Smycroft41 STD { int sys_dup(int fd); } 1331.28Smycroft42 STD { int sys_pipe(void); } 1341.163Sad43 STD MPSAFE { gid_t sys_getegid(void); } 1351.168Sdrochner44 STD MPSAFE { int sys_profil(char *samples, size_t size, \ 1361.30Scgd u_long offset, u_int scale); } 1371.92Schristos#if defined(KTRACE) || !defined(_KERNEL) 1381.46Scgd45 STD { int sys_ktrace(const char *fname, int ops, \ 1391.46Scgd int facs, int pid); } 1401.1Sglass#else 1411.92Schristos45 EXCL ktrace 1421.1Sglass#endif 1431.163Sad46 COMPAT_13 MPSAFE { int sys_sigaction(int signum, \ 1441.82Smycroft const struct sigaction13 *nsa, \ 1451.82Smycroft struct sigaction13 *osa); } sigaction13 1461.104Smycroft#ifdef COMPAT_43 1471.163Sad47 STD MPSAFE { gid_t sys_getgid_with_egid(void); } getgid 1481.104Smycroft#else 1491.163Sad47 STD MPSAFE { gid_t sys_getgid(void); } 1501.104Smycroft#endif 1511.163Sad48 COMPAT_13 MPSAFE { int sys_sigprocmask(int how, \ 1521.82Smycroft int mask); } sigprocmask13 1531.163Sad49 STD MPSAFE { int sys___getlogin(char *namebuf, size_t namelen); } 1541.163Sad50 STD { int sys___setlogin(const char *namebuf); } 1551.46Scgd51 STD { int sys_acct(const char *path); } 1561.163Sad52 COMPAT_13 MPSAFE { int sys_sigpending(void); } sigpending13 1571.163Sad53 COMPAT_13 MPSAFE { int sys_sigaltstack( \ 1581.82Smycroft const struct sigaltstack13 *nss, \ 1591.82Smycroft struct sigaltstack13 *oss); } sigaltstack13 1601.46Scgd54 STD { int sys_ioctl(int fd, \ 1611.61Schristos u_long com, ... void *data); } 1621.34Smrg55 COMPAT_12 { int sys_reboot(int opt); } oreboot 1631.46Scgd56 STD { int sys_revoke(const char *path); } 1641.46Scgd57 STD { int sys_symlink(const char *path, \ 1651.46Scgd const char *link); } 1661.142Skleink58 STD { ssize_t sys_readlink(const char *path, char *buf, \ 1671.72Skleink size_t count); } 1681.46Scgd59 STD { int sys_execve(const char *path, \ 1691.46Scgd char * const *argp, char * const *envp); } 1701.62Smycroft60 STD { mode_t sys_umask(mode_t newmask); } 1711.46Scgd61 STD { int sys_chroot(const char *path); } 1721.60Schristos62 COMPAT_43 { int sys_fstat(int fd, struct stat43 *sb); } fstat43 1731.28Smycroft63 COMPAT_43 { int sys_getkerninfo(int op, char *where, int *size, \ 1741.29Smycroft int arg); } ogetkerninfo 1751.29Smycroft64 COMPAT_43 { int sys_getpagesize(void); } ogetpagesize 1761.167Schristos65 COMPAT_12 { int sys_msync(void *addr, size_t len); } 1771.67Sthorpej; XXX COMPAT_??? for 4.4BSD-compatible vfork(2)? 1781.28Smycroft66 STD { int sys_vfork(void); } 1791.23Scgd67 OBSOL vread 1801.23Scgd68 OBSOL vwrite 1811.95Skleink69 STD { int sys_sbrk(intptr_t incr); } 1821.28Smycroft70 STD { int sys_sstk(int incr); } 1831.167Schristos71 COMPAT_43 { int sys_mmap(void *addr, size_t len, int prot, \ 1841.29Smycroft int flags, int fd, long pos); } ommap 1851.28Smycroft72 STD { int sys_ovadvise(int anom); } vadvise 1861.61Schristos73 STD { int sys_munmap(void *addr, size_t len); } 1871.61Schristos74 STD { int sys_mprotect(void *addr, size_t len, \ 1881.28Smycroft int prot); } 1891.61Schristos75 STD { int sys_madvise(void *addr, size_t len, \ 1901.28Smycroft int behav); } 1911.23Scgd76 OBSOL vhangup 1921.23Scgd77 OBSOL vlimit 1931.91Sthorpej78 STD { int sys_mincore(void *addr, size_t len, \ 1941.28Smycroft char *vec); } 1951.163Sad79 STD MPSAFE { int sys_getgroups(int gidsetsize, \ 1961.59Smycroft gid_t *gidset); } 1971.64Sthorpej80 STD { int sys_setgroups(int gidsetsize, \ 1981.46Scgd const gid_t *gidset); } 1991.163Sad81 STD MPSAFE { int sys_getpgrp(void); } 2001.163Sad82 STD { int sys_setpgid(int pid, int pgid); } 2011.58Smycroft83 STD { int sys_setitimer(int which, \ 2021.46Scgd const struct itimerval *itv, \ 2031.46Scgd struct itimerval *oitv); } 2041.163Sad84 COMPAT_43 MPSAFE { int sys_wait(void); } owait 2051.52Smrg85 COMPAT_12 { int sys_swapon(const char *name); } oswapon 2061.58Smycroft86 STD { int sys_getitimer(int which, \ 2071.28Smycroft struct itimerval *itv); } 2081.29Smycroft87 COMPAT_43 { int sys_gethostname(char *hostname, u_int len); } \ 2091.29Smycroft ogethostname 2101.29Smycroft88 COMPAT_43 { int sys_sethostname(char *hostname, u_int len); } \ 2111.29Smycroft osethostname 2121.29Smycroft89 COMPAT_43 { int sys_getdtablesize(void); } ogetdtablesize 2131.59Smycroft90 STD { int sys_dup2(int from, int to); } 2141.23Scgd91 UNIMPL getdopt 2151.44Scgd92 STD { int sys_fcntl(int fd, int cmd, ... void *arg); } 2161.64Sthorpej93 STD { int sys_select(int nd, fd_set *in, fd_set *ou, \ 2171.23Scgd fd_set *ex, struct timeval *tv); } 2181.23Scgd94 UNIMPL setdopt 2191.28Smycroft95 STD { int sys_fsync(int fd); } 2201.163Sad96 STD { int sys_setpriority(int which, id_t who, int prio); } 2211.154Smrg97 COMPAT_30 { int sys_socket(int domain, int type, int protocol); } 2221.46Scgd98 STD { int sys_connect(int s, const struct sockaddr *name, \ 2231.88Skleink unsigned int namelen); } 2241.167Schristos99 COMPAT_43 { int sys_accept(int s, void *name, \ 2251.46Scgd int *anamelen); } oaccept 2261.163Sad100 STD MPSAFE { int sys_getpriority(int which, id_t who); } 2271.167Schristos101 COMPAT_43 { int sys_send(int s, void *buf, int len, \ 2281.29Smycroft int flags); } osend 2291.167Schristos102 COMPAT_43 { int sys_recv(int s, void *buf, int len, \ 2301.29Smycroft int flags); } orecv 2311.163Sad103 COMPAT_13 MPSAFE { int sys_sigreturn(struct sigcontext13 *sigcntxp); } \ 2321.83Smycroft sigreturn13 2331.46Scgd104 STD { int sys_bind(int s, const struct sockaddr *name, \ 2341.88Skleink unsigned int namelen); } 2351.28Smycroft105 STD { int sys_setsockopt(int s, int level, int name, \ 2361.88Skleink const void *val, unsigned int valsize); } 2371.28Smycroft106 STD { int sys_listen(int s, int backlog); } 2381.23Scgd107 OBSOL vtimes 2391.163Sad108 COMPAT_43 MPSAFE { int sys_sigvec(int signum, struct sigvec *nsv, \ 2401.29Smycroft struct sigvec *osv); } osigvec 2411.163Sad109 COMPAT_43 MPSAFE { int sys_sigblock(int mask); } osigblock 2421.163Sad110 COMPAT_43 MPSAFE { int sys_sigsetmask(int mask); } osigsetmask 2431.163Sad111 COMPAT_13 MPSAFE { int sys_sigsuspend(int mask); } sigsuspend13 2441.163Sad112 COMPAT_43 MPSAFE { int sys_sigstack(struct sigstack *nss, \ 2451.29Smycroft struct sigstack *oss); } osigstack 2461.28Smycroft113 COMPAT_43 { int sys_recvmsg(int s, struct omsghdr *msg, \ 2471.29Smycroft int flags); } orecvmsg 2481.167Schristos114 COMPAT_43 { int sys_sendmsg(int s, void *msg, int flags); } \ 2491.29Smycroft osendmsg 2501.23Scgd115 OBSOL vtrace 2511.28Smycroft116 STD { int sys_gettimeofday(struct timeval *tp, \ 2521.141Skleink void *tzp); } 2531.28Smycroft117 STD { int sys_getrusage(int who, struct rusage *rusage); } 2541.28Smycroft118 STD { int sys_getsockopt(int s, int level, int name, \ 2551.88Skleink void *val, unsigned int *avalsize); } 2561.26Scgd119 OBSOL resuba 2571.58Smycroft120 STD { ssize_t sys_readv(int fd, \ 2581.58Smycroft const struct iovec *iovp, int iovcnt); } 2591.46Scgd121 STD { ssize_t sys_writev(int fd, \ 2601.58Smycroft const struct iovec *iovp, int iovcnt); } 2611.46Scgd122 STD { int sys_settimeofday(const struct timeval *tv, \ 2621.141Skleink const void *tzp); } 2631.46Scgd123 STD { int sys_fchown(int fd, uid_t uid, gid_t gid); } 2641.60Schristos124 STD { int sys_fchmod(int fd, mode_t mode); } 2651.167Schristos125 COMPAT_43 { int sys_recvfrom(int s, void *buf, size_t len, \ 2661.167Schristos int flags, void *from, int *fromlenaddr); } \ 2671.29Smycroft orecvfrom 2681.46Scgd126 STD { int sys_setreuid(uid_t ruid, uid_t euid); } 2691.46Scgd127 STD { int sys_setregid(gid_t rgid, gid_t egid); } 2701.46Scgd128 STD { int sys_rename(const char *from, const char *to); } 2711.60Schristos129 COMPAT_43 { int sys_truncate(const char *path, long length); } \ 2721.29Smycroft otruncate 2731.29Smycroft130 COMPAT_43 { int sys_ftruncate(int fd, long length); } oftruncate 2741.28Smycroft131 STD { int sys_flock(int fd, int how); } 2751.60Schristos132 STD { int sys_mkfifo(const char *path, mode_t mode); } 2761.46Scgd133 STD { ssize_t sys_sendto(int s, const void *buf, \ 2771.46Scgd size_t len, int flags, const struct sockaddr *to, \ 2781.88Skleink unsigned int tolen); } 2791.28Smycroft134 STD { int sys_shutdown(int s, int how); } 2801.28Smycroft135 STD { int sys_socketpair(int domain, int type, \ 2811.28Smycroft int protocol, int *rsv); } 2821.60Schristos136 STD { int sys_mkdir(const char *path, mode_t mode); } 2831.46Scgd137 STD { int sys_rmdir(const char *path); } 2841.46Scgd138 STD { int sys_utimes(const char *path, \ 2851.46Scgd const struct timeval *tptr); } 2861.23Scgd139 OBSOL 4.2 sigreturn 2871.46Scgd140 STD { int sys_adjtime(const struct timeval *delta, \ 2881.23Scgd struct timeval *olddelta); } 2891.167Schristos141 COMPAT_43 { int sys_getpeername(int fdes, void *asa, \ 2901.29Smycroft int *alen); } ogetpeername 2911.29Smycroft142 COMPAT_43 { int32_t sys_gethostid(void); } ogethostid 2921.29Smycroft143 COMPAT_43 { int sys_sethostid(int32_t hostid); } osethostid 2931.58Smycroft144 COMPAT_43 { int sys_getrlimit(int which, \ 2941.58Smycroft struct orlimit *rlp); } ogetrlimit 2951.58Smycroft145 COMPAT_43 { int sys_setrlimit(int which, \ 2961.58Smycroft const struct orlimit *rlp); } osetrlimit 2971.29Smycroft146 COMPAT_43 { int sys_killpg(int pgid, int signum); } okillpg 2981.163Sad147 STD { int sys_setsid(void); } 2991.46Scgd148 STD { int sys_quotactl(const char *path, int cmd, \ 3001.167Schristos int uid, void *arg); } 3011.29Smycroft149 COMPAT_43 { int sys_quota(void); } oquota 3021.167Schristos150 COMPAT_43 { int sys_getsockname(int fdec, void *asa, \ 3031.29Smycroft int *alen); } ogetsockname 3041.1Sglass 3051.1Sglass; Syscalls 151-180 inclusive are reserved for vendor-specific 3061.1Sglass; system calls. (This includes various calls added for compatibity 3071.1Sglass; with other Unix variants.) 3081.1Sglass; Some of these calls are now supported by BSD... 3091.23Scgd151 UNIMPL 3101.23Scgd152 UNIMPL 3111.23Scgd153 UNIMPL 3121.23Scgd154 UNIMPL 3131.92Schristos#if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL) 3141.46Scgd155 STD { int sys_nfssvc(int flag, void *argp); } 3151.1Sglass#else 3161.92Schristos155 EXCL nfssvc 3171.1Sglass#endif 3181.28Smycroft156 COMPAT_43 { int sys_getdirentries(int fd, char *buf, \ 3191.29Smycroft u_int count, long *basep); } ogetdirentries 3201.139Schristos157 COMPAT_20 { int sys_statfs(const char *path, \ 3211.139Schristos struct statfs12 *buf); } 3221.139Schristos158 COMPAT_20 { int sys_fstatfs(int fd, struct statfs12 *buf); } 3231.23Scgd159 UNIMPL 3241.23Scgd160 UNIMPL 3251.155Smartin161 COMPAT_30 { int sys_getfh(const char *fname, \ 3261.155Smartin struct compat_30_fhandle *fhp); } 3271.29Smycroft162 COMPAT_09 { int sys_getdomainname(char *domainname, int len); } \ 3281.29Smycroft ogetdomainname 3291.29Smycroft163 COMPAT_09 { int sys_setdomainname(char *domainname, int len); } \ 3301.29Smycroft osetdomainname 3311.29Smycroft164 COMPAT_09 { int sys_uname(struct outsname *name); } ouname 3321.71Sperry165 STD { int sys_sysarch(int op, void *parms); } 3331.23Scgd166 UNIMPL 3341.23Scgd167 UNIMPL 3351.23Scgd168 UNIMPL 3361.23Scgd; XXX more generally, never on machines where sizeof(void *) != sizeof(int) 3371.111Seeh#if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64) 3381.28Smycroft169 COMPAT_10 { int sys_semsys(int which, int a2, int a3, int a4, \ 3391.29Smycroft int a5); } osemsys 3401.9Scgd#else 3411.92Schristos169 EXCL 1.0 semsys 3421.9Scgd#endif 3431.23Scgd; XXX more generally, never on machines where sizeof(void *) != sizeof(int) 3441.111Seeh#if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64) 3451.28Smycroft170 COMPAT_10 { int sys_msgsys(int which, int a2, int a3, int a4, \ 3461.29Smycroft int a5, int a6); } omsgsys 3471.9Scgd#else 3481.92Schristos170 EXCL 1.0 msgsys 3491.9Scgd#endif 3501.23Scgd; XXX more generally, never on machines where sizeof(void *) != sizeof(int) 3511.111Seeh#if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64) 3521.29Smycroft171 COMPAT_10 { int sys_shmsys(int which, int a2, int a3, int a4); } \ 3531.29Smycroft oshmsys 3541.1Sglass#else 3551.92Schristos171 EXCL 1.0 shmsys 3561.1Sglass#endif 3571.23Scgd172 UNIMPL 3581.79Sthorpej173 STD { ssize_t sys_pread(int fd, void *buf, \ 3591.80Sthorpej size_t nbyte, int pad, off_t offset); } 3601.79Sthorpej174 STD { ssize_t sys_pwrite(int fd, const void *buf, \ 3611.80Sthorpej size_t nbyte, int pad, off_t offset); } 3621.102Sbjh21; For some reason, ntp_gettime doesn't want to raise SIGSYS when it's excluded. 3631.153Sdrochner175 COMPAT_30 { int sys_ntp_gettime(struct ntptimeval30 *ntvp); } 3641.102Sbjh21#if defined(NTP) || !defined(_KERNEL) 3651.38Sthorpej176 STD { int sys_ntp_adjtime(struct timex *tp); } 3661.102Sbjh21#else 3671.102Sbjh21176 EXCL ntp_adjtime 3681.102Sbjh21#endif 3691.23Scgd177 UNIMPL 3701.23Scgd178 UNIMPL 3711.23Scgd179 UNIMPL 3721.23Scgd180 UNIMPL 3731.1Sglass 3741.1Sglass; Syscalls 180-199 are used by/reserved for BSD 3751.28Smycroft181 STD { int sys_setgid(gid_t gid); } 3761.163Sad182 STD { int sys_setegid(gid_t egid); } 3771.28Smycroft183 STD { int sys_seteuid(uid_t euid); } 3781.92Schristos#if defined(LFS) || !defined(_KERNEL) 3791.92Schristos184 STD { int sys_lfs_bmapv(fsid_t *fsidp, \ 3801.23Scgd struct block_info *blkiov, int blkcnt); } 3811.92Schristos185 STD { int sys_lfs_markv(fsid_t *fsidp, \ 3821.23Scgd struct block_info *blkiov, int blkcnt); } 3831.92Schristos186 STD { int sys_lfs_segclean(fsid_t *fsidp, u_long segment); } 3841.92Schristos187 STD { int sys_lfs_segwait(fsid_t *fsidp, \ 3851.92Schristos struct timeval *tv); } 3861.92Schristos#else 3871.92Schristos184 EXCL lfs_bmapv 3881.92Schristos185 EXCL lfs_markv 3891.92Schristos186 EXCL lfs_segclean 3901.92Schristos187 EXCL lfs_segwait 3911.23Scgd#endif 3921.60Schristos188 COMPAT_12 { int sys_stat(const char *path, struct stat12 *ub); } \ 3931.60Schristos stat12 3941.60Schristos189 COMPAT_12 { int sys_fstat(int fd, struct stat12 *sb); } fstat12 3951.60Schristos190 COMPAT_12 { int sys_lstat(const char *path, \ 3961.60Schristos struct stat12 *ub); } lstat12 3971.46Scgd191 STD { long sys_pathconf(const char *path, int name); } 3981.44Scgd192 STD { long sys_fpathconf(int fd, int name); } 3991.23Scgd193 UNIMPL 4001.58Smycroft194 STD { int sys_getrlimit(int which, \ 4011.58Smycroft struct rlimit *rlp); } 4021.58Smycroft195 STD { int sys_setrlimit(int which, \ 4031.46Scgd const struct rlimit *rlp); } 4041.57Sfvdl196 COMPAT_12 { int sys_getdirentries(int fd, char *buf, \ 4051.28Smycroft u_int count, long *basep); } 4061.61Schristos197 STD { void *sys_mmap(void *addr, size_t len, int prot, \ 4071.23Scgd int flags, int fd, long pad, off_t pos); } 4081.43Scgd198 INDIR { quad_t sys___syscall(quad_t num, ...); } 4091.28Smycroft199 STD { off_t sys_lseek(int fd, int pad, off_t offset, \ 4101.23Scgd int whence); } 4111.46Scgd200 STD { int sys_truncate(const char *path, int pad, \ 4121.46Scgd off_t length); } 4131.28Smycroft201 STD { int sys_ftruncate(int fd, int pad, off_t length); } 4141.151Sdrochner202 STD { int sys___sysctl(const int *name, u_int namelen, \ 4151.151Sdrochner void *old, size_t *oldlenp, const void *new, \ 4161.28Smycroft size_t newlen); } 4171.75Skleink203 STD { int sys_mlock(const void *addr, size_t len); } 4181.75Skleink204 STD { int sys_munlock(const void *addr, size_t len); } 4191.46Scgd205 STD { int sys_undelete(const char *path); } 4201.46Scgd206 STD { int sys_futimes(int fd, \ 4211.46Scgd const struct timeval *tptr); } 4221.163Sad207 STD MPSAFE { pid_t sys_getpgid(pid_t pid); } 4231.34Smrg208 STD { int sys_reboot(int opt, char *bootstr); } 4241.36Smycroft209 STD { int sys_poll(struct pollfd *fds, u_int nfds, \ 4251.35Smycroft int timeout); } 4261.11Scgd; 4271.11Scgd; Syscalls 210-219 are reserved for dynamically loaded syscalls 4281.11Scgd; 4291.92Schristos#if defined(LKM) || !defined(_KERNEL) 4301.28Smycroft210 NODEF { int sys_lkmnosys(void); } 4311.28Smycroft211 NODEF { int sys_lkmnosys(void); } 4321.28Smycroft212 NODEF { int sys_lkmnosys(void); } 4331.28Smycroft213 NODEF { int sys_lkmnosys(void); } 4341.28Smycroft214 NODEF { int sys_lkmnosys(void); } 4351.28Smycroft215 NODEF { int sys_lkmnosys(void); } 4361.28Smycroft216 NODEF { int sys_lkmnosys(void); } 4371.28Smycroft217 NODEF { int sys_lkmnosys(void); } 4381.28Smycroft218 NODEF { int sys_lkmnosys(void); } 4391.28Smycroft219 NODEF { int sys_lkmnosys(void); } 4401.11Scgd#else /* !LKM */ 4411.92Schristos210 EXCL lkmnosys 4421.92Schristos211 EXCL lkmnosys 4431.92Schristos212 EXCL lkmnosys 4441.92Schristos213 EXCL lkmnosys 4451.92Schristos214 EXCL lkmnosys 4461.92Schristos215 EXCL lkmnosys 4471.92Schristos216 EXCL lkmnosys 4481.92Schristos217 EXCL lkmnosys 4491.92Schristos218 EXCL lkmnosys 4501.92Schristos219 EXCL lkmnosys 4511.6Scgd#endif /* !LKM */ 4521.49Skleink; System calls 220-300 are reserved for use by NetBSD 4531.92Schristos#if defined(SYSVSEM) || !defined(_KERNEL) 4541.97Sthorpej220 COMPAT_14 { int sys___semctl(int semid, int semnum, int cmd, \ 4551.97Sthorpej union __semun *arg); } 4561.28Smycroft221 STD { int sys_semget(key_t key, int nsems, int semflg); } 4571.28Smycroft222 STD { int sys_semop(int semid, struct sembuf *sops, \ 4581.74Skleink size_t nsops); } 4591.28Smycroft223 STD { int sys_semconfig(int flag); } 4601.23Scgd#else 4611.97Sthorpej220 EXCL compat_14_semctl 4621.92Schristos221 EXCL semget 4631.92Schristos222 EXCL semop 4641.92Schristos223 EXCL semconfig 4651.23Scgd#endif 4661.92Schristos#if defined(SYSVMSG) || !defined(_KERNEL) 4671.163Sad224 COMPAT_14 MPSAFE { int sys_msgctl(int msqid, int cmd, \ 4681.97Sthorpej struct msqid_ds14 *buf); } 4691.163Sad225 STD MPSAFE { int sys_msgget(key_t key, int msgflg); } 4701.163Sad226 STD MPSAFE { int sys_msgsnd(int msqid, const void *msgp, \ 4711.74Skleink size_t msgsz, int msgflg); } 4721.163Sad227 STD MPSAFE { ssize_t sys_msgrcv(int msqid, void *msgp, \ 4731.74Skleink size_t msgsz, long msgtyp, int msgflg); } 4741.23Scgd#else 4751.163Sad224 EXCL compat_14_msgctl 4761.163Sad225 EXCL msgget 4771.163Sad226 EXCL msgsnd 4781.163Sad227 EXCL msgrcv 4791.23Scgd#endif 4801.92Schristos#if defined(SYSVSHM) || !defined(_KERNEL) 4811.74Skleink228 STD { void *sys_shmat(int shmid, const void *shmaddr, \ 4821.44Scgd int shmflg); } 4831.97Sthorpej229 COMPAT_14 { int sys_shmctl(int shmid, int cmd, \ 4841.97Sthorpej struct shmid_ds14 *buf); } 4851.74Skleink230 STD { int sys_shmdt(const void *shmaddr); } 4861.74Skleink231 STD { int sys_shmget(key_t key, size_t size, int shmflg); } 4871.23Scgd#else 4881.92Schristos228 EXCL shmat 4891.97Sthorpej229 EXCL compat_14_shmctl 4901.92Schristos230 EXCL shmdt 4911.92Schristos231 EXCL shmget 4921.23Scgd#endif 4931.39Sjtc232 STD { int sys_clock_gettime(clockid_t clock_id, \ 4941.49Skleink struct timespec *tp); } 4951.39Sjtc233 STD { int sys_clock_settime(clockid_t clock_id, \ 4961.49Skleink const struct timespec *tp); } 4971.39Sjtc234 STD { int sys_clock_getres(clockid_t clock_id, \ 4981.49Skleink struct timespec *tp); } 4991.118Sthorpej235 STD { int sys_timer_create(clockid_t clock_id, \ 5001.118Sthorpej struct sigevent *evp, timer_t *timerid); } 5011.118Sthorpej236 STD { int sys_timer_delete(timer_t timerid); } 5021.118Sthorpej237 STD { int sys_timer_settime(timer_t timerid, int flags, \ 5031.118Sthorpej const struct itimerspec *value, \ 5041.118Sthorpej struct itimerspec *ovalue); } 5051.118Sthorpej238 STD { int sys_timer_gettime(timer_t timerid, struct \ 5061.118Sthorpej itimerspec *value); } 5071.118Sthorpej239 STD { int sys_timer_getoverrun(timer_t timerid); } 5081.54Sveego; 5091.54Sveego; Syscalls 240-269 are reserved for other IEEE Std1003.1b syscalls 5101.54Sveego; 5111.163Sad240 STD MPSAFE { int sys_nanosleep(const struct timespec *rqtp, \ 5121.49Skleink struct timespec *rmtp); } 5131.76Skleink241 STD { int sys_fdatasync(int fd); } 5141.93Sthorpej242 STD { int sys_mlockall(int flags); } 5151.93Sthorpej243 STD { int sys_munlockall(void); } 5161.163Sad244 STD MPSAFE { int sys___sigtimedwait(const sigset_t *set, \ 5171.127Sjdolecek siginfo_t *info, \ 5181.127Sjdolecek struct timespec *timeout); } 5191.127Sjdolecek245 UNIMPL sys_sigqueue 5201.127Sjdolecek; 5211.127Sjdolecek; Syscall 246 is free for any use 5221.127Sjdolecek; 5231.127Sjdolecek246 UNIMPL 5241.133Schristos#if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC)) 5251.122Schristos247 STD { int sys__ksem_init(unsigned int value, semid_t *idp); } 5261.122Schristos248 STD { int sys__ksem_open(const char *name, int oflag, \ 5271.119Schristos mode_t mode, unsigned int value, semid_t *idp); } 5281.122Schristos249 STD { int sys__ksem_unlink(const char *name); } 5291.122Schristos250 STD { int sys__ksem_close(semid_t id); } 5301.163Sad251 STD { int sys__ksem_post(semid_t id); } 5311.163Sad252 STD { int sys__ksem_wait(semid_t id); } 5321.163Sad253 STD { int sys__ksem_trywait(semid_t id); } 5331.163Sad254 STD { int sys__ksem_getvalue(semid_t id, \ 5341.119Schristos unsigned int *value); } 5351.122Schristos255 STD { int sys__ksem_destroy(semid_t id); } 5361.124Sthorpej256 UNIMPL sys__ksem_timedwait 5371.119Schristos#else 5381.122Schristos247 EXCL sys__ksem_init 5391.122Schristos248 EXCL sys__ksem_open 5401.122Schristos249 EXCL sys__ksem_unlink 5411.122Schristos250 EXCL sys__ksem_close 5421.122Schristos251 EXCL sys__ksem_post 5431.122Schristos252 EXCL sys__ksem_wait 5441.122Schristos253 EXCL sys__ksem_trywait 5451.122Schristos254 EXCL sys__ksem_getvalue 5461.122Schristos255 EXCL sys__ksem_destroy 5471.124Sthorpej256 UNIMPL sys__ksem_timedwait 5481.119Schristos#endif 5491.125Sthorpej257 UNIMPL sys_mq_open 5501.125Sthorpej258 UNIMPL sys_mq_close 5511.125Sthorpej259 UNIMPL sys_mq_unlink 5521.125Sthorpej260 UNIMPL sys_mq_getattr 5531.125Sthorpej261 UNIMPL sys_mq_setattr 5541.125Sthorpej262 UNIMPL sys_mq_notify 5551.125Sthorpej263 UNIMPL sys_mq_send 5561.125Sthorpej264 UNIMPL sys_mq_receive 5571.125Sthorpej265 UNIMPL sys_mq_timedsend 5581.125Sthorpej266 UNIMPL sys_mq_timedreceive 5591.49Skleink267 UNIMPL 5601.49Skleink268 UNIMPL 5611.49Skleink269 UNIMPL 5621.69Skleink270 STD { int sys___posix_rename(const char *from, \ 5631.49Skleink const char *to); } 5641.146Schristos271 STD { int sys_swapctl(int cmd, void *arg, int misc); } 5651.148Schristos272 COMPAT_30 { int sys_getdents(int fd, char *buf, size_t count); } 5661.61Schristos273 STD { int sys_minherit(void *addr, size_t len, \ 5671.54Sveego int inherit); } 5681.60Schristos274 STD { int sys_lchmod(const char *path, mode_t mode); } 5691.56Senami275 STD { int sys_lchown(const char *path, uid_t uid, \ 5701.56Senami gid_t gid); } 5711.56Senami276 STD { int sys_lutimes(const char *path, \ 5721.56Senami const struct timeval *tptr); } 5731.63Sthorpej277 STD { int sys___msync13(void *addr, size_t len, int flags); } 5741.152Schristos278 COMPAT_30 { int sys___stat13(const char *path, struct stat13 *ub); } 5751.152Schristos279 COMPAT_30 { int sys___fstat13(int fd, struct stat13 *sb); } 5761.152Schristos280 COMPAT_30 { int sys___lstat13(const char *path, struct stat13 *ub); } 5771.163Sad281 STD MPSAFE { int sys___sigaltstack14( \ 5781.82Smycroft const struct sigaltstack *nss, \ 5791.82Smycroft struct sigaltstack *oss); } 5801.67Sthorpej282 STD { int sys___vfork14(void); } 5811.69Skleink283 STD { int sys___posix_chown(const char *path, uid_t uid, \ 5821.69Skleink gid_t gid); } 5831.69Skleink284 STD { int sys___posix_fchown(int fd, uid_t uid, \ 5841.69Skleink gid_t gid); } 5851.69Skleink285 STD { int sys___posix_lchown(const char *path, uid_t uid, \ 5861.69Skleink gid_t gid); } 5871.163Sad286 STD MPSAFE { pid_t sys_getsid(pid_t pid); } 5881.110Sthorpej287 STD { pid_t sys___clone(int flags, void *stack); } 5891.92Schristos#if defined(KTRACE) || !defined(_KERNEL) 5901.73Schristos288 STD { int sys_fktrace(const int fd, int ops, \ 5911.73Schristos int facs, int pid); } 5921.73Schristos#else 5931.92Schristos288 EXCL ktrace 5941.73Schristos#endif 5951.79Sthorpej289 STD { ssize_t sys_preadv(int fd, \ 5961.79Sthorpej const struct iovec *iovp, int iovcnt, \ 5971.80Sthorpej int pad, off_t offset); } 5981.79Sthorpej290 STD { ssize_t sys_pwritev(int fd, \ 5991.79Sthorpej const struct iovec *iovp, int iovcnt, \ 6001.80Sthorpej int pad, off_t offset); } 6011.163Sad291 COMPAT_16 MPSAFE { int sys___sigaction14(int signum, \ 6021.82Smycroft const struct sigaction *nsa, \ 6031.82Smycroft struct sigaction *osa); } 6041.163Sad292 STD MPSAFE { int sys___sigpending14(sigset_t *set); } 6051.163Sad293 STD MPSAFE { int sys___sigprocmask14(int how, \ 6061.82Smycroft const sigset_t *set, \ 6071.82Smycroft sigset_t *oset); } 6081.163Sad294 STD MPSAFE { int sys___sigsuspend14(const sigset_t *set); } 6091.163Sad295 COMPAT_16 MPSAFE { int sys___sigreturn14(struct sigcontext *sigcntxp); } 6101.89Ssommerfe296 STD { int sys___getcwd(char *bufp, size_t length); } 6111.89Ssommerfe297 STD { int sys_fchroot(int fd); } 6121.156Smartin298 COMPAT_30 { int sys_fhopen(const struct compat_30_fhandle *fhp, int flags); } 6131.156Smartin299 COMPAT_30 { int sys_fhstat(const struct compat_30_fhandle *fhp, \ 6141.152Schristos struct stat13 *sb); } 6151.156Smartin300 COMPAT_20 { int sys_fhstatfs(const struct compat_30_fhandle *fhp, \ 6161.139Schristos struct statfs12 *buf); } 6171.97Sthorpej#if defined(SYSVSEM) || !defined(_KERNEL) 6181.99Schristos301 STD { int sys_____semctl13(int semid, int semnum, int cmd, \ 6191.99Schristos ... union __semun *arg); } 6201.97Sthorpej#else 6211.99Schristos301 EXCL ____semctl13 6221.97Sthorpej#endif 6231.97Sthorpej#if defined(SYSVMSG) || !defined(_KERNEL) 6241.163Sad302 STD MPSAFE { int sys___msgctl13(int msqid, int cmd, \ 6251.97Sthorpej struct msqid_ds *buf); } 6261.97Sthorpej#else 6271.97Sthorpej302 EXCL __msgctl13 6281.97Sthorpej#endif 6291.97Sthorpej#if defined(SYSVSHM) || !defined(_KERNEL) 6301.163Sad303 STD { int sys___shmctl13(int shmid, int cmd, \ 6311.97Sthorpej struct shmid_ds *buf); } 6321.97Sthorpej#else 6331.97Sthorpej303 EXCL __shmctl13 6341.97Sthorpej#endif 6351.100Smrg304 STD { int sys_lchflags(const char *path, u_long flags); } 6361.163Sad305 STD MPSAFE { int sys_issetugid(void); } 6371.163Sad306 STD MPSAFE { int sys_utrace(const char *label, void *addr, \ 6381.118Sthorpej size_t len); } 6391.118Sthorpej307 STD { int sys_getcontext(struct __ucontext *ucp); } 6401.118Sthorpej308 STD { int sys_setcontext(const struct __ucontext *ucp); } 6411.118Sthorpej309 STD { int sys__lwp_create(const struct __ucontext *ucp, \ 6421.118Sthorpej u_long flags, lwpid_t *new_lwp); } 6431.118Sthorpej310 STD { int sys__lwp_exit(void); } 6441.163Sad311 STD MPSAFE { lwpid_t sys__lwp_self(void); } 6451.163Sad312 STD MPSAFE { int sys__lwp_wait(lwpid_t wait_for, \ 6461.118Sthorpej lwpid_t *departed); } 6471.163Sad313 STD MPSAFE { int sys__lwp_suspend(lwpid_t target); } 6481.163Sad314 STD MPSAFE { int sys__lwp_continue(lwpid_t target); } 6491.163Sad315 STD MPSAFE { int sys__lwp_wakeup(lwpid_t target); } 6501.163Sad316 STD MPSAFE { void *sys__lwp_getprivate(void); } 6511.163Sad317 STD MPSAFE { void sys__lwp_setprivate(void *ptr); } 6521.161Sad318 STD { int sys__lwp_kill(lwpid_t target, int signo); } 6531.163Sad319 STD MPSAFE { int sys__lwp_detach(lwpid_t target); } 6541.163Sad320 STD MPSAFE { int sys__lwp_park(const struct timespec *ts, \ 6551.164Sad struct __ucontext *ucp, const void *hint); } 6561.164Sad321 STD MPSAFE { int sys__lwp_unpark(lwpid_t target, const void *hint); } 6571.166Sdrochner322 STD MPSAFE { ssize_t sys__lwp_unpark_all(const lwpid_t *targets, \ 6581.164Sad size_t ntargets, const void *hint); } 6591.163Sad; Syscalls 323-339 reserved for LWP syscalls. 6601.107Snathanw323 UNIMPL 6611.107Snathanw324 UNIMPL 6621.107Snathanw325 UNIMPL 6631.107Snathanw326 UNIMPL 6641.107Snathanw327 UNIMPL 6651.107Snathanw328 UNIMPL 6661.107Snathanw329 UNIMPL 6671.165Sad; Obsolete SA system calls. Must remain until libc's major version is bumped. 6681.165Sad330 STD MPSAFE { int sys_sa_register(void); } 6691.165Sad331 STD MPSAFE { int sys_sa_stacks(void); } 6701.165Sad332 STD MPSAFE { int sys_sa_enable(void); } 6711.165Sad333 STD MPSAFE { int sys_sa_setconcurrency(void); } 6721.165Sad334 STD MPSAFE { int sys_sa_yield(void); } 6731.165Sad335 STD MPSAFE { int sys_sa_preempt(void); } 6741.165Sad336 STD MPSAFE { int sys_sa_unblockyield(void); } 6751.107Snathanw337 UNIMPL 6761.107Snathanw338 UNIMPL 6771.107Snathanw339 UNIMPL 6781.163Sad340 STD MPSAFE { int sys___sigaction_sigtramp(int signum, \ 6791.112Sthorpej const struct sigaction *nsa, \ 6801.112Sthorpej struct sigaction *osa, \ 6811.132Smatt const void *tramp, int vers); } 6821.113Sbriggs341 STD { int sys_pmc_get_info(int ctr, int op, void *args); } 6831.113Sbriggs342 STD { int sys_pmc_control(int ctr, int op, void *args); } 6841.167Schristos343 STD { int sys_rasctl(void *addr, size_t len, int op); } 6851.116Sjdolecek344 STD { int sys_kqueue(void); } 6861.116Sjdolecek345 STD { int sys_kevent(int fd, \ 6871.116Sjdolecek const struct kevent *changelist, size_t nchanges, \ 6881.116Sjdolecek struct kevent *eventlist, size_t nevents, \ 6891.116Sjdolecek const struct timespec *timeout); } 6901.126Sthorpej; 6911.126Sthorpej; Syscalls 346-353 are reserved for the IEEE Std1003.1b scheduling syscalls 6921.126Sthorpej; 6931.126Sthorpej346 UNIMPL sys_sched_setparam 6941.126Sthorpej347 UNIMPL sys_sched_getparam 6951.126Sthorpej348 UNIMPL sys_sched_setscheduler 6961.126Sthorpej349 UNIMPL sys_sched_getscheduler 6971.163Sad350 STD MPSAFE { int sys_sched_yield(void); } 6981.126Sthorpej351 UNIMPL sys_sched_get_priority_max 6991.126Sthorpej352 UNIMPL sys_sched_get_priority_min 7001.126Sthorpej353 UNIMPL sys_sched_rr_get_interval 7011.134Sthorpej 7021.134Sthorpej354 STD { int sys_fsync_range(int fd, int flags, off_t start, \ 7031.134Sthorpej off_t length); } 7041.136Stsarna355 STD { int sys_uuidgen(struct uuid *store, int count); } 7051.139Schristos356 STD { int sys_getvfsstat(struct statvfs *buf, \ 7061.139Schristos size_t bufsize, int flags); } 7071.139Schristos357 STD { int sys_statvfs1(const char *path, \ 7081.139Schristos struct statvfs *buf, int flags); } 7091.139Schristos358 STD { int sys_fstatvfs1(int fd, struct statvfs *buf, \ 7101.139Schristos int flags); } 7111.156Smartin359 COMPAT_30 { int sys_fhstatvfs1(const struct compat_30_fhandle *fhp, \ 7121.139Schristos struct statvfs *buf, int flags); } 7131.143Sthorpej360 STD { int sys_extattrctl(const char *path, int cmd, \ 7141.143Sthorpej const char *filename, int attrnamespace, \ 7151.143Sthorpej const char *attrname); } 7161.143Sthorpej361 STD { int sys_extattr_set_file(const char *path, \ 7171.143Sthorpej int attrnamespace, const char *attrname, \ 7181.143Sthorpej const void *data, size_t nbytes); } 7191.149Schristos362 STD { ssize_t sys_extattr_get_file(const char *path, \ 7201.143Sthorpej int attrnamespace, const char *attrname, \ 7211.143Sthorpej void *data, size_t nbytes); } 7221.143Sthorpej363 STD { int sys_extattr_delete_file(const char *path, \ 7231.143Sthorpej int attrnamespace, const char *attrname); } 7241.143Sthorpej364 STD { int sys_extattr_set_fd(int fd, \ 7251.143Sthorpej int attrnamespace, const char *attrname, \ 7261.143Sthorpej const void *data, size_t nbytes); } 7271.149Schristos365 STD { ssize_t sys_extattr_get_fd(int fd, \ 7281.143Sthorpej int attrnamespace, const char *attrname, \ 7291.143Sthorpej void *data, size_t nbytes); } 7301.143Sthorpej366 STD { int sys_extattr_delete_fd(int fd, \ 7311.143Sthorpej int attrnamespace, const char *attrname); } 7321.143Sthorpej367 STD { int sys_extattr_set_link(const char *path, \ 7331.143Sthorpej int attrnamespace, const char *attrname, \ 7341.143Sthorpej const void *data, size_t nbytes); } 7351.149Schristos368 STD { ssize_t sys_extattr_get_link(const char *path, \ 7361.143Sthorpej int attrnamespace, const char *attrname, \ 7371.143Sthorpej void *data, size_t nbytes); } 7381.143Sthorpej369 STD { int sys_extattr_delete_link(const char *path, \ 7391.143Sthorpej int attrnamespace, const char *attrname); } 7401.149Schristos370 STD { ssize_t sys_extattr_list_fd(int fd, \ 7411.143Sthorpej int attrnamespace, void *data, size_t nbytes); } 7421.149Schristos371 STD { ssize_t sys_extattr_list_file(const char *path, \ 7431.143Sthorpej int attrnamespace, void *data, size_t nbytes); } 7441.149Schristos372 STD { ssize_t sys_extattr_list_link(const char *path, \ 7451.143Sthorpej int attrnamespace, void *data, size_t nbytes); } 7461.145Smatt373 STD { int sys_pselect(int nd, fd_set *in, fd_set *ou, \ 7471.145Smatt fd_set *ex, const struct timespec *ts, \ 7481.145Smatt const sigset_t *mask); } 7491.145Smatt374 STD { int sys_pollts(struct pollfd *fds, u_int nfds, \ 7501.145Smatt const struct timespec *ts, const sigset_t *mask); } 7511.147Sthorpej375 STD { int sys_setxattr(const char *path, \ 7521.147Sthorpej const char *name, void *value, size_t size, \ 7531.147Sthorpej int flags); } 7541.147Sthorpej376 STD { int sys_lsetxattr(const char *path, \ 7551.147Sthorpej const char *name, void *value, size_t size, \ 7561.147Sthorpej int flags); } 7571.147Sthorpej377 STD { int sys_fsetxattr(int fd, \ 7581.147Sthorpej const char *name, void *value, size_t size, \ 7591.147Sthorpej int flags); } 7601.147Sthorpej378 STD { int sys_getxattr(const char *path, \ 7611.147Sthorpej const char *name, void *value, size_t size); } 7621.147Sthorpej379 STD { int sys_lgetxattr(const char *path, \ 7631.147Sthorpej const char *name, void *value, size_t size); } 7641.147Sthorpej380 STD { int sys_fgetxattr(int fd, \ 7651.147Sthorpej const char *name, void *value, size_t size); } 7661.147Sthorpej381 STD { int sys_listxattr(const char *path, \ 7671.147Sthorpej char *list, size_t size); } 7681.147Sthorpej382 STD { int sys_llistxattr(const char *path, \ 7691.147Sthorpej char *list, size_t size); } 7701.147Sthorpej383 STD { int sys_flistxattr(int fd, \ 7711.147Sthorpej char *list, size_t size); } 7721.147Sthorpej384 STD { int sys_removexattr(const char *path, \ 7731.147Sthorpej const char *name); } 7741.147Sthorpej385 STD { int sys_lremovexattr(const char *path, \ 7751.147Sthorpej const char *name); } 7761.147Sthorpej386 STD { int sys_fremovexattr(int fd, \ 7771.147Sthorpej const char *name); } 7781.148Schristos387 STD { int sys___stat30(const char *path, struct stat *ub); } 7791.148Schristos388 STD { int sys___fstat30(int fd, struct stat *sb); } 7801.148Schristos389 STD { int sys___lstat30(const char *path, struct stat *ub); } 7811.148Schristos390 STD { int sys___getdents30(int fd, char *buf, size_t count); } 7821.150Syamt391 STD { int sys_posix_fadvise(int fd, off_t offset, \ 7831.150Syamt off_t len, int advice); } 7841.156Smartin392 COMPAT_30 { int sys___fhstat30(const struct compat_30_fhandle \ 7851.156Smartin *fhp, struct stat *sb); } 7861.153Sdrochner393 STD { int sys___ntp_gettime30(struct ntptimeval *ntvp); } 7871.154Smrg394 STD { int sys___socket30(int domain, int type, int protocol); } 7881.156Smartin395 STD { int sys___getfh30(const char *fname, void *fhp, \ 7891.156Smartin size_t *fh_size); } 7901.156Smartin396 STD { int sys___fhopen40(const void *fhp, size_t fh_size,\ 7911.156Smartin int flags); } 7921.156Smartin397 STD { int sys___fhstatvfs140(const void *fhp, \ 7931.156Smartin size_t fh_size, struct statvfs *buf, int flags); } 7941.156Smartin398 STD { int sys___fhstat40(const void *fhp, \ 7951.156Smartin size_t fh_size, struct stat *sb); } 7961.169Srmind 7971.169Srmind; Asynchronous I/O system calls 7981.169Srmind399 STD { int sys_aio_cancel(int fildes, struct aiocb *aiocbp); } 7991.169Srmind400 STD { int sys_aio_error(const struct aiocb *aiocbp); } 8001.169Srmind401 STD { int sys_aio_fsync(int op, struct aiocb *aiocbp); } 8011.169Srmind402 STD { int sys_aio_read(struct aiocb *aiocbp); } 8021.169Srmind403 STD { int sys_aio_return(struct aiocb *aiocbp); } 8031.169Srmind404 STD { int sys_aio_suspend(const struct aiocb *const *list, \ 8041.169Srmind int nent, const struct timespec *timeout); } 8051.169Srmind405 STD { int sys_aio_write(struct aiocb *aiocbp); } 8061.169Srmind406 STD { int sys_lio_listio(int mode, struct aiocb *const *list, \ 8071.169Srmind int nent, struct sigevent *sig); } 808