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

Cache object: 46b96b9b35faad022e8578bc131eabb0


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