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

Cache object: b66e7f39d12259ab665293981f4ef62e


[ 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.