Home | History | Annotate | Line # | Download | only in freebsd
freebsd_syscallargs.h revision 1.53
      1  1.39       cgd /* $NetBSD: freebsd_syscallargs.h,v 1.53 2003/09/18 14:50:08 pooka Exp $ */
      2  1.16   thorpej 
      3   1.1   mycroft /*
      4   1.1   mycroft  * System call argument lists.
      5   1.1   mycroft  *
      6   1.1   mycroft  * DO NOT EDIT-- this file is automatically generated.
      7  1.53     pooka  * created from	NetBSD: syscalls.master,v 1.41 2003/09/18 14:44:09 pooka Exp
      8   1.1   mycroft  */
      9  1.26      tron 
     10  1.28  christos #ifndef _FREEBSD_SYS__SYSCALLARGS_H_
     11  1.45       mrg #define	_FREEBSD_SYS__SYSCALLARGS_H_
     12  1.28  christos 
     13  1.26      tron #ifdef	syscallarg
     14  1.26      tron #undef	syscallarg
     15  1.26      tron #endif
     16   1.1   mycroft 
     17  1.31   thorpej #define	syscallarg(x)							\
     18  1.31   thorpej 	union {								\
     19  1.31   thorpej 		register_t pad;						\
     20  1.31   thorpej 		struct { x datum; } le;					\
     21  1.47     lukem 		struct { /* LINTED zero array dimension */		\
     22  1.47     lukem 			int8_t pad[  /* CONSTCOND */			\
     23  1.47     lukem 				(sizeof (register_t) < sizeof (x))	\
     24  1.31   thorpej 				? 0					\
     25  1.31   thorpej 				: sizeof (register_t) - sizeof (x)];	\
     26  1.31   thorpej 			x datum;					\
     27  1.31   thorpej 		} be;							\
     28  1.31   thorpej 	}
     29   1.1   mycroft 
     30   1.1   mycroft struct freebsd_sys_open_args {
     31  1.28  christos 	syscallarg(const char *) path;
     32   1.1   mycroft 	syscallarg(int) flags;
     33   1.1   mycroft 	syscallarg(int) mode;
     34   1.1   mycroft };
     35   1.1   mycroft 
     36   1.1   mycroft struct compat_43_freebsd_sys_creat_args {
     37  1.28  christos 	syscallarg(const char *) path;
     38   1.1   mycroft 	syscallarg(int) mode;
     39   1.1   mycroft };
     40   1.1   mycroft 
     41   1.1   mycroft struct freebsd_sys_link_args {
     42  1.28  christos 	syscallarg(const char *) path;
     43  1.28  christos 	syscallarg(const char *) link;
     44   1.1   mycroft };
     45   1.1   mycroft 
     46   1.1   mycroft struct freebsd_sys_unlink_args {
     47  1.28  christos 	syscallarg(const char *) path;
     48   1.1   mycroft };
     49   1.1   mycroft 
     50   1.1   mycroft struct freebsd_sys_chdir_args {
     51  1.28  christos 	syscallarg(const char *) path;
     52   1.1   mycroft };
     53   1.1   mycroft 
     54   1.1   mycroft struct freebsd_sys_mknod_args {
     55  1.28  christos 	syscallarg(const char *) path;
     56   1.1   mycroft 	syscallarg(int) mode;
     57   1.1   mycroft 	syscallarg(int) dev;
     58   1.1   mycroft };
     59   1.1   mycroft 
     60   1.1   mycroft struct freebsd_sys_chmod_args {
     61  1.28  christos 	syscallarg(const char *) path;
     62   1.1   mycroft 	syscallarg(int) mode;
     63   1.1   mycroft };
     64   1.1   mycroft 
     65   1.1   mycroft struct freebsd_sys_chown_args {
     66  1.28  christos 	syscallarg(const char *) path;
     67   1.1   mycroft 	syscallarg(int) uid;
     68   1.1   mycroft 	syscallarg(int) gid;
     69   1.1   mycroft };
     70   1.1   mycroft 
     71   1.1   mycroft struct freebsd_sys_mount_args {
     72   1.1   mycroft 	syscallarg(int) type;
     73  1.28  christos 	syscallarg(const char *) path;
     74   1.1   mycroft 	syscallarg(int) flags;
     75   1.1   mycroft 	syscallarg(caddr_t) data;
     76   1.1   mycroft };
     77   1.1   mycroft 
     78   1.1   mycroft struct freebsd_sys_unmount_args {
     79  1.28  christos 	syscallarg(const char *) path;
     80   1.1   mycroft 	syscallarg(int) flags;
     81   1.1   mycroft };
     82   1.1   mycroft 
     83   1.1   mycroft struct freebsd_sys_ptrace_args {
     84   1.1   mycroft 	syscallarg(int) req;
     85   1.1   mycroft 	syscallarg(pid_t) pid;
     86   1.1   mycroft 	syscallarg(caddr_t) addr;
     87   1.1   mycroft 	syscallarg(int) data;
     88   1.1   mycroft };
     89   1.1   mycroft 
     90   1.1   mycroft struct freebsd_sys_access_args {
     91  1.28  christos 	syscallarg(const char *) path;
     92   1.1   mycroft 	syscallarg(int) flags;
     93   1.1   mycroft };
     94   1.1   mycroft 
     95   1.1   mycroft struct freebsd_sys_chflags_args {
     96  1.28  christos 	syscallarg(const char *) path;
     97   1.1   mycroft 	syscallarg(int) flags;
     98   1.1   mycroft };
     99   1.1   mycroft 
    100   1.1   mycroft struct compat_43_freebsd_sys_stat_args {
    101  1.28  christos 	syscallarg(const char *) path;
    102  1.11  christos 	syscallarg(struct stat43 *) ub;
    103   1.1   mycroft };
    104   1.1   mycroft 
    105   1.1   mycroft struct compat_43_freebsd_sys_lstat_args {
    106  1.28  christos 	syscallarg(const char *) path;
    107  1.11  christos 	syscallarg(struct stat43 *) ub;
    108   1.1   mycroft };
    109  1.53     pooka #ifdef KTRACE
    110  1.53     pooka #else
    111  1.53     pooka #endif
    112   1.1   mycroft 
    113   1.1   mycroft struct freebsd_sys_ioctl_args {
    114   1.1   mycroft 	syscallarg(int) fd;
    115   1.1   mycroft 	syscallarg(u_long) com;
    116   1.1   mycroft 	syscallarg(caddr_t) data;
    117   1.1   mycroft };
    118   1.1   mycroft 
    119   1.1   mycroft struct freebsd_sys_revoke_args {
    120  1.28  christos 	syscallarg(const char *) path;
    121   1.1   mycroft };
    122   1.1   mycroft 
    123   1.1   mycroft struct freebsd_sys_symlink_args {
    124  1.28  christos 	syscallarg(const char *) path;
    125  1.28  christos 	syscallarg(const char *) link;
    126   1.1   mycroft };
    127   1.1   mycroft 
    128   1.1   mycroft struct freebsd_sys_readlink_args {
    129  1.28  christos 	syscallarg(const char *) path;
    130   1.1   mycroft 	syscallarg(char *) buf;
    131   1.1   mycroft 	syscallarg(int) count;
    132   1.1   mycroft };
    133   1.1   mycroft 
    134   1.1   mycroft struct freebsd_sys_execve_args {
    135  1.28  christos 	syscallarg(const char *) path;
    136   1.1   mycroft 	syscallarg(char **) argp;
    137   1.1   mycroft 	syscallarg(char **) envp;
    138   1.1   mycroft };
    139   1.1   mycroft 
    140   1.1   mycroft struct freebsd_sys_chroot_args {
    141  1.28  christos 	syscallarg(const char *) path;
    142   1.1   mycroft };
    143   1.1   mycroft 
    144   1.1   mycroft struct freebsd_sys_msync_args {
    145   1.1   mycroft 	syscallarg(caddr_t) addr;
    146   1.1   mycroft 	syscallarg(size_t) len;
    147   1.1   mycroft 	syscallarg(int) flags;
    148   1.1   mycroft };
    149   1.1   mycroft 
    150   1.1   mycroft struct freebsd_sys_sigreturn_args {
    151   1.1   mycroft 	syscallarg(struct freebsd_sigcontext *) scp;
    152   1.1   mycroft };
    153  1.53     pooka #ifdef TRACE
    154  1.53     pooka #else
    155  1.53     pooka #endif
    156   1.1   mycroft 
    157   1.1   mycroft struct freebsd_sys_rename_args {
    158  1.28  christos 	syscallarg(const char *) from;
    159  1.28  christos 	syscallarg(const char *) to;
    160   1.1   mycroft };
    161   1.1   mycroft 
    162   1.1   mycroft struct compat_43_freebsd_sys_truncate_args {
    163  1.28  christos 	syscallarg(const char *) path;
    164   1.1   mycroft 	syscallarg(long) length;
    165   1.1   mycroft };
    166   1.1   mycroft 
    167   1.1   mycroft struct freebsd_sys_mkfifo_args {
    168  1.28  christos 	syscallarg(const char *) path;
    169   1.1   mycroft 	syscallarg(int) mode;
    170   1.1   mycroft };
    171   1.1   mycroft 
    172   1.1   mycroft struct freebsd_sys_mkdir_args {
    173  1.28  christos 	syscallarg(const char *) path;
    174   1.1   mycroft 	syscallarg(int) mode;
    175   1.1   mycroft };
    176   1.1   mycroft 
    177   1.1   mycroft struct freebsd_sys_rmdir_args {
    178  1.28  christos 	syscallarg(const char *) path;
    179   1.1   mycroft };
    180  1.53     pooka #if defined(NFS) || defined(NFSSERVER)
    181  1.53     pooka #else
    182  1.53     pooka #endif
    183   1.1   mycroft 
    184   1.1   mycroft struct freebsd_sys_statfs_args {
    185  1.28  christos 	syscallarg(const char *) path;
    186   1.1   mycroft 	syscallarg(struct statfs *) buf;
    187   1.1   mycroft };
    188  1.53     pooka #ifdef NFS
    189   1.1   mycroft 
    190   1.1   mycroft struct freebsd_sys_getfh_args {
    191  1.28  christos 	syscallarg(const char *) fname;
    192   1.1   mycroft 	syscallarg(fhandle_t *) fhp;
    193   1.1   mycroft };
    194  1.53     pooka #else
    195  1.53     pooka #endif
    196   1.1   mycroft 
    197   1.1   mycroft struct freebsd_sys_rtprio_args {
    198   1.1   mycroft 	syscallarg(int) function;
    199   1.1   mycroft 	syscallarg(pid_t) pid;
    200   1.1   mycroft 	syscallarg(struct freebsd_rtprio *) rtp;
    201   1.1   mycroft };
    202  1.53     pooka #if defined(SYSVSEM) && !defined(_LP64)
    203   1.1   mycroft 
    204  1.17   mycroft struct freebsd_sys_semsys_args {
    205  1.17   mycroft 	syscallarg(int) which;
    206  1.17   mycroft 	syscallarg(int) a2;
    207  1.17   mycroft 	syscallarg(int) a3;
    208  1.17   mycroft 	syscallarg(int) a4;
    209  1.17   mycroft 	syscallarg(int) a5;
    210  1.17   mycroft };
    211  1.53     pooka #else
    212  1.53     pooka #endif
    213  1.53     pooka #if defined(SYSVMSG) && !defined(_LP64)
    214  1.17   mycroft 
    215  1.17   mycroft struct freebsd_sys_msgsys_args {
    216  1.17   mycroft 	syscallarg(int) which;
    217  1.17   mycroft 	syscallarg(int) a2;
    218  1.17   mycroft 	syscallarg(int) a3;
    219  1.17   mycroft 	syscallarg(int) a4;
    220  1.17   mycroft 	syscallarg(int) a5;
    221  1.17   mycroft 	syscallarg(int) a6;
    222  1.17   mycroft };
    223  1.53     pooka #else
    224  1.53     pooka #endif
    225  1.53     pooka #if defined(SYSVSHM) && !defined(_LP64)
    226  1.17   mycroft 
    227  1.17   mycroft struct freebsd_sys_shmsys_args {
    228  1.17   mycroft 	syscallarg(int) which;
    229  1.17   mycroft 	syscallarg(int) a2;
    230  1.17   mycroft 	syscallarg(int) a3;
    231  1.17   mycroft 	syscallarg(int) a4;
    232  1.17   mycroft };
    233  1.53     pooka #else
    234  1.53     pooka #endif
    235  1.53     pooka #ifdef NTP
    236  1.17   mycroft 
    237   1.1   mycroft struct freebsd_ntp_adjtime_args {
    238   1.1   mycroft 	syscallarg(struct freebsd_timex *) tp;
    239   1.1   mycroft };
    240  1.53     pooka #else
    241  1.53     pooka #endif
    242  1.53     pooka #ifdef LFS
    243  1.53     pooka #else
    244  1.53     pooka #endif
    245   1.1   mycroft 
    246   1.1   mycroft struct freebsd_sys_stat_args {
    247  1.28  christos 	syscallarg(const char *) path;
    248  1.12  christos 	syscallarg(struct stat12 *) ub;
    249   1.1   mycroft };
    250   1.1   mycroft 
    251   1.1   mycroft struct freebsd_sys_lstat_args {
    252  1.28  christos 	syscallarg(const char *) path;
    253  1.12  christos 	syscallarg(struct stat12 *) ub;
    254   1.1   mycroft };
    255   1.1   mycroft 
    256   1.1   mycroft struct freebsd_sys_pathconf_args {
    257  1.28  christos 	syscallarg(const char *) path;
    258   1.1   mycroft 	syscallarg(int) name;
    259   1.1   mycroft };
    260   1.1   mycroft 
    261  1.53     pooka struct freebsd_sys_mmap_args {
    262  1.53     pooka 	syscallarg(caddr_t) addr;
    263  1.53     pooka 	syscallarg(size_t) len;
    264  1.53     pooka 	syscallarg(int) prot;
    265  1.53     pooka 	syscallarg(int) flags;
    266  1.53     pooka 	syscallarg(int) fd;
    267  1.53     pooka 	syscallarg(long) pad;
    268  1.53     pooka 	syscallarg(off_t) pos;
    269  1.53     pooka };
    270  1.53     pooka 
    271   1.1   mycroft struct freebsd_sys_truncate_args {
    272  1.28  christos 	syscallarg(const char *) path;
    273   1.1   mycroft 	syscallarg(int) pad;
    274   1.1   mycroft 	syscallarg(off_t) length;
    275   1.1   mycroft };
    276  1.53     pooka #ifdef FREEBSD_BASED_ON_44LITE_R2
    277   1.1   mycroft 
    278   1.1   mycroft struct freebsd_sys_undelete_args {
    279   1.1   mycroft 	syscallarg(char *) path;
    280   1.1   mycroft };
    281  1.53     pooka #else
    282  1.53     pooka #endif
    283  1.53     pooka #if 0
    284  1.53     pooka #else
    285  1.53     pooka #endif
    286  1.53     pooka #ifdef SYSVSEM
    287  1.53     pooka #else
    288  1.53     pooka #endif
    289  1.53     pooka #ifdef SYSVMSG
    290  1.53     pooka #else
    291  1.53     pooka #endif
    292  1.53     pooka #ifdef SYSVSHM
    293  1.53     pooka #else
    294  1.53     pooka #endif
    295   1.1   mycroft 
    296  1.49     pooka struct freebsd_sys_rfork_args {
    297  1.49     pooka 	syscallarg(int) flags;
    298  1.49     pooka };
    299  1.49     pooka 
    300   1.9     enami struct freebsd_sys_lchown_args {
    301  1.28  christos 	syscallarg(const char *) path;
    302   1.9     enami 	syscallarg(int) uid;
    303   1.9     enami 	syscallarg(int) gid;
    304   1.9     enami };
    305   1.9     enami 
    306  1.50  gmcgarry struct freebsd_sys_sched_setparam_args {
    307  1.50  gmcgarry 	syscallarg(pid_t) pid;
    308  1.50  gmcgarry 	syscallarg(const struct freebsd_sched_param *) sp;
    309  1.50  gmcgarry };
    310  1.50  gmcgarry 
    311  1.50  gmcgarry struct freebsd_sys_sched_getparam_args {
    312  1.50  gmcgarry 	syscallarg(pid_t) pid;
    313  1.50  gmcgarry 	syscallarg(struct freebsd_sched_param *) sp;
    314  1.50  gmcgarry };
    315  1.50  gmcgarry 
    316  1.50  gmcgarry struct freebsd_sys_sched_setscheduler_args {
    317  1.50  gmcgarry 	syscallarg(pid_t) pid;
    318  1.50  gmcgarry 	syscallarg(int) policy;
    319  1.50  gmcgarry 	syscallarg(const struct sched_param *) sp;
    320  1.50  gmcgarry };
    321  1.50  gmcgarry 
    322  1.50  gmcgarry struct freebsd_sys_sched_getscheduler_args {
    323  1.50  gmcgarry 	syscallarg(pid_t) pid;
    324  1.50  gmcgarry };
    325  1.50  gmcgarry 
    326  1.50  gmcgarry struct freebsd_sys_sched_get_priority_max_args {
    327  1.50  gmcgarry 	syscallarg(int) policy;
    328  1.50  gmcgarry };
    329  1.50  gmcgarry 
    330  1.50  gmcgarry struct freebsd_sys_sched_get_priority_min_args {
    331  1.50  gmcgarry 	syscallarg(int) policy;
    332  1.50  gmcgarry };
    333  1.50  gmcgarry 
    334  1.43  jdolecek struct freebsd_sys_utrace_args {
    335  1.43  jdolecek 	syscallarg(void *) addr;
    336  1.43  jdolecek 	syscallarg(size_t) len;
    337  1.43  jdolecek };
    338  1.43  jdolecek 
    339  1.34      onoe struct freebsd_sys_sigaction4_args {
    340  1.34      onoe 	syscallarg(int) signum;
    341  1.34      onoe 	syscallarg(const struct freebsd_sigaction4 *) nsa;
    342  1.34      onoe 	syscallarg(struct freebsd_sigaction4 *) osa;
    343  1.34      onoe };
    344  1.34      onoe 
    345   1.1   mycroft /*
    346   1.1   mycroft  * System call prototypes.
    347   1.1   mycroft  */
    348   1.1   mycroft 
    349  1.51   thorpej int	sys_nosys(struct lwp *, void *, register_t *);
    350  1.51   thorpej int	sys_exit(struct lwp *, void *, register_t *);
    351  1.51   thorpej int	sys_fork(struct lwp *, void *, register_t *);
    352  1.51   thorpej int	sys_read(struct lwp *, void *, register_t *);
    353  1.51   thorpej int	sys_write(struct lwp *, void *, register_t *);
    354  1.51   thorpej int	freebsd_sys_open(struct lwp *, void *, register_t *);
    355  1.51   thorpej int	sys_close(struct lwp *, void *, register_t *);
    356  1.51   thorpej int	sys_wait4(struct lwp *, void *, register_t *);
    357  1.51   thorpej int	compat_43_freebsd_sys_creat(struct lwp *, void *, register_t *);
    358  1.51   thorpej int	freebsd_sys_link(struct lwp *, void *, register_t *);
    359  1.51   thorpej int	freebsd_sys_unlink(struct lwp *, void *, register_t *);
    360  1.51   thorpej int	freebsd_sys_chdir(struct lwp *, void *, register_t *);
    361  1.51   thorpej int	sys_fchdir(struct lwp *, void *, register_t *);
    362  1.51   thorpej int	freebsd_sys_mknod(struct lwp *, void *, register_t *);
    363  1.51   thorpej int	freebsd_sys_chmod(struct lwp *, void *, register_t *);
    364  1.51   thorpej int	freebsd_sys_chown(struct lwp *, void *, register_t *);
    365  1.51   thorpej int	sys_obreak(struct lwp *, void *, register_t *);
    366  1.51   thorpej int	sys_getfsstat(struct lwp *, void *, register_t *);
    367  1.51   thorpej int	compat_43_sys_lseek(struct lwp *, void *, register_t *);
    368  1.51   thorpej int	sys_getpid_with_ppid(struct lwp *, void *, register_t *);
    369  1.51   thorpej int	freebsd_sys_mount(struct lwp *, void *, register_t *);
    370  1.51   thorpej int	freebsd_sys_unmount(struct lwp *, void *, register_t *);
    371  1.51   thorpej int	sys_setuid(struct lwp *, void *, register_t *);
    372  1.51   thorpej int	sys_getuid_with_euid(struct lwp *, void *, register_t *);
    373  1.51   thorpej int	sys_geteuid(struct lwp *, void *, register_t *);
    374  1.51   thorpej int	freebsd_sys_ptrace(struct lwp *, void *, register_t *);
    375  1.51   thorpej int	sys_recvmsg(struct lwp *, void *, register_t *);
    376  1.51   thorpej int	sys_sendmsg(struct lwp *, void *, register_t *);
    377  1.51   thorpej int	sys_recvfrom(struct lwp *, void *, register_t *);
    378  1.51   thorpej int	sys_accept(struct lwp *, void *, register_t *);
    379  1.51   thorpej int	sys_getpeername(struct lwp *, void *, register_t *);
    380  1.51   thorpej int	sys_getsockname(struct lwp *, void *, register_t *);
    381  1.51   thorpej int	freebsd_sys_access(struct lwp *, void *, register_t *);
    382  1.51   thorpej int	freebsd_sys_chflags(struct lwp *, void *, register_t *);
    383  1.51   thorpej int	sys_fchflags(struct lwp *, void *, register_t *);
    384  1.51   thorpej int	sys_sync(struct lwp *, void *, register_t *);
    385  1.51   thorpej int	sys_kill(struct lwp *, void *, register_t *);
    386  1.51   thorpej int	compat_43_freebsd_sys_stat(struct lwp *, void *, register_t *);
    387  1.51   thorpej int	sys_getppid(struct lwp *, void *, register_t *);
    388  1.51   thorpej int	compat_43_freebsd_sys_lstat(struct lwp *, void *, register_t *);
    389  1.51   thorpej int	sys_dup(struct lwp *, void *, register_t *);
    390  1.51   thorpej int	sys_pipe(struct lwp *, void *, register_t *);
    391  1.51   thorpej int	sys_getegid(struct lwp *, void *, register_t *);
    392  1.51   thorpej int	sys_profil(struct lwp *, void *, register_t *);
    393   1.1   mycroft #ifdef KTRACE
    394  1.51   thorpej int	sys_ktrace(struct lwp *, void *, register_t *);
    395   1.1   mycroft #else
    396   1.1   mycroft #endif
    397  1.51   thorpej int	compat_13_sys_sigaction(struct lwp *, void *, register_t *);
    398  1.51   thorpej int	sys_getgid_with_egid(struct lwp *, void *, register_t *);
    399  1.51   thorpej int	compat_13_sys_sigprocmask(struct lwp *, void *, register_t *);
    400  1.51   thorpej int	sys___getlogin(struct lwp *, void *, register_t *);
    401  1.51   thorpej int	sys___setlogin(struct lwp *, void *, register_t *);
    402  1.51   thorpej int	sys_acct(struct lwp *, void *, register_t *);
    403  1.51   thorpej int	compat_13_sys_sigpending(struct lwp *, void *, register_t *);
    404  1.51   thorpej int	compat_13_sys_sigaltstack(struct lwp *, void *, register_t *);
    405  1.51   thorpej int	freebsd_sys_ioctl(struct lwp *, void *, register_t *);
    406  1.51   thorpej int	sys_reboot(struct lwp *, void *, register_t *);
    407  1.51   thorpej int	freebsd_sys_revoke(struct lwp *, void *, register_t *);
    408  1.51   thorpej int	freebsd_sys_symlink(struct lwp *, void *, register_t *);
    409  1.51   thorpej int	freebsd_sys_readlink(struct lwp *, void *, register_t *);
    410  1.51   thorpej int	freebsd_sys_execve(struct lwp *, void *, register_t *);
    411  1.51   thorpej int	sys_umask(struct lwp *, void *, register_t *);
    412  1.51   thorpej int	freebsd_sys_chroot(struct lwp *, void *, register_t *);
    413  1.51   thorpej int	compat_43_sys_fstat(struct lwp *, void *, register_t *);
    414  1.51   thorpej int	compat_43_sys_getkerninfo(struct lwp *, void *, register_t *);
    415  1.51   thorpej int	compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
    416  1.51   thorpej int	freebsd_sys_msync(struct lwp *, void *, register_t *);
    417  1.51   thorpej int	sys_vfork(struct lwp *, void *, register_t *);
    418  1.51   thorpej int	sys_sbrk(struct lwp *, void *, register_t *);
    419  1.51   thorpej int	sys_sstk(struct lwp *, void *, register_t *);
    420  1.51   thorpej int	compat_43_sys_mmap(struct lwp *, void *, register_t *);
    421  1.51   thorpej int	sys_ovadvise(struct lwp *, void *, register_t *);
    422  1.51   thorpej int	sys_munmap(struct lwp *, void *, register_t *);
    423  1.51   thorpej int	sys_mprotect(struct lwp *, void *, register_t *);
    424  1.51   thorpej int	sys_madvise(struct lwp *, void *, register_t *);
    425  1.51   thorpej int	sys_mincore(struct lwp *, void *, register_t *);
    426  1.51   thorpej int	sys_getgroups(struct lwp *, void *, register_t *);
    427  1.51   thorpej int	sys_setgroups(struct lwp *, void *, register_t *);
    428  1.51   thorpej int	sys_getpgrp(struct lwp *, void *, register_t *);
    429  1.51   thorpej int	sys_setpgid(struct lwp *, void *, register_t *);
    430  1.51   thorpej int	sys_setitimer(struct lwp *, void *, register_t *);
    431  1.51   thorpej int	compat_43_sys_wait(struct lwp *, void *, register_t *);
    432  1.51   thorpej int	compat_12_sys_swapon(struct lwp *, void *, register_t *);
    433  1.51   thorpej int	sys_getitimer(struct lwp *, void *, register_t *);
    434  1.51   thorpej int	compat_43_sys_gethostname(struct lwp *, void *, register_t *);
    435  1.51   thorpej int	compat_43_sys_sethostname(struct lwp *, void *, register_t *);
    436  1.51   thorpej int	compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
    437  1.51   thorpej int	sys_dup2(struct lwp *, void *, register_t *);
    438  1.51   thorpej int	sys_fcntl(struct lwp *, void *, register_t *);
    439  1.51   thorpej int	sys_select(struct lwp *, void *, register_t *);
    440  1.51   thorpej int	sys_fsync(struct lwp *, void *, register_t *);
    441  1.51   thorpej int	sys_setpriority(struct lwp *, void *, register_t *);
    442  1.51   thorpej int	sys_socket(struct lwp *, void *, register_t *);
    443  1.51   thorpej int	sys_connect(struct lwp *, void *, register_t *);
    444  1.51   thorpej int	compat_43_sys_accept(struct lwp *, void *, register_t *);
    445  1.51   thorpej int	sys_getpriority(struct lwp *, void *, register_t *);
    446  1.51   thorpej int	compat_43_sys_send(struct lwp *, void *, register_t *);
    447  1.51   thorpej int	compat_43_sys_recv(struct lwp *, void *, register_t *);
    448  1.51   thorpej int	freebsd_sys_sigreturn(struct lwp *, void *, register_t *);
    449  1.51   thorpej int	sys_bind(struct lwp *, void *, register_t *);
    450  1.51   thorpej int	sys_setsockopt(struct lwp *, void *, register_t *);
    451  1.51   thorpej int	sys_listen(struct lwp *, void *, register_t *);
    452  1.51   thorpej int	compat_43_sys_sigvec(struct lwp *, void *, register_t *);
    453  1.51   thorpej int	compat_43_sys_sigblock(struct lwp *, void *, register_t *);
    454  1.51   thorpej int	compat_43_sys_sigsetmask(struct lwp *, void *, register_t *);
    455  1.51   thorpej int	compat_13_sys_sigsuspend(struct lwp *, void *, register_t *);
    456  1.51   thorpej int	compat_43_sys_sigstack(struct lwp *, void *, register_t *);
    457  1.51   thorpej int	compat_43_sys_recvmsg(struct lwp *, void *, register_t *);
    458  1.51   thorpej int	compat_43_sys_sendmsg(struct lwp *, void *, register_t *);
    459   1.1   mycroft #ifdef TRACE
    460  1.51   thorpej int	sys_vtrace(struct lwp *, void *, register_t *);
    461   1.1   mycroft #else
    462   1.1   mycroft #endif
    463  1.51   thorpej int	sys_gettimeofday(struct lwp *, void *, register_t *);
    464  1.51   thorpej int	sys_getrusage(struct lwp *, void *, register_t *);
    465  1.51   thorpej int	sys_getsockopt(struct lwp *, void *, register_t *);
    466  1.51   thorpej int	sys_readv(struct lwp *, void *, register_t *);
    467  1.51   thorpej int	sys_writev(struct lwp *, void *, register_t *);
    468  1.51   thorpej int	sys_settimeofday(struct lwp *, void *, register_t *);
    469  1.51   thorpej int	sys_fchown(struct lwp *, void *, register_t *);
    470  1.51   thorpej int	sys_fchmod(struct lwp *, void *, register_t *);
    471  1.51   thorpej int	compat_43_sys_recvfrom(struct lwp *, void *, register_t *);
    472  1.51   thorpej int	sys_setreuid(struct lwp *, void *, register_t *);
    473  1.51   thorpej int	sys_setregid(struct lwp *, void *, register_t *);
    474  1.51   thorpej int	freebsd_sys_rename(struct lwp *, void *, register_t *);
    475  1.51   thorpej int	compat_43_freebsd_sys_truncate(struct lwp *, void *, register_t *);
    476  1.51   thorpej int	compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
    477  1.51   thorpej int	sys_flock(struct lwp *, void *, register_t *);
    478  1.51   thorpej int	freebsd_sys_mkfifo(struct lwp *, void *, register_t *);
    479  1.51   thorpej int	sys_sendto(struct lwp *, void *, register_t *);
    480  1.51   thorpej int	sys_shutdown(struct lwp *, void *, register_t *);
    481  1.51   thorpej int	sys_socketpair(struct lwp *, void *, register_t *);
    482  1.51   thorpej int	freebsd_sys_mkdir(struct lwp *, void *, register_t *);
    483  1.51   thorpej int	freebsd_sys_rmdir(struct lwp *, void *, register_t *);
    484  1.51   thorpej int	sys_utimes(struct lwp *, void *, register_t *);
    485  1.51   thorpej int	sys_adjtime(struct lwp *, void *, register_t *);
    486  1.51   thorpej int	compat_43_sys_getpeername(struct lwp *, void *, register_t *);
    487  1.51   thorpej int	compat_43_sys_gethostid(struct lwp *, void *, register_t *);
    488  1.51   thorpej int	compat_43_sys_sethostid(struct lwp *, void *, register_t *);
    489  1.51   thorpej int	compat_43_sys_getrlimit(struct lwp *, void *, register_t *);
    490  1.51   thorpej int	compat_43_sys_setrlimit(struct lwp *, void *, register_t *);
    491  1.51   thorpej int	compat_43_sys_killpg(struct lwp *, void *, register_t *);
    492  1.51   thorpej int	sys_setsid(struct lwp *, void *, register_t *);
    493  1.51   thorpej int	sys_quotactl(struct lwp *, void *, register_t *);
    494  1.51   thorpej int	compat_43_sys_quota(struct lwp *, void *, register_t *);
    495  1.51   thorpej int	compat_43_sys_getsockname(struct lwp *, void *, register_t *);
    496   1.6   thorpej #if defined(NFS) || defined(NFSSERVER)
    497  1.51   thorpej int	sys_nfssvc(struct lwp *, void *, register_t *);
    498   1.1   mycroft #else
    499   1.1   mycroft #endif
    500  1.51   thorpej int	compat_43_sys_getdirentries(struct lwp *, void *, register_t *);
    501  1.51   thorpej int	freebsd_sys_statfs(struct lwp *, void *, register_t *);
    502  1.51   thorpej int	sys_fstatfs(struct lwp *, void *, register_t *);
    503   1.6   thorpej #ifdef NFS
    504  1.51   thorpej int	freebsd_sys_getfh(struct lwp *, void *, register_t *);
    505   1.1   mycroft #else
    506   1.1   mycroft #endif
    507  1.51   thorpej int	compat_09_sys_getdomainname(struct lwp *, void *, register_t *);
    508  1.51   thorpej int	compat_09_sys_setdomainname(struct lwp *, void *, register_t *);
    509  1.51   thorpej int	compat_09_sys_uname(struct lwp *, void *, register_t *);
    510  1.51   thorpej int	sys_sysarch(struct lwp *, void *, register_t *);
    511  1.51   thorpej int	freebsd_sys_rtprio(struct lwp *, void *, register_t *);
    512  1.48       eeh #if defined(SYSVSEM) && !defined(_LP64)
    513  1.51   thorpej int	freebsd_sys_semsys(struct lwp *, void *, register_t *);
    514   1.1   mycroft #else
    515   1.1   mycroft #endif
    516  1.48       eeh #if defined(SYSVMSG) && !defined(_LP64)
    517  1.51   thorpej int	freebsd_sys_msgsys(struct lwp *, void *, register_t *);
    518   1.1   mycroft #else
    519   1.1   mycroft #endif
    520  1.48       eeh #if defined(SYSVSHM) && !defined(_LP64)
    521  1.51   thorpej int	freebsd_sys_shmsys(struct lwp *, void *, register_t *);
    522   1.1   mycroft #else
    523   1.1   mycroft #endif
    524  1.51   thorpej int	sys_pread(struct lwp *, void *, register_t *);
    525  1.51   thorpej int	sys_pwrite(struct lwp *, void *, register_t *);
    526  1.36    itojun #ifdef NTP
    527  1.51   thorpej int	freebsd_ntp_adjtime(struct lwp *, void *, register_t *);
    528  1.35     bjh21 #else
    529  1.35     bjh21 #endif
    530  1.51   thorpej int	sys_setgid(struct lwp *, void *, register_t *);
    531  1.51   thorpej int	sys_setegid(struct lwp *, void *, register_t *);
    532  1.51   thorpej int	sys_seteuid(struct lwp *, void *, register_t *);
    533   1.1   mycroft #ifdef LFS
    534  1.51   thorpej int	sys_lfs_bmapv(struct lwp *, void *, register_t *);
    535  1.51   thorpej int	sys_lfs_markv(struct lwp *, void *, register_t *);
    536  1.51   thorpej int	sys_lfs_segclean(struct lwp *, void *, register_t *);
    537  1.51   thorpej int	sys_lfs_segwait(struct lwp *, void *, register_t *);
    538  1.51   thorpej #else
    539  1.51   thorpej #endif
    540  1.51   thorpej int	freebsd_sys_stat(struct lwp *, void *, register_t *);
    541  1.51   thorpej int	compat_12_sys_fstat(struct lwp *, void *, register_t *);
    542  1.51   thorpej int	freebsd_sys_lstat(struct lwp *, void *, register_t *);
    543  1.51   thorpej int	freebsd_sys_pathconf(struct lwp *, void *, register_t *);
    544  1.51   thorpej int	sys_fpathconf(struct lwp *, void *, register_t *);
    545  1.51   thorpej int	sys_getrlimit(struct lwp *, void *, register_t *);
    546  1.51   thorpej int	sys_setrlimit(struct lwp *, void *, register_t *);
    547  1.51   thorpej int	compat_12_sys_getdirentries(struct lwp *, void *, register_t *);
    548  1.53     pooka int	freebsd_sys_mmap(struct lwp *, void *, register_t *);
    549  1.51   thorpej int	sys_nosys(struct lwp *, void *, register_t *);
    550  1.51   thorpej int	sys_lseek(struct lwp *, void *, register_t *);
    551  1.51   thorpej int	freebsd_sys_truncate(struct lwp *, void *, register_t *);
    552  1.51   thorpej int	sys_ftruncate(struct lwp *, void *, register_t *);
    553  1.51   thorpej int	sys___sysctl(struct lwp *, void *, register_t *);
    554  1.51   thorpej int	sys_mlock(struct lwp *, void *, register_t *);
    555  1.51   thorpej int	sys_munlock(struct lwp *, void *, register_t *);
    556   1.1   mycroft #ifdef FREEBSD_BASED_ON_44LITE_R2
    557  1.51   thorpej int	freebsd_sys_undelete(struct lwp *, void *, register_t *);
    558   1.1   mycroft #else
    559   1.1   mycroft #endif
    560  1.51   thorpej int	sys_futimes(struct lwp *, void *, register_t *);
    561  1.51   thorpej int	sys_getpgid(struct lwp *, void *, register_t *);
    562  1.28  christos #if 0
    563  1.51   thorpej int	sys_reboot(struct lwp *, void *, register_t *);
    564  1.28  christos #else
    565  1.28  christos #endif
    566  1.51   thorpej int	sys_poll(struct lwp *, void *, register_t *);
    567  1.28  christos #ifdef SYSVSEM
    568  1.51   thorpej int	compat_14_sys___semctl(struct lwp *, void *, register_t *);
    569  1.51   thorpej int	sys_semget(struct lwp *, void *, register_t *);
    570  1.51   thorpej int	sys_semop(struct lwp *, void *, register_t *);
    571  1.51   thorpej int	sys_semconfig(struct lwp *, void *, register_t *);
    572  1.28  christos #else
    573  1.28  christos #endif
    574  1.28  christos #ifdef SYSVMSG
    575  1.51   thorpej int	compat_14_sys_msgctl(struct lwp *, void *, register_t *);
    576  1.51   thorpej int	sys_msgget(struct lwp *, void *, register_t *);
    577  1.51   thorpej int	sys_msgsnd(struct lwp *, void *, register_t *);
    578  1.51   thorpej int	sys_msgrcv(struct lwp *, void *, register_t *);
    579  1.28  christos #else
    580  1.28  christos #endif
    581  1.28  christos #ifdef SYSVSHM
    582  1.51   thorpej int	sys_shmat(struct lwp *, void *, register_t *);
    583  1.51   thorpej int	compat_14_sys_shmctl(struct lwp *, void *, register_t *);
    584  1.51   thorpej int	sys_shmdt(struct lwp *, void *, register_t *);
    585  1.51   thorpej int	sys_shmget(struct lwp *, void *, register_t *);
    586  1.51   thorpej #else
    587  1.51   thorpej #endif
    588  1.51   thorpej int	sys_clock_gettime(struct lwp *, void *, register_t *);
    589  1.51   thorpej int	sys_clock_settime(struct lwp *, void *, register_t *);
    590  1.51   thorpej int	sys_clock_getres(struct lwp *, void *, register_t *);
    591  1.51   thorpej int	sys_nanosleep(struct lwp *, void *, register_t *);
    592  1.51   thorpej int	sys_minherit(struct lwp *, void *, register_t *);
    593  1.51   thorpej int	freebsd_sys_rfork(struct lwp *, void *, register_t *);
    594  1.51   thorpej int	sys_issetugid(struct lwp *, void *, register_t *);
    595  1.51   thorpej int	freebsd_sys_lchown(struct lwp *, void *, register_t *);
    596  1.51   thorpej int	sys_getdents(struct lwp *, void *, register_t *);
    597  1.51   thorpej int	sys_lchmod(struct lwp *, void *, register_t *);
    598  1.51   thorpej int	sys_lchown(struct lwp *, void *, register_t *);
    599  1.51   thorpej int	sys_lutimes(struct lwp *, void *, register_t *);
    600  1.51   thorpej int	sys___msync13(struct lwp *, void *, register_t *);
    601  1.51   thorpej int	sys___stat13(struct lwp *, void *, register_t *);
    602  1.51   thorpej int	sys___fstat13(struct lwp *, void *, register_t *);
    603  1.51   thorpej int	sys___lstat13(struct lwp *, void *, register_t *);
    604  1.51   thorpej int	sys_fhstatfs(struct lwp *, void *, register_t *);
    605  1.51   thorpej int	sys_fhopen(struct lwp *, void *, register_t *);
    606  1.51   thorpej int	sys_fhstat(struct lwp *, void *, register_t *);
    607  1.51   thorpej int	sys_getsid(struct lwp *, void *, register_t *);
    608  1.51   thorpej int	freebsd_sys_yield(struct lwp *, void *, register_t *);
    609  1.51   thorpej int	sys_mlockall(struct lwp *, void *, register_t *);
    610  1.51   thorpej int	sys_munlockall(struct lwp *, void *, register_t *);
    611  1.51   thorpej int	sys___getcwd(struct lwp *, void *, register_t *);
    612  1.51   thorpej int	freebsd_sys_sched_setparam(struct lwp *, void *, register_t *);
    613  1.51   thorpej int	freebsd_sys_sched_getparam(struct lwp *, void *, register_t *);
    614  1.51   thorpej int	freebsd_sys_sched_setscheduler(struct lwp *, void *, register_t *);
    615  1.51   thorpej int	freebsd_sys_sched_getscheduler(struct lwp *, void *, register_t *);
    616  1.51   thorpej int	freebsd_sys_sched_yield(struct lwp *, void *, register_t *);
    617  1.51   thorpej int	freebsd_sys_sched_get_priority_max(struct lwp *, void *, register_t *);
    618  1.51   thorpej int	freebsd_sys_sched_get_priority_min(struct lwp *, void *, register_t *);
    619  1.51   thorpej int	freebsd_sys_utrace(struct lwp *, void *, register_t *);
    620  1.51   thorpej int	sys___sigprocmask14(struct lwp *, void *, register_t *);
    621  1.51   thorpej int	sys___sigsuspend14(struct lwp *, void *, register_t *);
    622  1.51   thorpej int	freebsd_sys_sigaction4(struct lwp *, void *, register_t *);
    623  1.51   thorpej int	sys___sigpending14(struct lwp *, void *, register_t *);
    624  1.28  christos #endif /* _FREEBSD_SYS__SYSCALLARGS_H_ */
    625