syscalls.master revision 1.81
11.81Sjonathan $NetBSD: syscalls.master,v 1.81 1998/07/05 08:49:50 jonathan 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.1Sglass; types: 141.1Sglass; STD always included 151.23Scgd; OBSOL obsolete, not included in system 161.24Smycroft; UNIMPL unimplemented, not included in system 171.23Scgd; NODEF included, but don't define the syscall number 181.23Scgd; NOARGS included, but don't define the syscall args structure 191.43Scgd; INDIR included, but don't define the syscall args structure, 201.43Scgd; and allow it to be "really" varargs. 211.23Scgd; 221.23Scgd; The compat options are defined in the syscalls.conf file, and the 231.23Scgd; compat option name is prefixed to the syscall name. Other than 241.23Scgd; that, they're like NODEF (for 'compat' options), or STD (for 251.23Scgd; 'libcompat' options). 261.23Scgd; 271.23Scgd; The type-dependent arguments are as follows: 281.23Scgd; For STD, NODEF, NOARGS, and compat syscalls: 291.23Scgd; { pseudo-proto } [alias] 301.23Scgd; For other syscalls: 311.23Scgd; [comment] 321.23Scgd; 331.23Scgd; #ifdef's, etc. may be included, and are copied to the output files. 341.70Sthorpej; #include's are copied to the syscall names and switch definition files only. 351.77Sthorpej 361.77Sthorpej#include "opt_ktrace.h" 371.78Sthorpej#include "opt_nfsserver.h" 381.81Sjonathan#include "opt_compat_netbsd.h" 391.70Sthorpej 401.70Sthorpej#include "fs_lfs.h" 411.70Sthorpej#include "fs_nfs.h" 421.1Sglass 431.23Scgd#include <sys/param.h> 441.23Scgd#include <sys/systm.h> 451.23Scgd#include <sys/signal.h> 461.23Scgd#include <sys/mount.h> 471.23Scgd#include <sys/syscallargs.h> 481.1Sglass 491.1Sglass; Reserved/unimplemented system calls in the range 0-150 inclusive 501.1Sglass; are reserved for use in future Berkeley releases. 511.1Sglass; Additional system calls implemented in vendor and other 521.1Sglass; redistributions should be placed in the reserved range at the end 531.1Sglass; of the current calls. 541.1Sglass 551.43Scgd0 INDIR { int sys_syscall(int number, ...); } 561.44Scgd1 STD { void sys_exit(int rval); } 571.28Smycroft2 STD { int sys_fork(void); } 581.46Scgd3 STD { ssize_t sys_read(int fd, void *buf, size_t nbyte); } 591.46Scgd4 STD { ssize_t sys_write(int fd, const void *buf, \ 601.46Scgd size_t nbyte); } 611.46Scgd5 STD { int sys_open(const char *path, \ 621.60Schristos int flags, ... mode_t mode); } 631.28Smycroft6 STD { int sys_close(int fd); } 641.28Smycroft7 STD { int sys_wait4(int pid, int *status, int options, \ 651.23Scgd struct rusage *rusage); } 661.60Schristos8 COMPAT_43 { int sys_creat(const char *path, mode_t mode); } ocreat 671.46Scgd9 STD { int sys_link(const char *path, const char *link); } 681.46Scgd10 STD { int sys_unlink(const char *path); } 691.23Scgd11 OBSOL execv 701.46Scgd12 STD { int sys_chdir(const char *path); } 711.28Smycroft13 STD { int sys_fchdir(int fd); } 721.60Schristos14 STD { int sys_mknod(const char *path, mode_t mode, \ 731.60Schristos dev_t dev); } 741.60Schristos15 STD { int sys_chmod(const char *path, mode_t mode); } 751.46Scgd16 STD { int sys_chown(const char *path, uid_t uid, \ 761.46Scgd gid_t gid); } 771.28Smycroft17 STD { int sys_obreak(char *nsize); } break 781.28Smycroft18 STD { int sys_getfsstat(struct statfs *buf, long bufsize, \ 791.23Scgd int flags); } 801.29Smycroft19 COMPAT_43 { long sys_lseek(int fd, long offset, int whence); } \ 811.29Smycroft olseek 821.28Smycroft20 STD { pid_t sys_getpid(void); } 831.46Scgd21 STD { int sys_mount(const char *type, const char *path, \ 841.46Scgd int flags, void *data); } 851.46Scgd22 STD { int sys_unmount(const char *path, int flags); } 861.28Smycroft23 STD { int sys_setuid(uid_t uid); } 871.28Smycroft24 STD { uid_t sys_getuid(void); } 881.28Smycroft25 STD { uid_t sys_geteuid(void); } 891.28Smycroft26 STD { int sys_ptrace(int req, pid_t pid, caddr_t addr, \ 901.23Scgd int data); } 911.44Scgd27 STD { ssize_t sys_recvmsg(int s, struct msghdr *msg, \ 921.28Smycroft int flags); } 931.46Scgd28 STD { ssize_t sys_sendmsg(int s, \ 941.46Scgd const struct msghdr *msg, int flags); } 951.46Scgd29 STD { ssize_t sys_recvfrom(int s, void *buf, size_t len, \ 961.46Scgd int flags, struct sockaddr *from, \ 971.46Scgd int *fromlenaddr); } 981.46Scgd30 STD { int sys_accept(int s, struct sockaddr *name, \ 991.46Scgd int *anamelen); } 1001.46Scgd31 STD { int sys_getpeername(int fdes, struct sockaddr *asa, \ 1011.28Smycroft int *alen); } 1021.46Scgd32 STD { int sys_getsockname(int fdes, struct sockaddr *asa, \ 1031.28Smycroft int *alen); } 1041.46Scgd33 STD { int sys_access(const char *path, int flags); } 1051.46Scgd34 STD { int sys_chflags(const char *path, u_long flags); } 1061.46Scgd35 STD { int sys_fchflags(int fd, u_long flags); } 1071.44Scgd36 STD { void sys_sync(void); } 1081.28Smycroft37 STD { int sys_kill(int pid, int signum); } 1091.60Schristos38 COMPAT_43 { int sys_stat(const char *path, struct stat43 *ub); } \ 1101.60Schristos stat43 1111.28Smycroft39 STD { pid_t sys_getppid(void); } 1121.60Schristos40 COMPAT_43 { int sys_lstat(const char *path, \ 1131.60Schristos struct stat43 *ub); } lstat43 1141.59Smycroft41 STD { int sys_dup(int fd); } 1151.28Smycroft42 STD { int sys_pipe(void); } 1161.28Smycroft43 STD { gid_t sys_getegid(void); } 1171.30Scgd44 STD { int sys_profil(caddr_t samples, size_t size, \ 1181.30Scgd u_long offset, u_int scale); } 1191.1Sglass#ifdef KTRACE 1201.46Scgd45 STD { int sys_ktrace(const char *fname, int ops, \ 1211.46Scgd int facs, int pid); } 1221.1Sglass#else 1231.23Scgd45 UNIMPL ktrace 1241.1Sglass#endif 1251.46Scgd46 STD { int sys_sigaction(int signum, \ 1261.46Scgd const struct sigaction *nsa, \ 1271.23Scgd struct sigaction *osa); } 1281.28Smycroft47 STD { gid_t sys_getgid(void); } 1291.28Smycroft48 STD { int sys_sigprocmask(int how, sigset_t mask); } 1301.37Sjtc49 STD { int sys___getlogin(char *namebuf, u_int namelen); } 1311.46Scgd50 STD { int sys_setlogin(const char *namebuf); } 1321.46Scgd51 STD { int sys_acct(const char *path); } 1331.28Smycroft52 STD { int sys_sigpending(void); } 1341.65Skleink53 COMPAT_13 { int sys_sigaltstack(const struct sigaltstack13 \ 1351.65Skleink *nss, struct sigaltstack13 *oss); } sigaltstack13 1361.46Scgd54 STD { int sys_ioctl(int fd, \ 1371.61Schristos u_long com, ... void *data); } 1381.34Smrg55 COMPAT_12 { int sys_reboot(int opt); } oreboot 1391.46Scgd56 STD { int sys_revoke(const char *path); } 1401.46Scgd57 STD { int sys_symlink(const char *path, \ 1411.46Scgd const char *link); } 1421.46Scgd58 STD { int sys_readlink(const char *path, char *buf, \ 1431.72Skleink size_t count); } 1441.46Scgd59 STD { int sys_execve(const char *path, \ 1451.46Scgd char * const *argp, char * const *envp); } 1461.62Smycroft60 STD { mode_t sys_umask(mode_t newmask); } 1471.46Scgd61 STD { int sys_chroot(const char *path); } 1481.60Schristos62 COMPAT_43 { int sys_fstat(int fd, struct stat43 *sb); } fstat43 1491.28Smycroft63 COMPAT_43 { int sys_getkerninfo(int op, char *where, int *size, \ 1501.29Smycroft int arg); } ogetkerninfo 1511.29Smycroft64 COMPAT_43 { int sys_getpagesize(void); } ogetpagesize 1521.60Schristos65 COMPAT_12 { int sys_msync(caddr_t addr, size_t len); } 1531.67Sthorpej; XXX COMPAT_??? for 4.4BSD-compatible vfork(2)? 1541.28Smycroft66 STD { int sys_vfork(void); } 1551.23Scgd67 OBSOL vread 1561.23Scgd68 OBSOL vwrite 1571.28Smycroft69 STD { int sys_sbrk(int incr); } 1581.28Smycroft70 STD { int sys_sstk(int incr); } 1591.28Smycroft71 COMPAT_43 { int sys_mmap(caddr_t addr, size_t len, int prot, \ 1601.29Smycroft int flags, int fd, long pos); } ommap 1611.28Smycroft72 STD { int sys_ovadvise(int anom); } vadvise 1621.61Schristos73 STD { int sys_munmap(void *addr, size_t len); } 1631.61Schristos74 STD { int sys_mprotect(void *addr, size_t len, \ 1641.28Smycroft int prot); } 1651.61Schristos75 STD { int sys_madvise(void *addr, size_t len, \ 1661.28Smycroft int behav); } 1671.23Scgd76 OBSOL vhangup 1681.23Scgd77 OBSOL vlimit 1691.28Smycroft78 STD { int sys_mincore(caddr_t addr, size_t len, \ 1701.28Smycroft char *vec); } 1711.64Sthorpej79 STD { int sys_getgroups(int gidsetsize, \ 1721.59Smycroft gid_t *gidset); } 1731.64Sthorpej80 STD { int sys_setgroups(int gidsetsize, \ 1741.46Scgd const gid_t *gidset); } 1751.28Smycroft81 STD { int sys_getpgrp(void); } 1761.28Smycroft82 STD { int sys_setpgid(int pid, int pgid); } 1771.58Smycroft83 STD { int sys_setitimer(int which, \ 1781.46Scgd const struct itimerval *itv, \ 1791.46Scgd struct itimerval *oitv); } 1801.29Smycroft84 COMPAT_43 { int sys_wait(void); } owait 1811.52Smrg85 COMPAT_12 { int sys_swapon(const char *name); } oswapon 1821.58Smycroft86 STD { int sys_getitimer(int which, \ 1831.28Smycroft struct itimerval *itv); } 1841.29Smycroft87 COMPAT_43 { int sys_gethostname(char *hostname, u_int len); } \ 1851.29Smycroft ogethostname 1861.29Smycroft88 COMPAT_43 { int sys_sethostname(char *hostname, u_int len); } \ 1871.29Smycroft osethostname 1881.29Smycroft89 COMPAT_43 { int sys_getdtablesize(void); } ogetdtablesize 1891.59Smycroft90 STD { int sys_dup2(int from, int to); } 1901.23Scgd91 UNIMPL getdopt 1911.44Scgd92 STD { int sys_fcntl(int fd, int cmd, ... void *arg); } 1921.64Sthorpej93 STD { int sys_select(int nd, fd_set *in, fd_set *ou, \ 1931.23Scgd fd_set *ex, struct timeval *tv); } 1941.23Scgd94 UNIMPL setdopt 1951.28Smycroft95 STD { int sys_fsync(int fd); } 1961.28Smycroft96 STD { int sys_setpriority(int which, int who, int prio); } 1971.28Smycroft97 STD { int sys_socket(int domain, int type, int protocol); } 1981.46Scgd98 STD { int sys_connect(int s, const struct sockaddr *name, \ 1991.46Scgd int namelen); } 2001.46Scgd99 COMPAT_43 { int sys_accept(int s, caddr_t name, \ 2011.46Scgd int *anamelen); } oaccept 2021.28Smycroft100 STD { int sys_getpriority(int which, int who); } 2031.28Smycroft101 COMPAT_43 { int sys_send(int s, caddr_t buf, int len, \ 2041.29Smycroft int flags); } osend 2051.28Smycroft102 COMPAT_43 { int sys_recv(int s, caddr_t buf, int len, \ 2061.29Smycroft int flags); } orecv 2071.28Smycroft103 STD { int sys_sigreturn(struct sigcontext *sigcntxp); } 2081.46Scgd104 STD { int sys_bind(int s, const struct sockaddr *name, \ 2091.46Scgd int namelen); } 2101.28Smycroft105 STD { int sys_setsockopt(int s, int level, int name, \ 2111.46Scgd const void *val, int valsize); } 2121.28Smycroft106 STD { int sys_listen(int s, int backlog); } 2131.23Scgd107 OBSOL vtimes 2141.28Smycroft108 COMPAT_43 { int sys_sigvec(int signum, struct sigvec *nsv, \ 2151.29Smycroft struct sigvec *osv); } osigvec 2161.29Smycroft109 COMPAT_43 { int sys_sigblock(int mask); } osigblock 2171.29Smycroft110 COMPAT_43 { int sys_sigsetmask(int mask); } osigsetmask 2181.28Smycroft111 STD { int sys_sigsuspend(int mask); } 2191.28Smycroft112 COMPAT_43 { int sys_sigstack(struct sigstack *nss, \ 2201.29Smycroft struct sigstack *oss); } osigstack 2211.28Smycroft113 COMPAT_43 { int sys_recvmsg(int s, struct omsghdr *msg, \ 2221.29Smycroft int flags); } orecvmsg 2231.29Smycroft114 COMPAT_43 { int sys_sendmsg(int s, caddr_t msg, int flags); } \ 2241.29Smycroft osendmsg 2251.1Sglass#ifdef TRACE 2261.28Smycroft115 STD { int sys_vtrace(int request, int value); } 2271.1Sglass#else 2281.23Scgd115 OBSOL vtrace 2291.1Sglass#endif 2301.28Smycroft116 STD { int sys_gettimeofday(struct timeval *tp, \ 2311.23Scgd struct timezone *tzp); } 2321.28Smycroft117 STD { int sys_getrusage(int who, struct rusage *rusage); } 2331.28Smycroft118 STD { int sys_getsockopt(int s, int level, int name, \ 2341.46Scgd void *val, int *avalsize); } 2351.26Scgd119 OBSOL resuba 2361.58Smycroft120 STD { ssize_t sys_readv(int fd, \ 2371.58Smycroft const struct iovec *iovp, int iovcnt); } 2381.46Scgd121 STD { ssize_t sys_writev(int fd, \ 2391.58Smycroft const struct iovec *iovp, int iovcnt); } 2401.46Scgd122 STD { int sys_settimeofday(const struct timeval *tv, \ 2411.46Scgd const struct timezone *tzp); } 2421.46Scgd123 STD { int sys_fchown(int fd, uid_t uid, gid_t gid); } 2431.60Schristos124 STD { int sys_fchmod(int fd, mode_t mode); } 2441.28Smycroft125 COMPAT_43 { int sys_recvfrom(int s, caddr_t buf, size_t len, \ 2451.29Smycroft int flags, caddr_t from, int *fromlenaddr); } \ 2461.29Smycroft orecvfrom 2471.46Scgd126 STD { int sys_setreuid(uid_t ruid, uid_t euid); } 2481.46Scgd127 STD { int sys_setregid(gid_t rgid, gid_t egid); } 2491.46Scgd128 STD { int sys_rename(const char *from, const char *to); } 2501.60Schristos129 COMPAT_43 { int sys_truncate(const char *path, long length); } \ 2511.29Smycroft otruncate 2521.29Smycroft130 COMPAT_43 { int sys_ftruncate(int fd, long length); } oftruncate 2531.28Smycroft131 STD { int sys_flock(int fd, int how); } 2541.60Schristos132 STD { int sys_mkfifo(const char *path, mode_t mode); } 2551.46Scgd133 STD { ssize_t sys_sendto(int s, const void *buf, \ 2561.46Scgd size_t len, int flags, const struct sockaddr *to, \ 2571.46Scgd int tolen); } 2581.28Smycroft134 STD { int sys_shutdown(int s, int how); } 2591.28Smycroft135 STD { int sys_socketpair(int domain, int type, \ 2601.28Smycroft int protocol, int *rsv); } 2611.60Schristos136 STD { int sys_mkdir(const char *path, mode_t mode); } 2621.46Scgd137 STD { int sys_rmdir(const char *path); } 2631.46Scgd138 STD { int sys_utimes(const char *path, \ 2641.46Scgd const struct timeval *tptr); } 2651.23Scgd139 OBSOL 4.2 sigreturn 2661.46Scgd140 STD { int sys_adjtime(const struct timeval *delta, \ 2671.23Scgd struct timeval *olddelta); } 2681.28Smycroft141 COMPAT_43 { int sys_getpeername(int fdes, caddr_t asa, \ 2691.29Smycroft int *alen); } ogetpeername 2701.29Smycroft142 COMPAT_43 { int32_t sys_gethostid(void); } ogethostid 2711.29Smycroft143 COMPAT_43 { int sys_sethostid(int32_t hostid); } osethostid 2721.58Smycroft144 COMPAT_43 { int sys_getrlimit(int which, \ 2731.58Smycroft struct orlimit *rlp); } ogetrlimit 2741.58Smycroft145 COMPAT_43 { int sys_setrlimit(int which, \ 2751.58Smycroft const struct orlimit *rlp); } osetrlimit 2761.29Smycroft146 COMPAT_43 { int sys_killpg(int pgid, int signum); } okillpg 2771.28Smycroft147 STD { int sys_setsid(void); } 2781.46Scgd148 STD { int sys_quotactl(const char *path, int cmd, \ 2791.46Scgd int uid, caddr_t arg); } 2801.29Smycroft149 COMPAT_43 { int sys_quota(void); } oquota 2811.28Smycroft150 COMPAT_43 { int sys_getsockname(int fdec, caddr_t asa, \ 2821.29Smycroft int *alen); } ogetsockname 2831.1Sglass 2841.1Sglass; Syscalls 151-180 inclusive are reserved for vendor-specific 2851.1Sglass; system calls. (This includes various calls added for compatibity 2861.1Sglass; with other Unix variants.) 2871.1Sglass; Some of these calls are now supported by BSD... 2881.23Scgd151 UNIMPL 2891.23Scgd152 UNIMPL 2901.23Scgd153 UNIMPL 2911.23Scgd154 UNIMPL 2921.47Sthorpej#if defined(NFS) || defined(NFSSERVER) 2931.46Scgd155 STD { int sys_nfssvc(int flag, void *argp); } 2941.1Sglass#else 2951.23Scgd155 UNIMPL 2961.1Sglass#endif 2971.28Smycroft156 COMPAT_43 { int sys_getdirentries(int fd, char *buf, \ 2981.29Smycroft u_int count, long *basep); } ogetdirentries 2991.46Scgd157 STD { int sys_statfs(const char *path, \ 3001.46Scgd struct statfs *buf); } 3011.28Smycroft158 STD { int sys_fstatfs(int fd, struct statfs *buf); } 3021.23Scgd159 UNIMPL 3031.23Scgd160 UNIMPL 3041.47Sthorpej#if defined(NFS) || defined(NFSSERVER) 3051.46Scgd161 STD { int sys_getfh(const char *fname, fhandle_t *fhp); } 3061.1Sglass#else 3071.23Scgd161 UNIMPL getfh 3081.1Sglass#endif 3091.29Smycroft162 COMPAT_09 { int sys_getdomainname(char *domainname, int len); } \ 3101.29Smycroft ogetdomainname 3111.29Smycroft163 COMPAT_09 { int sys_setdomainname(char *domainname, int len); } \ 3121.29Smycroft osetdomainname 3131.29Smycroft164 COMPAT_09 { int sys_uname(struct outsname *name); } ouname 3141.71Sperry165 STD { int sys_sysarch(int op, void *parms); } 3151.23Scgd166 UNIMPL 3161.23Scgd167 UNIMPL 3171.23Scgd168 UNIMPL 3181.23Scgd; XXX more generally, never on machines where sizeof(void *) != sizeof(int) 3191.23Scgd#if defined(SYSVSEM) && !defined(alpha) 3201.28Smycroft169 COMPAT_10 { int sys_semsys(int which, int a2, int a3, int a4, \ 3211.29Smycroft int a5); } osemsys 3221.9Scgd#else 3231.23Scgd169 UNIMPL 1.0 semsys 3241.9Scgd#endif 3251.23Scgd; XXX more generally, never on machines where sizeof(void *) != sizeof(int) 3261.23Scgd#if defined(SYSVMSG) && !defined(alpha) 3271.28Smycroft170 COMPAT_10 { int sys_msgsys(int which, int a2, int a3, int a4, \ 3281.29Smycroft int a5, int a6); } omsgsys 3291.9Scgd#else 3301.23Scgd170 UNIMPL 1.0 msgsys 3311.9Scgd#endif 3321.23Scgd; XXX more generally, never on machines where sizeof(void *) != sizeof(int) 3331.23Scgd#if defined(SYSVSHM) && !defined(alpha) 3341.29Smycroft171 COMPAT_10 { int sys_shmsys(int which, int a2, int a3, int a4); } \ 3351.29Smycroft oshmsys 3361.1Sglass#else 3371.23Scgd171 UNIMPL 1.0 shmsys 3381.1Sglass#endif 3391.23Scgd172 UNIMPL 3401.79Sthorpej173 STD { ssize_t sys_pread(int fd, void *buf, \ 3411.80Sthorpej size_t nbyte, int pad, off_t offset); } 3421.79Sthorpej174 STD { ssize_t sys_pwrite(int fd, const void *buf, \ 3431.80Sthorpej size_t nbyte, int pad, off_t offset); } 3441.45Scgd175 STD { int sys_ntp_gettime(struct ntptimeval *ntvp); } 3451.38Sthorpej176 STD { int sys_ntp_adjtime(struct timex *tp); } 3461.23Scgd177 UNIMPL 3471.23Scgd178 UNIMPL 3481.23Scgd179 UNIMPL 3491.23Scgd180 UNIMPL 3501.1Sglass 3511.1Sglass; Syscalls 180-199 are used by/reserved for BSD 3521.28Smycroft181 STD { int sys_setgid(gid_t gid); } 3531.28Smycroft182 STD { int sys_setegid(gid_t egid); } 3541.28Smycroft183 STD { int sys_seteuid(uid_t euid); } 3551.17Scgd#ifdef LFS 3561.23Scgd184 STD { int lfs_bmapv(fsid_t *fsidp, \ 3571.23Scgd struct block_info *blkiov, int blkcnt); } 3581.23Scgd185 STD { int lfs_markv(fsid_t *fsidp, \ 3591.23Scgd struct block_info *blkiov, int blkcnt); } 3601.23Scgd186 STD { int lfs_segclean(fsid_t *fsidp, u_long segment); } 3611.23Scgd187 STD { int lfs_segwait(fsid_t *fsidp, struct timeval *tv); } 3621.23Scgd#else 3631.23Scgd184 UNIMPL 3641.23Scgd185 UNIMPL 3651.23Scgd186 UNIMPL 3661.23Scgd187 UNIMPL 3671.23Scgd#endif 3681.60Schristos188 COMPAT_12 { int sys_stat(const char *path, struct stat12 *ub); } \ 3691.60Schristos stat12 3701.60Schristos189 COMPAT_12 { int sys_fstat(int fd, struct stat12 *sb); } fstat12 3711.60Schristos190 COMPAT_12 { int sys_lstat(const char *path, \ 3721.60Schristos struct stat12 *ub); } lstat12 3731.46Scgd191 STD { long sys_pathconf(const char *path, int name); } 3741.44Scgd192 STD { long sys_fpathconf(int fd, int name); } 3751.23Scgd193 UNIMPL 3761.58Smycroft194 STD { int sys_getrlimit(int which, \ 3771.58Smycroft struct rlimit *rlp); } 3781.58Smycroft195 STD { int sys_setrlimit(int which, \ 3791.46Scgd const struct rlimit *rlp); } 3801.57Sfvdl196 COMPAT_12 { int sys_getdirentries(int fd, char *buf, \ 3811.28Smycroft u_int count, long *basep); } 3821.61Schristos197 STD { void *sys_mmap(void *addr, size_t len, int prot, \ 3831.23Scgd int flags, int fd, long pad, off_t pos); } 3841.43Scgd198 INDIR { quad_t sys___syscall(quad_t num, ...); } 3851.28Smycroft199 STD { off_t sys_lseek(int fd, int pad, off_t offset, \ 3861.23Scgd int whence); } 3871.46Scgd200 STD { int sys_truncate(const char *path, int pad, \ 3881.46Scgd off_t length); } 3891.28Smycroft201 STD { int sys_ftruncate(int fd, int pad, off_t length); } 3901.28Smycroft202 STD { int sys___sysctl(int *name, u_int namelen, \ 3911.28Smycroft void *old, size_t *oldlenp, void *new, \ 3921.28Smycroft size_t newlen); } 3931.75Skleink203 STD { int sys_mlock(const void *addr, size_t len); } 3941.75Skleink204 STD { int sys_munlock(const void *addr, size_t len); } 3951.46Scgd205 STD { int sys_undelete(const char *path); } 3961.46Scgd206 STD { int sys_futimes(int fd, \ 3971.46Scgd const struct timeval *tptr); } 3981.34Smrg207 STD { int sys_getpgid(pid_t pid); } 3991.34Smrg208 STD { int sys_reboot(int opt, char *bootstr); } 4001.36Smycroft209 STD { int sys_poll(struct pollfd *fds, u_int nfds, \ 4011.35Smycroft int timeout); } 4021.11Scgd; 4031.11Scgd; Syscalls 210-219 are reserved for dynamically loaded syscalls 4041.11Scgd; 4051.11Scgd#ifdef LKM 4061.28Smycroft210 NODEF { int sys_lkmnosys(void); } 4071.28Smycroft211 NODEF { int sys_lkmnosys(void); } 4081.28Smycroft212 NODEF { int sys_lkmnosys(void); } 4091.28Smycroft213 NODEF { int sys_lkmnosys(void); } 4101.28Smycroft214 NODEF { int sys_lkmnosys(void); } 4111.28Smycroft215 NODEF { int sys_lkmnosys(void); } 4121.28Smycroft216 NODEF { int sys_lkmnosys(void); } 4131.28Smycroft217 NODEF { int sys_lkmnosys(void); } 4141.28Smycroft218 NODEF { int sys_lkmnosys(void); } 4151.28Smycroft219 NODEF { int sys_lkmnosys(void); } 4161.11Scgd#else /* !LKM */ 4171.23Scgd210 UNIMPL 4181.23Scgd211 UNIMPL 4191.23Scgd212 UNIMPL 4201.23Scgd213 UNIMPL 4211.23Scgd214 UNIMPL 4221.23Scgd215 UNIMPL 4231.23Scgd216 UNIMPL 4241.23Scgd217 UNIMPL 4251.23Scgd218 UNIMPL 4261.23Scgd219 UNIMPL 4271.6Scgd#endif /* !LKM */ 4281.49Skleink; System calls 220-300 are reserved for use by NetBSD 4291.23Scgd#ifdef SYSVSEM 4301.28Smycroft220 STD { int sys___semctl(int semid, int semnum, int cmd, \ 4311.23Scgd union semun *arg); } 4321.28Smycroft221 STD { int sys_semget(key_t key, int nsems, int semflg); } 4331.28Smycroft222 STD { int sys_semop(int semid, struct sembuf *sops, \ 4341.74Skleink size_t nsops); } 4351.28Smycroft223 STD { int sys_semconfig(int flag); } 4361.23Scgd#else 4371.23Scgd220 UNIMPL semctl 4381.23Scgd221 UNIMPL semget 4391.23Scgd222 UNIMPL semop 4401.23Scgd223 UNIMPL semconfig 4411.23Scgd#endif 4421.23Scgd#ifdef SYSVMSG 4431.28Smycroft224 STD { int sys_msgctl(int msqid, int cmd, \ 4441.23Scgd struct msqid_ds *buf); } 4451.28Smycroft225 STD { int sys_msgget(key_t key, int msgflg); } 4461.74Skleink226 STD { int sys_msgsnd(int msqid, const void *msgp, \ 4471.74Skleink size_t msgsz, int msgflg); } 4481.74Skleink227 STD { ssize_t sys_msgrcv(int msqid, void *msgp, \ 4491.74Skleink size_t msgsz, long msgtyp, int msgflg); } 4501.23Scgd#else 4511.23Scgd224 UNIMPL msgctl 4521.23Scgd225 UNIMPL msgget 4531.23Scgd226 UNIMPL msgsnd 4541.23Scgd227 UNIMPL msgrcv 4551.23Scgd#endif 4561.23Scgd#ifdef SYSVSHM 4571.74Skleink228 STD { void *sys_shmat(int shmid, const void *shmaddr, \ 4581.44Scgd int shmflg); } 4591.28Smycroft229 STD { int sys_shmctl(int shmid, int cmd, \ 4601.23Scgd struct shmid_ds *buf); } 4611.74Skleink230 STD { int sys_shmdt(const void *shmaddr); } 4621.74Skleink231 STD { int sys_shmget(key_t key, size_t size, int shmflg); } 4631.23Scgd#else 4641.23Scgd228 UNIMPL shmat 4651.23Scgd229 UNIMPL shmctl 4661.23Scgd230 UNIMPL shmdt 4671.23Scgd231 UNIMPL shmget 4681.23Scgd#endif 4691.39Sjtc232 STD { int sys_clock_gettime(clockid_t clock_id, \ 4701.49Skleink struct timespec *tp); } 4711.39Sjtc233 STD { int sys_clock_settime(clockid_t clock_id, \ 4721.49Skleink const struct timespec *tp); } 4731.39Sjtc234 STD { int sys_clock_getres(clockid_t clock_id, \ 4741.49Skleink struct timespec *tp); } 4751.39Sjtc235 UNIMPL timer_create 4761.39Sjtc236 UNIMPL timer_delete 4771.39Sjtc237 UNIMPL timer_settime 4781.39Sjtc238 UNIMPL timer_gettime 4791.39Sjtc239 UNIMPL timer_getoverrun 4801.54Sveego; 4811.54Sveego; Syscalls 240-269 are reserved for other IEEE Std1003.1b syscalls 4821.54Sveego; 4831.48Sjtc240 STD { int sys_nanosleep(const struct timespec *rqtp, \ 4841.49Skleink struct timespec *rmtp); } 4851.76Skleink241 STD { int sys_fdatasync(int fd); } 4861.49Skleink242 UNIMPL 4871.49Skleink243 UNIMPL 4881.49Skleink244 UNIMPL 4891.49Skleink245 UNIMPL 4901.49Skleink246 UNIMPL 4911.49Skleink247 UNIMPL 4921.49Skleink248 UNIMPL 4931.49Skleink249 UNIMPL 4941.55Sveego250 UNIMPL 4951.49Skleink251 UNIMPL 4961.49Skleink252 UNIMPL 4971.49Skleink253 UNIMPL 4981.49Skleink254 UNIMPL 4991.49Skleink255 UNIMPL 5001.49Skleink256 UNIMPL 5011.49Skleink257 UNIMPL 5021.49Skleink258 UNIMPL 5031.49Skleink259 UNIMPL 5041.49Skleink260 UNIMPL 5051.49Skleink261 UNIMPL 5061.49Skleink262 UNIMPL 5071.49Skleink263 UNIMPL 5081.49Skleink264 UNIMPL 5091.49Skleink265 UNIMPL 5101.49Skleink266 UNIMPL 5111.49Skleink267 UNIMPL 5121.49Skleink268 UNIMPL 5131.49Skleink269 UNIMPL 5141.69Skleink270 STD { int sys___posix_rename(const char *from, \ 5151.49Skleink const char *to); } 5161.64Sthorpej271 STD { int sys_swapctl(int cmd, const void *arg, int misc); } 5171.57Sfvdl272 STD { int sys_getdents(int fd, char *buf, size_t count); } 5181.61Schristos273 STD { int sys_minherit(void *addr, size_t len, \ 5191.54Sveego int inherit); } 5201.60Schristos274 STD { int sys_lchmod(const char *path, mode_t mode); } 5211.56Senami275 STD { int sys_lchown(const char *path, uid_t uid, \ 5221.56Senami gid_t gid); } 5231.56Senami276 STD { int sys_lutimes(const char *path, \ 5241.56Senami const struct timeval *tptr); } 5251.63Sthorpej277 STD { int sys___msync13(void *addr, size_t len, int flags); } 5261.63Sthorpej278 STD { int sys___stat13(const char *path, struct stat *ub); } 5271.63Sthorpej279 STD { int sys___fstat13(int fd, struct stat *sb); } 5281.63Sthorpej280 STD { int sys___lstat13(const char *path, struct stat *ub); } 5291.66Skleink281 STD { int sys___sigaltstack14(const struct sigaltstack \ 5301.66Skleink *nss, struct sigaltstack *oss); } 5311.67Sthorpej282 STD { int sys___vfork14(void); } 5321.69Skleink283 STD { int sys___posix_chown(const char *path, uid_t uid, \ 5331.69Skleink gid_t gid); } 5341.69Skleink284 STD { int sys___posix_fchown(int fd, uid_t uid, \ 5351.69Skleink gid_t gid); } 5361.69Skleink285 STD { int sys___posix_lchown(const char *path, uid_t uid, \ 5371.69Skleink gid_t gid); } 5381.68Sthorpej286 STD { pid_t sys_getsid(pid_t pid); } 5391.73Schristos287 UNIMPL 5401.73Schristos#ifdef KTRACE 5411.73Schristos288 STD { int sys_fktrace(const int fd, int ops, \ 5421.73Schristos int facs, int pid); } 5431.73Schristos#else 5441.73Schristos288 UNIMPL 5451.73Schristos#endif 5461.79Sthorpej289 STD { ssize_t sys_preadv(int fd, \ 5471.79Sthorpej const struct iovec *iovp, int iovcnt, \ 5481.80Sthorpej int pad, off_t offset); } 5491.79Sthorpej290 STD { ssize_t sys_pwritev(int fd, \ 5501.79Sthorpej const struct iovec *iovp, int iovcnt, \ 5511.80Sthorpej int pad, off_t offset); } 552