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