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/compat/freebsd32/syscalls.master

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

    1  $FreeBSD: releng/9.0/sys/compat/freebsd32/syscalls.master 224066 2011-07-15 18:26:19Z jonathan $
    2 ;       from: @(#)syscalls.master       8.2 (Berkeley) 1/13/94
    3 ;       from: src/sys/kern/syscalls.master 1.107
    4 ;
    5 ; System call name/number master file.
    6 ; Processed to created init_sysent.c, syscalls.c and syscall.h.
    7 
    8 ; Columns: number audit type name alt{name,tag,rtyp}/comments
    9 ;       number  system call number, must be in order
   10 ;       audit   the audit event associated with the system call
   11 ;               A value of AUE_NULL means no auditing, but it also means that
   12 ;               there is no audit event for the call at this time. For the
   13 ;               case where the event exists, but we don't want auditing, the
   14 ;               event should be #defined to AUE_NULL in audit_kevents.h.
   15 ;       type    one of STD, OBSOL, UNIMPL, COMPAT, COMPAT4, COMPAT6,
   16 ;               COMPAT7, NODEF, NOARGS, NOPROTO, NOSTD
   17 ;               The COMPAT* options may be combined with one or more NO*
   18 ;               options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
   19 ;       name    psuedo-prototype of syscall routine
   20 ;               If one of the following alts is different, then all appear:
   21 ;       altname name of system call if different
   22 ;       alttag  name of args struct tag if different from [o]`name'"_args"
   23 ;       altrtyp return type if not int (bogus - syscalls always return int)
   24 ;               for UNIMPL/OBSOL, name continues with comments
   25 
   26 ; types:
   27 ;       STD     always included
   28 ;       COMPAT  included on COMPAT #ifdef
   29 ;       COMPAT4 included on COMPAT4 #ifdef (FreeBSD 4 compat)
   30 ;       COMPAT6 included on COMPAT6 #ifdef (FreeBSD 6 compat)
   31 ;       COMPAT7 included on COMPAT7 #ifdef (FreeBSD 7 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 
   45 ; #ifdef's, etc. may be included, and are copied to the output files.
   46 
   47 #include <sys/param.h>
   48 #include <sys/sysent.h>
   49 #include <sys/sysproto.h>
   50 #include <sys/mount.h>
   51 #include <sys/socket.h>
   52 #include <compat/freebsd32/freebsd32.h>
   53 #include <compat/freebsd32/freebsd32_proto.h>
   54 
   55 #if !defined(PAD64_REQUIRED) && defined(__powerpc__)
   56 #define PAD64_REQUIRED
   57 #endif
   58 
   59 ; Reserved/unimplemented system calls in the range 0-150 inclusive
   60 ; are reserved for use in future Berkeley releases.
   61 ; Additional system calls implemented in vendor and other
   62 ; redistributions should be placed in the reserved range at the end
   63 ; of the current calls.
   64 
   65 0       AUE_NULL        NOPROTO { int nosys(void); } syscall nosys_args int
   66 1       AUE_EXIT        NOPROTO { void sys_exit(int rval); } exit \
   67                                     sys_exit_args void
   68 2       AUE_FORK        NOPROTO { int fork(void); }
   69 3       AUE_READ        NOPROTO { ssize_t read(int fd, void *buf, \
   70                                     size_t nbyte); }
   71 4       AUE_WRITE       NOPROTO { ssize_t write(int fd, const void *buf, \
   72                                     size_t nbyte); }
   73 5       AUE_OPEN_RWTC   NOPROTO { int open(char *path, int flags, \
   74                                     int mode); }
   75 6       AUE_CLOSE       NOPROTO { int close(int fd); }
   76 7       AUE_WAIT4       STD     { int freebsd32_wait4(int pid, int *status, \
   77                                     int options, struct rusage32 *rusage); }
   78 8       AUE_CREAT       OBSOL   old creat
   79 9       AUE_LINK        NOPROTO { int link(char *path, char *link); }
   80 10      AUE_UNLINK      NOPROTO { int unlink(char *path); }
   81 11      AUE_NULL        OBSOL   execv
   82 12      AUE_CHDIR       NOPROTO { int chdir(char *path); }
   83 13      AUE_FCHDIR      NOPROTO { int fchdir(int fd); }
   84 14      AUE_MKNOD       NOPROTO { int mknod(char *path, int mode, int dev); }
   85 15      AUE_CHMOD       NOPROTO { int chmod(char *path, int mode); }
   86 16      AUE_CHOWN       NOPROTO { int chown(char *path, int uid, int gid); }
   87 17      AUE_NULL        NOPROTO { int obreak(char *nsize); } break \
   88                                     obreak_args int
   89 18      AUE_GETFSSTAT   COMPAT4 { int freebsd32_getfsstat( \
   90                                     struct statfs32 *buf, long bufsize, \
   91                                     int flags); }
   92 19      AUE_LSEEK       COMPAT  { int freebsd32_lseek(int fd, int offset, \
   93                                     int whence); }
   94 20      AUE_GETPID      NOPROTO { pid_t getpid(void); }
   95 21      AUE_MOUNT       NOPROTO { int mount(char *type, char *path, \
   96                                     int flags, caddr_t data); }
   97 22      AUE_UMOUNT      NOPROTO { int unmount(char *path, int flags); }
   98 23      AUE_SETUID      NOPROTO { int setuid(uid_t uid); }
   99 24      AUE_GETUID      NOPROTO { uid_t getuid(void); }
  100 25      AUE_GETEUID     NOPROTO { uid_t geteuid(void); }
  101 26      AUE_PTRACE      NOPROTO { int ptrace(int req, pid_t pid, \
  102                                     caddr_t addr, int data); }
  103 27      AUE_RECVMSG     STD     { int freebsd32_recvmsg(int s, struct msghdr32 *msg, \
  104                                     int flags); }
  105 28      AUE_SENDMSG     STD     { int freebsd32_sendmsg(int s, struct msghdr32 *msg, \
  106                                     int flags); }
  107 29      AUE_RECVFROM    STD     { int freebsd32_recvfrom(int s, u_int32_t buf, \
  108                                     u_int32_t len, int flags, u_int32_t from, \
  109                                     u_int32_t fromlenaddr); }
  110 30      AUE_ACCEPT      NOPROTO { int accept(int s, caddr_t name, \
  111                                     int *anamelen); }
  112 31      AUE_GETPEERNAME NOPROTO { int getpeername(int fdes, caddr_t asa, \
  113                                     int *alen); }
  114 32      AUE_GETSOCKNAME NOPROTO { int getsockname(int fdes, caddr_t asa, \
  115                                     int *alen); }
  116 33      AUE_ACCESS      NOPROTO { int access(char *path, int flags); }
  117 34      AUE_CHFLAGS     NOPROTO { int chflags(char *path, int flags); }
  118 35      AUE_FCHFLAGS    NOPROTO { int fchflags(int fd, int flags); }
  119 36      AUE_SYNC        NOPROTO { int sync(void); }
  120 37      AUE_KILL        NOPROTO { int kill(int pid, int signum); }
  121 38      AUE_STAT        COMPAT  { int freebsd32_stat(char *path, \
  122                                     struct ostat32 *ub); }
  123 39      AUE_GETPPID     NOPROTO { pid_t getppid(void); }
  124 40      AUE_LSTAT       COMPAT  { int freebsd32_lstat(char *path, \
  125                                     struct ostat *ub); }
  126 41      AUE_DUP         NOPROTO { int dup(u_int fd); }
  127 42      AUE_PIPE        NOPROTO { int pipe(void); }
  128 43      AUE_GETEGID     NOPROTO { gid_t getegid(void); }
  129 44      AUE_PROFILE     NOPROTO { int profil(caddr_t samples, size_t size, \
  130                                     size_t offset, u_int scale); }
  131 45      AUE_KTRACE      NOPROTO { int ktrace(const char *fname, int ops, \
  132                                     int facs, int pid); }
  133 46      AUE_SIGACTION   COMPAT  { int freebsd32_sigaction( int signum, \
  134                                    struct osigaction32 *nsa, \
  135                                    struct osigaction32 *osa); }
  136 47      AUE_GETGID      NOPROTO { gid_t getgid(void); }
  137 48      AUE_SIGPROCMASK COMPAT  { int freebsd32_sigprocmask(int how, \
  138                                    osigset_t mask); }
  139 49      AUE_GETLOGIN    NOPROTO { int getlogin(char *namebuf, \
  140                                     u_int namelen); }
  141 50      AUE_SETLOGIN    NOPROTO { int setlogin(char *namebuf); }
  142 51      AUE_ACCT        NOPROTO { int acct(char *path); }
  143 52      AUE_SIGPENDING  COMPAT  { int freebsd32_sigpending(void); }
  144 53      AUE_SIGALTSTACK STD     { int freebsd32_sigaltstack( \
  145                                     struct sigaltstack32 *ss, \
  146                                     struct sigaltstack32 *oss); }
  147 54      AUE_NULL        STD     { int freebsd32_ioctl(int fd, uint32_t com, \
  148                                     struct md_ioctl32 *data); }
  149 55      AUE_REBOOT      NOPROTO { int reboot(int opt); }
  150 56      AUE_REVOKE      NOPROTO { int revoke(char *path); }
  151 57      AUE_SYMLINK     NOPROTO { int symlink(char *path, char *link); }
  152 58      AUE_READLINK    NOPROTO { ssize_t readlink(char *path, char *buf, \
  153                                     size_t count); }
  154 59      AUE_EXECVE      STD     { int freebsd32_execve(char *fname, \
  155                                     u_int32_t *argv, u_int32_t *envv); }
  156 60      AUE_UMASK       NOPROTO { int umask(int newmask); } umask \
  157                                     umask_args int
  158 61      AUE_CHROOT      NOPROTO { int chroot(char *path); }
  159 62      AUE_FSTAT       COMPAT  { int freebsd32_fstat(int fd, \
  160                                     struct ostat32 *ub); }
  161 63      AUE_NULL        OBSOL   ogetkerninfo
  162 64      AUE_NULL        COMPAT  { int freebsd32_getpagesize( \
  163                                     int32_t dummy); }
  164 65      AUE_MSYNC       NOPROTO { int msync(void *addr, size_t len, \
  165                                     int flags); }
  166 66      AUE_VFORK       NOPROTO { int vfork(void); }
  167 67      AUE_NULL        OBSOL   vread
  168 68      AUE_NULL        OBSOL   vwrite
  169 69      AUE_SBRK        NOPROTO { int sbrk(int incr); }
  170 70      AUE_SSTK        NOPROTO { int sstk(int incr); }
  171 71      AUE_MMAP        OBSOL   ommap
  172 72      AUE_O_VADVISE   NOPROTO { int ovadvise(int anom); } vadvise \
  173                                     ovadvise_args int
  174 73      AUE_MUNMAP      NOPROTO { int munmap(void *addr, size_t len); }
  175 74      AUE_MPROTECT    NOPROTO { int mprotect(const void *addr, \
  176                                     size_t len, int prot); }
  177 75      AUE_MADVISE     NOPROTO { int madvise(void *addr, size_t len, \
  178                                     int behav); }
  179 76      AUE_NULL        OBSOL   vhangup
  180 77      AUE_NULL        OBSOL   vlimit
  181 78      AUE_MINCORE     NOPROTO { int mincore(const void *addr, size_t len, \
  182                                     char *vec); }
  183 79      AUE_GETGROUPS   NOPROTO { int getgroups(u_int gidsetsize, \
  184                                     gid_t *gidset); }
  185 80      AUE_SETGROUPS   NOPROTO { int setgroups(u_int gidsetsize, \
  186                                     gid_t *gidset); }
  187 81      AUE_GETPGRP     NOPROTO { int getpgrp(void); }
  188 82      AUE_SETPGRP     NOPROTO { int setpgid(int pid, int pgid); }
  189 83      AUE_SETITIMER   STD     { int freebsd32_setitimer(u_int which, \
  190                                     struct itimerval32 *itv, \
  191                                     struct itimerval32 *oitv); }
  192 84      AUE_NULL        OBSOL   owait
  193 ; XXX implement
  194 85      AUE_SWAPON      NOPROTO { int swapon(char *name); }
  195 86      AUE_GETITIMER   STD     { int freebsd32_getitimer(u_int which, \
  196                                     struct itimerval32 *itv); }
  197 87      AUE_O_GETHOSTNAME       OBSOL   ogethostname
  198 88      AUE_O_SETHOSTNAME       OBSOL   osethostname
  199 89      AUE_GETDTABLESIZE       NOPROTO { int getdtablesize(void); }
  200 90      AUE_DUP2        NOPROTO { int dup2(u_int from, u_int to); }
  201 91      AUE_NULL        UNIMPL  getdopt
  202 92      AUE_FCNTL       NOPROTO { int fcntl(int fd, int cmd, long arg); }
  203 93      AUE_SELECT      STD     { int freebsd32_select(int nd, fd_set *in, \
  204                                     fd_set *ou, fd_set *ex, \
  205                                     struct timeval32 *tv); }
  206 94      AUE_NULL        UNIMPL  setdopt
  207 95      AUE_FSYNC       NOPROTO { int fsync(int fd); }
  208 96      AUE_SETPRIORITY NOPROTO { int setpriority(int which, int who, \
  209                                     int prio); }
  210 97      AUE_SOCKET      NOPROTO { int socket(int domain, int type, \
  211                                     int protocol); }
  212 98      AUE_CONNECT     NOPROTO { int connect(int s, caddr_t name, \
  213                                     int namelen); }
  214 99      AUE_NULL        OBSOL   oaccept
  215 100     AUE_GETPRIORITY NOPROTO { int getpriority(int which, int who); }
  216 101     AUE_NULL        OBSOL   osend
  217 102     AUE_NULL        OBSOL   orecv
  218 103     AUE_NULL        COMPAT  { int freebsd32_sigreturn( \
  219                                     struct ia32_sigcontext3 *sigcntxp); }
  220 104     AUE_BIND        NOPROTO { int bind(int s, caddr_t name, \
  221                                     int namelen); }
  222 105     AUE_SETSOCKOPT  NOPROTO { int setsockopt(int s, int level, \
  223                                     int name, caddr_t val, int valsize); }
  224 106     AUE_LISTEN      NOPROTO { int listen(int s, int backlog); }
  225 107     AUE_NULL        OBSOL   vtimes
  226 108     AUE_O_SIGVEC    COMPAT  { int freebsd32_sigvec(int signum, \
  227                                      struct sigvec32 *nsv, \
  228                                      struct sigvec32 *osv); }
  229 109     AUE_O_SIGBLOCK  COMPAT  { int freebsd32_sigblock(int mask); }
  230 110     AUE_O_SIGSETMASK        COMPAT  { int freebsd32_sigsetmask( int mask); }
  231 111     AUE_SIGSUSPEND  COMPAT  { int freebsd32_sigsuspend( int mask); }
  232 112     AUE_O_SIGSTACK  COMPAT  { int freebsd32_sigstack( \
  233                                      struct sigstack32 *nss, \
  234                                      struct sigstack32 *oss); }
  235 113     AUE_NULL        OBSOL   orecvmsg
  236 114     AUE_NULL        OBSOL   osendmsg
  237 115     AUE_NULL        OBSOL   vtrace
  238 116     AUE_GETTIMEOFDAY        STD     { int freebsd32_gettimeofday( \
  239                                     struct timeval32 *tp, \
  240                                     struct timezone *tzp); }
  241 117     AUE_GETRUSAGE   STD     { int freebsd32_getrusage(int who, \
  242                                     struct rusage32 *rusage); }
  243 118     AUE_GETSOCKOPT  NOPROTO { int getsockopt(int s, int level, \
  244                                     int name, caddr_t val, int *avalsize); }
  245 119     AUE_NULL        UNIMPL  resuba (BSD/OS 2.x)
  246 120     AUE_READV       STD     { int freebsd32_readv(int fd, \
  247                                     struct iovec32 *iovp, u_int iovcnt); }
  248 121     AUE_WRITEV      STD     { int freebsd32_writev(int fd, \
  249                                     struct iovec32 *iovp, u_int iovcnt); }
  250 122     AUE_SETTIMEOFDAY        STD     { int freebsd32_settimeofday( \
  251                                     struct timeval32 *tv, \
  252                                     struct timezone *tzp); }
  253 123     AUE_FCHOWN      NOPROTO { int fchown(int fd, int uid, int gid); }
  254 124     AUE_FCHMOD      NOPROTO { int fchmod(int fd, int mode); }
  255 125     AUE_RECVFROM    OBSOL   orecvfrom
  256 126     AUE_SETREUID    NOPROTO { int setreuid(int ruid, int euid); }
  257 127     AUE_SETREGID    NOPROTO { int setregid(int rgid, int egid); }
  258 128     AUE_RENAME      NOPROTO { int rename(char *from, char *to); }
  259 129     AUE_TRUNCATE    OBSOL   otruncate
  260 130     AUE_FTRUNCATE   OBSOL   ftruncate
  261 131     AUE_FLOCK       NOPROTO { int flock(int fd, int how); }
  262 132     AUE_MKFIFO      NOPROTO { int mkfifo(char *path, int mode); }
  263 133     AUE_SENDTO      NOPROTO { int sendto(int s, caddr_t buf, \
  264                                     size_t len, int flags, caddr_t to, \
  265                                     int tolen); }
  266 134     AUE_SHUTDOWN    NOPROTO { int shutdown(int s, int how); }
  267 135     AUE_SOCKETPAIR  NOPROTO { int socketpair(int domain, int type, \
  268                                     int protocol, int *rsv); }
  269 136     AUE_MKDIR       NOPROTO { int mkdir(char *path, int mode); }
  270 137     AUE_RMDIR       NOPROTO { int rmdir(char *path); }
  271 138     AUE_UTIMES      STD     { int freebsd32_utimes(char *path, \
  272                                     struct timeval32 *tptr); }
  273 139     AUE_NULL        OBSOL   4.2 sigreturn
  274 140     AUE_ADJTIME     STD     { int freebsd32_adjtime( \
  275                                     struct timeval32 *delta, \
  276                                     struct timeval32 *olddelta); }
  277 141     AUE_GETPEERNAME OBSOL   ogetpeername
  278 142     AUE_SYSCTL      OBSOL   ogethostid
  279 143     AUE_SYSCTL      OBSOL   sethostid
  280 144     AUE_GETRLIMIT   OBSOL   getrlimit
  281 145     AUE_SETRLIMIT   OBSOL   setrlimit
  282 146     AUE_KILLPG      OBSOL   killpg
  283 147     AUE_SETSID      NOPROTO { int setsid(void); }
  284 148     AUE_QUOTACTL    NOPROTO { int quotactl(char *path, int cmd, int uid, \
  285                                     caddr_t arg); }
  286 149     AUE_O_QUOTA     OBSOL oquota
  287 150     AUE_GETSOCKNAME OBSOL ogetsockname
  288 
  289 ; Syscalls 151-180 inclusive are reserved for vendor-specific
  290 ; system calls.  (This includes various calls added for compatibity
  291 ; with other Unix variants.)
  292 ; Some of these calls are now supported by BSD...
  293 151     AUE_NULL        UNIMPL  sem_lock (BSD/OS 2.x)
  294 152     AUE_NULL        UNIMPL  sem_wakeup (BSD/OS 2.x)
  295 153     AUE_NULL        UNIMPL  asyncdaemon (BSD/OS 2.x)
  296 ; 154 is initialised by the NLM code, if present.
  297 154     AUE_NULL        UNIMPL  nlm_syscall
  298 ; 155 is initialized by the NFS code, if present.
  299 ; XXX this is a problem!!!
  300 155     AUE_NFS_SVC     UNIMPL  nfssvc
  301 156     AUE_GETDIRENTRIES COMPAT { int freebsd32_getdirentries(int fd, \
  302                                     char *buf, u_int count, uint32_t *basep); }
  303 157     AUE_STATFS      COMPAT4 { int freebsd32_statfs(char *path, \
  304                                     struct statfs32 *buf); }
  305 158     AUE_FSTATFS     COMPAT4 { int freebsd32_fstatfs(int fd, \
  306                                     struct statfs32 *buf); }
  307 159     AUE_NULL        UNIMPL  nosys
  308 160     AUE_LGETFH      UNIMPL  lgetfh
  309 161     AUE_NFS_GETFH   NOPROTO { int getfh(char *fname, \
  310                                     struct fhandle *fhp); }
  311 162     AUE_NULL        OBSOL   getdomainname
  312 163     AUE_NULL        OBSOL   setdomainname
  313 164     AUE_NULL        OBSOL   uname
  314 165     AUE_SYSARCH     STD     { int freebsd32_sysarch(int op, char *parms); }
  315 166     AUE_RTPRIO      NOPROTO { int rtprio(int function, pid_t pid, \
  316                                     struct rtprio *rtp); }
  317 167     AUE_NULL        UNIMPL  nosys
  318 168     AUE_NULL        UNIMPL  nosys
  319 169     AUE_SEMSYS      NOSTD   { int freebsd32_semsys(int which, int a2, \
  320                                     int a3, int a4, int a5); }
  321 170     AUE_MSGSYS      NOSTD   { int freebsd32_msgsys(int which, int a2, \
  322                                     int a3, int a4, int a5, int a6); }
  323 171     AUE_SHMSYS      NOSTD   { int freebsd32_shmsys(uint32_t which, uint32_t a2, \
  324                                     uint32_t a3, uint32_t a4); }
  325 172     AUE_NULL        UNIMPL  nosys
  326 173     AUE_PREAD       COMPAT6 { ssize_t freebsd32_pread(int fd, void *buf, \
  327                                     size_t nbyte, int pad, \
  328                                     u_int32_t offset1, u_int32_t offset2); }
  329 174     AUE_PWRITE      COMPAT6 { ssize_t freebsd32_pwrite(int fd, \
  330                                     const void *buf, size_t nbyte, int pad, \
  331                                     u_int32_t offset1, u_int32_t offset2); }
  332 175     AUE_NULL        UNIMPL  nosys
  333 176     AUE_NTP_ADJTIME NOPROTO { int ntp_adjtime(struct timex *tp); }
  334 177     AUE_NULL        UNIMPL  sfork (BSD/OS 2.x)
  335 178     AUE_NULL        UNIMPL  getdescriptor (BSD/OS 2.x)
  336 179     AUE_NULL        UNIMPL  setdescriptor (BSD/OS 2.x)
  337 180     AUE_NULL        UNIMPL  nosys
  338 
  339 ; Syscalls 181-199 are used by/reserved for BSD
  340 181     AUE_SETGID      NOPROTO { int setgid(gid_t gid); }
  341 182     AUE_SETEGID     NOPROTO { int setegid(gid_t egid); }
  342 183     AUE_SETEUID     NOPROTO { int seteuid(uid_t euid); }
  343 184     AUE_NULL        UNIMPL  lfs_bmapv
  344 185     AUE_NULL        UNIMPL  lfs_markv
  345 186     AUE_NULL        UNIMPL  lfs_segclean
  346 187     AUE_NULL        UNIMPL  lfs_segwait
  347 188     AUE_STAT        STD     { int freebsd32_stat(char *path, \
  348                                     struct stat32 *ub); }
  349 189     AUE_FSTAT       STD     { int freebsd32_fstat(int fd, \
  350                                     struct stat32 *ub); }
  351 190     AUE_LSTAT       STD     { int freebsd32_lstat(char *path, \
  352                                     struct stat32 *ub); }
  353 191     AUE_PATHCONF    NOPROTO { int pathconf(char *path, int name); }
  354 192     AUE_FPATHCONF   NOPROTO { int fpathconf(int fd, int name); }
  355 193     AUE_NULL        UNIMPL  nosys
  356 194     AUE_GETRLIMIT   NOPROTO { int getrlimit(u_int which, \
  357                                     struct rlimit *rlp); } getrlimit \
  358                                     __getrlimit_args int
  359 195     AUE_SETRLIMIT   NOPROTO { int setrlimit(u_int which, \
  360                                     struct rlimit *rlp); } setrlimit \
  361                                     __setrlimit_args int
  362 196     AUE_GETDIRENTRIES       STD     { int freebsd32_getdirentries(int fd, \
  363                                     char *buf, u_int count, int32_t *basep); }
  364 197     AUE_MMAP        COMPAT6 { caddr_t freebsd32_mmap(caddr_t addr, \
  365                                     size_t len, int prot, int flags, int fd, \
  366                                     int pad, u_int32_t pos1, u_int32_t pos2); }
  367 198     AUE_NULL        NOPROTO { int nosys(void); } __syscall \
  368                                     __syscall_args int
  369 199     AUE_LSEEK       COMPAT6 { off_t freebsd32_lseek(int fd, int pad, \
  370                                     u_int32_t offset1, u_int32_t offset2, \
  371                                     int whence); }
  372 200     AUE_TRUNCATE    COMPAT6 { int freebsd32_truncate(char *path, \
  373                                     int pad, u_int32_t length1, \
  374                                     u_int32_t length2); }
  375 201     AUE_FTRUNCATE   COMPAT6 { int freebsd32_ftruncate(int fd, int pad, \
  376                                     u_int32_t length1, u_int32_t length2); }
  377 202     AUE_SYSCTL      STD     { int freebsd32_sysctl(int *name, \
  378                                     u_int namelen, void *old, \
  379                                     u_int32_t *oldlenp, void *new, \
  380                                     u_int32_t newlen); }
  381 203     AUE_MLOCK       NOPROTO { int mlock(const void *addr, \
  382                                     size_t len); }
  383 204     AUE_MUNLOCK     NOPROTO { int munlock(const void *addr, \
  384                                     size_t len); }
  385 205     AUE_UNDELETE    NOPROTO { int undelete(char *path); }
  386 206     AUE_FUTIMES     STD     { int freebsd32_futimes(int fd, \
  387                                     struct timeval32 *tptr); }
  388 207     AUE_GETPGID     NOPROTO { int getpgid(pid_t pid); }
  389 208     AUE_NULL        UNIMPL  newreboot (NetBSD)
  390 209     AUE_POLL        NOPROTO { int poll(struct pollfd *fds, u_int nfds, \
  391                                     int timeout); }
  392 
  393 ;
  394 ; The following are reserved for loadable syscalls
  395 ;
  396 210     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  397 211     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  398 212     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  399 213     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  400 214     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  401 215     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  402 216     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  403 217     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  404 218     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  405 219     AUE_NULL        NODEF|NOTSTATIC lkmnosys lkmnosys nosys_args int
  406 
  407 ;
  408 ; The following were introduced with NetBSD/4.4Lite-2
  409 ; They are initialized by their respective modules/sysinits
  410 ; XXX PROBLEM!!
  411 220     AUE_SEMCTL      COMPAT7|NOSTD   { int freebsd32_semctl( \
  412                                     int semid, int semnum, \
  413                                     int cmd, union semun32 *arg); }
  414 221     AUE_SEMGET      NOSTD|NOPROTO   { int semget(key_t key, int nsems, \
  415                                     int semflg); }
  416 222     AUE_SEMOP       NOSTD|NOPROTO   { int semop(int semid, \
  417                                     struct sembuf *sops, u_int nsops); }
  418 223     AUE_NULL        UNIMPL  semconfig
  419 224     AUE_MSGCTL      COMPAT7|NOSTD   { int freebsd32_msgctl( \
  420                                     int msqid, int cmd, \
  421                                     struct msqid_ds32_old *buf); }
  422 225     AUE_MSGGET      NOSTD|NOPROTO   { int msgget(key_t key, int msgflg); }
  423 226     AUE_MSGSND      NOSTD   { int freebsd32_msgsnd(int msqid, void *msgp, \
  424                                     size_t msgsz, int msgflg); }
  425 227     AUE_MSGRCV      NOSTD   { int freebsd32_msgrcv(int msqid, void *msgp, \
  426                                     size_t msgsz, long msgtyp, int msgflg); }
  427 228     AUE_SHMAT       NOSTD|NOPROTO   { int shmat(int shmid, void *shmaddr, \
  428                                     int shmflg); }
  429 229     AUE_SHMCTL      COMPAT7|NOSTD   { int freebsd32_shmctl( \
  430                                     int shmid, int cmd, \
  431                                     struct shmid_ds32_old *buf); }
  432 230     AUE_SHMDT       NOSTD|NOPROTO   { int shmdt(void *shmaddr); }
  433 231     AUE_SHMGET      NOSTD|NOPROTO   { int shmget(key_t key, int size, \
  434                                     int shmflg); }
  435 ;
  436 232     AUE_NULL        STD     { int freebsd32_clock_gettime(clockid_t clock_id, \
  437                                     struct timespec32 *tp); }
  438 233     AUE_CLOCK_SETTIME       STD     { int freebsd32_clock_settime(clockid_t clock_id, \
  439                                     const struct timespec32 *tp); }
  440 234     AUE_NULL        STD     { int freebsd32_clock_getres(clockid_t clock_id, \
  441                                     struct timespec32 *tp); }
  442 235     AUE_NULL        UNIMPL  timer_create
  443 236     AUE_NULL        UNIMPL  timer_delete
  444 237     AUE_NULL        UNIMPL  timer_settime
  445 238     AUE_NULL        UNIMPL  timer_gettime
  446 239     AUE_NULL        UNIMPL  timer_getoverrun
  447 240     AUE_NULL        STD     { int freebsd32_nanosleep( \
  448                                     const struct timespec32 *rqtp, \
  449                                     struct timespec32 *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        UNIMPL  ntp_gettime
  458 249     AUE_NULL        UNIMPL  nosys
  459 ; syscall numbers initially used in OpenBSD
  460 250     AUE_MINHERIT    NOPROTO { int minherit(void *addr, size_t len, \
  461                                     int inherit); }
  462 251     AUE_RFORK       NOPROTO { int rfork(int flags); }
  463 252     AUE_POLL        NOPROTO { int openbsd_poll(struct pollfd *fds, \
  464                                     u_int nfds, int timeout); }
  465 253     AUE_ISSETUGID   NOPROTO { int issetugid(void); }
  466 254     AUE_LCHOWN      NOPROTO { int lchown(char *path, int uid, int gid); }
  467 255     AUE_NULL        NOSTD   { int freebsd32_aio_read( \
  468                                     struct aiocb32 *aiocbp); }
  469 256     AUE_NULL        NOSTD   { int freebsd32_aio_write( \
  470                                     struct aiocb32 *aiocbp); }
  471 257     AUE_NULL        NOSTD   { int freebsd32_lio_listio(int mode, \
  472                                     struct aiocb32 * const *acb_list, \
  473                                     int nent, struct sigevent *sig); }
  474 258     AUE_NULL        UNIMPL  nosys
  475 259     AUE_NULL        UNIMPL  nosys
  476 260     AUE_NULL        UNIMPL  nosys
  477 261     AUE_NULL        UNIMPL  nosys
  478 262     AUE_NULL        UNIMPL  nosys
  479 263     AUE_NULL        UNIMPL  nosys
  480 264     AUE_NULL        UNIMPL  nosys
  481 265     AUE_NULL        UNIMPL  nosys
  482 266     AUE_NULL        UNIMPL  nosys
  483 267     AUE_NULL        UNIMPL  nosys
  484 268     AUE_NULL        UNIMPL  nosys
  485 269     AUE_NULL        UNIMPL  nosys
  486 270     AUE_NULL        UNIMPL  nosys
  487 271     AUE_NULL        UNIMPL  nosys
  488 272     AUE_O_GETDENTS  NOPROTO { int getdents(int fd, char *buf, \
  489                                     size_t count); }
  490 273     AUE_NULL        UNIMPL  nosys
  491 274     AUE_LCHMOD      NOPROTO { int lchmod(char *path, mode_t mode); }
  492 275     AUE_LCHOWN      NOPROTO { int lchown(char *path, uid_t uid, \
  493                                     gid_t gid); } netbsd_lchown \
  494                                     lchown_args int
  495 276     AUE_LUTIMES     STD     { int freebsd32_lutimes(char *path, \
  496                                     struct timeval32 *tptr); }
  497 277     AUE_MSYNC       NOPROTO { int msync(void *addr, size_t len, \
  498                                     int flags); } netbsd_msync msync_args int
  499 278     AUE_STAT        NOPROTO { int nstat(char *path, struct nstat *ub); }
  500 279     AUE_FSTAT       NOPROTO { int nfstat(int fd, struct nstat *sb); }
  501 280     AUE_LSTAT       NOPROTO { int nlstat(char *path, struct nstat *ub); }
  502 281     AUE_NULL        UNIMPL  nosys
  503 282     AUE_NULL        UNIMPL  nosys
  504 283     AUE_NULL        UNIMPL  nosys
  505 284     AUE_NULL        UNIMPL  nosys
  506 285     AUE_NULL        UNIMPL  nosys
  507 286     AUE_NULL        UNIMPL  nosys
  508 287     AUE_NULL        UNIMPL  nosys
  509 288     AUE_NULL        UNIMPL  nosys
  510 ; 289 and 290 from NetBSD (OpenBSD: 267 and 268)
  511 289     AUE_PREADV      STD     { ssize_t freebsd32_preadv(int fd, \
  512                                         struct iovec32 *iovp, \
  513                                         u_int iovcnt, \
  514                                         u_int32_t offset1, u_int32_t offset2); }
  515 290     AUE_PWRITEV     STD     { ssize_t freebsd32_pwritev(int fd, \
  516                                         struct iovec32 *iovp, \
  517                                         u_int iovcnt, \
  518                                         u_int32_t offset1, u_int32_t offset2); }
  519 291     AUE_NULL        UNIMPL  nosys
  520 292     AUE_NULL        UNIMPL  nosys
  521 293     AUE_NULL        UNIMPL  nosys
  522 294     AUE_NULL        UNIMPL  nosys
  523 295     AUE_NULL        UNIMPL  nosys
  524 296     AUE_NULL        UNIMPL  nosys
  525 ; XXX 297 is 300 in NetBSD 
  526 297     AUE_FHSTATFS    COMPAT4 { int freebsd32_fhstatfs( \
  527                                     const struct fhandle *u_fhp, \
  528                                     struct statfs32 *buf); }
  529 298     AUE_FHOPEN      NOPROTO { int fhopen(const struct fhandle *u_fhp, \
  530                                     int flags); }
  531 299     AUE_FHSTAT      NOPROTO { int fhstat(const struct fhandle *u_fhp, \
  532                                     struct stat *sb); }
  533 ; syscall numbers for FreeBSD
  534 300     AUE_NULL        NOPROTO { int modnext(int modid); }
  535 301     AUE_NULL        STD     { int freebsd32_modstat(int modid, \
  536                                     struct module_stat32* stat); }
  537 302     AUE_NULL        NOPROTO { int modfnext(int modid); }
  538 303     AUE_NULL        NOPROTO { int modfind(const char *name); }
  539 304     AUE_MODLOAD     NOPROTO { int kldload(const char *file); }
  540 305     AUE_MODUNLOAD   NOPROTO { int kldunload(int fileid); }
  541 306     AUE_NULL        NOPROTO { int kldfind(const char *file); }
  542 307     AUE_NULL        NOPROTO { int kldnext(int fileid); }
  543 308     AUE_NULL        STD     { int freebsd32_kldstat(int fileid, \
  544                                     struct kld32_file_stat* stat); }
  545 309     AUE_NULL        NOPROTO { int kldfirstmod(int fileid); }
  546 310     AUE_GETSID      NOPROTO { int getsid(pid_t pid); }
  547 311     AUE_SETRESUID   NOPROTO { int setresuid(uid_t ruid, uid_t euid, \
  548                                     uid_t suid); }
  549 312     AUE_SETRESGID   NOPROTO { int setresgid(gid_t rgid, gid_t egid, \
  550                                     gid_t sgid); }
  551 313     AUE_NULL        OBSOL   signanosleep
  552 314     AUE_NULL        NOSTD   { int freebsd32_aio_return( \
  553                                     struct aiocb32 *aiocbp); }
  554 315     AUE_NULL        NOSTD   { int freebsd32_aio_suspend( \
  555                                     struct aiocb32 * const * aiocbp, int nent, \
  556                                     const struct timespec32 *timeout); }
  557 316     AUE_NULL        NOSTD   { int freebsd32_aio_cancel(int fd, \
  558                                     struct aiocb32 *aiocbp); }
  559 317     AUE_NULL        NOSTD   { int freebsd32_aio_error( \
  560                                     struct aiocb32 *aiocbp); }
  561 318     AUE_NULL        NOSTD   { int freebsd32_oaio_read( \
  562                                     struct oaiocb32 *aiocbp); }
  563 319     AUE_NULL        NOSTD   { int freebsd32_oaio_write( \
  564                                     struct oaiocb32 *aiocbp); }
  565 320     AUE_NULL        NOSTD   { int freebsd32_olio_listio(int mode, \
  566                                     struct oaiocb32 * const *acb_list, \
  567                                     int nent, struct osigevent32 *sig); }
  568 321     AUE_NULL        NOPROTO { int yield(void); }
  569 322     AUE_NULL        OBSOL   thr_sleep
  570 323     AUE_NULL        OBSOL   thr_wakeup
  571 324     AUE_MLOCKALL    NOPROTO { int mlockall(int how); }
  572 325     AUE_MUNLOCKALL  NOPROTO { int munlockall(void); }
  573 326     AUE_GETCWD      NOPROTO { int __getcwd(u_char *buf, u_int buflen); }
  574 
  575 327     AUE_NULL        NOPROTO { int sched_setparam (pid_t pid, \
  576                                     const struct sched_param *param); }
  577 328     AUE_NULL        NOPROTO { int sched_getparam (pid_t pid, \
  578                                     struct sched_param *param); }
  579 
  580 329     AUE_NULL        NOPROTO { int sched_setscheduler (pid_t pid, \
  581                                     int policy, \
  582                                     const struct sched_param *param); }
  583 330     AUE_NULL        NOPROTO { int sched_getscheduler (pid_t pid); }
  584 
  585 331     AUE_NULL        NOPROTO { int sched_yield (void); }
  586 332     AUE_NULL        NOPROTO { int sched_get_priority_max (int policy); }
  587 333     AUE_NULL        NOPROTO { int sched_get_priority_min (int policy); }
  588 334     AUE_NULL        NOPROTO { int sched_rr_get_interval (pid_t pid, \
  589                                     struct timespec *interval); }
  590 335     AUE_NULL        NOPROTO { int utrace(const void *addr, size_t len); }
  591 336     AUE_SENDFILE    COMPAT4 { int freebsd32_sendfile(int fd, int s, \
  592                                     u_int32_t offset1, u_int32_t offset2, \
  593                                     size_t nbytes, struct sf_hdtr32 *hdtr, \
  594                                     off_t *sbytes, int flags); }
  595 337     AUE_NULL        NOPROTO { int kldsym(int fileid, int cmd, \
  596                                     void *data); }
  597 338     AUE_JAIL        STD     { int freebsd32_jail(struct jail32 *jail); }
  598 339     AUE_NULL        UNIMPL  pioctl
  599 340     AUE_SIGPROCMASK NOPROTO { int sigprocmask(int how, \
  600                                     const sigset_t *set, sigset_t *oset); }
  601 341     AUE_SIGSUSPEND  NOPROTO { int sigsuspend(const sigset_t *sigmask); }
  602 342     AUE_SIGACTION   COMPAT4 { int freebsd32_sigaction(int sig, \
  603                                     struct sigaction32 *act, \
  604                                     struct sigaction32 *oact); }
  605 343     AUE_SIGPENDING  NOPROTO { int sigpending(sigset_t *set); }
  606 344     AUE_SIGRETURN   COMPAT4 { int freebsd32_sigreturn( \
  607                     const struct freebsd4_freebsd32_ucontext *sigcntxp); }
  608 345     AUE_SIGWAIT     STD     { int freebsd32_sigtimedwait(const sigset_t *set, \
  609                                     siginfo_t *info, \
  610                                     const struct timespec *timeout); }
  611 346     AUE_NULL        STD     { int freebsd32_sigwaitinfo(const sigset_t *set, \
  612                                     siginfo_t *info); }
  613 347     AUE_NULL        NOPROTO { int __acl_get_file(const char *path, \
  614                                     acl_type_t type, struct acl *aclp); }
  615 348     AUE_NULL        NOPROTO { int __acl_set_file(const char *path, \
  616                                     acl_type_t type, struct acl *aclp); }
  617 349     AUE_NULL        NOPROTO { int __acl_get_fd(int filedes, \
  618                                     acl_type_t type, struct acl *aclp); }
  619 350     AUE_NULL        NOPROTO { int __acl_set_fd(int filedes, \
  620                                     acl_type_t type, struct acl *aclp); }
  621 351     AUE_NULL        NOPROTO { int __acl_delete_file(const char *path, \
  622                                     acl_type_t type); }
  623 352     AUE_NULL        NOPROTO { int __acl_delete_fd(int filedes, \
  624                                     acl_type_t type); }
  625 353     AUE_NULL        NOPROTO { int __acl_aclcheck_file(const char *path, \
  626                                     acl_type_t type, struct acl *aclp); }
  627 354     AUE_NULL        NOPROTO { int __acl_aclcheck_fd(int filedes, \
  628                                     acl_type_t type, struct acl *aclp); }
  629 355     AUE_EXTATTRCTL  NOPROTO { int extattrctl(const char *path, int cmd, \
  630                                     const char *filename, int attrnamespace, \
  631                                     const char *attrname); }
  632 356     AUE_EXTATTR_SET_FILE    NOPROTO { int extattr_set_file( \
  633                                     const char *path, int attrnamespace, \
  634                                     const char *attrname, void *data, \
  635                                     size_t nbytes); }
  636 357     AUE_EXTATTR_GET_FILE    NOPROTO { ssize_t extattr_get_file( \
  637                                     const char *path, int attrnamespace, \
  638                                     const char *attrname, void *data, \
  639                                     size_t nbytes); }
  640 358     AUE_EXTATTR_DELETE_FILE NOPROTO { int extattr_delete_file( \
  641                                     const char *path, int attrnamespace, \
  642                                     const char *attrname); }
  643 359     AUE_NULL        NOSTD   { int freebsd32_aio_waitcomplete( \
  644                                     struct aiocb32 **aiocbp, \
  645                                     struct timespec32 *timeout); }
  646 360     AUE_GETRESUID   NOPROTO { int getresuid(uid_t *ruid, uid_t *euid, \
  647                                     uid_t *suid); }
  648 361     AUE_GETRESGID   NOPROTO { int getresgid(gid_t *rgid, gid_t *egid, \
  649                                     gid_t *sgid); }
  650 362     AUE_KQUEUE      NOPROTO { int kqueue(void); }
  651 363     AUE_NULL        STD     { int freebsd32_kevent(int fd, \
  652                                     const struct kevent32 *changelist, \
  653                                     int nchanges, \
  654                                     struct kevent32 *eventlist, int nevents, \
  655                                     const struct timespec32 *timeout); }
  656 364     AUE_NULL        UNIMPL  __cap_get_proc
  657 365     AUE_NULL        UNIMPL  __cap_set_proc
  658 366     AUE_NULL        UNIMPL  __cap_get_fd
  659 367     AUE_NULL        UNIMPL  __cap_get_file
  660 368     AUE_NULL        UNIMPL  __cap_set_fd
  661 369     AUE_NULL        UNIMPL  __cap_set_file
  662 370     AUE_NULL        UNIMPL  nosys
  663 371     AUE_EXTATTR_SET_FD      NOPROTO { int extattr_set_fd(int fd, \
  664                                     int attrnamespace, const char *attrname, \
  665                                     void *data, size_t nbytes); }
  666 372     AUE_EXTATTR_GET_FD      NOPROTO { ssize_t extattr_get_fd(int fd, \
  667                                     int attrnamespace, const char *attrname, \
  668                                     void *data, size_t nbytes); }
  669 373     AUE_EXTATTR_DELETE_FD   NOPROTO { int extattr_delete_fd(int fd, \
  670                                     int attrnamespace, \
  671                                     const char *attrname); }
  672 374     AUE_NULL        NOPROTO { int __setugid(int flag); }
  673 375     AUE_NULL        UNIMPL  nfsclnt
  674 376     AUE_EACCESS     NOPROTO { int eaccess(char *path, int flags); }
  675 377     AUE_NULL        UNIMPL  afs_syscall
  676 378     AUE_NMOUNT      STD     { int freebsd32_nmount(struct iovec32 *iovp, \
  677                                     unsigned int iovcnt, int flags); }
  678 379     AUE_NULL        UNIMPL  kse_exit
  679 380     AUE_NULL        UNIMPL  kse_wakeup
  680 381     AUE_NULL        UNIMPL  kse_create
  681 382     AUE_NULL        UNIMPL  kse_thr_interrupt
  682 383     AUE_NULL        UNIMPL  kse_release
  683 384     AUE_NULL        UNIMPL  __mac_get_proc
  684 385     AUE_NULL        UNIMPL  __mac_set_proc
  685 386     AUE_NULL        UNIMPL  __mac_get_fd
  686 387     AUE_NULL        UNIMPL  __mac_get_file
  687 388     AUE_NULL        UNIMPL  __mac_set_fd
  688 389     AUE_NULL        UNIMPL  __mac_set_file
  689 390     AUE_NULL        NOPROTO { int kenv(int what, const char *name, \
  690                                     char *value, int len); }
  691 391     AUE_LCHFLAGS    NOPROTO { int lchflags(const char *path, int flags); }
  692 392     AUE_NULL        NOPROTO { int uuidgen(struct uuid *store, \
  693                                     int count); }
  694 393     AUE_SENDFILE    STD     { int freebsd32_sendfile(int fd, int s, \
  695                                     u_int32_t offset1, u_int32_t offset2, \
  696                                     size_t nbytes, struct sf_hdtr32 *hdtr, \
  697                                     off_t *sbytes, int flags); }
  698 394     AUE_NULL        UNIMPL  mac_syscall
  699 395     AUE_GETFSSTAT   NOPROTO { int getfsstat(struct statfs *buf, \
  700                                     long bufsize, int flags); }
  701 396     AUE_STATFS      NOPROTO { int statfs(char *path, \
  702                                     struct statfs *buf); }
  703 397     AUE_FSTATFS     NOPROTO { int fstatfs(int fd, struct statfs *buf); }
  704 398     AUE_FHSTATFS    NOPROTO { int fhstatfs(const struct fhandle *u_fhp, \
  705                                     struct statfs *buf); }
  706 399     AUE_NULL        UNIMPL  nosys
  707 400     AUE_NULL        NOSTD|NOPROTO   { int ksem_close(semid_t id); }
  708 401     AUE_NULL        NOSTD|NOPROTO   { int ksem_post(semid_t id); }
  709 402     AUE_NULL        NOSTD|NOPROTO   { int ksem_wait(semid_t id); }
  710 403     AUE_NULL        NOSTD|NOPROTO   { int ksem_trywait(semid_t id); }
  711 404     AUE_NULL        NOSTD   { int freebsd32_ksem_init(semid_t *idp, \
  712                                     unsigned int value); }
  713 405     AUE_NULL        NOSTD   { int freebsd32_ksem_open(semid_t *idp, \
  714                                     const char *name, int oflag, \
  715                                     mode_t mode, unsigned int value); }
  716 406     AUE_NULL        NOSTD|NOPROTO   { int ksem_unlink(const char *name); }
  717 407     AUE_NULL        NOSTD|NOPROTO   { int ksem_getvalue(semid_t id, \
  718                                     int *val); }
  719 408     AUE_NULL        NOSTD|NOPROTO   { int ksem_destroy(semid_t id); }
  720 409     AUE_NULL        UNIMPL  __mac_get_pid
  721 410     AUE_NULL        UNIMPL  __mac_get_link
  722 411     AUE_NULL        UNIMPL  __mac_set_link
  723 412     AUE_EXTATTR_SET_LINK    NOPROTO { int extattr_set_link( \
  724                                     const char *path, int attrnamespace, \
  725                                     const char *attrname, void *data, \
  726                                     size_t nbytes); }
  727 413     AUE_EXTATTR_GET_LINK    NOPROTO { ssize_t extattr_get_link( \
  728                                     const char *path, int attrnamespace, \
  729                                     const char *attrname, void *data, \
  730                                     size_t nbytes); }
  731 414     AUE_EXTATTR_DELETE_LINK NOPROTO { int extattr_delete_link( \
  732                                     const char *path, int attrnamespace, \
  733                                     const char *attrname); }
  734 415     AUE_NULL        UNIMPL  __mac_execve
  735 416     AUE_SIGACTION   STD     { int freebsd32_sigaction(int sig, \
  736                                     struct sigaction32 *act, \
  737                                     struct sigaction32 *oact); }
  738 417     AUE_SIGRETURN   STD     { int freebsd32_sigreturn( \
  739                     const struct freebsd32_ucontext *sigcntxp); }
  740 418     AUE_NULL        UNIMPL  __xstat
  741 419     AUE_NULL        UNIMPL  __xfstat
  742 420     AUE_NULL        UNIMPL  __xlstat
  743 421     AUE_NULL        STD     { int freebsd32_getcontext( \
  744                                     struct freebsd32_ucontext *ucp); }
  745 422     AUE_NULL        STD     { int freebsd32_setcontext( \
  746                                     const struct freebsd32_ucontext *ucp); }
  747 423     AUE_NULL        STD     { int freebsd32_swapcontext( \
  748                                     struct freebsd32_ucontext *oucp, \
  749                                     const struct freebsd32_ucontext *ucp); }
  750 424     AUE_SWAPOFF     UNIMPL  swapoff
  751 425     AUE_NULL        NOPROTO { int __acl_get_link(const char *path, \
  752                                     acl_type_t type, struct acl *aclp); }
  753 426     AUE_NULL        NOPROTO { int __acl_set_link(const char *path, \
  754                                     acl_type_t type, struct acl *aclp); }
  755 427     AUE_NULL        NOPROTO { int __acl_delete_link(const char *path, \
  756                                     acl_type_t type); }
  757 428     AUE_NULL        NOPROTO { int __acl_aclcheck_link(const char *path, \
  758                                     acl_type_t type, struct acl *aclp); }
  759 429     AUE_SIGWAIT     NOPROTO { int sigwait(const sigset_t *set, \
  760                                     int *sig); }
  761 430     AUE_NULL        UNIMPL  thr_create;
  762 431     AUE_NULL        NOPROTO { void thr_exit(long *state); }
  763 432     AUE_NULL        NOPROTO { int thr_self(long *id); }
  764 433     AUE_NULL        NOPROTO { int thr_kill(long id, int sig); }
  765 434     AUE_NULL        STD     { int freebsd32_umtx_lock(struct umtx *umtx); }
  766 435     AUE_NULL        STD     { int freebsd32_umtx_unlock(struct umtx *umtx); }
  767 436     AUE_NULL        NOPROTO { int jail_attach(int jid); }
  768 437     AUE_EXTATTR_LIST_FD     NOPROTO { ssize_t extattr_list_fd(int fd, \
  769                                     int attrnamespace, void *data, \
  770                                     size_t nbytes); }
  771 438     AUE_EXTATTR_LIST_FILE   NOPROTO { ssize_t extattr_list_file( \
  772                                     const char *path, int attrnamespace, \
  773                                     void *data, size_t nbytes); }
  774 439     AUE_EXTATTR_LIST_LINK   NOPROTO { ssize_t extattr_list_link( \
  775                                     const char *path, int attrnamespace, \
  776                                     void *data, size_t nbytes); }
  777 440     AUE_NULL        UNIMPL  kse_switchin
  778 441     AUE_NULL        NOSTD   { int freebsd32_ksem_timedwait(semid_t id, \
  779                                     const struct timespec32 *abstime); }
  780 442     AUE_NULL        STD     { int freebsd32_thr_suspend( \
  781                                     const struct timespec32 *timeout); }
  782 443     AUE_NULL        NOPROTO { int thr_wake(long id); }
  783 444     AUE_MODUNLOAD   NOPROTO { int kldunloadf(int fileid, int flags); }
  784 445     AUE_AUDIT       NOPROTO { int audit(const void *record, \
  785                                     u_int length); }
  786 446     AUE_AUDITON     NOPROTO { int auditon(int cmd, void *data, \
  787                                     u_int length); }
  788 447     AUE_GETAUID     NOPROTO { int getauid(uid_t *auid); }
  789 448     AUE_SETAUID     NOPROTO { int setauid(uid_t *auid); }
  790 449     AUE_GETAUDIT    NOPROTO { int getaudit(struct auditinfo *auditinfo); }
  791 450     AUE_SETAUDIT    NOPROTO { int setaudit(struct auditinfo *auditinfo); }
  792 451     AUE_GETAUDIT_ADDR       NOPROTO { int getaudit_addr( \
  793                                     struct auditinfo_addr *auditinfo_addr, \
  794                                     u_int length); }
  795 452     AUE_SETAUDIT_ADDR       NOPROTO { int setaudit_addr( \
  796                                     struct auditinfo_addr *auditinfo_addr, \
  797                                     u_int length); }
  798 453     AUE_AUDITCTL    NOPROTO { int auditctl(char *path); }
  799 454     AUE_NULL        STD     { int freebsd32_umtx_op(void *obj, int op,\
  800                                     u_long val, void *uaddr, \
  801                                     void *uaddr2); }
  802 455     AUE_NULL        STD     { int freebsd32_thr_new(        \
  803                                     struct thr_param32 *param,  \
  804                                     int param_size); }
  805 456     AUE_NULL        NOPROTO { int sigqueue(pid_t pid, int signum, \
  806                                     void *value); }
  807 457     AUE_NULL        NOSTD   { int freebsd32_kmq_open( \
  808                                     const char *path, int flags, mode_t mode, \
  809                                     const struct mq_attr32 *attr); }
  810 458     AUE_NULL        NOSTD   { int freebsd32_kmq_setattr(int mqd, \
  811                                     const struct mq_attr32 *attr,       \
  812                                     struct mq_attr32 *oattr); }
  813 459     AUE_NULL        NOSTD   { int freebsd32_kmq_timedreceive(int mqd, \
  814                                     char *msg_ptr, size_t msg_len,      \
  815                                     unsigned *msg_prio,                 \
  816                                     const struct timespec32 *abs_timeout); }
  817 460     AUE_NULL        NOSTD   { int freebsd32_kmq_timedsend(int mqd,  \
  818                                     const char *msg_ptr, size_t msg_len,\
  819                                     unsigned msg_prio,                  \
  820                                     const struct timespec32 *abs_timeout);}
  821 461     AUE_NULL        NOPROTO|NOSTD   { int kmq_notify(int mqd,       \
  822                                     const struct sigevent *sigev); }
  823 462     AUE_NULL        NOPROTO|NOSTD   { int kmq_unlink(const char *path); }
  824 463     AUE_NULL        NOPROTO { int abort2(const char *why, int nargs, void **args); }
  825 464     AUE_NULL        NOPROTO { int thr_set_name(long id, const char *name); }
  826 465     AUE_NULL        NOSTD   { int freebsd32_aio_fsync(int op, \
  827                                     struct aiocb32 *aiocbp); }
  828 466     AUE_RTPRIO      NOPROTO { int rtprio_thread(int function, \
  829                                     lwpid_t lwpid, struct rtprio *rtp); }
  830 467     AUE_NULL        UNIMPL  nosys
  831 468     AUE_NULL        UNIMPL  nosys
  832 469     AUE_NULL        UNIMPL  __getpath_fromfd
  833 470     AUE_NULL        UNIMPL  __getpath_fromaddr
  834 471     AUE_NULL        NOPROTO { int sctp_peeloff(int sd, uint32_t name); }
  835 472     AUE_NULL        NOPROTO { int sctp_generic_sendmsg(int sd, caddr_t msg, int mlen, \
  836                                     caddr_t to, __socklen_t tolen, \
  837                                     struct sctp_sndrcvinfo *sinfo, int flags); }
  838 473     AUE_NULL        NOPROTO { int sctp_generic_sendmsg_iov(int sd, struct iovec *iov, int iovlen, \
  839                                     caddr_t to, __socklen_t tolen, \
  840                                     struct sctp_sndrcvinfo *sinfo, int flags); }
  841 474     AUE_NULL        NOPROTO { int sctp_generic_recvmsg(int sd, struct iovec *iov, int iovlen, \
  842                                     struct sockaddr * from, __socklen_t *fromlenaddr, \
  843                                     struct sctp_sndrcvinfo *sinfo, int *msg_flags); }
  844 #ifdef PAD64_REQUIRED
  845 475     AUE_PREAD       STD     { ssize_t freebsd32_pread(int fd, \
  846                                     void *buf,size_t nbyte, \
  847                                     int pad, \
  848                                     u_int32_t offset1, u_int32_t offset2); }
  849 476     AUE_PWRITE      STD     { ssize_t freebsd32_pwrite(int fd, \
  850                                     const void *buf, size_t nbyte, \
  851                                     int pad, \
  852                                     u_int32_t offset1, u_int32_t offset2); }
  853 477     AUE_MMAP        STD     { caddr_t freebsd32_mmap(caddr_t addr, \
  854                                     size_t len, int prot, int flags, int fd, \
  855                                     int pad, \
  856                                     u_int32_t pos1, u_int32_t pos2); }
  857 478     AUE_LSEEK       STD     { off_t freebsd32_lseek(int fd, \
  858                                     int pad, \
  859                                     u_int32_t offset1, u_int32_t offset2, \
  860                                     int whence); }
  861 479     AUE_TRUNCATE    STD     { int freebsd32_truncate(char *path, \
  862                                     int pad, \
  863                                     u_int32_t length1, u_int32_t length2); }
  864 480     AUE_FTRUNCATE   STD     { int freebsd32_ftruncate(int fd, \
  865                                     int pad, \
  866                                     u_int32_t length1, u_int32_t length2); }
  867 #else
  868 475     AUE_PREAD       STD     { ssize_t freebsd32_pread(int fd, \
  869                                     void *buf,size_t nbyte, \
  870                                     u_int32_t offset1, u_int32_t offset2); }
  871 476     AUE_PWRITE      STD     { ssize_t freebsd32_pwrite(int fd, \
  872                                     const void *buf, size_t nbyte, \
  873                                     u_int32_t offset1, u_int32_t offset2); }
  874 477     AUE_MMAP        STD     { caddr_t freebsd32_mmap(caddr_t addr, \
  875                                     size_t len, int prot, int flags, int fd, \
  876                                     u_int32_t pos1, u_int32_t pos2); }
  877 478     AUE_LSEEK       STD     { off_t freebsd32_lseek(int fd, \
  878                                     u_int32_t offset1, u_int32_t offset2, \
  879                                     int whence); }
  880 479     AUE_TRUNCATE    STD     { int freebsd32_truncate(char *path, \
  881                                     u_int32_t length1, u_int32_t length2); }
  882 480     AUE_FTRUNCATE   STD     { int freebsd32_ftruncate(int fd, \
  883                                     u_int32_t length1, u_int32_t length2); }
  884 #endif
  885 481     AUE_KILL        NOPROTO { int thr_kill2(pid_t pid, long id, int sig); }
  886 482     AUE_SHMOPEN     NOPROTO { int shm_open(const char *path, int flags, \
  887                                     mode_t mode); }
  888 483     AUE_SHMUNLINK   NOPROTO { int shm_unlink(const char *path); }
  889 484     AUE_NULL        NOPROTO { int cpuset(cpusetid_t *setid); }
  890 #ifdef PAD64_REQUIRED
  891 485     AUE_NULL        STD     { int freebsd32_cpuset_setid(cpuwhich_t which, \
  892                                     int pad, \
  893                                     u_int32_t id1, u_int32_t id2, \
  894                                     cpusetid_t setid); }
  895 #else
  896 485     AUE_NULL        STD     { int freebsd32_cpuset_setid(cpuwhich_t which, \
  897                                     u_int32_t id1, u_int32_t id2, \
  898                                     cpusetid_t setid); }
  899 #endif
  900 486     AUE_NULL        STD     { int freebsd32_cpuset_getid(cpulevel_t level, \
  901                                     cpuwhich_t which, \
  902                                     u_int32_t id1, u_int32_t id2, \
  903                                     cpusetid_t *setid); }
  904 487     AUE_NULL        STD     { int freebsd32_cpuset_getaffinity( \
  905                                     cpulevel_t level, cpuwhich_t which, \
  906                                     u_int32_t id1, u_int32_t id2, \
  907                                     size_t cpusetsize, \
  908                                     cpuset_t *mask); }
  909 488     AUE_NULL        STD     { int freebsd32_cpuset_setaffinity( \
  910                                     cpulevel_t level, cpuwhich_t which, \
  911                                     u_int32_t id1, u_int32_t id2, \
  912                                     size_t cpusetsize, \
  913                                     const cpuset_t *mask); }
  914 489     AUE_FACCESSAT   NOPROTO { int faccessat(int fd, char *path, int mode, \
  915                                     int flag); }
  916 490     AUE_FCHMODAT    NOPROTO { int fchmodat(int fd, const char *path, \
  917                                     mode_t mode, int flag); }
  918 491     AUE_FCHOWNAT    NOPROTO { int fchownat(int fd, char *path, uid_t uid, \
  919                                     gid_t gid, int flag); }
  920 492     AUE_FEXECVE     STD     { int freebsd32_fexecve(int fd, \
  921                                     u_int32_t *argv, u_int32_t *envv); }
  922 493     AUE_FSTATAT     STD     { int freebsd32_fstatat(int fd, char *path, \
  923                                     struct stat *buf, int flag); }
  924 494     AUE_FUTIMESAT   STD     { int freebsd32_futimesat(int fd, char *path, \
  925                                     struct timeval *times); }
  926 495     AUE_LINKAT      NOPROTO { int linkat(int fd1, char *path1, int fd2, \
  927                                     char *path2, int flag); }
  928 496     AUE_MKDIRAT     NOPROTO { int mkdirat(int fd, char *path, \
  929                                     mode_t mode); }
  930 497     AUE_MKFIFOAT    NOPROTO { int mkfifoat(int fd, char *path, \
  931                                     mode_t mode); }
  932 498     AUE_MKNODAT     NOPROTO { int mknodat(int fd, char *path, \
  933                                     mode_t mode, dev_t dev); }
  934 499     AUE_OPENAT_RWTC NOPROTO { int openat(int fd, char *path, int flag, \
  935                                     mode_t mode); }
  936 500     AUE_READLINKAT  NOPROTO { int readlinkat(int fd, char *path, char *buf, \
  937                                     size_t bufsize); }
  938 501     AUE_RENAMEAT    NOPROTO { int renameat(int oldfd, char *old, int newfd, \
  939                                     const char *new); }
  940 502     AUE_SYMLINKAT   NOPROTO { int symlinkat(char *path1, int fd, \
  941                                     char *path2); }
  942 503     AUE_UNLINKAT    NOPROTO { int unlinkat(int fd, char *path, \
  943                                     int flag); }
  944 504     AUE_POSIX_OPENPT        NOPROTO { int posix_openpt(int flags); }
  945 ; 505 is initialised by the kgssapi code, if present.
  946 505     AUE_NULL        UNIMPL  gssd_syscall
  947 506     AUE_NULL        STD     { int freebsd32_jail_get(struct iovec32 *iovp, \
  948                                     unsigned int iovcnt, int flags); }
  949 507     AUE_NULL        STD     { int freebsd32_jail_set(struct iovec32 *iovp, \
  950                                     unsigned int iovcnt, int flags); }
  951 508     AUE_NULL        NOPROTO { int jail_remove(int jid); }
  952 509     AUE_CLOSEFROM   NOPROTO { int closefrom(int lowfd); }
  953 510     AUE_SEMCTL      NOSTD { int freebsd32_semctl(int semid, int semnum, \
  954                                     int cmd, union semun32 *arg); }
  955 511     AUE_MSGCTL      NOSTD   { int freebsd32_msgctl(int msqid, int cmd, \
  956                                     struct msqid_ds32 *buf); }
  957 512     AUE_SHMCTL      NOSTD   { int freebsd32_shmctl(int shmid, int cmd, \
  958                                     struct shmid_ds32 *buf); }
  959 513     AUE_LPATHCONF   NOPROTO { int lpathconf(char *path, int name); }
  960 514     AUE_CAP_NEW     NOPROTO { int cap_new(int fd, u_int64_t rights); }
  961 515     AUE_CAP_GETRIGHTS       NOPROTO { int cap_getrights(int fd, \
  962                                     u_int64_t *rightsp); }
  963 516     AUE_CAP_ENTER   NOPROTO { int cap_enter(void); }
  964 517     AUE_CAP_GETMODE NOPROTO { int cap_getmode(u_int *modep); }
  965 518     AUE_PDFORK      UNIMPL  pdfork
  966 519     AUE_PDKILL      UNIMPL  pdkill
  967 520     AUE_PDGETPID    UNIMPL  pdgetpid
  968 521     AUE_PDWAIT      UNIMPL  pdwait
  969 522     AUE_SELECT      STD     { int freebsd32_pselect(int nd, fd_set *in, \
  970                                     fd_set *ou, fd_set *ex, \
  971                                     const struct timespec32 *ts, \
  972                                     const sigset_t *sm); }
  973 523     AUE_NULL        NOPROTO { int getloginclass(char *namebuf, \
  974                                     size_t namelen); }
  975 524     AUE_NULL        NOPROTO { int setloginclass(const char *namebuf); }
  976 525     AUE_NULL        NOPROTO { int rctl_get_racct(const void *inbufp, \
  977                                     size_t inbuflen, void *outbufp, \
  978                                     size_t outbuflen); }
  979 526     AUE_NULL        NOPROTO { int rctl_get_rules(const void *inbufp, \
  980                                     size_t inbuflen, void *outbufp, \
  981                                     size_t outbuflen); }
  982 527     AUE_NULL        NOPROTO { int rctl_get_limits(const void *inbufp, \
  983                                     size_t inbuflen, void *outbufp, \
  984                                     size_t outbuflen); }
  985 528     AUE_NULL        NOPROTO { int rctl_add_rule(const void *inbufp, \
  986                                     size_t inbuflen, void *outbufp, \
  987                                     size_t outbuflen); }
  988 529     AUE_NULL        NOPROTO { int rctl_remove_rule(const void *inbufp, \
  989                                     size_t inbuflen, void *outbufp, \
  990                                     size_t outbuflen); }
  991 530     AUE_NULL        STD     { int freebsd32_posix_fallocate(int fd,\
  992                                      uint32_t offsetlo, uint32_t offsethi,\
  993                                      uint32_t lenlo, uint32_t lenhi); }
  994 531     AUE_NULL        UNIMPL  posix_fadvise

Cache object: fbd167797c7d5587fdd7a94973ec1ad7


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