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

Cache object: 5bbfcdd662849281d98138f7b47295c5


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