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

Cache object: ffd160f6ca7a4936cdc1b0b143643ca3


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