The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kern/syscalls.master

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1  $FreeBSD: releng/9.2/sys/kern/syscalls.master 251051 2013-05-28 05:51:00Z kib $
    2 ;       from: @(#)syscalls.master       8.2 (Berkeley) 1/13/94
    3 ;
    4 ; System call name/number master file.
    5 ; Processed to created init_sysent.c, syscalls.c and syscall.h.
    6 
    7 ; Columns: number audit type name alt{name,tag,rtyp}/comments
    8 ;       number  system call number, must be in order
    9 ;       audit   the audit event associated with the system call
   10 ;               A value of AUE_NULL means no auditing, but it also means that
   11 ;               there is no audit event for the call at this time. For the
   12 ;               case where the event exists, but we don't want auditing, the
   13 ;               event should be #defined to AUE_NULL in audit_kevents.h.
   14 ;       type    one of STD, OBSOL, UNIMPL, COMPAT, COMPAT4, COMPAT6,
   15 ;               COMPAT7, NODEF, NOARGS, NOPROTO, NOSTD
   16 ;               The COMPAT* options may be combined with one or more NO*
   17 ;               options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
   18 ;       name    psuedo-prototype of syscall routine
   19 ;               If one of the following alts is different, then all appear:
   20 ;       altname name of system call if different
   21 ;       alttag  name of args struct tag if different from [o]`name'"_args"
   22 ;       altrtyp return type if not int (bogus - syscalls always return int)
   23 ;               for UNIMPL/OBSOL, name continues with comments
   24 
   25 ; types:
   26 ;       STD     always included
   27 ;       COMPAT  included on COMPAT #ifdef
   28 ;       COMPAT4 included on COMPAT4 #ifdef (FreeBSD 4 compat)
   29 ;       COMPAT6 included on COMPAT6 #ifdef (FreeBSD 6 compat)
   30 ;       COMPAT7 included on COMPAT7 #ifdef (FreeBSD 7 compat)
   31 ;       OBSOL   obsolete, not included in system, only specifies name
   32 ;       UNIMPL  not implemented, placeholder only
   33 ;       NOSTD   implemented but as a lkm that can be statically
   34 ;               compiled in; sysent entry will be filled with lkmressys
   35 ;               so the SYSCALL_MODULE macro works
   36 ;       NOARGS  same as STD except do not create structure in sys/sysproto.h
   37 ;       NODEF   same as STD except only have the entry in the syscall table
   38 ;               added.  Meaning - do not create structure or function
   39 ;               prototype in sys/sysproto.h
   40 ;       NOPROTO same as STD except do not create structure or
   41 ;               function prototype in sys/sysproto.h.  Does add a
   42 ;               definition to syscall.h besides adding a sysent.
   43 ;       NOTSTATIC syscall is loadable
   44 ;
   45 ; Please copy any additions and changes to the following compatability tables:
   46 ; sys/compat/freebsd32/syscalls.master
   47 
   48 ; #ifdef's, etc. may be included, and are copied to the output files.
   49 
   50 #include <sys/param.h>
   51 #include <sys/sysent.h>
   52 #include <sys/sysproto.h>
   53 
   54 ; Reserved/unimplemented system calls in the range 0-150 inclusive
   55 ; are reserved for use in future Berkeley releases.
   56 ; Additional system calls implemented in vendor and other
   57 ; redistributions should be placed in the reserved range at the end
   58 ; of the current calls.
   59 
   60 0       AUE_NULL        STD     { int nosys(void); } syscall nosys_args int
   61 1       AUE_EXIT        STD     { void sys_exit(int rval); } exit \
   62                                     sys_exit_args void
   63 2       AUE_FORK        STD     { int fork(void); }
   64 3       AUE_NULL        STD     { ssize_t read(int fd, void *buf, \
   65                                     size_t nbyte); }
   66 4       AUE_NULL        STD     { ssize_t write(int fd, const void *buf, \
   67                                     size_t nbyte); }
   68 5       AUE_OPEN_RWTC   STD     { int open(char *path, int flags, int mode); }
   69 ; XXX should be         { int open(const char *path, int flags, ...); }
   70 ; but we're not ready for `const' or varargs.
   71 ; XXX man page says `mode_t mode'.
   72 6       AUE_CLOSE       STD     { int close(int fd); }
   73 7       AUE_WAIT4       STD     { int wait4(int pid, int *status, \
   74                                     int options, struct rusage *rusage); }
   75 8       AUE_CREAT       COMPAT  { int creat(char *path, int mode); }
   76 9       AUE_LINK        STD     { int link(char *path, char *link); }
   77 10      AUE_UNLINK      STD     { int unlink(char *path); }
   78 11      AUE_NULL        OBSOL   execv
   79 12      AUE_CHDIR       STD     { int chdir(char *path); }
   80 13      AUE_FCHDIR      STD     { int fchdir(int fd); }
   81 14      AUE_MKNOD       STD     { int mknod(char *path, int mode, int dev); }
   82 15      AUE_CHMOD       STD     { int chmod(char *path, int mode); }
   83 16      AUE_CHOWN       STD     { int chown(char *path, int uid, int gid); }
   84 17      AUE_NULL        STD     { int obreak(char *nsize); } break \
   85                                     obreak_args int
   86 18      AUE_GETFSSTAT   COMPAT4 { int getfsstat(struct ostatfs *buf, \
   87                                     long bufsize, int flags); }
   88 19      AUE_LSEEK       COMPAT  { long lseek(int fd, long offset, \
   89                                     int whence); }
   90 20      AUE_GETPID      STD     { pid_t getpid(void); }
   91 21      AUE_MOUNT       STD     { int mount(char *type, char *path, \
   92                                     int flags, caddr_t data); }
   93 ; XXX `path' should have type `const char *' but we're not ready for that.
   94 22      AUE_UMOUNT      STD     { int unmount(char *path, int flags); }
   95 23      AUE_SETUID      STD     { int setuid(uid_t uid); }
   96 24      AUE_GETUID      STD     { uid_t getuid(void); }
   97 25      AUE_GETEUID     STD     { uid_t geteuid(void); }
   98 26      AUE_PTRACE      STD     { int ptrace(int req, pid_t pid, \
   99                                     caddr_t addr, int data); }
  100 27      AUE_RECVMSG     STD     { int recvmsg(int s, struct msghdr *msg, \
  101                                     int flags); }
  102 28      AUE_SENDMSG     STD     { int sendmsg(int s, struct msghdr *msg, \
  103                                     int flags); }
  104 29      AUE_RECVFROM    STD     { int recvfrom(int s, caddr_t buf, \
  105                                     size_t len, int flags, \
  106                                     struct sockaddr * __restrict from, \
  107                                     __socklen_t * __restrict fromlenaddr); }
  108 30      AUE_ACCEPT      STD     { int accept(int s, \
  109                                     struct sockaddr * __restrict name, \
  110                                     __socklen_t * __restrict anamelen); }
  111 31      AUE_GETPEERNAME STD     { int getpeername(int fdes, \
  112                                     struct sockaddr * __restrict asa, \
  113                                     __socklen_t * __restrict alen); }
  114 32      AUE_GETSOCKNAME STD     { int getsockname(int fdes, \
  115                                     struct sockaddr * __restrict asa, \
  116                                     __socklen_t * __restrict alen); }
  117 33      AUE_ACCESS      STD     { int access(char *path, int flags); }
  118 34      AUE_CHFLAGS     STD     { int chflags(char *path, int flags); }
  119 35      AUE_FCHFLAGS    STD     { int fchflags(int fd, int flags); }
  120 36      AUE_SYNC        STD     { int sync(void); }
  121 37      AUE_KILL        STD     { int kill(int pid, int signum); }
  122 38      AUE_STAT        COMPAT  { int stat(char *path, struct ostat *ub); }
  123 39      AUE_GETPPID     STD     { pid_t getppid(void); }
  124 40      AUE_LSTAT       COMPAT  { int lstat(char *path, struct ostat *ub); }
  125 41      AUE_DUP         STD     { int dup(u_int fd); }
  126 42      AUE_PIPE        STD     { int pipe(void); }
  127 43      AUE_GETEGID     STD     { gid_t getegid(void); }
  128 44      AUE_PROFILE     STD     { int profil(caddr_t samples, size_t size, \
  129                                     size_t offset, u_int scale); }
  130 45      AUE_KTRACE      STD     { int ktrace(const char *fname, int ops, \
  131                                     int facs, int pid); }
  132 46      AUE_SIGACTION   COMPAT  { int sigaction(int signum, \
  133                                     struct osigaction *nsa, \
  134                                     struct osigaction *osa); }
  135 47      AUE_GETGID      STD     { gid_t getgid(void); }
  136 48      AUE_SIGPROCMASK COMPAT  { int sigprocmask(int how, osigset_t mask); }
  137 ; XXX note nonstandard (bogus) calling convention - the libc stub passes
  138 ; us the mask, not a pointer to it, and we return the old mask as the
  139 ; (int) return value.
  140 49      AUE_GETLOGIN    STD     { int getlogin(char *namebuf, u_int \
  141                                     namelen); }
  142 50      AUE_SETLOGIN    STD     { int setlogin(char *namebuf); }
  143 51      AUE_ACCT        STD     { int acct(char *path); }
  144 52      AUE_SIGPENDING  COMPAT  { int sigpending(void); }
  145 53      AUE_SIGALTSTACK STD     { int sigaltstack(stack_t *ss, \
  146                                     stack_t *oss); }
  147 54      AUE_IOCTL       STD     { int ioctl(int fd, u_long com, \
  148                                     caddr_t data); }
  149 55      AUE_REBOOT      STD     { int reboot(int opt); }
  150 56      AUE_REVOKE      STD     { int revoke(char *path); }
  151 57      AUE_SYMLINK     STD     { int symlink(char *path, char *link); }
  152 58      AUE_READLINK    STD     { ssize_t readlink(char *path, char *buf, \
  153                                     size_t count); }
  154 59      AUE_EXECVE      STD     { int execve(char *fname, char **argv, \
  155                                     char **envv); }
  156 60      AUE_UMASK       STD     { int umask(int newmask); } umask umask_args \
  157                                     int
  158 61      AUE_CHROOT      STD     { int chroot(char *path); }
  159 62      AUE_FSTAT       COMPAT  { int fstat(int fd, struct ostat *sb); }
  160 63      AUE_NULL        COMPAT  { int getkerninfo(int op, char *where, \
  161                                     size_t *size, int arg); } getkerninfo \
  162                                     getkerninfo_args int
  163 64      AUE_NULL        COMPAT  { int getpagesize(void); } getpagesize \
  164                                     getpagesize_args int
  165 65      AUE_MSYNC       STD     { int msync(void *addr, size_t len, \
  166                                     int flags); }
  167 66      AUE_VFORK       STD     { int vfork(void); }
  168 67      AUE_NULL        OBSOL   vread
  169 68      AUE_NULL        OBSOL   vwrite
  170 69      AUE_SBRK        STD     { int sbrk(int incr); }
  171 70      AUE_SSTK        STD     { int sstk(int incr); }
  172 71      AUE_MMAP        COMPAT  { int mmap(void *addr, int len, int prot, \
  173                                     int flags, int fd, long pos); }
  174 72      AUE_O_VADVISE   STD     { int ovadvise(int anom); } vadvise \
  175                                     ovadvise_args int
  176 73      AUE_MUNMAP      STD     { int munmap(void *addr, size_t len); }
  177 74      AUE_MPROTECT    STD     { int mprotect(const void *addr, size_t len, \
  178                                     int prot); }
  179 75      AUE_MADVISE     STD     { int madvise(void *addr, size_t len, \
  180                                     int behav); }
  181 76      AUE_NULL        OBSOL   vhangup
  182 77      AUE_NULL        OBSOL   vlimit
  183 78      AUE_MINCORE     STD     { int mincore(const void *addr, size_t len, \
  184                                     char *vec); }
  185 79      AUE_GETGROUPS   STD     { int getgroups(u_int gidsetsize, \
  186                                     gid_t *gidset); }
  187 80      AUE_SETGROUPS   STD     { int setgroups(u_int gidsetsize, \
  188                                     gid_t *gidset); }
  189 81      AUE_GETPGRP     STD     { int getpgrp(void); }
  190 82      AUE_SETPGRP     STD     { int setpgid(int pid, int pgid); }
  191 83      AUE_SETITIMER   STD     { int setitimer(u_int which, struct \
  192                                     itimerval *itv, struct itimerval *oitv); }
  193 84      AUE_WAIT4       COMPAT  { int wait(void); }
  194 85      AUE_SWAPON      STD     { int swapon(char *name); }
  195 86      AUE_GETITIMER   STD     { int getitimer(u_int which, \
  196                                     struct itimerval *itv); }
  197 87      AUE_SYSCTL      COMPAT  { int gethostname(char *hostname, \
  198                                     u_int len); } gethostname \
  199                                     gethostname_args int
  200 88      AUE_SYSCTL      COMPAT  { int sethostname(char *hostname, \
  201                                     u_int len); } sethostname \
  202                                     sethostname_args int
  203 89      AUE_GETDTABLESIZE       STD     { int getdtablesize(void); }
  204 90      AUE_DUP2        STD     { int dup2(u_int from, u_int to); }
  205 91      AUE_NULL        UNIMPL  getdopt
  206 92      AUE_FCNTL       STD     { int fcntl(int fd, int cmd, long arg); }
  207 ; XXX should be { int fcntl(int fd, int cmd, ...); }
  208 ; but we're not ready for varargs.
  209 93      AUE_SELECT      STD     { int select(int nd, fd_set *in, fd_set *ou, \
  210                                     fd_set *ex, struct timeval *tv); }
  211 94      AUE_NULL        UNIMPL  setdopt
  212 95      AUE_FSYNC       STD     { int fsync(int fd); }
  213 96      AUE_SETPRIORITY STD     { int setpriority(int which, int who, \
  214                                     int prio); }
  215 97      AUE_SOCKET      STD     { int socket(int domain, int type, \
  216                                     int protocol); }
  217 98      AUE_CONNECT     STD     { int connect(int s, caddr_t name, \
  218                                     int namelen); }
  219 99      AUE_ACCEPT      COMPAT|NOARGS { int accept(int s, caddr_t name, \
  220                                     int *anamelen); } accept accept_args int
  221 100     AUE_GETPRIORITY STD     { int getpriority(int which, int who); }
  222 101     AUE_SEND        COMPAT  { int send(int s, caddr_t buf, int len, \
  223                                     int flags); }
  224 102     AUE_RECV        COMPAT  { int recv(int s, caddr_t buf, int len, \
  225                                     int flags); }
  226 103     AUE_SIGRETURN   COMPAT  { int sigreturn( \
  227                                     struct osigcontext *sigcntxp); }
  228 104     AUE_BIND        STD     { int bind(int s, caddr_t name, \
  229                                     int namelen); }
  230 105     AUE_SETSOCKOPT  STD     { int setsockopt(int s, int level, int name, \
  231                                     caddr_t val, int valsize); }
  232 106     AUE_LISTEN      STD     { int listen(int s, int backlog); }
  233 107     AUE_NULL        OBSOL   vtimes
  234 108     AUE_NULL        COMPAT  { int sigvec(int signum, struct sigvec *nsv, \
  235                                     struct sigvec *osv); }
  236 109     AUE_NULL        COMPAT  { int sigblock(int mask); }
  237 110     AUE_NULL        COMPAT  { int sigsetmask(int mask); }
  238 111     AUE_NULL        COMPAT  { int sigsuspend(osigset_t mask); }
  239 ; XXX note nonstandard (bogus) calling convention - the libc stub passes
  240 ; us the mask, not a pointer to it.
  241 112     AUE_NULL        COMPAT  { int sigstack(struct sigstack *nss, \
  242                                     struct sigstack *oss); }
  243 113     AUE_RECVMSG     COMPAT  { int recvmsg(int s, struct omsghdr *msg, \
  244                                     int flags); }
  245 114     AUE_SENDMSG     COMPAT  { int sendmsg(int s, caddr_t msg, \
  246                                     int flags); }
  247 115     AUE_NULL        OBSOL   vtrace
  248 116     AUE_GETTIMEOFDAY        STD     { int gettimeofday(struct timeval *tp, \
  249                                     struct timezone *tzp); }
  250 117     AUE_GETRUSAGE   STD     { int getrusage(int who, \
  251                                     struct rusage *rusage); }
  252 118     AUE_GETSOCKOPT  STD     { int getsockopt(int s, int level, int name, \
  253                                     caddr_t val, int *avalsize); }
  254 119     AUE_NULL        UNIMPL  resuba (BSD/OS 2.x)
  255 120     AUE_READV       STD     { int readv(int fd, struct iovec *iovp, \
  256                                     u_int iovcnt); }
  257 121     AUE_WRITEV      STD     { int writev(int fd, struct iovec *iovp, \
  258                                     u_int iovcnt); }
  259 122     AUE_SETTIMEOFDAY        STD     { int settimeofday(struct timeval *tv, \
  260                                     struct timezone *tzp); }
  261 123     AUE_FCHOWN      STD     { int fchown(int fd, int uid, int gid); }
  262 124     AUE_FCHMOD      STD     { int fchmod(int fd, int mode); }
  263 125     AUE_RECVFROM    COMPAT|NOARGS { int recvfrom(int s, caddr_t buf, \
  264                                     size_t len, int flags, caddr_t from, int \
  265                                     *fromlenaddr); } recvfrom recvfrom_args \
  266                                     int
  267 126     AUE_SETREUID    STD     { int setreuid(int ruid, int euid); }
  268 127     AUE_SETREGID    STD     { int setregid(int rgid, int egid); }
  269 128     AUE_RENAME      STD     { int rename(char *from, char *to); }
  270 129     AUE_TRUNCATE    COMPAT  { int truncate(char *path, long length); }
  271 130     AUE_FTRUNCATE   COMPAT  { int ftruncate(int fd, long length); }
  272 131     AUE_FLOCK       STD     { int flock(int fd, int how); }
  273 132     AUE_MKFIFO      STD     { int mkfifo(char *path, int mode); }
  274 133     AUE_SENDTO      STD     { int sendto(int s, caddr_t buf, size_t len, \
  275                                     int flags, caddr_t to, int tolen); }
  276 134     AUE_SHUTDOWN    STD     { int shutdown(int s, int how); }
  277 135     AUE_SOCKETPAIR  STD     { int socketpair(int domain, int type, \
  278                                     int protocol, int *rsv); }
  279 136     AUE_MKDIR       STD     { int mkdir(char *path, int mode); }
  280 137     AUE_RMDIR       STD     { int rmdir(char *path); }
  281 138     AUE_UTIMES      STD     { int utimes(char *path, \
  282                                     struct timeval *tptr); }
  283 139     AUE_NULL        OBSOL   4.2 sigreturn
  284 140     AUE_ADJTIME     STD     { int adjtime(struct timeval *delta, \
  285                                     struct timeval *olddelta); }
  286 141     AUE_GETPEERNAME COMPAT  { int getpeername(int fdes, caddr_t asa, \
  287                                     int *alen); }
  288 142     AUE_SYSCTL      COMPAT  { long gethostid(void); }
  289 143     AUE_SYSCTL      COMPAT  { int sethostid(long hostid); }
  290 144     AUE_GETRLIMIT   COMPAT  { int getrlimit(u_int which, struct \
  291                                     orlimit *rlp); }
  292 145     AUE_SETRLIMIT   COMPAT  { int setrlimit(u_int which, \
  293                                     struct orlimit *rlp); }
  294 146     AUE_KILLPG      COMPAT  { int killpg(int pgid, int signum); }
  295 147     AUE_SETSID      STD     { int setsid(void); }
  296 148     AUE_QUOTACTL    STD     { int quotactl(char *path, int cmd, int uid, \
  297                                     caddr_t arg); }
  298 149     AUE_O_QUOTA     COMPAT  { int quota(void); }
  299 150     AUE_GETSOCKNAME COMPAT|NOARGS { int getsockname(int fdec, \
  300                                     caddr_t asa, int *alen); } getsockname \
  301                                     getsockname_args int
  302 
  303 ; Syscalls 151-180 inclusive are reserved for vendor-specific
  304 ; system calls.  (This includes various calls added for compatibity
  305 ; with other Unix variants.)
  306 ; Some of these calls are now supported by BSD...
  307 151     AUE_NULL        UNIMPL  sem_lock (BSD/OS 2.x)
  308 152     AUE_NULL        UNIMPL  sem_wakeup (BSD/OS 2.x)
  309 153     AUE_NULL        UNIMPL  asyncdaemon (BSD/OS 2.x)
  310 ; 154 is initialised by the NLM code, if present.
  311 154     AUE_NULL        NOSTD   { int nlm_syscall(int debug_level, int grace_period, int addr_count, char **addrs); }
  312 ; 155 is initialized by the NFS code, if present.
  313 155     AUE_NFS_SVC     NOSTD   { int nfssvc(int flag, caddr_t argp); }
  314 156     AUE_GETDIRENTRIES       COMPAT  { int getdirentries(int fd, char *buf, \
  315                                     u_int count, long *basep); }
  316 157     AUE_STATFS      COMPAT4 { int statfs(char *path, \
  317                                     struct ostatfs *buf); }
  318 158     AUE_FSTATFS     COMPAT4 { int fstatfs(int fd, \
  319                                     struct ostatfs *buf); }
  320 159     AUE_NULL        UNIMPL  nosys
  321 160     AUE_LGETFH      STD     { int lgetfh(char *fname, \
  322                                     struct fhandle *fhp); }
  323 161     AUE_NFS_GETFH   STD     { int getfh(char *fname, \
  324                                     struct fhandle *fhp); }
  325 162     AUE_SYSCTL      COMPAT4 { int getdomainname(char *domainname, \
  326                                     int len); }
  327 163     AUE_SYSCTL      COMPAT4 { int setdomainname(char *domainname, \
  328                                     int len); }
  329 164     AUE_NULL        COMPAT4 { int uname(struct utsname *name); }
  330 165     AUE_SYSARCH     STD     { int sysarch(int op, char *parms); }
  331 166     AUE_RTPRIO      STD     { int rtprio(int function, pid_t pid, \
  332                                     struct rtprio *rtp); }
  333 167     AUE_NULL        UNIMPL  nosys
  334 168     AUE_NULL        UNIMPL  nosys
  335 169     AUE_SEMSYS      NOSTD   { int semsys(int which, int a2, int a3, \
  336                                     int a4, int a5); }
  337 ; XXX should be { int semsys(int which, ...); }
  338 170     AUE_MSGSYS      NOSTD   { int msgsys(int which, int a2, int a3, \
  339                                     int a4, int a5, int a6); }
  340 ; XXX should be { int msgsys(int which, ...); }
  341 171     AUE_SHMSYS      NOSTD   { int shmsys(int which, int a2, int a3, \
  342                                     int a4); }
  343 ; XXX should be { int shmsys(int which, ...); }
  344 172     AUE_NULL        UNIMPL  nosys
  345 173     AUE_PREAD       STD     { ssize_t freebsd6_pread(int fd, void *buf, \
  346                                     size_t nbyte, int pad, off_t offset); }
  347 174     AUE_PWRITE      STD     { ssize_t freebsd6_pwrite(int fd, \
  348                                     const void *buf, \
  349                                     size_t nbyte, int pad, off_t offset); }
  350 175     AUE_NULL        STD     { int setfib(int fibnum); }
  351 176     AUE_NTP_ADJTIME STD     { int ntp_adjtime(struct timex *tp); }
  352 177     AUE_NULL        UNIMPL  sfork (BSD/OS 2.x)
  353 178     AUE_NULL        UNIMPL  getdescriptor (BSD/OS 2.x)
  354 179     AUE_NULL        UNIMPL  setdescriptor (BSD/OS 2.x)
  355 180     AUE_NULL        UNIMPL  nosys
  356 
  357 ; Syscalls 181-199 are used by/reserved for BSD
  358 181     AUE_SETGID      STD     { int setgid(gid_t gid); }
  359 182     AUE_SETEGID     STD     { int setegid(gid_t egid); }
  360 183     AUE_SETEUID     STD     { int seteuid(uid_t euid); }
  361 184     AUE_NULL        UNIMPL  lfs_bmapv
  362 185     AUE_NULL        UNIMPL  lfs_markv
  363 186     AUE_NULL        UNIMPL  lfs_segclean
  364 187     AUE_NULL        UNIMPL  lfs_segwait
  365 188     AUE_STAT        STD     { int stat(char *path, struct stat *ub); }
  366 189     AUE_FSTAT       STD     { int fstat(int fd, struct stat *sb); }
  367 190     AUE_LSTAT       STD     { int lstat(char *path, struct stat *ub); }
  368 191     AUE_PATHCONF    STD     { int pathconf(char *path, int name); }
  369 192     AUE_FPATHCONF   STD     { int fpathconf(int fd, int name); }
  370 193     AUE_NULL        UNIMPL  nosys
  371 194     AUE_GETRLIMIT   STD     { int getrlimit(u_int which, \
  372                                     struct rlimit *rlp); } getrlimit \
  373                                     __getrlimit_args int
  374 195     AUE_SETRLIMIT   STD     { int setrlimit(u_int which, \
  375                                     struct rlimit *rlp); } setrlimit \
  376                                     __setrlimit_args int
  377 196     AUE_GETDIRENTRIES       STD     { int getdirentries(int fd, char *buf, \
  378                                     u_int count, long *basep); }
  379 197     AUE_MMAP        STD     { caddr_t freebsd6_mmap(caddr_t addr, \
  380                                     size_t len, int prot, int flags, int fd, \
  381                                     int pad, off_t pos); }
  382 198     AUE_NULL        NOPROTO { int nosys(void); } __syscall \
  383                                     __syscall_args int
  384 199     AUE_LSEEK       STD     { off_t freebsd6_lseek(int fd, int pad, \
  385                                     off_t offset, int whence); }
  386 200     AUE_TRUNCATE    STD     { int freebsd6_truncate(char *path, int pad, \
  387                                     off_t length); }
  388 201     AUE_FTRUNCATE   STD     { int freebsd6_ftruncate(int fd, int pad, \
  389                                     off_t length); }
  390 202     AUE_SYSCTL      STD     { int __sysctl(int *name, u_int namelen, \
  391                                     void *old, size_t *oldlenp, void *new, \
  392                                     size_t newlen); } __sysctl sysctl_args int
  393 203     AUE_MLOCK       STD     { int mlock(const void *addr, size_t len); }
  394 204     AUE_MUNLOCK     STD     { int munlock(const void *addr, size_t len); }
  395 205     AUE_UNDELETE    STD     { int undelete(char *path); }
  396 206     AUE_FUTIMES     STD     { int futimes(int fd, struct timeval *tptr); }
  397 207     AUE_GETPGID     STD     { int getpgid(pid_t pid); }
  398 208     AUE_NULL        UNIMPL  newreboot (NetBSD)
  399 209     AUE_POLL        STD     { int poll(struct pollfd *fds, u_int nfds, \
  400                                     int timeout); }
  401 
  402 ;
  403 ; The following are reserved for loadable syscalls
  404 ;
  405 210     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  406 211     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  407 212     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  408 213     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  409 214     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  410 215     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  411 216     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  412 217     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  413 218     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  414 219     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  415 
  416 ;
  417 ; The following were introduced with NetBSD/4.4Lite-2
  418 220     AUE_SEMCTL      COMPAT7|NOSTD { int __semctl(int semid, int semnum, \
  419                                     int cmd, union semun_old *arg); }
  420 221     AUE_SEMGET      NOSTD   { int semget(key_t key, int nsems, \
  421                                     int semflg); }
  422 222     AUE_SEMOP       NOSTD   { int semop(int semid, struct sembuf *sops, \
  423                                     size_t nsops); }
  424 223     AUE_NULL        UNIMPL  semconfig
  425 224     AUE_MSGCTL      COMPAT7|NOSTD { int msgctl(int msqid, int cmd, \
  426                                     struct msqid_ds_old *buf); }
  427 225     AUE_MSGGET      NOSTD   { int msgget(key_t key, int msgflg); }
  428 226     AUE_MSGSND      NOSTD   { int msgsnd(int msqid, const void *msgp, \
  429                                     size_t msgsz, int msgflg); }
  430 227     AUE_MSGRCV      NOSTD   { int msgrcv(int msqid, void *msgp, \
  431                                     size_t msgsz, long msgtyp, int msgflg); }
  432 228     AUE_SHMAT       NOSTD   { int shmat(int shmid, const void *shmaddr, \
  433                                     int shmflg); }
  434 229     AUE_SHMCTL      COMPAT7|NOSTD { int shmctl(int shmid, int cmd, \
  435                                     struct shmid_ds_old *buf); }
  436 230     AUE_SHMDT       NOSTD   { int shmdt(const void *shmaddr); }
  437 231     AUE_SHMGET      NOSTD   { int shmget(key_t key, size_t size, \
  438                                     int shmflg); }
  439 ;
  440 232     AUE_NULL        STD     { int clock_gettime(clockid_t clock_id, \
  441                                     struct timespec *tp); }
  442 233     AUE_CLOCK_SETTIME       STD     { int clock_settime( \
  443                                     clockid_t clock_id, \
  444                                     const struct timespec *tp); }
  445 234     AUE_NULL        STD     { int clock_getres(clockid_t clock_id, \
  446                                     struct timespec *tp); }
  447 235     AUE_NULL        STD     { int ktimer_create(clockid_t clock_id, \
  448                                     struct sigevent *evp, int *timerid); }
  449 236     AUE_NULL        STD     { int ktimer_delete(int timerid); }
  450 237     AUE_NULL        STD     { int ktimer_settime(int timerid, int flags, \
  451                                     const struct itimerspec *value, \
  452                                     struct itimerspec *ovalue); }
  453 238     AUE_NULL        STD     { int ktimer_gettime(int timerid, struct \
  454                                     itimerspec *value); }
  455 239     AUE_NULL        STD     { int ktimer_getoverrun(int timerid); }
  456 240     AUE_NULL        STD     { int nanosleep(const struct timespec *rqtp, \
  457                                     struct timespec *rmtp); }
  458 241     AUE_NULL        UNIMPL  nosys
  459 242     AUE_NULL        UNIMPL  nosys
  460 243     AUE_NULL        UNIMPL  nosys
  461 244     AUE_NULL        UNIMPL  nosys
  462 245     AUE_NULL        UNIMPL  nosys
  463 246     AUE_NULL        UNIMPL  nosys
  464 247     AUE_NULL        UNIMPL  nosys
  465 248     AUE_NULL        STD     { int ntp_gettime(struct ntptimeval *ntvp); }
  466 249     AUE_NULL        UNIMPL  nosys
  467 ; syscall numbers initially used in OpenBSD
  468 250     AUE_MINHERIT    STD     { int minherit(void *addr, size_t len, \
  469                                     int inherit); }
  470 251     AUE_RFORK       STD     { int rfork(int flags); }
  471 252     AUE_POLL        STD     { int openbsd_poll(struct pollfd *fds, \
  472                                     u_int nfds, int timeout); }
  473 253     AUE_ISSETUGID   STD     { int issetugid(void); }
  474 254     AUE_LCHOWN      STD     { int lchown(char *path, int uid, int gid); }
  475 255     AUE_NULL        NOSTD   { int aio_read(struct aiocb *aiocbp); }
  476 256     AUE_NULL        NOSTD   { int aio_write(struct aiocb *aiocbp); }
  477 257     AUE_NULL        NOSTD   { int lio_listio(int mode, \
  478                                     struct aiocb * const *acb_list, \
  479                                     int nent, struct sigevent *sig); }
  480 258     AUE_NULL        UNIMPL  nosys
  481 259     AUE_NULL        UNIMPL  nosys
  482 260     AUE_NULL        UNIMPL  nosys
  483 261     AUE_NULL        UNIMPL  nosys
  484 262     AUE_NULL        UNIMPL  nosys
  485 263     AUE_NULL        UNIMPL  nosys
  486 264     AUE_NULL        UNIMPL  nosys
  487 265     AUE_NULL        UNIMPL  nosys
  488 266     AUE_NULL        UNIMPL  nosys
  489 267     AUE_NULL        UNIMPL  nosys
  490 268     AUE_NULL        UNIMPL  nosys
  491 269     AUE_NULL        UNIMPL  nosys
  492 270     AUE_NULL        UNIMPL  nosys
  493 271     AUE_NULL        UNIMPL  nosys
  494 272     AUE_O_GETDENTS  STD     { int getdents(int fd, char *buf, \
  495                                     size_t count); }
  496 273     AUE_NULL        UNIMPL  nosys
  497 274     AUE_LCHMOD      STD     { int lchmod(char *path, mode_t mode); }
  498 275     AUE_LCHOWN      NOPROTO { int lchown(char *path, uid_t uid, \
  499                                     gid_t gid); } netbsd_lchown lchown_args \
  500                                     int
  501 276     AUE_LUTIMES     STD     { int lutimes(char *path, \
  502                                     struct timeval *tptr); }
  503 277     AUE_MSYNC       NOPROTO { int msync(void *addr, size_t len, \
  504                                     int flags); } netbsd_msync msync_args int
  505 278     AUE_STAT        STD     { int nstat(char *path, struct nstat *ub); }
  506 279     AUE_FSTAT       STD     { int nfstat(int fd, struct nstat *sb); }
  507 280     AUE_LSTAT       STD     { int nlstat(char *path, struct nstat *ub); }
  508 281     AUE_NULL        UNIMPL  nosys
  509 282     AUE_NULL        UNIMPL  nosys
  510 283     AUE_NULL        UNIMPL  nosys
  511 284     AUE_NULL        UNIMPL  nosys
  512 285     AUE_NULL        UNIMPL  nosys
  513 286     AUE_NULL        UNIMPL  nosys
  514 287     AUE_NULL        UNIMPL  nosys
  515 288     AUE_NULL        UNIMPL  nosys
  516 ; 289 and 290 from NetBSD (OpenBSD: 267 and 268)
  517 289     AUE_PREADV      STD     { ssize_t preadv(int fd, struct iovec *iovp, \
  518                                         u_int iovcnt, off_t offset); }
  519 290     AUE_PWRITEV     STD     { ssize_t pwritev(int fd, struct iovec *iovp, \
  520                                         u_int iovcnt, off_t offset); }
  521 291     AUE_NULL        UNIMPL  nosys
  522 292     AUE_NULL        UNIMPL  nosys
  523 293     AUE_NULL        UNIMPL  nosys
  524 294     AUE_NULL        UNIMPL  nosys
  525 295     AUE_NULL        UNIMPL  nosys
  526 296     AUE_NULL        UNIMPL  nosys
  527 ; XXX 297 is 300 in NetBSD 
  528 297     AUE_FHSTATFS    COMPAT4 { int fhstatfs( \
  529                                     const struct fhandle *u_fhp, \
  530                                     struct ostatfs *buf); }
  531 298     AUE_FHOPEN      STD     { int fhopen(const struct fhandle *u_fhp, \
  532                                     int flags); }
  533 299     AUE_FHSTAT      STD     { int fhstat(const struct fhandle *u_fhp, \
  534                                     struct stat *sb); }
  535 ; syscall numbers for FreeBSD
  536 300     AUE_NULL        STD     { int modnext(int modid); }
  537 301     AUE_NULL        STD     { int modstat(int modid, \
  538                                     struct module_stat *stat); }
  539 302     AUE_NULL        STD     { int modfnext(int modid); }
  540 303     AUE_NULL        STD     { int modfind(const char *name); }
  541 304     AUE_MODLOAD     STD     { int kldload(const char *file); }
  542 305     AUE_MODUNLOAD   STD     { int kldunload(int fileid); }
  543 306     AUE_NULL        STD     { int kldfind(const char *file); }
  544 307     AUE_NULL        STD     { int kldnext(int fileid); }
  545 308     AUE_NULL        STD     { int kldstat(int fileid, struct \
  546                                     kld_file_stat* stat); }
  547 309     AUE_NULL        STD     { int kldfirstmod(int fileid); }
  548 310     AUE_GETSID      STD     { int getsid(pid_t pid); }
  549 311     AUE_SETRESUID   STD     { int setresuid(uid_t ruid, uid_t euid, \
  550                                     uid_t suid); }
  551 312     AUE_SETRESGID   STD     { int setresgid(gid_t rgid, gid_t egid, \
  552                                     gid_t sgid); }
  553 313     AUE_NULL        OBSOL   signanosleep
  554 314     AUE_NULL        NOSTD   { int aio_return(struct aiocb *aiocbp); }
  555 315     AUE_NULL        NOSTD   { int aio_suspend( \
  556                                     struct aiocb * const * aiocbp, int nent, \
  557                                     const struct timespec *timeout); }
  558 316     AUE_NULL        NOSTD   { int aio_cancel(int fd, \
  559                                     struct aiocb *aiocbp); }
  560 317     AUE_NULL        NOSTD   { int aio_error(struct aiocb *aiocbp); }
  561 318     AUE_NULL        NOSTD   { int oaio_read(struct oaiocb *aiocbp); }
  562 319     AUE_NULL        NOSTD   { int oaio_write(struct oaiocb *aiocbp); }
  563 320     AUE_NULL        NOSTD   { int olio_listio(int mode, \
  564                                     struct oaiocb * const *acb_list, \
  565                                     int nent, struct osigevent *sig); }
  566 321     AUE_NULL        STD     { int yield(void); }
  567 322     AUE_NULL        OBSOL   thr_sleep
  568 323     AUE_NULL        OBSOL   thr_wakeup
  569 324     AUE_MLOCKALL    STD     { int mlockall(int how); }
  570 325     AUE_MUNLOCKALL  STD     { int munlockall(void); }
  571 326     AUE_GETCWD      STD     { int __getcwd(u_char *buf, u_int buflen); }
  572 
  573 327     AUE_NULL        STD     { int sched_setparam (pid_t pid, \
  574                                     const struct sched_param *param); }
  575 328     AUE_NULL        STD     { int sched_getparam (pid_t pid, struct \
  576                                     sched_param *param); }
  577 
  578 329     AUE_NULL        STD     { int sched_setscheduler (pid_t pid, int \
  579                                     policy, const struct sched_param \
  580                                     *param); }
  581 330     AUE_NULL        STD     { int sched_getscheduler (pid_t pid); }
  582 
  583 331     AUE_NULL        STD     { int sched_yield (void); }
  584 332     AUE_NULL        STD     { int sched_get_priority_max (int policy); }
  585 333     AUE_NULL        STD     { int sched_get_priority_min (int policy); }
  586 334     AUE_NULL        STD     { int sched_rr_get_interval (pid_t pid, \
  587                                     struct timespec *interval); }
  588 335     AUE_NULL        STD     { int utrace(const void *addr, size_t len); }
  589 336     AUE_SENDFILE    COMPAT4 { int sendfile(int fd, int s, \
  590                                     off_t offset, size_t nbytes, \
  591                                     struct sf_hdtr *hdtr, off_t *sbytes, \
  592                                     int flags); }
  593 337     AUE_NULL        STD     { int kldsym(int fileid, int cmd, \
  594                                     void *data); }
  595 338     AUE_JAIL        STD     { int jail(struct jail *jail); }
  596 339     AUE_NULL        NOSTD|NOTSTATIC { int nnpfs_syscall(int operation, \
  597                                     char *a_pathP, int a_opcode, \
  598                                     void *a_paramsP, int a_followSymlinks); }
  599 340     AUE_SIGPROCMASK STD     { int sigprocmask(int how, \
  600                                     const sigset_t *set, sigset_t *oset); }
  601 341     AUE_SIGSUSPEND  STD     { int sigsuspend(const sigset_t *sigmask); }
  602 342     AUE_SIGACTION   COMPAT4 { int sigaction(int sig, const \
  603                                     struct sigaction *act, \
  604                                     struct sigaction *oact); }
  605 343     AUE_SIGPENDING  STD     { int sigpending(sigset_t *set); }
  606 344     AUE_SIGRETURN   COMPAT4 { int sigreturn( \
  607                                     const struct ucontext4 *sigcntxp); }
  608 345     AUE_SIGWAIT     STD     { int sigtimedwait(const sigset_t *set, \
  609                                     siginfo_t *info, \
  610                                     const struct timespec *timeout); }
  611 346     AUE_NULL        STD     { int sigwaitinfo(const sigset_t *set, \
  612                                     siginfo_t *info); }
  613 347     AUE_NULL        STD     { int __acl_get_file(const char *path, \
  614                                     acl_type_t type, struct acl *aclp); }
  615 348     AUE_NULL        STD     { int __acl_set_file(const char *path, \
  616                                     acl_type_t type, struct acl *aclp); }
  617 349     AUE_NULL        STD     { int __acl_get_fd(int filedes, \
  618                                     acl_type_t type, struct acl *aclp); }
  619 350     AUE_NULL        STD     { int __acl_set_fd(int filedes, \
  620                                     acl_type_t type, struct acl *aclp); }
  621 351     AUE_NULL        STD     { int __acl_delete_file(const char *path, \
  622                                     acl_type_t type); }
  623 352     AUE_NULL        STD     { int __acl_delete_fd(int filedes, \
  624                                     acl_type_t type); }
  625 353     AUE_NULL        STD     { int __acl_aclcheck_file(const char *path, \
  626                                     acl_type_t type, struct acl *aclp); }
  627 354     AUE_NULL        STD     { int __acl_aclcheck_fd(int filedes, \
  628                                     acl_type_t type, struct acl *aclp); }
  629 355     AUE_EXTATTRCTL  STD     { int extattrctl(const char *path, int cmd, \
  630                                     const char *filename, int attrnamespace, \
  631                                     const char *attrname); }
  632 356     AUE_EXTATTR_SET_FILE    STD     { int extattr_set_file( \
  633                                     const char *path, int attrnamespace, \
  634                                     const char *attrname, void *data, \
  635                                     size_t nbytes); }
  636 357     AUE_EXTATTR_GET_FILE    STD     { ssize_t extattr_get_file( \
  637                                     const char *path, int attrnamespace, \
  638                                     const char *attrname, void *data, \
  639                                     size_t nbytes); }
  640 358     AUE_EXTATTR_DELETE_FILE STD     { int extattr_delete_file(const char *path, \
  641                                     int attrnamespace, \
  642                                     const char *attrname); }
  643 359     AUE_NULL        NOSTD   { int aio_waitcomplete( \
  644                                     struct aiocb **aiocbp, \
  645                                     struct timespec *timeout); }
  646 360     AUE_GETRESUID   STD     { int getresuid(uid_t *ruid, uid_t *euid, \
  647                                     uid_t *suid); }
  648 361     AUE_GETRESGID   STD     { int getresgid(gid_t *rgid, gid_t *egid, \
  649                                     gid_t *sgid); }
  650 362     AUE_KQUEUE      STD     { int kqueue(void); }
  651 363     AUE_NULL        STD     { int kevent(int fd, \
  652                                     struct kevent *changelist, int nchanges, \
  653                                     struct kevent *eventlist, int nevents, \
  654                                     const struct timespec *timeout); }
  655 364     AUE_NULL        UNIMPL  __cap_get_proc
  656 365     AUE_NULL        UNIMPL  __cap_set_proc
  657 366     AUE_NULL        UNIMPL  __cap_get_fd
  658 367     AUE_NULL        UNIMPL  __cap_get_file
  659 368     AUE_NULL        UNIMPL  __cap_set_fd
  660 369     AUE_NULL        UNIMPL  __cap_set_file
  661 370     AUE_NULL        UNIMPL  nosys
  662 371     AUE_EXTATTR_SET_FD      STD     { int extattr_set_fd(int fd, \
  663                                     int attrnamespace, const char *attrname, \
  664                                     void *data, size_t nbytes); }
  665 372     AUE_EXTATTR_GET_FD      STD     { ssize_t extattr_get_fd(int fd, \
  666                                     int attrnamespace, const char *attrname, \
  667                                     void *data, size_t nbytes); }
  668 373     AUE_EXTATTR_DELETE_FD   STD     { int extattr_delete_fd(int fd, \
  669                                     int attrnamespace, \
  670                                     const char *attrname); }
  671 374     AUE_NULL        STD     { int __setugid(int flag); }
  672 375     AUE_NULL        UNIMPL  nfsclnt
  673 376     AUE_EACCESS     STD     { int eaccess(char *path, int flags); }
  674 377     AUE_NULL        NOSTD|NOTSTATIC { int afs3_syscall(long syscall, \
  675                                     long parm1, long parm2, long parm3, \
  676                                     long parm4, long parm5, long parm6); }
  677 378     AUE_NMOUNT      STD     { int nmount(struct iovec *iovp, \
  678                                     unsigned int iovcnt, int flags); }
  679 379     AUE_NULL        UNIMPL  kse_exit
  680 380     AUE_NULL        UNIMPL  kse_wakeup
  681 381     AUE_NULL        UNIMPL  kse_create
  682 382     AUE_NULL        UNIMPL  kse_thr_interrupt
  683 383     AUE_NULL        UNIMPL  kse_release
  684 384     AUE_NULL        STD     { int __mac_get_proc(struct mac *mac_p); }
  685 385     AUE_NULL        STD     { int __mac_set_proc(struct mac *mac_p); }
  686 386     AUE_NULL        STD     { int __mac_get_fd(int fd, \
  687                                     struct mac *mac_p); }
  688 387     AUE_NULL        STD     { int __mac_get_file(const char *path_p, \
  689                                     struct mac *mac_p); }
  690 388     AUE_NULL        STD     { int __mac_set_fd(int fd, \
  691                                     struct mac *mac_p); }
  692 389     AUE_NULL        STD     { int __mac_set_file(const char *path_p, \
  693                                     struct mac *mac_p); }
  694 390     AUE_NULL        STD     { int kenv(int what, const char *name, \
  695                                     char *value, int len); }
  696 391     AUE_LCHFLAGS    STD     { int lchflags(const char *path, int flags); }
  697 392     AUE_NULL        STD     { int uuidgen(struct uuid *store, \
  698                                     int count); }
  699 393     AUE_SENDFILE    STD     { int sendfile(int fd, int s, off_t offset, \
  700                                     size_t nbytes, struct sf_hdtr *hdtr, \
  701                                     off_t *sbytes, int flags); }
  702 394     AUE_NULL        STD     { int mac_syscall(const char *policy, \
  703                                     int call, void *arg); }
  704 395     AUE_GETFSSTAT   STD     { int getfsstat(struct statfs *buf, \
  705                                     long bufsize, int flags); }
  706 396     AUE_STATFS      STD     { int statfs(char *path, \
  707                                     struct statfs *buf); }
  708 397     AUE_FSTATFS     STD     { int fstatfs(int fd, struct statfs *buf); }
  709 398     AUE_FHSTATFS    STD     { int fhstatfs(const struct fhandle *u_fhp, \
  710                                     struct statfs *buf); }
  711 399     AUE_NULL        UNIMPL  nosys
  712 400     AUE_NULL        NOSTD   { int ksem_close(semid_t id); }
  713 401     AUE_NULL        NOSTD   { int ksem_post(semid_t id); }
  714 402     AUE_NULL        NOSTD   { int ksem_wait(semid_t id); }
  715 403     AUE_NULL        NOSTD   { int ksem_trywait(semid_t id); }
  716 404     AUE_NULL        NOSTD   { int ksem_init(semid_t *idp, \
  717                                     unsigned int value); }
  718 405     AUE_NULL        NOSTD   { int ksem_open(semid_t *idp, \
  719                                     const char *name, int oflag, \
  720                                     mode_t mode, unsigned int value); }
  721 406     AUE_NULL        NOSTD   { int ksem_unlink(const char *name); }
  722 407     AUE_NULL        NOSTD   { int ksem_getvalue(semid_t id, int *val); }
  723 408     AUE_NULL        NOSTD   { int ksem_destroy(semid_t id); }
  724 409     AUE_NULL        STD     { int __mac_get_pid(pid_t pid, \
  725                                     struct mac *mac_p); }
  726 410     AUE_NULL        STD     { int __mac_get_link(const char *path_p, \
  727                                     struct mac *mac_p); }
  728 411     AUE_NULL        STD     { int __mac_set_link(const char *path_p, \
  729                                     struct mac *mac_p); }
  730 412     AUE_EXTATTR_SET_LINK    STD     { int extattr_set_link( \
  731                                     const char *path, int attrnamespace, \
  732                                     const char *attrname, void *data, \
  733                                     size_t nbytes); }
  734 413     AUE_EXTATTR_GET_LINK    STD     { ssize_t extattr_get_link( \
  735                                     const char *path, int attrnamespace, \
  736                                     const char *attrname, void *data, \
  737                                     size_t nbytes); }
  738 414     AUE_EXTATTR_DELETE_LINK STD     { int extattr_delete_link( \
  739                                     const char *path, int attrnamespace, \
  740                                     const char *attrname); }
  741 415     AUE_NULL        STD     { int __mac_execve(char *fname, char **argv, \
  742                                     char **envv, struct mac *mac_p); }
  743 416     AUE_SIGACTION   STD     { int sigaction(int sig, \
  744                                     const struct sigaction *act, \
  745                                     struct sigaction *oact); }
  746 417     AUE_SIGRETURN   STD     { int sigreturn( \
  747                                     const struct __ucontext *sigcntxp); }
  748 418     AUE_NULL        UNIMPL  __xstat
  749 419     AUE_NULL        UNIMPL  __xfstat
  750 420     AUE_NULL        UNIMPL  __xlstat
  751 421     AUE_NULL        STD     { int getcontext(struct __ucontext *ucp); }
  752 422     AUE_NULL        STD     { int setcontext( \
  753                                     const struct __ucontext *ucp); }
  754 423     AUE_NULL        STD     { int swapcontext(struct __ucontext *oucp, \
  755                                     const struct __ucontext *ucp); }
  756 424     AUE_SWAPOFF     STD     { int swapoff(const char *name); }
  757 425     AUE_NULL        STD     { int __acl_get_link(const char *path, \
  758                                     acl_type_t type, struct acl *aclp); }
  759 426     AUE_NULL        STD     { int __acl_set_link(const char *path, \
  760                                     acl_type_t type, struct acl *aclp); }
  761 427     AUE_NULL        STD     { int __acl_delete_link(const char *path, \
  762                                     acl_type_t type); }
  763 428     AUE_NULL        STD     { int __acl_aclcheck_link(const char *path, \
  764                                     acl_type_t type, struct acl *aclp); }
  765 429     AUE_SIGWAIT     STD     { int sigwait(const sigset_t *set, \
  766                                     int *sig); }
  767 430     AUE_NULL        STD     { int thr_create(ucontext_t *ctx, long *id, \
  768                                     int flags); }
  769 431     AUE_NULL        STD     { void thr_exit(long *state); }
  770 432     AUE_NULL        STD     { int thr_self(long *id); }
  771 433     AUE_NULL        STD     { int thr_kill(long id, int sig); }
  772 434     AUE_NULL        STD     { int _umtx_lock(struct umtx *umtx); }
  773 435     AUE_NULL        STD     { int _umtx_unlock(struct umtx *umtx); }
  774 436     AUE_NULL        STD     { int jail_attach(int jid); }
  775 437     AUE_EXTATTR_LIST_FD     STD     { ssize_t extattr_list_fd(int fd, \
  776                                     int attrnamespace, void *data, \
  777                                     size_t nbytes); }
  778 438     AUE_EXTATTR_LIST_FILE   STD     { ssize_t extattr_list_file( \
  779                                     const char *path, int attrnamespace, \
  780                                     void *data, size_t nbytes); }
  781 439     AUE_EXTATTR_LIST_LINK   STD     { ssize_t extattr_list_link( \
  782                                     const char *path, int attrnamespace, \
  783                                     void *data, size_t nbytes); }
  784 440     AUE_NULL        UNIMPL  kse_switchin
  785 441     AUE_NULL        NOSTD   { int ksem_timedwait(semid_t id, \
  786                                     const struct timespec *abstime); }
  787 442     AUE_NULL        STD     { int thr_suspend( \
  788                                     const struct timespec *timeout); }
  789 443     AUE_NULL        STD     { int thr_wake(long id); }
  790 444     AUE_MODUNLOAD   STD     { int kldunloadf(int fileid, int flags); }
  791 445     AUE_AUDIT       STD     { int audit(const void *record, \
  792                                     u_int length); }
  793 446     AUE_AUDITON     STD     { int auditon(int cmd, void *data, \
  794                                     u_int length); }
  795 447     AUE_GETAUID     STD     { int getauid(uid_t *auid); }
  796 448     AUE_SETAUID     STD     { int setauid(uid_t *auid); }
  797 449     AUE_GETAUDIT    STD     { int getaudit(struct auditinfo *auditinfo); }
  798 450     AUE_SETAUDIT    STD     { int setaudit(struct auditinfo *auditinfo); }
  799 451     AUE_GETAUDIT_ADDR       STD     { int getaudit_addr( \
  800                                     struct auditinfo_addr *auditinfo_addr, \
  801                                     u_int length); }
  802 452     AUE_SETAUDIT_ADDR       STD     { int setaudit_addr( \
  803                                     struct auditinfo_addr *auditinfo_addr, \
  804                                     u_int length); }
  805 453     AUE_AUDITCTL    STD     { int auditctl(char *path); }
  806 454     AUE_NULL        STD     { int _umtx_op(void *obj, int op, \
  807                                     u_long val, void *uaddr1, void *uaddr2); }
  808 455     AUE_NULL        STD     { int thr_new(struct thr_param *param, \
  809                                     int param_size); }
  810 456     AUE_NULL        STD     { int sigqueue(pid_t pid, int signum, void *value); }
  811 457     AUE_NULL        NOSTD   { int kmq_open(const char *path, int flags, \
  812                                     mode_t mode, const struct mq_attr *attr); }
  813 458     AUE_NULL        NOSTD   { int kmq_setattr(int mqd,              \
  814                                     const struct mq_attr *attr,         \
  815                                     struct mq_attr *oattr); }
  816 459     AUE_NULL        NOSTD   { int kmq_timedreceive(int mqd, \
  817                                     char *msg_ptr, size_t msg_len,      \
  818                                     unsigned *msg_prio,                 \
  819                                     const struct timespec *abs_timeout); }
  820 460     AUE_NULL        NOSTD   { int kmq_timedsend(int mqd,            \
  821                                     const char *msg_ptr, size_t msg_len,\
  822                                     unsigned msg_prio,                  \
  823                                     const struct timespec *abs_timeout);}
  824 461     AUE_NULL        NOSTD   { int kmq_notify(int mqd,               \
  825                                     const struct sigevent *sigev); }
  826 462     AUE_NULL        NOSTD   { int kmq_unlink(const char *path); }
  827 463     AUE_NULL        STD     { int abort2(const char *why, int nargs, void **args); }
  828 464     AUE_NULL        STD     { int thr_set_name(long id, const char *name); }
  829 465     AUE_NULL        NOSTD   { int aio_fsync(int op, struct aiocb *aiocbp); }
  830 466     AUE_RTPRIO      STD     { int rtprio_thread(int function, \
  831                                     lwpid_t lwpid, struct rtprio *rtp); }
  832 467     AUE_NULL        UNIMPL  nosys
  833 468     AUE_NULL        UNIMPL  nosys
  834 469     AUE_NULL        UNIMPL  __getpath_fromfd
  835 470     AUE_NULL        UNIMPL  __getpath_fromaddr
  836 471     AUE_NULL        STD     { int sctp_peeloff(int sd, uint32_t name); }
  837 472     AUE_NULL        STD    { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
  838                                     caddr_t to, __socklen_t tolen, \
  839                                     struct sctp_sndrcvinfo *sinfo, int flags); }
  840 473     AUE_NULL        STD    { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
  841                                     caddr_t to, __socklen_t tolen, \
  842                                     struct sctp_sndrcvinfo *sinfo, int flags); }
  843 474     AUE_NULL        STD    { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
  844                                     struct sockaddr * from, __socklen_t *fromlenaddr, \
  845                                     struct sctp_sndrcvinfo *sinfo, int *msg_flags); }
  846 475     AUE_PREAD       STD     { ssize_t pread(int fd, void *buf, \
  847                                     size_t nbyte, off_t offset); }
  848 476     AUE_PWRITE      STD     { ssize_t pwrite(int fd, const void *buf, \
  849                                     size_t nbyte, off_t offset); }
  850 477     AUE_MMAP        STD     { caddr_t mmap(caddr_t addr, size_t len, \
  851                                     int prot, int flags, int fd, off_t pos); }
  852 478     AUE_LSEEK       STD     { off_t lseek(int fd, off_t offset, \
  853                                     int whence); }
  854 479     AUE_TRUNCATE    STD     { int truncate(char *path, off_t length); }
  855 480     AUE_FTRUNCATE   STD     { int ftruncate(int fd, off_t length); }
  856 481     AUE_KILL        STD     { int thr_kill2(pid_t pid, long id, int sig); }
  857 482     AUE_SHMOPEN     STD     { int shm_open(const char *path, int flags, \
  858                                     mode_t mode); }
  859 483     AUE_SHMUNLINK   STD     { int shm_unlink(const char *path); }
  860 484     AUE_NULL        STD     { int cpuset(cpusetid_t *setid); }
  861 485     AUE_NULL        STD     { int cpuset_setid(cpuwhich_t which, id_t id, \
  862                                     cpusetid_t setid); }
  863 486     AUE_NULL        STD     { int cpuset_getid(cpulevel_t level, \
  864                                     cpuwhich_t which, id_t id, \
  865                                     cpusetid_t *setid); }
  866 487     AUE_NULL        STD     { int cpuset_getaffinity(cpulevel_t level, \
  867                                     cpuwhich_t which, id_t id, size_t cpusetsize, \
  868                                     cpuset_t *mask); }
  869 488     AUE_NULL        STD     { int cpuset_setaffinity(cpulevel_t level, \
  870                                     cpuwhich_t which, id_t id, size_t cpusetsize, \
  871                                     const cpuset_t *mask); }
  872 489     AUE_FACCESSAT   STD     { int faccessat(int fd, char *path, int mode, \
  873                                     int flag); }
  874 490     AUE_FCHMODAT    STD     { int fchmodat(int fd, char *path, mode_t mode, \
  875                                     int flag); }
  876 491     AUE_FCHOWNAT    STD     { int fchownat(int fd, char *path, uid_t uid, \
  877                                     gid_t gid, int flag); }
  878 492     AUE_FEXECVE     STD     { int fexecve(int fd, char **argv, \
  879                                     char **envv); }
  880 493     AUE_FSTATAT     STD     { int fstatat(int fd, char *path, \
  881                                     struct stat *buf, int flag); }
  882 494     AUE_FUTIMESAT   STD     { int futimesat(int fd, char *path, \
  883                                     struct timeval *times); }
  884 495     AUE_LINKAT      STD     { int linkat(int fd1, char *path1, int fd2, \
  885                                     char *path2, int flag); }
  886 496     AUE_MKDIRAT     STD     { int mkdirat(int fd, char *path, mode_t mode); }
  887 497     AUE_MKFIFOAT    STD     { int mkfifoat(int fd, char *path, mode_t mode); }
  888 498     AUE_MKNODAT     STD     { int mknodat(int fd, char *path, mode_t mode, \
  889                                     dev_t dev); }
  890 ; XXX: see the comment for open
  891 499     AUE_OPENAT_RWTC STD     { int openat(int fd, char *path, int flag, \
  892                                     mode_t mode); }
  893 500     AUE_READLINKAT  STD     { int readlinkat(int fd, char *path, char *buf, \
  894                                     size_t bufsize); }
  895 501     AUE_RENAMEAT    STD     { int renameat(int oldfd, char *old, int newfd, \
  896                                      char *new); }
  897 502     AUE_SYMLINKAT   STD     { int symlinkat(char *path1, int fd, \
  898                                      char *path2); }
  899 503     AUE_UNLINKAT    STD     { int unlinkat(int fd, char *path, int flag); }
  900 504     AUE_POSIX_OPENPT        STD     { int posix_openpt(int flags); }
  901 ; 505 is initialised by the kgssapi code, if present.
  902 505     AUE_NULL        NOSTD   { int gssd_syscall(char *path); }
  903 506     AUE_NULL        STD     { int jail_get(struct iovec *iovp, \
  904                                     unsigned int iovcnt, int flags); }
  905 507     AUE_NULL        STD     { int jail_set(struct iovec *iovp, \
  906                                     unsigned int iovcnt, int flags); }
  907 508     AUE_NULL        STD     { int jail_remove(int jid); }
  908 509     AUE_CLOSEFROM   STD     { int closefrom(int lowfd); }
  909 510     AUE_SEMCTL      NOSTD   { int __semctl(int semid, int semnum, \
  910                                     int cmd, union semun *arg); }
  911 511     AUE_MSGCTL      NOSTD   { int msgctl(int msqid, int cmd, \
  912                                     struct msqid_ds *buf); }
  913 512     AUE_SHMCTL      NOSTD   { int shmctl(int shmid, int cmd, \
  914                                     struct shmid_ds *buf); }
  915 513     AUE_LPATHCONF   STD     { int lpathconf(char *path, int name); }
  916 514     AUE_CAP_NEW     STD     { int cap_new(int fd, u_int64_t rights); }
  917 515     AUE_CAP_GETRIGHTS       STD     { int cap_getrights(int fd, \
  918                                     u_int64_t *rightsp); }
  919 516     AUE_CAP_ENTER   STD     { int cap_enter(void); }
  920 517     AUE_CAP_GETMODE STD     { int cap_getmode(u_int *modep); }
  921 518     AUE_PDFORK      STD     { int pdfork(int *fdp, int flags); }
  922 519     AUE_PDKILL      STD     { int pdkill(int fd, int signum); }
  923 520     AUE_PDGETPID    STD     { int pdgetpid(int fd, pid_t *pidp); }
  924 521     AUE_PDWAIT      UNIMPL  pdwait4
  925 522     AUE_SELECT      STD     { int pselect(int nd, fd_set *in, \
  926                                     fd_set *ou, fd_set *ex, \
  927                                     const struct timespec *ts, \
  928                                     const sigset_t *sm); }
  929 523     AUE_NULL        STD     { int getloginclass(char *namebuf, \
  930                                     size_t namelen); }
  931 524     AUE_NULL        STD     { int setloginclass(const char *namebuf); }
  932 525     AUE_NULL        STD     { int rctl_get_racct(const void *inbufp, \
  933                                     size_t inbuflen, void *outbufp, \
  934                                     size_t outbuflen); }
  935 526     AUE_NULL        STD     { int rctl_get_rules(const void *inbufp, \
  936                                     size_t inbuflen, void *outbufp, \
  937                                     size_t outbuflen); }
  938 527     AUE_NULL        STD     { int rctl_get_limits(const void *inbufp, \
  939                                     size_t inbuflen, void *outbufp, \
  940                                     size_t outbuflen); }
  941 528     AUE_NULL        STD     { int rctl_add_rule(const void *inbufp, \
  942                                     size_t inbuflen, void *outbufp, \
  943                                     size_t outbuflen); }
  944 529     AUE_NULL        STD     { int rctl_remove_rule(const void *inbufp, \
  945                                     size_t inbuflen, void *outbufp, \
  946                                     size_t outbuflen); }
  947 530     AUE_NULL        STD     { int posix_fallocate(int fd, \
  948                                     off_t offset, off_t len); }
  949 531     AUE_NULL        STD     { int posix_fadvise(int fd, off_t offset, \
  950                                     off_t len, int advice); }
  951 532     AUE_WAIT6       STD     { int wait6(int idtype, id_t id, \
  952                                     int *status, int options, \
  953                                     struct __wrusage *wrusage, \
  954                                     siginfo_t *info); }
  955 ; Please copy any additions and changes to the following compatability tables:
  956 ; sys/compat/freebsd32/syscalls.master

Cache object: ed6d284ecf41de5b3573a74452c583f5


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.