Home | History | Annotate | Line # | Download | only in freebsd
      1  1.92  pgoyette /* $NetBSD: freebsd_syscallargs.h,v 1.93 2019/06/18 01:42:44 christos 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.93  christos  * created from	NetBSD: syscalls.master,v 1.73 2019/06/18 01:42:36 christos Exp
      8   1.1   mycroft  */
      9  1.26      tron 
     10  1.64  christos #ifndef _FREEBSD_SYS_SYSCALLARGS_H_
     11  1.64  christos #define	_FREEBSD_SYS_SYSCALLARGS_H_
     12  1.28  christos 
     13  1.87  riastrad /* Forward declaration */
     14  1.87  riastrad struct lwp;
     15  1.87  riastrad 
     16  1.72       dsl #define	FREEBSD_SYS_MAXSYSARGS	8
     17  1.72       dsl 
     18  1.26      tron #undef	syscallarg
     19  1.31   thorpej #define	syscallarg(x)							\
     20  1.31   thorpej 	union {								\
     21  1.31   thorpej 		register_t pad;						\
     22  1.31   thorpej 		struct { x datum; } le;					\
     23  1.47     lukem 		struct { /* LINTED zero array dimension */		\
     24  1.47     lukem 			int8_t pad[  /* CONSTCOND */			\
     25  1.47     lukem 				(sizeof (register_t) < sizeof (x))	\
     26  1.31   thorpej 				? 0					\
     27  1.31   thorpej 				: sizeof (register_t) - sizeof (x)];	\
     28  1.31   thorpej 			x datum;					\
     29  1.31   thorpej 		} be;							\
     30  1.31   thorpej 	}
     31   1.1   mycroft 
     32  1.72       dsl #undef check_syscall_args
     33  1.80    bouyer #define check_syscall_args(call) /*LINTED*/ \
     34  1.72       dsl 	typedef char call##_check_args[sizeof (struct call##_args) \
     35  1.72       dsl 		<= FREEBSD_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
     36  1.72       dsl 
     37  1.72       dsl struct sys_exit_args;
     38  1.72       dsl 
     39  1.72       dsl struct sys_read_args;
     40  1.72       dsl 
     41  1.72       dsl struct sys_write_args;
     42  1.72       dsl 
     43  1.72       dsl struct sys_open_args;
     44  1.72       dsl 
     45  1.72       dsl struct sys_close_args;
     46  1.72       dsl 
     47  1.75  christos struct compat_50_sys_wait4_args;
     48  1.72       dsl 
     49  1.72       dsl struct compat_43_sys_creat_args;
     50  1.72       dsl 
     51  1.72       dsl struct sys_link_args;
     52  1.72       dsl 
     53  1.72       dsl struct sys_unlink_args;
     54  1.72       dsl 
     55  1.72       dsl struct sys_chdir_args;
     56  1.72       dsl 
     57  1.72       dsl struct sys_fchdir_args;
     58  1.72       dsl 
     59  1.75  christos struct compat_50_sys_mknod_args;
     60  1.72       dsl 
     61  1.72       dsl struct sys_chmod_args;
     62  1.72       dsl 
     63  1.72       dsl struct sys_chown_args;
     64  1.72       dsl 
     65  1.72       dsl struct sys_obreak_args;
     66  1.72       dsl 
     67  1.72       dsl struct compat_20_sys_getfsstat_args;
     68  1.72       dsl 
     69  1.72       dsl struct compat_43_sys_lseek_args;
     70  1.72       dsl 
     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.70  christos 	syscallarg(void *) data;
     76   1.1   mycroft };
     77  1.72       dsl check_syscall_args(freebsd_sys_mount)
     78  1.72       dsl 
     79  1.72       dsl struct sys_unmount_args;
     80  1.72       dsl 
     81  1.72       dsl struct sys_setuid_args;
     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.70  christos 	syscallarg(void *) addr;
     87   1.1   mycroft 	syscallarg(int) data;
     88   1.1   mycroft };
     89  1.72       dsl check_syscall_args(freebsd_sys_ptrace)
     90  1.72       dsl 
     91  1.72       dsl struct sys_recvmsg_args;
     92  1.72       dsl 
     93  1.72       dsl struct sys_sendmsg_args;
     94  1.72       dsl 
     95  1.72       dsl struct sys_recvfrom_args;
     96  1.72       dsl 
     97  1.72       dsl struct sys_accept_args;
     98  1.72       dsl 
     99  1.72       dsl struct sys_getpeername_args;
    100  1.72       dsl 
    101  1.72       dsl struct sys_getsockname_args;
    102  1.72       dsl 
    103  1.72       dsl struct sys_access_args;
    104  1.72       dsl 
    105  1.72       dsl struct sys_chflags_args;
    106  1.72       dsl 
    107  1.72       dsl struct sys_fchflags_args;
    108  1.72       dsl 
    109  1.72       dsl struct sys_kill_args;
    110  1.72       dsl 
    111  1.72       dsl struct compat_43_sys_stat_args;
    112  1.72       dsl 
    113  1.72       dsl struct compat_43_sys_lstat_args;
    114  1.72       dsl 
    115  1.72       dsl struct sys_dup_args;
    116  1.72       dsl 
    117  1.72       dsl struct sys_profil_args;
    118  1.53     pooka #ifdef KTRACE
    119  1.72       dsl 
    120  1.72       dsl struct sys_ktrace_args;
    121  1.53     pooka #else
    122  1.53     pooka #endif
    123   1.1   mycroft 
    124  1.72       dsl struct compat_13_sys_sigaction_args;
    125  1.72       dsl 
    126  1.72       dsl struct compat_13_sys_sigprocmask_args;
    127  1.72       dsl 
    128  1.72       dsl struct sys___getlogin_args;
    129  1.72       dsl 
    130  1.72       dsl struct sys___setlogin_args;
    131  1.72       dsl 
    132  1.72       dsl struct sys_acct_args;
    133  1.72       dsl 
    134  1.72       dsl struct compat_13_sys_sigaltstack_args;
    135  1.72       dsl 
    136   1.1   mycroft struct freebsd_sys_ioctl_args {
    137   1.1   mycroft 	syscallarg(int) fd;
    138   1.1   mycroft 	syscallarg(u_long) com;
    139  1.70  christos 	syscallarg(void *) data;
    140   1.1   mycroft };
    141  1.72       dsl check_syscall_args(freebsd_sys_ioctl)
    142  1.72       dsl 
    143  1.72       dsl struct sys_reboot_args;
    144  1.72       dsl 
    145  1.72       dsl struct sys_revoke_args;
    146  1.72       dsl 
    147  1.72       dsl struct sys_symlink_args;
    148  1.72       dsl 
    149  1.72       dsl struct sys_readlink_args;
    150  1.72       dsl 
    151  1.72       dsl struct sys_execve_args;
    152  1.72       dsl 
    153  1.72       dsl struct sys_umask_args;
    154  1.72       dsl 
    155  1.72       dsl struct sys_chroot_args;
    156  1.72       dsl 
    157  1.72       dsl struct compat_43_sys_fstat_args;
    158  1.72       dsl 
    159  1.72       dsl struct compat_43_sys_getkerninfo_args;
    160   1.1   mycroft 
    161   1.1   mycroft struct freebsd_sys_msync_args {
    162  1.70  christos 	syscallarg(void *) addr;
    163   1.1   mycroft 	syscallarg(size_t) len;
    164   1.1   mycroft 	syscallarg(int) flags;
    165   1.1   mycroft };
    166  1.72       dsl check_syscall_args(freebsd_sys_msync)
    167  1.72       dsl 
    168  1.72       dsl struct compat_43_sys_mmap_args;
    169  1.72       dsl 
    170  1.91     kamil struct sys_ovadvise_args;
    171  1.91     kamil 
    172  1.72       dsl struct sys_munmap_args;
    173  1.72       dsl 
    174  1.72       dsl struct sys_mprotect_args;
    175  1.72       dsl 
    176  1.72       dsl struct sys_madvise_args;
    177  1.72       dsl 
    178  1.72       dsl struct sys_mincore_args;
    179  1.72       dsl 
    180  1.72       dsl struct sys_getgroups_args;
    181  1.72       dsl 
    182  1.72       dsl struct sys_setgroups_args;
    183  1.72       dsl 
    184  1.72       dsl struct sys_setpgid_args;
    185  1.72       dsl 
    186  1.75  christos struct compat_50_sys_setitimer_args;
    187  1.72       dsl 
    188  1.72       dsl struct compat_12_sys_swapon_args;
    189  1.72       dsl 
    190  1.75  christos struct compat_50_sys_getitimer_args;
    191  1.72       dsl 
    192  1.72       dsl struct compat_43_sys_gethostname_args;
    193  1.72       dsl 
    194  1.72       dsl struct compat_43_sys_sethostname_args;
    195  1.72       dsl 
    196  1.72       dsl struct sys_dup2_args;
    197  1.72       dsl 
    198  1.72       dsl struct sys_fcntl_args;
    199  1.72       dsl 
    200  1.75  christos struct compat_50_sys_select_args;
    201  1.72       dsl 
    202  1.72       dsl struct sys_fsync_args;
    203  1.72       dsl 
    204  1.72       dsl struct sys_setpriority_args;
    205  1.72       dsl 
    206  1.72       dsl struct compat_30_sys_socket_args;
    207  1.72       dsl 
    208  1.72       dsl struct sys_connect_args;
    209  1.72       dsl 
    210  1.72       dsl struct compat_43_sys_accept_args;
    211  1.72       dsl 
    212  1.72       dsl struct sys_getpriority_args;
    213  1.72       dsl 
    214  1.72       dsl struct compat_43_sys_send_args;
    215  1.72       dsl 
    216  1.72       dsl struct compat_43_sys_recv_args;
    217   1.1   mycroft 
    218   1.1   mycroft struct freebsd_sys_sigreturn_args {
    219   1.1   mycroft 	syscallarg(struct freebsd_sigcontext *) scp;
    220   1.1   mycroft };
    221  1.72       dsl check_syscall_args(freebsd_sys_sigreturn)
    222  1.72       dsl 
    223  1.72       dsl struct sys_bind_args;
    224  1.72       dsl 
    225  1.72       dsl struct sys_setsockopt_args;
    226  1.72       dsl 
    227  1.72       dsl struct sys_listen_args;
    228  1.72       dsl 
    229  1.72       dsl struct compat_43_sys_sigvec_args;
    230  1.72       dsl 
    231  1.72       dsl struct compat_43_sys_sigblock_args;
    232  1.72       dsl 
    233  1.72       dsl struct compat_43_sys_sigsetmask_args;
    234  1.72       dsl 
    235  1.72       dsl struct compat_13_sys_sigsuspend_args;
    236  1.72       dsl 
    237  1.72       dsl struct compat_43_sys_sigstack_args;
    238  1.72       dsl 
    239  1.72       dsl struct compat_43_sys_recvmsg_args;
    240  1.72       dsl 
    241  1.72       dsl struct compat_43_sys_sendmsg_args;
    242  1.53     pooka #ifdef TRACE
    243  1.72       dsl 
    244  1.72       dsl struct sys_vtrace_args;
    245  1.53     pooka #else
    246  1.53     pooka #endif
    247  1.72       dsl 
    248  1.75  christos struct compat_50_sys_gettimeofday_args;
    249  1.72       dsl 
    250  1.75  christos struct compat_50_sys_getrusage_args;
    251  1.72       dsl 
    252  1.72       dsl struct sys_getsockopt_args;
    253  1.72       dsl 
    254  1.72       dsl struct sys_readv_args;
    255  1.72       dsl 
    256  1.72       dsl struct sys_writev_args;
    257  1.72       dsl 
    258  1.75  christos struct compat_50_sys_settimeofday_args;
    259  1.72       dsl 
    260  1.72       dsl struct sys_fchown_args;
    261  1.72       dsl 
    262  1.72       dsl struct sys_fchmod_args;
    263  1.72       dsl 
    264  1.72       dsl struct compat_43_sys_recvfrom_args;
    265  1.72       dsl 
    266  1.72       dsl struct sys_setreuid_args;
    267  1.72       dsl 
    268  1.72       dsl struct sys_setregid_args;
    269  1.72       dsl 
    270  1.72       dsl struct sys_rename_args;
    271  1.72       dsl 
    272  1.72       dsl struct compat_43_sys_truncate_args;
    273  1.72       dsl 
    274  1.72       dsl struct compat_43_sys_ftruncate_args;
    275  1.72       dsl 
    276  1.72       dsl struct sys_flock_args;
    277  1.72       dsl 
    278  1.72       dsl struct sys_mkfifo_args;
    279  1.72       dsl 
    280  1.72       dsl struct sys_sendto_args;
    281  1.72       dsl 
    282  1.72       dsl struct sys_shutdown_args;
    283  1.72       dsl 
    284  1.72       dsl struct sys_socketpair_args;
    285  1.72       dsl 
    286  1.72       dsl struct sys_mkdir_args;
    287  1.72       dsl 
    288  1.72       dsl struct sys_rmdir_args;
    289  1.72       dsl 
    290  1.75  christos struct compat_50_sys_utimes_args;
    291  1.72       dsl 
    292  1.75  christos struct compat_50_sys_adjtime_args;
    293  1.72       dsl 
    294  1.72       dsl struct compat_43_sys_getpeername_args;
    295  1.72       dsl 
    296  1.72       dsl struct compat_43_sys_sethostid_args;
    297  1.72       dsl 
    298  1.72       dsl struct compat_43_sys_getrlimit_args;
    299  1.72       dsl 
    300  1.72       dsl struct compat_43_sys_setrlimit_args;
    301  1.72       dsl 
    302  1.72       dsl struct compat_43_sys_killpg_args;
    303  1.93  christos #if defined(QUOTA) || !defined(_KERNEL_OPT)
    304  1.72       dsl 
    305  1.80    bouyer struct compat_50_sys_quotactl_args;
    306  1.93  christos #else
    307  1.93  christos #endif
    308  1.72       dsl 
    309  1.72       dsl struct compat_43_sys_getsockname_args;
    310  1.72       dsl 
    311  1.72       dsl struct compat_43_sys_getdirentries_args;
    312  1.72       dsl 
    313  1.72       dsl struct compat_20_sys_statfs_args;
    314  1.72       dsl 
    315  1.72       dsl struct compat_20_sys_fstatfs_args;
    316  1.72       dsl 
    317  1.72       dsl struct compat_30_sys_getfh_args;
    318   1.1   mycroft 
    319  1.72       dsl struct compat_09_sys_getdomainname_args;
    320  1.72       dsl 
    321  1.72       dsl struct compat_09_sys_setdomainname_args;
    322  1.72       dsl 
    323  1.72       dsl struct compat_09_sys_uname_args;
    324  1.72       dsl 
    325  1.72       dsl struct sys_sysarch_args;
    326  1.72       dsl 
    327   1.1   mycroft struct freebsd_sys_rtprio_args {
    328   1.1   mycroft 	syscallarg(int) function;
    329   1.1   mycroft 	syscallarg(pid_t) pid;
    330   1.1   mycroft 	syscallarg(struct freebsd_rtprio *) rtp;
    331   1.1   mycroft };
    332  1.72       dsl check_syscall_args(freebsd_sys_rtprio)
    333  1.53     pooka #if defined(SYSVSEM) && !defined(_LP64)
    334   1.1   mycroft 
    335  1.17   mycroft struct freebsd_sys_semsys_args {
    336  1.17   mycroft 	syscallarg(int) which;
    337  1.17   mycroft 	syscallarg(int) a2;
    338  1.17   mycroft 	syscallarg(int) a3;
    339  1.17   mycroft 	syscallarg(int) a4;
    340  1.17   mycroft 	syscallarg(int) a5;
    341  1.17   mycroft };
    342  1.72       dsl check_syscall_args(freebsd_sys_semsys)
    343  1.53     pooka #else
    344  1.53     pooka #endif
    345  1.53     pooka #if defined(SYSVMSG) && !defined(_LP64)
    346  1.17   mycroft 
    347  1.17   mycroft struct freebsd_sys_msgsys_args {
    348  1.17   mycroft 	syscallarg(int) which;
    349  1.17   mycroft 	syscallarg(int) a2;
    350  1.17   mycroft 	syscallarg(int) a3;
    351  1.17   mycroft 	syscallarg(int) a4;
    352  1.17   mycroft 	syscallarg(int) a5;
    353  1.17   mycroft 	syscallarg(int) a6;
    354  1.17   mycroft };
    355  1.72       dsl check_syscall_args(freebsd_sys_msgsys)
    356  1.53     pooka #else
    357  1.53     pooka #endif
    358  1.53     pooka #if defined(SYSVSHM) && !defined(_LP64)
    359  1.17   mycroft 
    360  1.17   mycroft struct freebsd_sys_shmsys_args {
    361  1.17   mycroft 	syscallarg(int) which;
    362  1.17   mycroft 	syscallarg(int) a2;
    363  1.17   mycroft 	syscallarg(int) a3;
    364  1.17   mycroft 	syscallarg(int) a4;
    365  1.17   mycroft };
    366  1.72       dsl check_syscall_args(freebsd_sys_shmsys)
    367  1.53     pooka #else
    368  1.53     pooka #endif
    369  1.72       dsl 
    370  1.72       dsl struct sys_pread_args;
    371  1.72       dsl 
    372  1.72       dsl struct sys_pwrite_args;
    373  1.53     pooka #ifdef NTP
    374  1.17   mycroft 
    375   1.1   mycroft struct freebsd_ntp_adjtime_args {
    376   1.1   mycroft 	syscallarg(struct freebsd_timex *) tp;
    377   1.1   mycroft };
    378  1.72       dsl check_syscall_args(freebsd_ntp_adjtime)
    379  1.53     pooka #else
    380  1.53     pooka #endif
    381  1.72       dsl 
    382  1.72       dsl struct sys_setgid_args;
    383  1.72       dsl 
    384  1.72       dsl struct sys_setegid_args;
    385  1.72       dsl 
    386  1.72       dsl struct sys_seteuid_args;
    387   1.1   mycroft 
    388  1.72       dsl struct compat_12_sys_stat_args;
    389  1.72       dsl 
    390  1.72       dsl struct compat_12_sys_fstat_args;
    391  1.72       dsl 
    392  1.72       dsl struct compat_12_sys_lstat_args;
    393  1.72       dsl 
    394  1.72       dsl struct sys_pathconf_args;
    395  1.72       dsl 
    396  1.72       dsl struct sys_fpathconf_args;
    397  1.72       dsl 
    398  1.72       dsl struct sys_getrlimit_args;
    399  1.72       dsl 
    400  1.72       dsl struct sys_setrlimit_args;
    401  1.72       dsl 
    402  1.72       dsl struct compat_12_sys_getdirentries_args;
    403  1.72       dsl 
    404  1.53     pooka struct freebsd_sys_mmap_args {
    405  1.70  christos 	syscallarg(void *) addr;
    406  1.53     pooka 	syscallarg(size_t) len;
    407  1.53     pooka 	syscallarg(int) prot;
    408  1.53     pooka 	syscallarg(int) flags;
    409  1.53     pooka 	syscallarg(int) fd;
    410  1.53     pooka 	syscallarg(long) pad;
    411  1.53     pooka 	syscallarg(off_t) pos;
    412  1.53     pooka };
    413  1.72       dsl check_syscall_args(freebsd_sys_mmap)
    414  1.72       dsl 
    415  1.72       dsl struct sys_lseek_args;
    416  1.72       dsl 
    417  1.72       dsl struct sys_truncate_args;
    418  1.72       dsl 
    419  1.72       dsl struct sys_ftruncate_args;
    420  1.53     pooka 
    421  1.59      heas struct freebsd_sys_sysctl_args {
    422  1.59      heas 	syscallarg(int *) name;
    423  1.59      heas 	syscallarg(u_int) namelen;
    424  1.59      heas 	syscallarg(void *) old;
    425  1.59      heas 	syscallarg(size_t *) oldlenp;
    426  1.59      heas 	syscallarg(void *) new;
    427  1.59      heas 	syscallarg(size_t) newlen;
    428  1.59      heas };
    429  1.72       dsl check_syscall_args(freebsd_sys_sysctl)
    430  1.72       dsl 
    431  1.72       dsl struct sys_mlock_args;
    432  1.72       dsl 
    433  1.72       dsl struct sys_munlock_args;
    434  1.53     pooka #ifdef FREEBSD_BASED_ON_44LITE_R2
    435   1.1   mycroft 
    436   1.1   mycroft struct freebsd_sys_undelete_args {
    437   1.1   mycroft 	syscallarg(char *) path;
    438   1.1   mycroft };
    439  1.72       dsl check_syscall_args(freebsd_sys_undelete)
    440  1.53     pooka #else
    441  1.53     pooka #endif
    442  1.72       dsl 
    443  1.75  christos struct compat_50_sys_futimes_args;
    444  1.72       dsl 
    445  1.72       dsl struct sys_getpgid_args;
    446  1.53     pooka #if 0
    447  1.72       dsl 
    448  1.72       dsl struct sys_reboot_args;
    449  1.53     pooka #else
    450  1.53     pooka #endif
    451  1.72       dsl 
    452  1.72       dsl struct sys_poll_args;
    453  1.53     pooka #ifdef SYSVSEM
    454  1.72       dsl 
    455  1.72       dsl struct compat_14_sys___semctl_args;
    456  1.72       dsl 
    457  1.72       dsl struct sys_semget_args;
    458  1.72       dsl 
    459  1.72       dsl struct sys_semop_args;
    460  1.72       dsl 
    461  1.72       dsl struct sys_semconfig_args;
    462  1.53     pooka #else
    463  1.53     pooka #endif
    464  1.53     pooka #ifdef SYSVMSG
    465  1.72       dsl 
    466  1.72       dsl struct compat_14_sys_msgctl_args;
    467  1.72       dsl 
    468  1.72       dsl struct sys_msgget_args;
    469  1.72       dsl 
    470  1.72       dsl struct sys_msgsnd_args;
    471  1.72       dsl 
    472  1.72       dsl struct sys_msgrcv_args;
    473  1.53     pooka #else
    474  1.53     pooka #endif
    475  1.53     pooka #ifdef SYSVSHM
    476  1.72       dsl 
    477  1.72       dsl struct sys_shmat_args;
    478  1.72       dsl 
    479  1.72       dsl struct compat_14_sys_shmctl_args;
    480  1.72       dsl 
    481  1.72       dsl struct sys_shmdt_args;
    482  1.72       dsl 
    483  1.72       dsl struct sys_shmget_args;
    484  1.53     pooka #else
    485  1.53     pooka #endif
    486   1.1   mycroft 
    487  1.75  christos struct compat_50_sys_clock_gettime_args;
    488  1.72       dsl 
    489  1.75  christos struct compat_50_sys_clock_settime_args;
    490  1.72       dsl 
    491  1.75  christos struct compat_50_sys_clock_getres_args;
    492  1.72       dsl 
    493  1.75  christos struct compat_50_sys_nanosleep_args;
    494  1.72       dsl 
    495  1.72       dsl struct sys_minherit_args;
    496  1.72       dsl 
    497  1.49     pooka struct freebsd_sys_rfork_args {
    498  1.49     pooka 	syscallarg(int) flags;
    499  1.49     pooka };
    500  1.72       dsl check_syscall_args(freebsd_sys_rfork)
    501  1.72       dsl 
    502  1.72       dsl struct sys_lchown_args;
    503  1.72       dsl 
    504  1.72       dsl struct compat_30_sys_getdents_args;
    505  1.72       dsl 
    506  1.72       dsl struct sys_lchmod_args;
    507  1.72       dsl 
    508  1.72       dsl struct sys_lchown_args;
    509  1.72       dsl 
    510  1.75  christos struct compat_50_sys_lutimes_args;
    511  1.72       dsl 
    512  1.72       dsl struct sys___msync13_args;
    513  1.72       dsl 
    514  1.72       dsl struct compat_30_sys___stat13_args;
    515  1.72       dsl 
    516  1.72       dsl struct compat_30_sys___fstat13_args;
    517  1.72       dsl 
    518  1.72       dsl struct compat_30_sys___lstat13_args;
    519  1.72       dsl 
    520  1.72       dsl struct compat_20_sys_fhstatfs_args;
    521  1.72       dsl 
    522  1.72       dsl struct compat_30_sys_fhopen_args;
    523  1.72       dsl 
    524  1.72       dsl struct compat_30_sys_fhstat_args;
    525  1.72       dsl 
    526  1.72       dsl struct sys_getsid_args;
    527  1.72       dsl 
    528  1.72       dsl struct sys_mlockall_args;
    529  1.72       dsl 
    530  1.72       dsl struct sys___getcwd_args;
    531  1.49     pooka 
    532  1.50  gmcgarry struct freebsd_sys_sched_setparam_args {
    533  1.50  gmcgarry 	syscallarg(pid_t) pid;
    534  1.50  gmcgarry 	syscallarg(const struct freebsd_sched_param *) sp;
    535  1.50  gmcgarry };
    536  1.72       dsl check_syscall_args(freebsd_sys_sched_setparam)
    537  1.50  gmcgarry 
    538  1.50  gmcgarry struct freebsd_sys_sched_getparam_args {
    539  1.50  gmcgarry 	syscallarg(pid_t) pid;
    540  1.50  gmcgarry 	syscallarg(struct freebsd_sched_param *) sp;
    541  1.50  gmcgarry };
    542  1.72       dsl check_syscall_args(freebsd_sys_sched_getparam)
    543  1.50  gmcgarry 
    544  1.50  gmcgarry struct freebsd_sys_sched_setscheduler_args {
    545  1.50  gmcgarry 	syscallarg(pid_t) pid;
    546  1.50  gmcgarry 	syscallarg(int) policy;
    547  1.50  gmcgarry 	syscallarg(const struct sched_param *) sp;
    548  1.50  gmcgarry };
    549  1.72       dsl check_syscall_args(freebsd_sys_sched_setscheduler)
    550  1.50  gmcgarry 
    551  1.50  gmcgarry struct freebsd_sys_sched_getscheduler_args {
    552  1.50  gmcgarry 	syscallarg(pid_t) pid;
    553  1.50  gmcgarry };
    554  1.72       dsl check_syscall_args(freebsd_sys_sched_getscheduler)
    555  1.50  gmcgarry 
    556  1.50  gmcgarry struct freebsd_sys_sched_get_priority_max_args {
    557  1.50  gmcgarry 	syscallarg(int) policy;
    558  1.50  gmcgarry };
    559  1.72       dsl check_syscall_args(freebsd_sys_sched_get_priority_max)
    560  1.50  gmcgarry 
    561  1.50  gmcgarry struct freebsd_sys_sched_get_priority_min_args {
    562  1.50  gmcgarry 	syscallarg(int) policy;
    563  1.50  gmcgarry };
    564  1.72       dsl check_syscall_args(freebsd_sys_sched_get_priority_min)
    565  1.50  gmcgarry 
    566  1.43  jdolecek struct freebsd_sys_utrace_args {
    567  1.43  jdolecek 	syscallarg(void *) addr;
    568  1.43  jdolecek 	syscallarg(size_t) len;
    569  1.43  jdolecek };
    570  1.72       dsl check_syscall_args(freebsd_sys_utrace)
    571  1.72       dsl 
    572  1.72       dsl struct sys___sigprocmask14_args;
    573  1.72       dsl 
    574  1.72       dsl struct sys___sigsuspend14_args;
    575  1.43  jdolecek 
    576  1.34      onoe struct freebsd_sys_sigaction4_args {
    577  1.34      onoe 	syscallarg(int) signum;
    578  1.34      onoe 	syscallarg(const struct freebsd_sigaction4 *) nsa;
    579  1.34      onoe 	syscallarg(struct freebsd_sigaction4 *) osa;
    580  1.34      onoe };
    581  1.72       dsl check_syscall_args(freebsd_sys_sigaction4)
    582  1.72       dsl 
    583  1.72       dsl struct sys___sigpending14_args;
    584  1.72       dsl 
    585  1.72       dsl struct sys_lchflags_args;
    586  1.72       dsl 
    587  1.72       dsl struct sys_uuidgen_args;
    588  1.72       dsl 
    589  1.72       dsl struct sys__ksem_close_args;
    590  1.72       dsl 
    591  1.72       dsl struct sys__ksem_post_args;
    592  1.72       dsl 
    593  1.72       dsl struct sys__ksem_wait_args;
    594  1.72       dsl 
    595  1.72       dsl struct sys__ksem_trywait_args;
    596  1.72       dsl 
    597  1.72       dsl struct sys__ksem_unlink_args;
    598  1.72       dsl 
    599  1.72       dsl struct sys__ksem_getvalue_args;
    600  1.72       dsl 
    601  1.72       dsl struct sys__ksem_destroy_args;
    602  1.34      onoe 
    603   1.1   mycroft /*
    604   1.1   mycroft  * System call prototypes.
    605   1.1   mycroft  */
    606   1.1   mycroft 
    607  1.72       dsl int	sys_nosys(struct lwp *, const void *, register_t *);
    608  1.54  jdolecek 
    609  1.72       dsl int	sys_exit(struct lwp *, const struct sys_exit_args *, register_t *);
    610  1.54  jdolecek 
    611  1.72       dsl int	sys_fork(struct lwp *, const void *, register_t *);
    612  1.54  jdolecek 
    613  1.72       dsl int	sys_read(struct lwp *, const struct sys_read_args *, register_t *);
    614  1.54  jdolecek 
    615  1.72       dsl int	sys_write(struct lwp *, const struct sys_write_args *, register_t *);
    616  1.54  jdolecek 
    617  1.72       dsl int	sys_open(struct lwp *, const struct sys_open_args *, register_t *);
    618  1.54  jdolecek 
    619  1.72       dsl int	sys_close(struct lwp *, const struct sys_close_args *, register_t *);
    620  1.54  jdolecek 
    621  1.75  christos int	compat_50_sys_wait4(struct lwp *, const struct compat_50_sys_wait4_args *, register_t *);
    622  1.54  jdolecek 
    623  1.72       dsl int	compat_43_sys_creat(struct lwp *, const struct compat_43_sys_creat_args *, register_t *);
    624  1.54  jdolecek 
    625  1.72       dsl int	sys_link(struct lwp *, const struct sys_link_args *, register_t *);
    626  1.54  jdolecek 
    627  1.72       dsl int	sys_unlink(struct lwp *, const struct sys_unlink_args *, register_t *);
    628  1.54  jdolecek 
    629  1.72       dsl int	sys_chdir(struct lwp *, const struct sys_chdir_args *, register_t *);
    630  1.54  jdolecek 
    631  1.72       dsl int	sys_fchdir(struct lwp *, const struct sys_fchdir_args *, register_t *);
    632  1.54  jdolecek 
    633  1.75  christos int	compat_50_sys_mknod(struct lwp *, const struct compat_50_sys_mknod_args *, register_t *);
    634  1.54  jdolecek 
    635  1.72       dsl int	sys_chmod(struct lwp *, const struct sys_chmod_args *, register_t *);
    636  1.54  jdolecek 
    637  1.72       dsl int	sys_chown(struct lwp *, const struct sys_chown_args *, register_t *);
    638  1.54  jdolecek 
    639  1.72       dsl int	sys_obreak(struct lwp *, const struct sys_obreak_args *, register_t *);
    640  1.54  jdolecek 
    641  1.72       dsl int	compat_20_sys_getfsstat(struct lwp *, const struct compat_20_sys_getfsstat_args *, register_t *);
    642  1.54  jdolecek 
    643  1.72       dsl int	compat_43_sys_lseek(struct lwp *, const struct compat_43_sys_lseek_args *, register_t *);
    644  1.54  jdolecek 
    645  1.72       dsl int	sys_getpid_with_ppid(struct lwp *, const void *, register_t *);
    646  1.54  jdolecek 
    647  1.72       dsl int	freebsd_sys_mount(struct lwp *, const struct freebsd_sys_mount_args *, register_t *);
    648  1.54  jdolecek 
    649  1.72       dsl int	sys_unmount(struct lwp *, const struct sys_unmount_args *, register_t *);
    650  1.54  jdolecek 
    651  1.72       dsl int	sys_setuid(struct lwp *, const struct sys_setuid_args *, register_t *);
    652  1.54  jdolecek 
    653  1.72       dsl int	sys_getuid_with_euid(struct lwp *, const void *, register_t *);
    654  1.54  jdolecek 
    655  1.72       dsl int	sys_geteuid(struct lwp *, const void *, register_t *);
    656  1.54  jdolecek 
    657  1.72       dsl int	freebsd_sys_ptrace(struct lwp *, const struct freebsd_sys_ptrace_args *, register_t *);
    658  1.54  jdolecek 
    659  1.72       dsl int	sys_recvmsg(struct lwp *, const struct sys_recvmsg_args *, register_t *);
    660  1.54  jdolecek 
    661  1.72       dsl int	sys_sendmsg(struct lwp *, const struct sys_sendmsg_args *, register_t *);
    662  1.54  jdolecek 
    663  1.72       dsl int	sys_recvfrom(struct lwp *, const struct sys_recvfrom_args *, register_t *);
    664  1.54  jdolecek 
    665  1.72       dsl int	sys_accept(struct lwp *, const struct sys_accept_args *, register_t *);
    666  1.54  jdolecek 
    667  1.72       dsl int	sys_getpeername(struct lwp *, const struct sys_getpeername_args *, register_t *);
    668  1.54  jdolecek 
    669  1.72       dsl int	sys_getsockname(struct lwp *, const struct sys_getsockname_args *, register_t *);
    670  1.54  jdolecek 
    671  1.72       dsl int	sys_access(struct lwp *, const struct sys_access_args *, register_t *);
    672  1.54  jdolecek 
    673  1.72       dsl int	sys_chflags(struct lwp *, const struct sys_chflags_args *, register_t *);
    674  1.54  jdolecek 
    675  1.72       dsl int	sys_fchflags(struct lwp *, const struct sys_fchflags_args *, register_t *);
    676  1.54  jdolecek 
    677  1.72       dsl int	sys_sync(struct lwp *, const void *, register_t *);
    678  1.54  jdolecek 
    679  1.72       dsl int	sys_kill(struct lwp *, const struct sys_kill_args *, register_t *);
    680  1.54  jdolecek 
    681  1.72       dsl int	compat_43_sys_stat(struct lwp *, const struct compat_43_sys_stat_args *, register_t *);
    682  1.54  jdolecek 
    683  1.72       dsl int	sys_getppid(struct lwp *, const void *, register_t *);
    684  1.54  jdolecek 
    685  1.72       dsl int	compat_43_sys_lstat(struct lwp *, const struct compat_43_sys_lstat_args *, register_t *);
    686  1.54  jdolecek 
    687  1.72       dsl int	sys_dup(struct lwp *, const struct sys_dup_args *, register_t *);
    688  1.54  jdolecek 
    689  1.72       dsl int	sys_pipe(struct lwp *, const void *, register_t *);
    690  1.54  jdolecek 
    691  1.72       dsl int	sys_getegid(struct lwp *, const void *, register_t *);
    692  1.54  jdolecek 
    693  1.72       dsl int	sys_profil(struct lwp *, const struct sys_profil_args *, register_t *);
    694  1.54  jdolecek 
    695   1.1   mycroft #ifdef KTRACE
    696  1.72       dsl int	sys_ktrace(struct lwp *, const struct sys_ktrace_args *, register_t *);
    697  1.54  jdolecek 
    698   1.1   mycroft #else
    699   1.1   mycroft #endif
    700  1.72       dsl int	compat_13_sys_sigaction(struct lwp *, const struct compat_13_sys_sigaction_args *, register_t *);
    701  1.54  jdolecek 
    702  1.72       dsl int	sys_getgid_with_egid(struct lwp *, const void *, register_t *);
    703  1.54  jdolecek 
    704  1.72       dsl int	compat_13_sys_sigprocmask(struct lwp *, const struct compat_13_sys_sigprocmask_args *, register_t *);
    705  1.54  jdolecek 
    706  1.72       dsl int	sys___getlogin(struct lwp *, const struct sys___getlogin_args *, register_t *);
    707  1.54  jdolecek 
    708  1.72       dsl int	sys___setlogin(struct lwp *, const struct sys___setlogin_args *, register_t *);
    709  1.54  jdolecek 
    710  1.72       dsl int	sys_acct(struct lwp *, const struct sys_acct_args *, register_t *);
    711  1.54  jdolecek 
    712  1.72       dsl int	compat_13_sys_sigpending(struct lwp *, const void *, register_t *);
    713  1.54  jdolecek 
    714  1.72       dsl int	compat_13_sys_sigaltstack(struct lwp *, const struct compat_13_sys_sigaltstack_args *, register_t *);
    715  1.54  jdolecek 
    716  1.72       dsl int	freebsd_sys_ioctl(struct lwp *, const struct freebsd_sys_ioctl_args *, register_t *);
    717  1.54  jdolecek 
    718  1.72       dsl int	sys_reboot(struct lwp *, const struct sys_reboot_args *, register_t *);
    719  1.54  jdolecek 
    720  1.72       dsl int	sys_revoke(struct lwp *, const struct sys_revoke_args *, register_t *);
    721  1.54  jdolecek 
    722  1.72       dsl int	sys_symlink(struct lwp *, const struct sys_symlink_args *, register_t *);
    723  1.54  jdolecek 
    724  1.72       dsl int	sys_readlink(struct lwp *, const struct sys_readlink_args *, register_t *);
    725  1.54  jdolecek 
    726  1.72       dsl int	sys_execve(struct lwp *, const struct sys_execve_args *, register_t *);
    727  1.54  jdolecek 
    728  1.72       dsl int	sys_umask(struct lwp *, const struct sys_umask_args *, register_t *);
    729  1.54  jdolecek 
    730  1.72       dsl int	sys_chroot(struct lwp *, const struct sys_chroot_args *, register_t *);
    731  1.54  jdolecek 
    732  1.72       dsl int	compat_43_sys_fstat(struct lwp *, const struct compat_43_sys_fstat_args *, register_t *);
    733  1.54  jdolecek 
    734  1.72       dsl int	compat_43_sys_getkerninfo(struct lwp *, const struct compat_43_sys_getkerninfo_args *, register_t *);
    735  1.54  jdolecek 
    736  1.72       dsl int	compat_43_sys_getpagesize(struct lwp *, const void *, register_t *);
    737  1.54  jdolecek 
    738  1.72       dsl int	freebsd_sys_msync(struct lwp *, const struct freebsd_sys_msync_args *, register_t *);
    739  1.54  jdolecek 
    740  1.72       dsl int	sys_vfork(struct lwp *, const void *, register_t *);
    741  1.54  jdolecek 
    742  1.72       dsl int	compat_43_sys_mmap(struct lwp *, const struct compat_43_sys_mmap_args *, register_t *);
    743  1.54  jdolecek 
    744  1.91     kamil int	sys_ovadvise(struct lwp *, const struct sys_ovadvise_args *, register_t *);
    745  1.91     kamil 
    746  1.72       dsl int	sys_munmap(struct lwp *, const struct sys_munmap_args *, register_t *);
    747  1.54  jdolecek 
    748  1.72       dsl int	sys_mprotect(struct lwp *, const struct sys_mprotect_args *, register_t *);
    749  1.54  jdolecek 
    750  1.72       dsl int	sys_madvise(struct lwp *, const struct sys_madvise_args *, register_t *);
    751  1.54  jdolecek 
    752  1.72       dsl int	sys_mincore(struct lwp *, const struct sys_mincore_args *, register_t *);
    753  1.54  jdolecek 
    754  1.72       dsl int	sys_getgroups(struct lwp *, const struct sys_getgroups_args *, register_t *);
    755  1.54  jdolecek 
    756  1.72       dsl int	sys_setgroups(struct lwp *, const struct sys_setgroups_args *, register_t *);
    757  1.54  jdolecek 
    758  1.72       dsl int	sys_getpgrp(struct lwp *, const void *, register_t *);
    759  1.54  jdolecek 
    760  1.72       dsl int	sys_setpgid(struct lwp *, const struct sys_setpgid_args *, register_t *);
    761  1.54  jdolecek 
    762  1.75  christos int	compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
    763  1.54  jdolecek 
    764  1.72       dsl int	compat_43_sys_wait(struct lwp *, const void *, register_t *);
    765  1.54  jdolecek 
    766  1.72       dsl int	compat_12_sys_swapon(struct lwp *, const struct compat_12_sys_swapon_args *, register_t *);
    767  1.54  jdolecek 
    768  1.75  christos int	compat_50_sys_getitimer(struct lwp *, const struct compat_50_sys_getitimer_args *, register_t *);
    769  1.54  jdolecek 
    770  1.72       dsl int	compat_43_sys_gethostname(struct lwp *, const struct compat_43_sys_gethostname_args *, register_t *);
    771  1.54  jdolecek 
    772  1.72       dsl int	compat_43_sys_sethostname(struct lwp *, const struct compat_43_sys_sethostname_args *, register_t *);
    773  1.54  jdolecek 
    774  1.72       dsl int	compat_43_sys_getdtablesize(struct lwp *, const void *, register_t *);
    775  1.54  jdolecek 
    776  1.72       dsl int	sys_dup2(struct lwp *, const struct sys_dup2_args *, register_t *);
    777  1.54  jdolecek 
    778  1.72       dsl int	sys_fcntl(struct lwp *, const struct sys_fcntl_args *, register_t *);
    779  1.54  jdolecek 
    780  1.75  christos int	compat_50_sys_select(struct lwp *, const struct compat_50_sys_select_args *, register_t *);
    781  1.54  jdolecek 
    782  1.72       dsl int	sys_fsync(struct lwp *, const struct sys_fsync_args *, register_t *);
    783  1.54  jdolecek 
    784  1.72       dsl int	sys_setpriority(struct lwp *, const struct sys_setpriority_args *, register_t *);
    785  1.54  jdolecek 
    786  1.72       dsl int	compat_30_sys_socket(struct lwp *, const struct compat_30_sys_socket_args *, register_t *);
    787  1.54  jdolecek 
    788  1.72       dsl int	sys_connect(struct lwp *, const struct sys_connect_args *, register_t *);
    789  1.54  jdolecek 
    790  1.72       dsl int	compat_43_sys_accept(struct lwp *, const struct compat_43_sys_accept_args *, register_t *);
    791  1.54  jdolecek 
    792  1.72       dsl int	sys_getpriority(struct lwp *, const struct sys_getpriority_args *, register_t *);
    793  1.54  jdolecek 
    794  1.72       dsl int	compat_43_sys_send(struct lwp *, const struct compat_43_sys_send_args *, register_t *);
    795  1.54  jdolecek 
    796  1.72       dsl int	compat_43_sys_recv(struct lwp *, const struct compat_43_sys_recv_args *, register_t *);
    797  1.54  jdolecek 
    798  1.72       dsl int	freebsd_sys_sigreturn(struct lwp *, const struct freebsd_sys_sigreturn_args *, register_t *);
    799  1.54  jdolecek 
    800  1.72       dsl int	sys_bind(struct lwp *, const struct sys_bind_args *, register_t *);
    801  1.54  jdolecek 
    802  1.72       dsl int	sys_setsockopt(struct lwp *, const struct sys_setsockopt_args *, register_t *);
    803  1.54  jdolecek 
    804  1.72       dsl int	sys_listen(struct lwp *, const struct sys_listen_args *, register_t *);
    805  1.54  jdolecek 
    806  1.72       dsl int	compat_43_sys_sigvec(struct lwp *, const struct compat_43_sys_sigvec_args *, register_t *);
    807  1.54  jdolecek 
    808  1.72       dsl int	compat_43_sys_sigblock(struct lwp *, const struct compat_43_sys_sigblock_args *, register_t *);
    809  1.54  jdolecek 
    810  1.72       dsl int	compat_43_sys_sigsetmask(struct lwp *, const struct compat_43_sys_sigsetmask_args *, register_t *);
    811  1.54  jdolecek 
    812  1.72       dsl int	compat_13_sys_sigsuspend(struct lwp *, const struct compat_13_sys_sigsuspend_args *, register_t *);
    813  1.54  jdolecek 
    814  1.72       dsl int	compat_43_sys_sigstack(struct lwp *, const struct compat_43_sys_sigstack_args *, register_t *);
    815  1.54  jdolecek 
    816  1.72       dsl int	compat_43_sys_recvmsg(struct lwp *, const struct compat_43_sys_recvmsg_args *, register_t *);
    817  1.54  jdolecek 
    818  1.72       dsl int	compat_43_sys_sendmsg(struct lwp *, const struct compat_43_sys_sendmsg_args *, register_t *);
    819  1.54  jdolecek 
    820   1.1   mycroft #ifdef TRACE
    821  1.72       dsl int	sys_vtrace(struct lwp *, const struct sys_vtrace_args *, register_t *);
    822  1.54  jdolecek 
    823   1.1   mycroft #else
    824   1.1   mycroft #endif
    825  1.75  christos int	compat_50_sys_gettimeofday(struct lwp *, const struct compat_50_sys_gettimeofday_args *, register_t *);
    826  1.54  jdolecek 
    827  1.75  christos int	compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
    828  1.54  jdolecek 
    829  1.72       dsl int	sys_getsockopt(struct lwp *, const struct sys_getsockopt_args *, register_t *);
    830  1.54  jdolecek 
    831  1.72       dsl int	sys_readv(struct lwp *, const struct sys_readv_args *, register_t *);
    832  1.54  jdolecek 
    833  1.72       dsl int	sys_writev(struct lwp *, const struct sys_writev_args *, register_t *);
    834  1.54  jdolecek 
    835  1.75  christos int	compat_50_sys_settimeofday(struct lwp *, const struct compat_50_sys_settimeofday_args *, register_t *);
    836  1.54  jdolecek 
    837  1.72       dsl int	sys_fchown(struct lwp *, const struct sys_fchown_args *, register_t *);
    838  1.54  jdolecek 
    839  1.72       dsl int	sys_fchmod(struct lwp *, const struct sys_fchmod_args *, register_t *);
    840  1.54  jdolecek 
    841  1.72       dsl int	compat_43_sys_recvfrom(struct lwp *, const struct compat_43_sys_recvfrom_args *, register_t *);
    842  1.54  jdolecek 
    843  1.72       dsl int	sys_setreuid(struct lwp *, const struct sys_setreuid_args *, register_t *);
    844  1.54  jdolecek 
    845  1.72       dsl int	sys_setregid(struct lwp *, const struct sys_setregid_args *, register_t *);
    846  1.54  jdolecek 
    847  1.72       dsl int	sys_rename(struct lwp *, const struct sys_rename_args *, register_t *);
    848  1.54  jdolecek 
    849  1.72       dsl int	compat_43_sys_truncate(struct lwp *, const struct compat_43_sys_truncate_args *, register_t *);
    850  1.54  jdolecek 
    851  1.72       dsl int	compat_43_sys_ftruncate(struct lwp *, const struct compat_43_sys_ftruncate_args *, register_t *);
    852  1.54  jdolecek 
    853  1.72       dsl int	sys_flock(struct lwp *, const struct sys_flock_args *, register_t *);
    854  1.54  jdolecek 
    855  1.72       dsl int	sys_mkfifo(struct lwp *, const struct sys_mkfifo_args *, register_t *);
    856  1.54  jdolecek 
    857  1.72       dsl int	sys_sendto(struct lwp *, const struct sys_sendto_args *, register_t *);
    858  1.54  jdolecek 
    859  1.72       dsl int	sys_shutdown(struct lwp *, const struct sys_shutdown_args *, register_t *);
    860  1.54  jdolecek 
    861  1.72       dsl int	sys_socketpair(struct lwp *, const struct sys_socketpair_args *, register_t *);
    862  1.54  jdolecek 
    863  1.72       dsl int	sys_mkdir(struct lwp *, const struct sys_mkdir_args *, register_t *);
    864  1.54  jdolecek 
    865  1.72       dsl int	sys_rmdir(struct lwp *, const struct sys_rmdir_args *, register_t *);
    866  1.54  jdolecek 
    867  1.75  christos int	compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
    868  1.54  jdolecek 
    869  1.75  christos int	compat_50_sys_adjtime(struct lwp *, const struct compat_50_sys_adjtime_args *, register_t *);
    870  1.54  jdolecek 
    871  1.72       dsl int	compat_43_sys_getpeername(struct lwp *, const struct compat_43_sys_getpeername_args *, register_t *);
    872  1.54  jdolecek 
    873  1.72       dsl int	compat_43_sys_gethostid(struct lwp *, const void *, register_t *);
    874  1.54  jdolecek 
    875  1.72       dsl int	compat_43_sys_sethostid(struct lwp *, const struct compat_43_sys_sethostid_args *, register_t *);
    876  1.54  jdolecek 
    877  1.72       dsl int	compat_43_sys_getrlimit(struct lwp *, const struct compat_43_sys_getrlimit_args *, register_t *);
    878  1.54  jdolecek 
    879  1.72       dsl int	compat_43_sys_setrlimit(struct lwp *, const struct compat_43_sys_setrlimit_args *, register_t *);
    880  1.54  jdolecek 
    881  1.72       dsl int	compat_43_sys_killpg(struct lwp *, const struct compat_43_sys_killpg_args *, register_t *);
    882  1.54  jdolecek 
    883  1.72       dsl int	sys_setsid(struct lwp *, const void *, register_t *);
    884  1.54  jdolecek 
    885  1.93  christos #if defined(QUOTA) || !defined(_KERNEL_OPT)
    886  1.80    bouyer int	compat_50_sys_quotactl(struct lwp *, const struct compat_50_sys_quotactl_args *, register_t *);
    887  1.54  jdolecek 
    888  1.72       dsl int	compat_43_sys_quota(struct lwp *, const void *, register_t *);
    889  1.54  jdolecek 
    890  1.93  christos #else
    891  1.93  christos #endif
    892  1.72       dsl int	compat_43_sys_getsockname(struct lwp *, const struct compat_43_sys_getsockname_args *, register_t *);
    893  1.54  jdolecek 
    894  1.72       dsl int	compat_43_sys_getdirentries(struct lwp *, const struct compat_43_sys_getdirentries_args *, register_t *);
    895  1.54  jdolecek 
    896  1.72       dsl int	compat_20_sys_statfs(struct lwp *, const struct compat_20_sys_statfs_args *, register_t *);
    897  1.54  jdolecek 
    898  1.72       dsl int	compat_20_sys_fstatfs(struct lwp *, const struct compat_20_sys_fstatfs_args *, register_t *);
    899  1.54  jdolecek 
    900  1.72       dsl int	compat_30_sys_getfh(struct lwp *, const struct compat_30_sys_getfh_args *, register_t *);
    901  1.54  jdolecek 
    902  1.72       dsl int	compat_09_sys_getdomainname(struct lwp *, const struct compat_09_sys_getdomainname_args *, register_t *);
    903  1.54  jdolecek 
    904  1.72       dsl int	compat_09_sys_setdomainname(struct lwp *, const struct compat_09_sys_setdomainname_args *, register_t *);
    905  1.54  jdolecek 
    906  1.72       dsl int	compat_09_sys_uname(struct lwp *, const struct compat_09_sys_uname_args *, register_t *);
    907  1.54  jdolecek 
    908  1.72       dsl int	sys_sysarch(struct lwp *, const struct sys_sysarch_args *, register_t *);
    909  1.54  jdolecek 
    910  1.72       dsl int	freebsd_sys_rtprio(struct lwp *, const struct freebsd_sys_rtprio_args *, register_t *);
    911  1.54  jdolecek 
    912  1.48       eeh #if defined(SYSVSEM) && !defined(_LP64)
    913  1.72       dsl int	freebsd_sys_semsys(struct lwp *, const struct freebsd_sys_semsys_args *, register_t *);
    914  1.54  jdolecek 
    915   1.1   mycroft #else
    916   1.1   mycroft #endif
    917  1.48       eeh #if defined(SYSVMSG) && !defined(_LP64)
    918  1.72       dsl int	freebsd_sys_msgsys(struct lwp *, const struct freebsd_sys_msgsys_args *, register_t *);
    919  1.54  jdolecek 
    920   1.1   mycroft #else
    921   1.1   mycroft #endif
    922  1.48       eeh #if defined(SYSVSHM) && !defined(_LP64)
    923  1.72       dsl int	freebsd_sys_shmsys(struct lwp *, const struct freebsd_sys_shmsys_args *, register_t *);
    924  1.54  jdolecek 
    925   1.1   mycroft #else
    926   1.1   mycroft #endif
    927  1.72       dsl int	sys_pread(struct lwp *, const struct sys_pread_args *, register_t *);
    928  1.54  jdolecek 
    929  1.72       dsl int	sys_pwrite(struct lwp *, const struct sys_pwrite_args *, register_t *);
    930  1.54  jdolecek 
    931  1.36    itojun #ifdef NTP
    932  1.72       dsl int	freebsd_ntp_adjtime(struct lwp *, const struct freebsd_ntp_adjtime_args *, register_t *);
    933  1.54  jdolecek 
    934  1.35     bjh21 #else
    935  1.35     bjh21 #endif
    936  1.72       dsl int	sys_setgid(struct lwp *, const struct sys_setgid_args *, register_t *);
    937  1.54  jdolecek 
    938  1.72       dsl int	sys_setegid(struct lwp *, const struct sys_setegid_args *, register_t *);
    939  1.54  jdolecek 
    940  1.72       dsl int	sys_seteuid(struct lwp *, const struct sys_seteuid_args *, register_t *);
    941  1.54  jdolecek 
    942  1.72       dsl int	compat_12_sys_stat(struct lwp *, const struct compat_12_sys_stat_args *, register_t *);
    943  1.54  jdolecek 
    944  1.72       dsl int	compat_12_sys_fstat(struct lwp *, const struct compat_12_sys_fstat_args *, register_t *);
    945  1.54  jdolecek 
    946  1.72       dsl int	compat_12_sys_lstat(struct lwp *, const struct compat_12_sys_lstat_args *, register_t *);
    947  1.54  jdolecek 
    948  1.72       dsl int	sys_pathconf(struct lwp *, const struct sys_pathconf_args *, register_t *);
    949  1.54  jdolecek 
    950  1.72       dsl int	sys_fpathconf(struct lwp *, const struct sys_fpathconf_args *, register_t *);
    951  1.54  jdolecek 
    952  1.72       dsl int	sys_getrlimit(struct lwp *, const struct sys_getrlimit_args *, register_t *);
    953  1.54  jdolecek 
    954  1.72       dsl int	sys_setrlimit(struct lwp *, const struct sys_setrlimit_args *, register_t *);
    955  1.54  jdolecek 
    956  1.72       dsl int	compat_12_sys_getdirentries(struct lwp *, const struct compat_12_sys_getdirentries_args *, register_t *);
    957  1.54  jdolecek 
    958  1.72       dsl int	freebsd_sys_mmap(struct lwp *, const struct freebsd_sys_mmap_args *, register_t *);
    959  1.54  jdolecek 
    960  1.72       dsl int	sys_lseek(struct lwp *, const struct sys_lseek_args *, register_t *);
    961  1.54  jdolecek 
    962  1.72       dsl int	sys_truncate(struct lwp *, const struct sys_truncate_args *, register_t *);
    963  1.54  jdolecek 
    964  1.72       dsl int	sys_ftruncate(struct lwp *, const struct sys_ftruncate_args *, register_t *);
    965  1.54  jdolecek 
    966  1.72       dsl int	freebsd_sys_sysctl(struct lwp *, const struct freebsd_sys_sysctl_args *, register_t *);
    967  1.54  jdolecek 
    968  1.72       dsl int	sys_mlock(struct lwp *, const struct sys_mlock_args *, register_t *);
    969  1.54  jdolecek 
    970  1.72       dsl int	sys_munlock(struct lwp *, const struct sys_munlock_args *, register_t *);
    971  1.54  jdolecek 
    972   1.1   mycroft #ifdef FREEBSD_BASED_ON_44LITE_R2
    973  1.72       dsl int	freebsd_sys_undelete(struct lwp *, const struct freebsd_sys_undelete_args *, register_t *);
    974  1.54  jdolecek 
    975   1.1   mycroft #else
    976   1.1   mycroft #endif
    977  1.75  christos int	compat_50_sys_futimes(struct lwp *, const struct compat_50_sys_futimes_args *, register_t *);
    978  1.54  jdolecek 
    979  1.72       dsl int	sys_getpgid(struct lwp *, const struct sys_getpgid_args *, register_t *);
    980  1.54  jdolecek 
    981  1.28  christos #if 0
    982  1.28  christos #else
    983  1.28  christos #endif
    984  1.72       dsl int	sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
    985  1.54  jdolecek 
    986  1.28  christos #ifdef SYSVSEM
    987  1.72       dsl int	compat_14_sys___semctl(struct lwp *, const struct compat_14_sys___semctl_args *, register_t *);
    988  1.54  jdolecek 
    989  1.72       dsl int	sys_semget(struct lwp *, const struct sys_semget_args *, register_t *);
    990  1.54  jdolecek 
    991  1.72       dsl int	sys_semop(struct lwp *, const struct sys_semop_args *, register_t *);
    992  1.54  jdolecek 
    993  1.72       dsl int	sys_semconfig(struct lwp *, const struct sys_semconfig_args *, register_t *);
    994  1.54  jdolecek 
    995  1.28  christos #else
    996  1.28  christos #endif
    997  1.28  christos #ifdef SYSVMSG
    998  1.72       dsl int	compat_14_sys_msgctl(struct lwp *, const struct compat_14_sys_msgctl_args *, register_t *);
    999  1.54  jdolecek 
   1000  1.72       dsl int	sys_msgget(struct lwp *, const struct sys_msgget_args *, register_t *);
   1001  1.54  jdolecek 
   1002  1.72       dsl int	sys_msgsnd(struct lwp *, const struct sys_msgsnd_args *, register_t *);
   1003  1.54  jdolecek 
   1004  1.72       dsl int	sys_msgrcv(struct lwp *, const struct sys_msgrcv_args *, register_t *);
   1005  1.54  jdolecek 
   1006  1.28  christos #else
   1007  1.28  christos #endif
   1008  1.28  christos #ifdef SYSVSHM
   1009  1.72       dsl int	sys_shmat(struct lwp *, const struct sys_shmat_args *, register_t *);
   1010  1.54  jdolecek 
   1011  1.72       dsl int	compat_14_sys_shmctl(struct lwp *, const struct compat_14_sys_shmctl_args *, register_t *);
   1012  1.54  jdolecek 
   1013  1.72       dsl int	sys_shmdt(struct lwp *, const struct sys_shmdt_args *, register_t *);
   1014  1.54  jdolecek 
   1015  1.72       dsl int	sys_shmget(struct lwp *, const struct sys_shmget_args *, register_t *);
   1016  1.54  jdolecek 
   1017  1.51   thorpej #else
   1018  1.51   thorpej #endif
   1019  1.75  christos int	compat_50_sys_clock_gettime(struct lwp *, const struct compat_50_sys_clock_gettime_args *, register_t *);
   1020  1.54  jdolecek 
   1021  1.75  christos int	compat_50_sys_clock_settime(struct lwp *, const struct compat_50_sys_clock_settime_args *, register_t *);
   1022  1.54  jdolecek 
   1023  1.75  christos int	compat_50_sys_clock_getres(struct lwp *, const struct compat_50_sys_clock_getres_args *, register_t *);
   1024  1.54  jdolecek 
   1025  1.75  christos int	compat_50_sys_nanosleep(struct lwp *, const struct compat_50_sys_nanosleep_args *, register_t *);
   1026  1.54  jdolecek 
   1027  1.72       dsl int	sys_minherit(struct lwp *, const struct sys_minherit_args *, register_t *);
   1028  1.54  jdolecek 
   1029  1.72       dsl int	freebsd_sys_rfork(struct lwp *, const struct freebsd_sys_rfork_args *, register_t *);
   1030  1.54  jdolecek 
   1031  1.72       dsl int	sys_issetugid(struct lwp *, const void *, register_t *);
   1032  1.54  jdolecek 
   1033  1.72       dsl int	sys_lchown(struct lwp *, const struct sys_lchown_args *, register_t *);
   1034  1.54  jdolecek 
   1035  1.72       dsl int	compat_30_sys_getdents(struct lwp *, const struct compat_30_sys_getdents_args *, register_t *);
   1036  1.54  jdolecek 
   1037  1.72       dsl int	sys_lchmod(struct lwp *, const struct sys_lchmod_args *, register_t *);
   1038  1.54  jdolecek 
   1039  1.75  christos int	compat_50_sys_lutimes(struct lwp *, const struct compat_50_sys_lutimes_args *, register_t *);
   1040  1.54  jdolecek 
   1041  1.72       dsl int	sys___msync13(struct lwp *, const struct sys___msync13_args *, register_t *);
   1042  1.54  jdolecek 
   1043  1.72       dsl int	compat_30_sys___stat13(struct lwp *, const struct compat_30_sys___stat13_args *, register_t *);
   1044  1.54  jdolecek 
   1045  1.72       dsl int	compat_30_sys___fstat13(struct lwp *, const struct compat_30_sys___fstat13_args *, register_t *);
   1046  1.54  jdolecek 
   1047  1.72       dsl int	compat_30_sys___lstat13(struct lwp *, const struct compat_30_sys___lstat13_args *, register_t *);
   1048  1.54  jdolecek 
   1049  1.72       dsl int	compat_20_sys_fhstatfs(struct lwp *, const struct compat_20_sys_fhstatfs_args *, register_t *);
   1050  1.54  jdolecek 
   1051  1.72       dsl int	compat_30_sys_fhopen(struct lwp *, const struct compat_30_sys_fhopen_args *, register_t *);
   1052  1.54  jdolecek 
   1053  1.72       dsl int	compat_30_sys_fhstat(struct lwp *, const struct compat_30_sys_fhstat_args *, register_t *);
   1054  1.54  jdolecek 
   1055  1.72       dsl int	sys_getsid(struct lwp *, const struct sys_getsid_args *, register_t *);
   1056  1.54  jdolecek 
   1057  1.72       dsl int	freebsd_sys_yield(struct lwp *, const void *, register_t *);
   1058  1.54  jdolecek 
   1059  1.72       dsl int	sys_mlockall(struct lwp *, const struct sys_mlockall_args *, register_t *);
   1060  1.54  jdolecek 
   1061  1.72       dsl int	sys_munlockall(struct lwp *, const void *, register_t *);
   1062  1.54  jdolecek 
   1063  1.72       dsl int	sys___getcwd(struct lwp *, const struct sys___getcwd_args *, register_t *);
   1064  1.54  jdolecek 
   1065  1.72       dsl int	freebsd_sys_sched_setparam(struct lwp *, const struct freebsd_sys_sched_setparam_args *, register_t *);
   1066  1.54  jdolecek 
   1067  1.72       dsl int	freebsd_sys_sched_getparam(struct lwp *, const struct freebsd_sys_sched_getparam_args *, register_t *);
   1068  1.54  jdolecek 
   1069  1.72       dsl int	freebsd_sys_sched_setscheduler(struct lwp *, const struct freebsd_sys_sched_setscheduler_args *, register_t *);
   1070  1.54  jdolecek 
   1071  1.72       dsl int	freebsd_sys_sched_getscheduler(struct lwp *, const struct freebsd_sys_sched_getscheduler_args *, register_t *);
   1072  1.54  jdolecek 
   1073  1.72       dsl int	freebsd_sys_sched_yield(struct lwp *, const void *, register_t *);
   1074  1.54  jdolecek 
   1075  1.72       dsl int	freebsd_sys_sched_get_priority_max(struct lwp *, const struct freebsd_sys_sched_get_priority_max_args *, register_t *);
   1076  1.54  jdolecek 
   1077  1.72       dsl int	freebsd_sys_sched_get_priority_min(struct lwp *, const struct freebsd_sys_sched_get_priority_min_args *, register_t *);
   1078  1.54  jdolecek 
   1079  1.72       dsl int	freebsd_sys_utrace(struct lwp *, const struct freebsd_sys_utrace_args *, register_t *);
   1080  1.54  jdolecek 
   1081  1.72       dsl int	sys___sigprocmask14(struct lwp *, const struct sys___sigprocmask14_args *, register_t *);
   1082  1.54  jdolecek 
   1083  1.72       dsl int	sys___sigsuspend14(struct lwp *, const struct sys___sigsuspend14_args *, register_t *);
   1084  1.54  jdolecek 
   1085  1.72       dsl int	freebsd_sys_sigaction4(struct lwp *, const struct freebsd_sys_sigaction4_args *, register_t *);
   1086  1.54  jdolecek 
   1087  1.72       dsl int	sys___sigpending14(struct lwp *, const struct sys___sigpending14_args *, register_t *);
   1088  1.54  jdolecek 
   1089  1.72       dsl int	sys_lchflags(struct lwp *, const struct sys_lchflags_args *, register_t *);
   1090  1.54  jdolecek 
   1091  1.72       dsl int	sys_uuidgen(struct lwp *, const struct sys_uuidgen_args *, register_t *);
   1092  1.55    tsarna 
   1093  1.72       dsl int	sys__ksem_close(struct lwp *, const struct sys__ksem_close_args *, register_t *);
   1094  1.54  jdolecek 
   1095  1.72       dsl int	sys__ksem_post(struct lwp *, const struct sys__ksem_post_args *, register_t *);
   1096  1.54  jdolecek 
   1097  1.72       dsl int	sys__ksem_wait(struct lwp *, const struct sys__ksem_wait_args *, register_t *);
   1098  1.54  jdolecek 
   1099  1.72       dsl int	sys__ksem_trywait(struct lwp *, const struct sys__ksem_trywait_args *, register_t *);
   1100  1.54  jdolecek 
   1101  1.72       dsl int	sys__ksem_unlink(struct lwp *, const struct sys__ksem_unlink_args *, register_t *);
   1102  1.54  jdolecek 
   1103  1.72       dsl int	sys__ksem_getvalue(struct lwp *, const struct sys__ksem_getvalue_args *, register_t *);
   1104  1.54  jdolecek 
   1105  1.72       dsl int	sys__ksem_destroy(struct lwp *, const struct sys__ksem_destroy_args *, register_t *);
   1106  1.54  jdolecek 
   1107  1.64  christos #endif /* _FREEBSD_SYS_SYSCALLARGS_H_ */
   1108