Home | History | Annotate | Line # | Download | only in amd64
linux_syscallargs.h revision 1.5.2.2
      1  1.5.2.2  yamt /* $NetBSD: linux_syscallargs.h,v 1.5.2.2 2006/12/30 20:47:35 yamt Exp $ */
      2      1.1  manu 
      3      1.1  manu /*
      4      1.1  manu  * System call argument lists.
      5      1.1  manu  *
      6      1.1  manu  * DO NOT EDIT-- this file is automatically generated.
      7  1.5.2.2  yamt  * created from	NetBSD: syscalls.master,v 1.15 2006/09/01 20:58:18 matt Exp
      8      1.1  manu  */
      9      1.1  manu 
     10  1.5.2.1  yamt #ifndef _LINUX_SYS_SYSCALLARGS_H_
     11  1.5.2.1  yamt #define	_LINUX_SYS_SYSCALLARGS_H_
     12      1.1  manu 
     13      1.1  manu #ifdef	syscallarg
     14      1.1  manu #undef	syscallarg
     15      1.1  manu #endif
     16      1.1  manu 
     17      1.1  manu #define	syscallarg(x)							\
     18      1.1  manu 	union {								\
     19      1.1  manu 		register_t pad;						\
     20      1.1  manu 		struct { x datum; } le;					\
     21      1.1  manu 		struct { /* LINTED zero array dimension */		\
     22      1.1  manu 			int8_t pad[  /* CONSTCOND */			\
     23      1.1  manu 				(sizeof (register_t) < sizeof (x))	\
     24      1.1  manu 				? 0					\
     25      1.1  manu 				: sizeof (register_t) - sizeof (x)];	\
     26      1.1  manu 			x datum;					\
     27      1.1  manu 		} be;							\
     28      1.1  manu 	}
     29      1.1  manu 
     30      1.1  manu struct linux_sys_open_args {
     31      1.1  manu 	syscallarg(const char *) path;
     32      1.1  manu 	syscallarg(int) flags;
     33      1.1  manu 	syscallarg(int) mode;
     34      1.1  manu };
     35      1.1  manu 
     36      1.1  manu struct linux_sys_stat64_args {
     37      1.1  manu 	syscallarg(const char *) path;
     38      1.1  manu 	syscallarg(struct linux_stat *) sp;
     39      1.1  manu };
     40      1.1  manu 
     41      1.1  manu struct linux_sys_fstat64_args {
     42      1.1  manu 	syscallarg(int) fd;
     43      1.1  manu 	syscallarg(struct linux_stat *) sp;
     44      1.1  manu };
     45      1.1  manu 
     46      1.1  manu struct linux_sys_lstat64_args {
     47      1.1  manu 	syscallarg(const char *) path;
     48      1.1  manu 	syscallarg(struct linux_stat *) sp;
     49      1.1  manu };
     50      1.1  manu 
     51      1.1  manu struct linux_sys_mprotect_args {
     52      1.1  manu 	syscallarg(const void *) start;
     53      1.1  manu 	syscallarg(unsigned long) len;
     54      1.1  manu 	syscallarg(int) prot;
     55      1.1  manu };
     56      1.1  manu 
     57      1.1  manu struct linux_sys_brk_args {
     58      1.1  manu 	syscallarg(char *) nsize;
     59      1.1  manu };
     60      1.1  manu 
     61      1.1  manu struct linux_sys_rt_sigaction_args {
     62      1.1  manu 	syscallarg(int) signum;
     63      1.1  manu 	syscallarg(const struct linux_sigaction *) nsa;
     64      1.1  manu 	syscallarg(struct linux_sigaction *) osa;
     65      1.1  manu 	syscallarg(size_t) sigsetsize;
     66      1.1  manu };
     67      1.1  manu 
     68      1.1  manu struct linux_sys_rt_sigprocmask_args {
     69      1.1  manu 	syscallarg(int) how;
     70      1.1  manu 	syscallarg(const linux_sigset_t *) set;
     71      1.1  manu 	syscallarg(linux_sigset_t *) oset;
     72      1.1  manu 	syscallarg(size_t) sigsetsize;
     73      1.1  manu };
     74      1.1  manu 
     75      1.1  manu struct linux_sys_ioctl_args {
     76      1.1  manu 	syscallarg(int) fd;
     77      1.1  manu 	syscallarg(u_long) com;
     78      1.1  manu 	syscallarg(caddr_t) data;
     79      1.1  manu };
     80      1.1  manu 
     81      1.1  manu struct linux_sys_pread_args {
     82      1.1  manu 	syscallarg(int) fd;
     83      1.1  manu 	syscallarg(char *) buf;
     84      1.1  manu 	syscallarg(size_t) nbyte;
     85      1.1  manu 	syscallarg(linux_off_t) offset;
     86      1.1  manu };
     87      1.1  manu 
     88      1.1  manu struct linux_sys_pwrite_args {
     89      1.1  manu 	syscallarg(int) fd;
     90      1.1  manu 	syscallarg(char *) buf;
     91      1.1  manu 	syscallarg(size_t) nbyte;
     92      1.1  manu 	syscallarg(linux_off_t) offset;
     93      1.1  manu };
     94      1.1  manu 
     95      1.1  manu struct linux_sys_access_args {
     96      1.1  manu 	syscallarg(const char *) path;
     97      1.1  manu 	syscallarg(int) flags;
     98      1.1  manu };
     99      1.1  manu 
    100      1.1  manu struct linux_sys_pipe_args {
    101      1.1  manu 	syscallarg(int *) pfds;
    102      1.1  manu };
    103      1.1  manu 
    104      1.1  manu struct linux_sys_select_args {
    105      1.1  manu 	syscallarg(int) nfds;
    106      1.1  manu 	syscallarg(fd_set *) readfds;
    107      1.1  manu 	syscallarg(fd_set *) writefds;
    108      1.1  manu 	syscallarg(fd_set *) exceptfds;
    109      1.1  manu 	syscallarg(struct timeval *) timeout;
    110      1.1  manu };
    111      1.1  manu 
    112      1.1  manu struct linux_sys_mremap_args {
    113      1.1  manu 	syscallarg(void *) old_address;
    114      1.1  manu 	syscallarg(size_t) old_size;
    115      1.1  manu 	syscallarg(size_t) new_size;
    116      1.1  manu 	syscallarg(u_long) flags;
    117      1.1  manu };
    118      1.1  manu 
    119      1.1  manu struct linux_sys_msync_args {
    120      1.1  manu 	syscallarg(caddr_t) addr;
    121      1.1  manu 	syscallarg(int) len;
    122      1.1  manu 	syscallarg(int) fl;
    123      1.1  manu };
    124  1.5.2.1  yamt #ifdef SYSVSHM
    125  1.5.2.1  yamt 
    126  1.5.2.1  yamt struct linux_sys_shmget_args {
    127  1.5.2.1  yamt 	syscallarg(key_t) key;
    128  1.5.2.1  yamt 	syscallarg(size_t) size;
    129  1.5.2.1  yamt 	syscallarg(int) shmflg;
    130  1.5.2.1  yamt };
    131  1.5.2.1  yamt 
    132  1.5.2.1  yamt struct linux_sys_shmctl_args {
    133  1.5.2.1  yamt 	syscallarg(int) shmid;
    134  1.5.2.1  yamt 	syscallarg(int) cmd;
    135  1.5.2.1  yamt 	syscallarg(struct linux_shmid_ds *) buf;
    136  1.5.2.1  yamt };
    137  1.5.2.1  yamt #else
    138  1.5.2.1  yamt #endif
    139      1.1  manu 
    140      1.1  manu struct linux_sys_alarm_args {
    141      1.1  manu 	syscallarg(unsigned int) secs;
    142      1.1  manu };
    143      1.1  manu 
    144      1.1  manu struct linux_sys_socket_args {
    145      1.1  manu 	syscallarg(int) domain;
    146      1.1  manu 	syscallarg(int) type;
    147      1.1  manu 	syscallarg(int) protocol;
    148      1.1  manu };
    149      1.1  manu 
    150      1.1  manu struct linux_sys_connect_args {
    151      1.1  manu 	syscallarg(int) s;
    152      1.1  manu 	syscallarg(const struct osockaddr *) name;
    153      1.1  manu 	syscallarg(unsigned int) namelen;
    154      1.1  manu };
    155      1.1  manu 
    156      1.1  manu struct linux_sys_accept_args {
    157      1.1  manu 	syscallarg(int) s;
    158      1.1  manu 	syscallarg(struct osockaddr *) name;
    159      1.1  manu 	syscallarg(int *) anamelen;
    160      1.1  manu };
    161      1.1  manu 
    162      1.1  manu struct linux_sys_sendto_args {
    163      1.1  manu 	syscallarg(int) s;
    164      1.1  manu 	syscallarg(void *) msg;
    165      1.1  manu 	syscallarg(int) len;
    166      1.1  manu 	syscallarg(int) flags;
    167      1.1  manu 	syscallarg(struct osockaddr *) to;
    168      1.1  manu 	syscallarg(int) tolen;
    169      1.1  manu };
    170      1.1  manu 
    171      1.1  manu struct linux_sys_recvfrom_args {
    172      1.1  manu 	syscallarg(int) s;
    173      1.1  manu 	syscallarg(void *) buf;
    174      1.1  manu 	syscallarg(size_t) len;
    175      1.1  manu 	syscallarg(int) flags;
    176      1.1  manu 	syscallarg(struct osockaddr *) from;
    177      1.1  manu 	syscallarg(unsigned int *) fromlenaddr;
    178      1.1  manu };
    179      1.1  manu 
    180      1.1  manu struct linux_sys_sendmsg_args {
    181      1.1  manu 	syscallarg(int) s;
    182      1.1  manu 	syscallarg(const struct msghdr *) msg;
    183      1.1  manu 	syscallarg(int) flags;
    184      1.1  manu };
    185      1.1  manu 
    186      1.1  manu struct linux_sys_recvmsg_args {
    187      1.1  manu 	syscallarg(int) s;
    188      1.1  manu 	syscallarg(struct msghdr *) msg;
    189      1.1  manu 	syscallarg(int) flags;
    190      1.1  manu };
    191      1.1  manu 
    192      1.1  manu struct linux_sys_bind_args {
    193      1.1  manu 	syscallarg(int) s;
    194      1.1  manu 	syscallarg(const struct osockaddr *) name;
    195      1.1  manu 	syscallarg(unsigned int) namelen;
    196      1.1  manu };
    197      1.1  manu 
    198      1.1  manu struct linux_sys_getsockname_args {
    199      1.1  manu 	syscallarg(int) fdec;
    200      1.1  manu 	syscallarg(caddr_t) asa;
    201      1.1  manu 	syscallarg(int *) alen;
    202      1.1  manu };
    203      1.1  manu 
    204      1.1  manu struct linux_sys_getpeername_args {
    205      1.1  manu 	syscallarg(int) fdes;
    206      1.1  manu 	syscallarg(struct sockaddr *) asa;
    207      1.1  manu 	syscallarg(unsigned int *) alen;
    208      1.1  manu };
    209      1.1  manu 
    210      1.1  manu struct linux_sys_socketpair_args {
    211      1.1  manu 	syscallarg(int) domain;
    212      1.1  manu 	syscallarg(int) type;
    213      1.1  manu 	syscallarg(int) protocol;
    214      1.1  manu 	syscallarg(int *) rsv;
    215      1.1  manu };
    216      1.1  manu 
    217      1.1  manu struct linux_sys_setsockopt_args {
    218      1.1  manu 	syscallarg(int) s;
    219      1.1  manu 	syscallarg(int) level;
    220      1.1  manu 	syscallarg(int) optname;
    221      1.1  manu 	syscallarg(void *) optval;
    222      1.1  manu 	syscallarg(int) optlen;
    223      1.1  manu };
    224      1.1  manu 
    225      1.1  manu struct linux_sys_getsockopt_args {
    226      1.1  manu 	syscallarg(int) s;
    227      1.1  manu 	syscallarg(int) level;
    228      1.1  manu 	syscallarg(int) optname;
    229      1.1  manu 	syscallarg(void *) optval;
    230      1.1  manu 	syscallarg(int *) optlen;
    231      1.1  manu };
    232      1.1  manu 
    233      1.1  manu struct linux_sys_clone_args {
    234      1.1  manu 	syscallarg(int) flags;
    235      1.1  manu 	syscallarg(void *) stack;
    236      1.5  manu 	syscallarg(void *) parent_tidptr;
    237      1.5  manu 	syscallarg(void *) child_tidptr;
    238      1.1  manu };
    239      1.1  manu 
    240      1.1  manu struct linux_sys_execve_args {
    241      1.1  manu 	syscallarg(const char *) path;
    242      1.1  manu 	syscallarg(char **) argp;
    243      1.1  manu 	syscallarg(char **) envp;
    244      1.1  manu };
    245      1.1  manu 
    246      1.1  manu struct linux_sys_wait4_args {
    247      1.1  manu 	syscallarg(int) pid;
    248      1.1  manu 	syscallarg(int *) status;
    249      1.1  manu 	syscallarg(int) options;
    250      1.1  manu 	syscallarg(struct rusage *) rusage;
    251      1.1  manu };
    252      1.1  manu 
    253      1.1  manu struct linux_sys_kill_args {
    254      1.1  manu 	syscallarg(int) pid;
    255      1.1  manu 	syscallarg(int) signum;
    256      1.1  manu };
    257      1.1  manu 
    258      1.1  manu struct linux_sys_uname_args {
    259      1.1  manu 	syscallarg(struct linux_utsname *) up;
    260      1.1  manu };
    261  1.5.2.1  yamt #ifdef SYSVSEM
    262  1.5.2.1  yamt 
    263  1.5.2.1  yamt struct linux_sys_semctl_args {
    264  1.5.2.1  yamt 	syscallarg(int) semid;
    265  1.5.2.1  yamt 	syscallarg(int) semnum;
    266  1.5.2.1  yamt 	syscallarg(int) cmd;
    267  1.5.2.1  yamt 	syscallarg(union linux_semun) arg;
    268  1.5.2.1  yamt };
    269  1.5.2.1  yamt #else
    270  1.5.2.1  yamt #endif
    271  1.5.2.1  yamt #ifdef SYSVSHM
    272  1.5.2.1  yamt #else
    273  1.5.2.1  yamt #endif
    274  1.5.2.1  yamt #ifdef SYSVMSG
    275  1.5.2.1  yamt 
    276  1.5.2.1  yamt struct linux_sys_msgctl_args {
    277  1.5.2.1  yamt 	syscallarg(int) msqid;
    278  1.5.2.1  yamt 	syscallarg(int) cmd;
    279  1.5.2.1  yamt 	syscallarg(struct linux_msqid_ds *) buf;
    280  1.5.2.1  yamt };
    281  1.5.2.1  yamt #else
    282  1.5.2.1  yamt #endif
    283      1.1  manu 
    284      1.1  manu struct linux_sys_fcntl_args {
    285      1.1  manu 	syscallarg(int) fd;
    286      1.1  manu 	syscallarg(int) cmd;
    287      1.1  manu 	syscallarg(void *) arg;
    288      1.1  manu };
    289      1.1  manu 
    290      1.1  manu struct linux_sys_fdatasync_args {
    291      1.1  manu 	syscallarg(int) fd;
    292      1.1  manu };
    293      1.1  manu 
    294      1.1  manu struct linux_sys_truncate64_args {
    295      1.1  manu 	syscallarg(const char *) path;
    296      1.1  manu 	syscallarg(off_t) length;
    297      1.1  manu };
    298      1.1  manu 
    299      1.1  manu struct linux_sys_ftruncate64_args {
    300      1.1  manu 	syscallarg(unsigned int) fd;
    301      1.1  manu 	syscallarg(off_t) length;
    302      1.1  manu };
    303      1.1  manu 
    304      1.1  manu struct linux_sys_getdents_args {
    305      1.1  manu 	syscallarg(int) fd;
    306      1.1  manu 	syscallarg(struct linux_dirent *) dent;
    307      1.1  manu 	syscallarg(unsigned int) count;
    308      1.1  manu };
    309      1.1  manu 
    310      1.1  manu struct linux_sys_chdir_args {
    311      1.1  manu 	syscallarg(const char *) path;
    312      1.1  manu };
    313      1.1  manu 
    314      1.1  manu struct linux_sys_rename_args {
    315      1.1  manu 	syscallarg(const char *) from;
    316      1.1  manu 	syscallarg(const char *) to;
    317      1.1  manu };
    318      1.1  manu 
    319      1.1  manu struct linux_sys_mkdir_args {
    320      1.1  manu 	syscallarg(const char *) path;
    321      1.1  manu 	syscallarg(int) mode;
    322      1.1  manu };
    323      1.1  manu 
    324      1.1  manu struct linux_sys_rmdir_args {
    325      1.1  manu 	syscallarg(const char *) path;
    326      1.1  manu };
    327      1.1  manu 
    328      1.1  manu struct linux_sys_creat_args {
    329      1.1  manu 	syscallarg(const char *) path;
    330      1.1  manu 	syscallarg(int) mode;
    331      1.1  manu };
    332      1.1  manu 
    333      1.1  manu struct linux_sys_link_args {
    334      1.1  manu 	syscallarg(const char *) path;
    335      1.1  manu 	syscallarg(const char *) link;
    336      1.1  manu };
    337      1.1  manu 
    338      1.1  manu struct linux_sys_unlink_args {
    339      1.1  manu 	syscallarg(const char *) path;
    340      1.1  manu };
    341      1.1  manu 
    342      1.1  manu struct linux_sys_symlink_args {
    343      1.1  manu 	syscallarg(const char *) path;
    344      1.1  manu 	syscallarg(const char *) to;
    345      1.1  manu };
    346      1.1  manu 
    347      1.1  manu struct linux_sys_readlink_args {
    348      1.1  manu 	syscallarg(const char *) name;
    349      1.1  manu 	syscallarg(char *) buf;
    350      1.1  manu 	syscallarg(int) count;
    351      1.1  manu };
    352      1.1  manu 
    353      1.1  manu struct linux_sys_chmod_args {
    354      1.1  manu 	syscallarg(const char *) path;
    355      1.1  manu 	syscallarg(int) mode;
    356      1.1  manu };
    357      1.1  manu 
    358      1.1  manu struct linux_sys_chown_args {
    359      1.1  manu 	syscallarg(const char *) path;
    360      1.1  manu 	syscallarg(uid_t) uid;
    361      1.1  manu 	syscallarg(gid_t) gid;
    362      1.1  manu };
    363      1.1  manu 
    364      1.1  manu struct linux_sys_lchown_args {
    365      1.1  manu 	syscallarg(const char *) path;
    366      1.1  manu 	syscallarg(uid_t) uid;
    367      1.1  manu 	syscallarg(gid_t) gid;
    368      1.1  manu };
    369      1.1  manu 
    370      1.1  manu struct linux_sys_gettimeofday_args {
    371      1.1  manu 	syscallarg(struct timeval *) tp;
    372      1.1  manu 	syscallarg(struct timezone *) tzp;
    373      1.1  manu };
    374      1.1  manu 
    375      1.1  manu struct linux_sys_getrlimit_args {
    376      1.1  manu 	syscallarg(int) which;
    377  1.5.2.1  yamt 	syscallarg(struct rlimit *) rlp;
    378      1.1  manu };
    379      1.1  manu 
    380      1.1  manu struct linux_sys_sysinfo_args {
    381      1.1  manu 	syscallarg(struct linux_sysinfo *) arg;
    382      1.1  manu };
    383      1.1  manu 
    384      1.1  manu struct linux_sys_times_args {
    385      1.1  manu 	syscallarg(struct times *) tms;
    386      1.1  manu };
    387      1.1  manu 
    388      1.1  manu struct linux_sys_ptrace_args {
    389      1.1  manu 	syscallarg(long) request;
    390      1.1  manu 	syscallarg(long) pid;
    391      1.1  manu 	syscallarg(long) addr;
    392      1.1  manu 	syscallarg(long) data;
    393      1.1  manu };
    394      1.1  manu 
    395      1.1  manu struct linux_sys_setresuid_args {
    396      1.1  manu 	syscallarg(uid_t) ruid;
    397      1.1  manu 	syscallarg(uid_t) euid;
    398      1.1  manu 	syscallarg(uid_t) suid;
    399      1.1  manu };
    400      1.1  manu 
    401      1.1  manu struct linux_sys_getresuid_args {
    402      1.1  manu 	syscallarg(uid_t *) ruid;
    403      1.1  manu 	syscallarg(uid_t *) euid;
    404      1.1  manu 	syscallarg(uid_t *) suid;
    405      1.1  manu };
    406      1.1  manu 
    407      1.1  manu struct linux_sys_setresgid_args {
    408      1.1  manu 	syscallarg(gid_t) rgid;
    409      1.1  manu 	syscallarg(gid_t) egid;
    410      1.1  manu 	syscallarg(gid_t) sgid;
    411      1.1  manu };
    412      1.1  manu 
    413      1.1  manu struct linux_sys_getresgid_args {
    414      1.1  manu 	syscallarg(gid_t *) rgid;
    415      1.1  manu 	syscallarg(gid_t *) egid;
    416      1.1  manu 	syscallarg(gid_t *) sgid;
    417      1.1  manu };
    418      1.1  manu 
    419      1.1  manu struct linux_sys_getpgid_args {
    420      1.1  manu 	syscallarg(int) pid;
    421      1.1  manu };
    422      1.1  manu 
    423      1.1  manu struct linux_sys_setfsuid_args {
    424      1.1  manu 	syscallarg(uid_t) uid;
    425      1.1  manu };
    426      1.1  manu 
    427      1.1  manu struct linux_sys_rt_sigpending_args {
    428      1.1  manu 	syscallarg(linux_sigset_t *) set;
    429      1.1  manu 	syscallarg(size_t) sigsetsize;
    430      1.1  manu };
    431      1.1  manu 
    432      1.1  manu struct linux_sys_rt_queueinfo_args {
    433      1.1  manu 	syscallarg(int) pid;
    434      1.1  manu 	syscallarg(int) signum;
    435      1.1  manu 	syscallarg(siginfo_t *) uinfo;
    436      1.1  manu };
    437      1.1  manu 
    438      1.1  manu struct linux_sys_rt_sigsuspend_args {
    439      1.1  manu 	syscallarg(linux_sigset_t *) unewset;
    440      1.1  manu 	syscallarg(size_t) sigsetsize;
    441      1.1  manu };
    442      1.1  manu 
    443      1.1  manu struct linux_sys_sigaltstack_args {
    444      1.1  manu 	syscallarg(const struct linux_sigaltstack *) ss;
    445      1.1  manu 	syscallarg(struct linux_sigaltstack *) oss;
    446      1.1  manu };
    447      1.1  manu 
    448      1.1  manu struct linux_sys_utime_args {
    449      1.1  manu 	syscallarg(const char *) path;
    450      1.1  manu 	syscallarg(struct linux_utimbuf *) times;
    451      1.1  manu };
    452      1.1  manu 
    453      1.1  manu struct linux_sys_mknod_args {
    454      1.1  manu 	syscallarg(const char *) path;
    455      1.1  manu 	syscallarg(int) mode;
    456      1.1  manu 	syscallarg(int) dev;
    457      1.1  manu };
    458  1.5.2.1  yamt #ifdef EXEC_AOUT
    459      1.1  manu 
    460      1.1  manu struct linux_sys_uselib_args {
    461      1.1  manu 	syscallarg(const char *) path;
    462      1.1  manu };
    463  1.5.2.1  yamt #else
    464  1.5.2.1  yamt #endif
    465      1.1  manu 
    466      1.1  manu struct linux_sys_personality_args {
    467      1.1  manu 	syscallarg(int) per;
    468      1.1  manu };
    469      1.1  manu 
    470      1.1  manu struct linux_sys_statfs64_args {
    471      1.1  manu 	syscallarg(const char *) path;
    472      1.1  manu 	syscallarg(size_t) sz;
    473      1.1  manu 	syscallarg(struct linux_statfs64 *) sp;
    474      1.1  manu };
    475      1.1  manu 
    476      1.1  manu struct linux_sys_fstatfs64_args {
    477      1.1  manu 	syscallarg(int) fd;
    478      1.1  manu 	syscallarg(size_t) sz;
    479      1.1  manu 	syscallarg(struct linux_statfs64 *) sp;
    480      1.1  manu };
    481      1.1  manu 
    482  1.5.2.1  yamt struct linux_sys_getpriority_args {
    483  1.5.2.1  yamt 	syscallarg(int) which;
    484  1.5.2.1  yamt 	syscallarg(int) who;
    485  1.5.2.1  yamt };
    486  1.5.2.1  yamt 
    487      1.1  manu struct linux_sys_sched_setparam_args {
    488      1.1  manu 	syscallarg(pid_t) pid;
    489      1.1  manu 	syscallarg(const struct linux_sched_param *) sp;
    490      1.1  manu };
    491      1.1  manu 
    492      1.1  manu struct linux_sys_sched_getparam_args {
    493      1.1  manu 	syscallarg(pid_t) pid;
    494      1.1  manu 	syscallarg(struct linux_sched_param *) sp;
    495      1.1  manu };
    496      1.1  manu 
    497      1.1  manu struct linux_sys_sched_setscheduler_args {
    498      1.1  manu 	syscallarg(pid_t) pid;
    499      1.1  manu 	syscallarg(int) policy;
    500      1.1  manu 	syscallarg(const struct linux_sched_param *) sp;
    501      1.1  manu };
    502      1.1  manu 
    503      1.1  manu struct linux_sys_sched_getscheduler_args {
    504      1.1  manu 	syscallarg(pid_t) pid;
    505      1.1  manu };
    506      1.1  manu 
    507      1.1  manu struct linux_sys_sched_get_priority_max_args {
    508      1.1  manu 	syscallarg(int) policy;
    509      1.1  manu };
    510      1.1  manu 
    511      1.1  manu struct linux_sys_sched_get_priority_min_args {
    512      1.1  manu 	syscallarg(int) policy;
    513      1.1  manu };
    514      1.1  manu 
    515      1.1  manu struct linux_sys_modify_ldt_args {
    516      1.1  manu 	syscallarg(int) func;
    517      1.1  manu 	syscallarg(void *) ptr;
    518      1.1  manu 	syscallarg(size_t) bytecount;
    519      1.1  manu };
    520      1.1  manu 
    521      1.1  manu struct linux_sys___sysctl_args {
    522      1.1  manu 	syscallarg(struct linux___sysctl *) lsp;
    523      1.1  manu };
    524      1.1  manu 
    525      1.1  manu struct linux_sys_arch_prctl_args {
    526      1.1  manu 	syscallarg(int) code;
    527      1.1  manu 	syscallarg(unsigned long) addr;
    528      1.1  manu };
    529      1.1  manu 
    530      1.1  manu struct linux_sys_setrlimit_args {
    531      1.1  manu 	syscallarg(u_int) which;
    532  1.5.2.1  yamt 	syscallarg(struct rlimit *) rlp;
    533      1.1  manu };
    534      1.1  manu 
    535      1.1  manu struct linux_sys_settimeofday_args {
    536      1.1  manu 	syscallarg(struct timeval *) tp;
    537      1.1  manu 	syscallarg(struct timezone *) tzp;
    538      1.1  manu };
    539      1.1  manu 
    540      1.1  manu struct linux_sys_swapon_args {
    541      1.1  manu 	syscallarg(char *) name;
    542      1.1  manu };
    543      1.1  manu 
    544      1.1  manu struct linux_sys_swapoff_args {
    545      1.1  manu 	syscallarg(const char *) path;
    546      1.1  manu };
    547      1.1  manu 
    548      1.1  manu struct linux_sys_reboot_args {
    549      1.1  manu 	syscallarg(int) magic1;
    550      1.1  manu 	syscallarg(int) magic2;
    551      1.1  manu 	syscallarg(int) cmd;
    552      1.1  manu 	syscallarg(void *) arg;
    553      1.1  manu };
    554      1.1  manu 
    555      1.1  manu struct linux_sys_setdomainname_args {
    556      1.1  manu 	syscallarg(char *) domainname;
    557      1.1  manu 	syscallarg(int) len;
    558      1.1  manu };
    559      1.1  manu 
    560      1.1  manu struct linux_sys_iopl_args {
    561      1.1  manu 	syscallarg(int) level;
    562      1.1  manu };
    563      1.1  manu 
    564      1.1  manu struct linux_sys_ioperm_args {
    565      1.1  manu 	syscallarg(unsigned int) lo;
    566      1.1  manu 	syscallarg(unsigned int) hi;
    567      1.1  manu 	syscallarg(int) val;
    568      1.1  manu };
    569      1.1  manu 
    570      1.2  fvdl struct linux_sys_setxattr_args {
    571      1.2  fvdl 	syscallarg(char *) path;
    572      1.2  fvdl 	syscallarg(char *) name;
    573      1.2  fvdl 	syscallarg(void *) value;
    574      1.2  fvdl 	syscallarg(size_t) size;
    575      1.2  fvdl 	syscallarg(int) flags;
    576      1.2  fvdl };
    577      1.2  fvdl 
    578      1.2  fvdl struct linux_sys_lsetxattr_args {
    579      1.2  fvdl 	syscallarg(char *) path;
    580      1.2  fvdl 	syscallarg(char *) name;
    581      1.2  fvdl 	syscallarg(void *) value;
    582      1.2  fvdl 	syscallarg(size_t) size;
    583      1.2  fvdl 	syscallarg(int) flags;
    584      1.2  fvdl };
    585      1.2  fvdl 
    586      1.2  fvdl struct linux_sys_fsetxattr_args {
    587      1.2  fvdl 	syscallarg(int) fd;
    588      1.2  fvdl 	syscallarg(char *) name;
    589      1.2  fvdl 	syscallarg(void *) value;
    590      1.2  fvdl 	syscallarg(size_t) size;
    591      1.2  fvdl 	syscallarg(int) flags;
    592      1.2  fvdl };
    593      1.2  fvdl 
    594      1.2  fvdl struct linux_sys_getxattr_args {
    595      1.2  fvdl 	syscallarg(char *) path;
    596      1.2  fvdl 	syscallarg(char *) name;
    597      1.2  fvdl 	syscallarg(void *) value;
    598      1.2  fvdl 	syscallarg(size_t) size;
    599      1.2  fvdl };
    600      1.2  fvdl 
    601      1.2  fvdl struct linux_sys_lgetxattr_args {
    602      1.2  fvdl 	syscallarg(char *) path;
    603      1.2  fvdl 	syscallarg(char *) name;
    604      1.2  fvdl 	syscallarg(void *) value;
    605      1.2  fvdl 	syscallarg(size_t) size;
    606      1.2  fvdl };
    607      1.2  fvdl 
    608      1.2  fvdl struct linux_sys_fgetxattr_args {
    609      1.2  fvdl 	syscallarg(int) fd;
    610      1.2  fvdl 	syscallarg(char *) name;
    611      1.2  fvdl 	syscallarg(void *) value;
    612      1.2  fvdl 	syscallarg(size_t) size;
    613      1.2  fvdl };
    614      1.2  fvdl 
    615      1.2  fvdl struct linux_sys_listxattr_args {
    616      1.2  fvdl 	syscallarg(char *) path;
    617      1.2  fvdl 	syscallarg(char *) list;
    618      1.2  fvdl 	syscallarg(size_t) size;
    619      1.2  fvdl };
    620      1.2  fvdl 
    621      1.2  fvdl struct linux_sys_llistxattr_args {
    622      1.2  fvdl 	syscallarg(char *) path;
    623      1.2  fvdl 	syscallarg(char *) list;
    624      1.2  fvdl 	syscallarg(size_t) size;
    625      1.2  fvdl };
    626      1.2  fvdl 
    627      1.2  fvdl struct linux_sys_flistxattr_args {
    628      1.2  fvdl 	syscallarg(int) fd;
    629      1.2  fvdl 	syscallarg(char *) list;
    630      1.2  fvdl 	syscallarg(size_t) size;
    631      1.2  fvdl };
    632      1.2  fvdl 
    633      1.2  fvdl struct linux_sys_removexattr_args {
    634      1.2  fvdl 	syscallarg(char *) path;
    635      1.2  fvdl 	syscallarg(char *) name;
    636      1.2  fvdl };
    637      1.2  fvdl 
    638      1.2  fvdl struct linux_sys_lremovexattr_args {
    639      1.2  fvdl 	syscallarg(char *) path;
    640      1.2  fvdl 	syscallarg(char *) name;
    641      1.2  fvdl };
    642      1.2  fvdl 
    643      1.2  fvdl struct linux_sys_fremovexattr_args {
    644      1.2  fvdl 	syscallarg(int) fd;
    645      1.2  fvdl 	syscallarg(char *) name;
    646      1.2  fvdl };
    647      1.2  fvdl 
    648  1.5.2.1  yamt struct linux_sys_tkill_args {
    649  1.5.2.1  yamt 	syscallarg(int) tid;
    650  1.5.2.1  yamt 	syscallarg(int) sig;
    651  1.5.2.1  yamt };
    652  1.5.2.1  yamt 
    653      1.1  manu struct linux_sys_time_args {
    654      1.1  manu 	syscallarg(linux_time_t *) t;
    655      1.1  manu };
    656      1.1  manu 
    657  1.5.2.1  yamt struct linux_sys_futex_args {
    658  1.5.2.1  yamt 	syscallarg(int *) uaddr;
    659  1.5.2.1  yamt 	syscallarg(int) op;
    660  1.5.2.1  yamt 	syscallarg(int) val;
    661  1.5.2.1  yamt 	syscallarg(const struct timespec *) timeout;
    662  1.5.2.1  yamt 	syscallarg(int *) uaddr2;
    663  1.5.2.1  yamt 	syscallarg(int) val3;
    664  1.5.2.1  yamt };
    665  1.5.2.1  yamt 
    666  1.5.2.1  yamt struct linux_sys_sched_setaffinity_args {
    667  1.5.2.1  yamt 	syscallarg(pid_t) pid;
    668  1.5.2.1  yamt 	syscallarg(unsigned int) len;
    669  1.5.2.1  yamt 	syscallarg(unsigned long *) mask;
    670  1.5.2.1  yamt };
    671  1.5.2.1  yamt 
    672  1.5.2.1  yamt struct linux_sys_sched_getaffinity_args {
    673  1.5.2.1  yamt 	syscallarg(pid_t) pid;
    674  1.5.2.1  yamt 	syscallarg(unsigned int) len;
    675  1.5.2.1  yamt 	syscallarg(unsigned long *) mask;
    676  1.5.2.1  yamt };
    677  1.5.2.1  yamt 
    678      1.1  manu struct linux_sys_getdents64_args {
    679      1.1  manu 	syscallarg(int) fd;
    680      1.1  manu 	syscallarg(struct linux_dirent64 *) dent;
    681      1.1  manu 	syscallarg(unsigned int) count;
    682      1.1  manu };
    683      1.1  manu 
    684      1.5  manu struct linux_sys_set_tid_address_args {
    685      1.5  manu 	syscallarg(int *) tid;
    686      1.5  manu };
    687      1.5  manu 
    688      1.3  fvdl struct linux_sys_clock_settime_args {
    689      1.3  fvdl 	syscallarg(clockid_t) which;
    690      1.3  fvdl 	syscallarg(struct linux_timespec *) tp;
    691      1.3  fvdl };
    692      1.3  fvdl 
    693      1.3  fvdl struct linux_sys_clock_gettime_args {
    694      1.3  fvdl 	syscallarg(clockid_t) which;
    695      1.3  fvdl 	syscallarg(struct linux_timespec *) tp;
    696      1.3  fvdl };
    697      1.3  fvdl 
    698      1.3  fvdl struct linux_sys_clock_getres_args {
    699      1.3  fvdl 	syscallarg(clockid_t) which;
    700      1.3  fvdl 	syscallarg(struct linux_timespec *) tp;
    701      1.3  fvdl };
    702      1.3  fvdl 
    703      1.3  fvdl struct linux_sys_clock_nanosleep_args {
    704      1.3  fvdl 	syscallarg(clockid_t) which;
    705      1.3  fvdl 	syscallarg(int) flags;
    706      1.3  fvdl 	syscallarg(struct linux_timespec *) rqtp;
    707      1.3  fvdl 	syscallarg(struct linux_timespec *) rmtp;
    708      1.3  fvdl };
    709      1.3  fvdl 
    710      1.1  manu struct linux_sys_exit_group_args {
    711      1.1  manu 	syscallarg(int) error_code;
    712      1.1  manu };
    713      1.1  manu 
    714  1.5.2.1  yamt struct linux_sys_tgkill_args {
    715  1.5.2.1  yamt 	syscallarg(int) tgid;
    716  1.5.2.1  yamt 	syscallarg(int) tid;
    717  1.5.2.1  yamt 	syscallarg(int) sig;
    718  1.5.2.1  yamt };
    719  1.5.2.1  yamt 
    720      1.1  manu /*
    721      1.1  manu  * System call prototypes.
    722      1.1  manu  */
    723      1.1  manu 
    724      1.1  manu int	sys_read(struct lwp *, void *, register_t *);
    725      1.1  manu 
    726      1.1  manu int	sys_write(struct lwp *, void *, register_t *);
    727      1.1  manu 
    728      1.1  manu int	linux_sys_open(struct lwp *, void *, register_t *);
    729      1.1  manu 
    730      1.1  manu int	sys_close(struct lwp *, void *, register_t *);
    731      1.1  manu 
    732      1.1  manu int	linux_sys_stat64(struct lwp *, void *, register_t *);
    733      1.1  manu 
    734      1.1  manu int	linux_sys_fstat64(struct lwp *, void *, register_t *);
    735      1.1  manu 
    736      1.1  manu int	linux_sys_lstat64(struct lwp *, void *, register_t *);
    737      1.1  manu 
    738      1.1  manu int	sys_poll(struct lwp *, void *, register_t *);
    739      1.1  manu 
    740      1.1  manu int	compat_43_sys_lseek(struct lwp *, void *, register_t *);
    741      1.1  manu 
    742      1.1  manu int	linux_sys_mmap(struct lwp *, void *, register_t *);
    743      1.1  manu 
    744      1.1  manu int	linux_sys_mprotect(struct lwp *, void *, register_t *);
    745      1.1  manu 
    746      1.1  manu int	sys_munmap(struct lwp *, void *, register_t *);
    747      1.1  manu 
    748      1.1  manu int	linux_sys_brk(struct lwp *, void *, register_t *);
    749      1.1  manu 
    750      1.1  manu int	linux_sys_rt_sigaction(struct lwp *, void *, register_t *);
    751      1.1  manu 
    752      1.1  manu int	linux_sys_rt_sigprocmask(struct lwp *, void *, register_t *);
    753      1.1  manu 
    754      1.1  manu int	linux_sys_rt_sigreturn(struct lwp *, void *, register_t *);
    755      1.1  manu 
    756      1.1  manu int	linux_sys_ioctl(struct lwp *, void *, register_t *);
    757      1.1  manu 
    758      1.1  manu int	linux_sys_pread(struct lwp *, void *, register_t *);
    759      1.1  manu 
    760      1.1  manu int	linux_sys_pwrite(struct lwp *, void *, register_t *);
    761      1.1  manu 
    762      1.1  manu int	sys_readv(struct lwp *, void *, register_t *);
    763      1.1  manu 
    764      1.1  manu int	sys_writev(struct lwp *, void *, register_t *);
    765      1.1  manu 
    766      1.1  manu int	linux_sys_access(struct lwp *, void *, register_t *);
    767      1.1  manu 
    768      1.1  manu int	linux_sys_pipe(struct lwp *, void *, register_t *);
    769      1.1  manu 
    770      1.1  manu int	linux_sys_select(struct lwp *, void *, register_t *);
    771      1.1  manu 
    772      1.1  manu int	linux_sys_sched_yield(struct lwp *, void *, register_t *);
    773      1.1  manu 
    774      1.1  manu int	linux_sys_mremap(struct lwp *, void *, register_t *);
    775      1.1  manu 
    776      1.1  manu int	linux_sys_msync(struct lwp *, void *, register_t *);
    777      1.1  manu 
    778      1.1  manu int	sys_mincore(struct lwp *, void *, register_t *);
    779      1.1  manu 
    780      1.1  manu int	sys_madvise(struct lwp *, void *, register_t *);
    781      1.1  manu 
    782  1.5.2.1  yamt #ifdef SYSVSHM
    783  1.5.2.1  yamt int	linux_sys_shmget(struct lwp *, void *, register_t *);
    784  1.5.2.1  yamt 
    785  1.5.2.2  yamt int	sys_shmat(struct lwp *, void *, register_t *);
    786  1.5.2.1  yamt 
    787  1.5.2.1  yamt int	linux_sys_shmctl(struct lwp *, void *, register_t *);
    788  1.5.2.1  yamt 
    789  1.5.2.1  yamt #else
    790  1.5.2.1  yamt #endif
    791      1.1  manu int	sys_dup(struct lwp *, void *, register_t *);
    792      1.1  manu 
    793      1.1  manu int	sys_dup2(struct lwp *, void *, register_t *);
    794      1.1  manu 
    795      1.1  manu int	linux_sys_pause(struct lwp *, void *, register_t *);
    796      1.1  manu 
    797      1.1  manu int	sys_nanosleep(struct lwp *, void *, register_t *);
    798      1.1  manu 
    799      1.1  manu int	sys_getitimer(struct lwp *, void *, register_t *);
    800      1.1  manu 
    801      1.1  manu int	linux_sys_alarm(struct lwp *, void *, register_t *);
    802      1.1  manu 
    803      1.1  manu int	sys_setitimer(struct lwp *, void *, register_t *);
    804      1.1  manu 
    805  1.5.2.2  yamt int	linux_sys_getpid(struct lwp *, void *, register_t *);
    806      1.1  manu 
    807      1.1  manu int	linux_sys_socket(struct lwp *, void *, register_t *);
    808      1.1  manu 
    809      1.1  manu int	linux_sys_connect(struct lwp *, void *, register_t *);
    810      1.1  manu 
    811      1.1  manu int	linux_sys_accept(struct lwp *, void *, register_t *);
    812      1.1  manu 
    813      1.1  manu int	linux_sys_sendto(struct lwp *, void *, register_t *);
    814      1.1  manu 
    815      1.1  manu int	linux_sys_recvfrom(struct lwp *, void *, register_t *);
    816      1.1  manu 
    817      1.1  manu int	linux_sys_sendmsg(struct lwp *, void *, register_t *);
    818      1.1  manu 
    819      1.1  manu int	linux_sys_recvmsg(struct lwp *, void *, register_t *);
    820      1.1  manu 
    821      1.1  manu int	sys_shutdown(struct lwp *, void *, register_t *);
    822      1.1  manu 
    823      1.1  manu int	linux_sys_bind(struct lwp *, void *, register_t *);
    824      1.1  manu 
    825      1.1  manu int	sys_listen(struct lwp *, void *, register_t *);
    826      1.1  manu 
    827      1.1  manu int	linux_sys_getsockname(struct lwp *, void *, register_t *);
    828      1.1  manu 
    829      1.1  manu int	linux_sys_getpeername(struct lwp *, void *, register_t *);
    830      1.1  manu 
    831      1.1  manu int	linux_sys_socketpair(struct lwp *, void *, register_t *);
    832      1.1  manu 
    833      1.1  manu int	linux_sys_setsockopt(struct lwp *, void *, register_t *);
    834      1.1  manu 
    835      1.1  manu int	linux_sys_getsockopt(struct lwp *, void *, register_t *);
    836      1.1  manu 
    837      1.1  manu int	linux_sys_clone(struct lwp *, void *, register_t *);
    838      1.1  manu 
    839      1.1  manu int	sys_fork(struct lwp *, void *, register_t *);
    840      1.1  manu 
    841      1.1  manu int	sys___vfork14(struct lwp *, void *, register_t *);
    842      1.1  manu 
    843      1.1  manu int	linux_sys_execve(struct lwp *, void *, register_t *);
    844      1.1  manu 
    845      1.1  manu int	sys_exit(struct lwp *, void *, register_t *);
    846      1.1  manu 
    847      1.1  manu int	linux_sys_wait4(struct lwp *, void *, register_t *);
    848      1.1  manu 
    849      1.1  manu int	linux_sys_kill(struct lwp *, void *, register_t *);
    850      1.1  manu 
    851      1.1  manu int	linux_sys_uname(struct lwp *, void *, register_t *);
    852      1.1  manu 
    853  1.5.2.1  yamt #ifdef SYSVSEM
    854  1.5.2.1  yamt int	sys_semget(struct lwp *, void *, register_t *);
    855  1.5.2.1  yamt 
    856  1.5.2.1  yamt int	sys_semop(struct lwp *, void *, register_t *);
    857  1.5.2.1  yamt 
    858  1.5.2.1  yamt int	linux_sys_semctl(struct lwp *, void *, register_t *);
    859  1.5.2.1  yamt 
    860  1.5.2.1  yamt #else
    861  1.5.2.1  yamt #endif
    862  1.5.2.1  yamt #ifdef SYSVSHM
    863  1.5.2.1  yamt int	sys_shmdt(struct lwp *, void *, register_t *);
    864  1.5.2.1  yamt 
    865  1.5.2.1  yamt #else
    866  1.5.2.1  yamt #endif
    867  1.5.2.1  yamt #ifdef SYSVMSG
    868  1.5.2.1  yamt int	sys_msgget(struct lwp *, void *, register_t *);
    869  1.5.2.1  yamt 
    870  1.5.2.1  yamt int	sys_msgsnd(struct lwp *, void *, register_t *);
    871  1.5.2.1  yamt 
    872  1.5.2.1  yamt int	sys_msgrcv(struct lwp *, void *, register_t *);
    873  1.5.2.1  yamt 
    874  1.5.2.1  yamt int	linux_sys_msgctl(struct lwp *, void *, register_t *);
    875  1.5.2.1  yamt 
    876  1.5.2.1  yamt #else
    877  1.5.2.1  yamt #endif
    878      1.1  manu int	linux_sys_fcntl(struct lwp *, void *, register_t *);
    879      1.1  manu 
    880      1.1  manu int	sys_flock(struct lwp *, void *, register_t *);
    881      1.1  manu 
    882      1.1  manu int	sys_fsync(struct lwp *, void *, register_t *);
    883      1.1  manu 
    884      1.1  manu int	linux_sys_fdatasync(struct lwp *, void *, register_t *);
    885      1.1  manu 
    886      1.1  manu int	linux_sys_truncate64(struct lwp *, void *, register_t *);
    887      1.1  manu 
    888      1.1  manu int	linux_sys_ftruncate64(struct lwp *, void *, register_t *);
    889      1.1  manu 
    890      1.1  manu int	linux_sys_getdents(struct lwp *, void *, register_t *);
    891      1.1  manu 
    892      1.1  manu int	sys___getcwd(struct lwp *, void *, register_t *);
    893      1.1  manu 
    894      1.1  manu int	linux_sys_chdir(struct lwp *, void *, register_t *);
    895      1.1  manu 
    896      1.1  manu int	sys_fchdir(struct lwp *, void *, register_t *);
    897      1.1  manu 
    898      1.1  manu int	linux_sys_rename(struct lwp *, void *, register_t *);
    899      1.1  manu 
    900      1.1  manu int	linux_sys_mkdir(struct lwp *, void *, register_t *);
    901      1.1  manu 
    902      1.1  manu int	linux_sys_rmdir(struct lwp *, void *, register_t *);
    903      1.1  manu 
    904      1.1  manu int	linux_sys_creat(struct lwp *, void *, register_t *);
    905      1.1  manu 
    906      1.1  manu int	linux_sys_link(struct lwp *, void *, register_t *);
    907      1.1  manu 
    908      1.1  manu int	linux_sys_unlink(struct lwp *, void *, register_t *);
    909      1.1  manu 
    910      1.1  manu int	linux_sys_symlink(struct lwp *, void *, register_t *);
    911      1.1  manu 
    912      1.1  manu int	linux_sys_readlink(struct lwp *, void *, register_t *);
    913      1.1  manu 
    914      1.1  manu int	linux_sys_chmod(struct lwp *, void *, register_t *);
    915      1.1  manu 
    916      1.1  manu int	sys_fchmod(struct lwp *, void *, register_t *);
    917      1.1  manu 
    918      1.1  manu int	linux_sys_chown(struct lwp *, void *, register_t *);
    919      1.1  manu 
    920      1.1  manu int	sys___posix_fchown(struct lwp *, void *, register_t *);
    921      1.1  manu 
    922      1.1  manu int	linux_sys_lchown(struct lwp *, void *, register_t *);
    923      1.1  manu 
    924      1.1  manu int	sys_umask(struct lwp *, void *, register_t *);
    925      1.1  manu 
    926      1.1  manu int	linux_sys_gettimeofday(struct lwp *, void *, register_t *);
    927      1.1  manu 
    928      1.1  manu int	linux_sys_getrlimit(struct lwp *, void *, register_t *);
    929      1.1  manu 
    930      1.1  manu int	sys_getrusage(struct lwp *, void *, register_t *);
    931      1.1  manu 
    932      1.1  manu int	linux_sys_sysinfo(struct lwp *, void *, register_t *);
    933      1.1  manu 
    934      1.1  manu int	linux_sys_times(struct lwp *, void *, register_t *);
    935      1.1  manu 
    936      1.1  manu int	linux_sys_ptrace(struct lwp *, void *, register_t *);
    937      1.1  manu 
    938      1.1  manu int	sys_getuid(struct lwp *, void *, register_t *);
    939      1.1  manu 
    940      1.1  manu int	sys_getgid(struct lwp *, void *, register_t *);
    941      1.1  manu 
    942      1.1  manu int	sys_setuid(struct lwp *, void *, register_t *);
    943      1.1  manu 
    944      1.1  manu int	sys_setgid(struct lwp *, void *, register_t *);
    945      1.1  manu 
    946      1.1  manu int	sys_geteuid(struct lwp *, void *, register_t *);
    947      1.1  manu 
    948      1.1  manu int	sys_getegid(struct lwp *, void *, register_t *);
    949      1.1  manu 
    950      1.1  manu int	sys_setpgid(struct lwp *, void *, register_t *);
    951      1.1  manu 
    952  1.5.2.2  yamt int	linux_sys_getppid(struct lwp *, void *, register_t *);
    953      1.1  manu 
    954      1.1  manu int	sys_getpgrp(struct lwp *, void *, register_t *);
    955      1.1  manu 
    956      1.1  manu int	sys_setsid(struct lwp *, void *, register_t *);
    957      1.1  manu 
    958      1.1  manu int	sys_setreuid(struct lwp *, void *, register_t *);
    959      1.1  manu 
    960      1.1  manu int	sys_setregid(struct lwp *, void *, register_t *);
    961      1.1  manu 
    962      1.1  manu int	sys_getgroups(struct lwp *, void *, register_t *);
    963      1.1  manu 
    964      1.1  manu int	sys_setgroups(struct lwp *, void *, register_t *);
    965      1.1  manu 
    966      1.1  manu int	linux_sys_setresuid(struct lwp *, void *, register_t *);
    967      1.1  manu 
    968      1.1  manu int	linux_sys_getresuid(struct lwp *, void *, register_t *);
    969      1.1  manu 
    970      1.1  manu int	linux_sys_setresgid(struct lwp *, void *, register_t *);
    971      1.1  manu 
    972      1.1  manu int	linux_sys_getresgid(struct lwp *, void *, register_t *);
    973      1.1  manu 
    974      1.1  manu int	linux_sys_getpgid(struct lwp *, void *, register_t *);
    975      1.1  manu 
    976      1.1  manu int	linux_sys_setfsuid(struct lwp *, void *, register_t *);
    977      1.1  manu 
    978      1.1  manu int	linux_sys_getfsuid(struct lwp *, void *, register_t *);
    979      1.1  manu 
    980      1.1  manu int	sys_getsid(struct lwp *, void *, register_t *);
    981      1.1  manu 
    982      1.1  manu int	linux_sys_rt_sigpending(struct lwp *, void *, register_t *);
    983      1.1  manu 
    984      1.1  manu int	linux_sys_rt_queueinfo(struct lwp *, void *, register_t *);
    985      1.1  manu 
    986      1.1  manu int	linux_sys_rt_sigsuspend(struct lwp *, void *, register_t *);
    987      1.1  manu 
    988      1.1  manu int	linux_sys_sigaltstack(struct lwp *, void *, register_t *);
    989      1.1  manu 
    990      1.1  manu int	linux_sys_utime(struct lwp *, void *, register_t *);
    991      1.1  manu 
    992      1.1  manu int	linux_sys_mknod(struct lwp *, void *, register_t *);
    993      1.1  manu 
    994  1.5.2.1  yamt #ifdef EXEC_AOUT
    995      1.1  manu int	linux_sys_uselib(struct lwp *, void *, register_t *);
    996      1.1  manu 
    997  1.5.2.1  yamt #else
    998  1.5.2.1  yamt #endif
    999      1.1  manu int	linux_sys_personality(struct lwp *, void *, register_t *);
   1000      1.1  manu 
   1001      1.1  manu int	linux_sys_statfs64(struct lwp *, void *, register_t *);
   1002      1.1  manu 
   1003      1.1  manu int	linux_sys_fstatfs64(struct lwp *, void *, register_t *);
   1004      1.1  manu 
   1005  1.5.2.1  yamt int	linux_sys_getpriority(struct lwp *, void *, register_t *);
   1006      1.1  manu 
   1007      1.1  manu int	sys_setpriority(struct lwp *, void *, register_t *);
   1008      1.1  manu 
   1009      1.1  manu int	linux_sys_sched_setparam(struct lwp *, void *, register_t *);
   1010      1.1  manu 
   1011      1.1  manu int	linux_sys_sched_getparam(struct lwp *, void *, register_t *);
   1012      1.1  manu 
   1013      1.1  manu int	linux_sys_sched_setscheduler(struct lwp *, void *, register_t *);
   1014      1.1  manu 
   1015      1.1  manu int	linux_sys_sched_getscheduler(struct lwp *, void *, register_t *);
   1016      1.1  manu 
   1017      1.1  manu int	linux_sys_sched_get_priority_max(struct lwp *, void *, register_t *);
   1018      1.1  manu 
   1019      1.1  manu int	linux_sys_sched_get_priority_min(struct lwp *, void *, register_t *);
   1020      1.1  manu 
   1021      1.1  manu int	sys_mlock(struct lwp *, void *, register_t *);
   1022      1.1  manu 
   1023      1.1  manu int	sys_munlock(struct lwp *, void *, register_t *);
   1024      1.1  manu 
   1025      1.1  manu int	sys_mlockall(struct lwp *, void *, register_t *);
   1026      1.1  manu 
   1027      1.1  manu int	sys_munlockall(struct lwp *, void *, register_t *);
   1028      1.1  manu 
   1029      1.1  manu int	linux_sys_modify_ldt(struct lwp *, void *, register_t *);
   1030      1.1  manu 
   1031      1.1  manu int	linux_sys___sysctl(struct lwp *, void *, register_t *);
   1032      1.1  manu 
   1033      1.1  manu int	linux_sys_arch_prctl(struct lwp *, void *, register_t *);
   1034      1.1  manu 
   1035      1.1  manu int	linux_sys_setrlimit(struct lwp *, void *, register_t *);
   1036      1.1  manu 
   1037      1.1  manu int	sys_chroot(struct lwp *, void *, register_t *);
   1038      1.1  manu 
   1039      1.1  manu int	sys_sync(struct lwp *, void *, register_t *);
   1040      1.1  manu 
   1041      1.1  manu int	sys_acct(struct lwp *, void *, register_t *);
   1042      1.1  manu 
   1043      1.1  manu int	linux_sys_settimeofday(struct lwp *, void *, register_t *);
   1044      1.1  manu 
   1045      1.1  manu int	linux_sys_swapon(struct lwp *, void *, register_t *);
   1046      1.1  manu 
   1047      1.1  manu int	linux_sys_swapoff(struct lwp *, void *, register_t *);
   1048      1.1  manu 
   1049      1.1  manu int	linux_sys_reboot(struct lwp *, void *, register_t *);
   1050      1.1  manu 
   1051      1.1  manu int	compat_43_sys_sethostname(struct lwp *, void *, register_t *);
   1052      1.1  manu 
   1053      1.1  manu int	linux_sys_setdomainname(struct lwp *, void *, register_t *);
   1054      1.1  manu 
   1055      1.1  manu int	linux_sys_iopl(struct lwp *, void *, register_t *);
   1056      1.1  manu 
   1057      1.1  manu int	linux_sys_ioperm(struct lwp *, void *, register_t *);
   1058      1.1  manu 
   1059  1.5.2.1  yamt int	linux_sys_gettid(struct lwp *, void *, register_t *);
   1060  1.5.2.1  yamt 
   1061      1.2  fvdl int	linux_sys_setxattr(struct lwp *, void *, register_t *);
   1062      1.2  fvdl 
   1063      1.2  fvdl int	linux_sys_lsetxattr(struct lwp *, void *, register_t *);
   1064      1.2  fvdl 
   1065      1.2  fvdl int	linux_sys_fsetxattr(struct lwp *, void *, register_t *);
   1066      1.2  fvdl 
   1067      1.2  fvdl int	linux_sys_getxattr(struct lwp *, void *, register_t *);
   1068      1.2  fvdl 
   1069      1.2  fvdl int	linux_sys_lgetxattr(struct lwp *, void *, register_t *);
   1070      1.2  fvdl 
   1071      1.2  fvdl int	linux_sys_fgetxattr(struct lwp *, void *, register_t *);
   1072      1.2  fvdl 
   1073      1.2  fvdl int	linux_sys_listxattr(struct lwp *, void *, register_t *);
   1074      1.2  fvdl 
   1075      1.2  fvdl int	linux_sys_llistxattr(struct lwp *, void *, register_t *);
   1076      1.2  fvdl 
   1077      1.2  fvdl int	linux_sys_flistxattr(struct lwp *, void *, register_t *);
   1078      1.2  fvdl 
   1079      1.2  fvdl int	linux_sys_removexattr(struct lwp *, void *, register_t *);
   1080      1.2  fvdl 
   1081      1.2  fvdl int	linux_sys_lremovexattr(struct lwp *, void *, register_t *);
   1082      1.2  fvdl 
   1083      1.2  fvdl int	linux_sys_fremovexattr(struct lwp *, void *, register_t *);
   1084      1.2  fvdl 
   1085  1.5.2.1  yamt int	linux_sys_tkill(struct lwp *, void *, register_t *);
   1086  1.5.2.1  yamt 
   1087      1.1  manu int	linux_sys_time(struct lwp *, void *, register_t *);
   1088      1.1  manu 
   1089  1.5.2.1  yamt int	linux_sys_futex(struct lwp *, void *, register_t *);
   1090  1.5.2.1  yamt 
   1091  1.5.2.1  yamt int	linux_sys_sched_setaffinity(struct lwp *, void *, register_t *);
   1092  1.5.2.1  yamt 
   1093  1.5.2.1  yamt int	linux_sys_sched_getaffinity(struct lwp *, void *, register_t *);
   1094  1.5.2.1  yamt 
   1095      1.1  manu int	linux_sys_getdents64(struct lwp *, void *, register_t *);
   1096      1.1  manu 
   1097      1.5  manu int	linux_sys_set_tid_address(struct lwp *, void *, register_t *);
   1098      1.5  manu 
   1099      1.3  fvdl int	linux_sys_clock_settime(struct lwp *, void *, register_t *);
   1100      1.3  fvdl 
   1101      1.3  fvdl int	linux_sys_clock_gettime(struct lwp *, void *, register_t *);
   1102      1.3  fvdl 
   1103      1.3  fvdl int	linux_sys_clock_getres(struct lwp *, void *, register_t *);
   1104      1.3  fvdl 
   1105      1.3  fvdl int	linux_sys_clock_nanosleep(struct lwp *, void *, register_t *);
   1106      1.3  fvdl 
   1107      1.1  manu int	linux_sys_exit_group(struct lwp *, void *, register_t *);
   1108      1.1  manu 
   1109  1.5.2.1  yamt int	linux_sys_tgkill(struct lwp *, void *, register_t *);
   1110  1.5.2.1  yamt 
   1111      1.1  manu int	linux_sys_nosys(struct lwp *, void *, register_t *);
   1112      1.1  manu 
   1113  1.5.2.1  yamt #endif /* _LINUX_SYS_SYSCALLARGS_H_ */
   1114