Home | History | Annotate | Line # | Download | only in amd64
linux_syscallargs.h revision 1.18
      1  1.18     njoly /* $NetBSD: linux_syscallargs.h,v 1.18 2007/03/14 12:47:46 njoly 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.18     njoly  * created from	NetBSD: syscalls.master,v 1.18 2007/03/14 12:44:39 njoly Exp
      8   1.1      manu  */
      9   1.1      manu 
     10  1.10      manu #ifndef _LINUX_SYS_SYSCALLARGS_H_
     11  1.10      manu #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.17  christos 	syscallarg(void *) 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.17  christos 	syscallarg(void *) addr;
    121   1.1      manu 	syscallarg(int) len;
    122   1.1      manu 	syscallarg(int) fl;
    123   1.1      manu };
    124  1.10      manu #ifdef SYSVSHM
    125  1.10      manu 
    126  1.10      manu struct linux_sys_shmget_args {
    127  1.10      manu 	syscallarg(key_t) key;
    128  1.10      manu 	syscallarg(size_t) size;
    129  1.10      manu 	syscallarg(int) shmflg;
    130  1.10      manu };
    131  1.10      manu 
    132  1.10      manu struct linux_sys_shmctl_args {
    133  1.10      manu 	syscallarg(int) shmid;
    134  1.10      manu 	syscallarg(int) cmd;
    135  1.10      manu 	syscallarg(struct linux_shmid_ds *) buf;
    136  1.10      manu };
    137  1.10      manu #else
    138  1.10      manu #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.17  christos 	syscallarg(void *) 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.10      manu #ifdef SYSVSEM
    262  1.10      manu 
    263  1.10      manu struct linux_sys_semctl_args {
    264  1.10      manu 	syscallarg(int) semid;
    265  1.10      manu 	syscallarg(int) semnum;
    266  1.10      manu 	syscallarg(int) cmd;
    267  1.10      manu 	syscallarg(union linux_semun) arg;
    268  1.10      manu };
    269  1.10      manu #else
    270  1.10      manu #endif
    271  1.10      manu #ifdef SYSVSHM
    272  1.10      manu #else
    273  1.10      manu #endif
    274  1.10      manu #ifdef SYSVMSG
    275  1.10      manu 
    276  1.10      manu struct linux_sys_msgctl_args {
    277  1.10      manu 	syscallarg(int) msqid;
    278  1.10      manu 	syscallarg(int) cmd;
    279  1.10      manu 	syscallarg(struct linux_msqid_ds *) buf;
    280  1.10      manu };
    281  1.10      manu #else
    282  1.10      manu #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.9      manu 	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.6     joerg #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.6     joerg #else
    464   1.6     joerg #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.18     njoly struct linux_sys_statfs_args {
    471   1.1      manu 	syscallarg(const char *) path;
    472  1.18     njoly 	syscallarg(struct linux_statfs *) sp;
    473   1.1      manu };
    474   1.1      manu 
    475  1.18     njoly struct linux_sys_fstatfs_args {
    476   1.1      manu 	syscallarg(int) fd;
    477  1.18     njoly 	syscallarg(struct linux_statfs *) sp;
    478   1.1      manu };
    479   1.1      manu 
    480  1.11  christos struct linux_sys_getpriority_args {
    481  1.11  christos 	syscallarg(int) which;
    482  1.11  christos 	syscallarg(int) who;
    483  1.11  christos };
    484  1.11  christos 
    485   1.1      manu struct linux_sys_sched_setparam_args {
    486   1.1      manu 	syscallarg(pid_t) pid;
    487   1.1      manu 	syscallarg(const struct linux_sched_param *) sp;
    488   1.1      manu };
    489   1.1      manu 
    490   1.1      manu struct linux_sys_sched_getparam_args {
    491   1.1      manu 	syscallarg(pid_t) pid;
    492   1.1      manu 	syscallarg(struct linux_sched_param *) sp;
    493   1.1      manu };
    494   1.1      manu 
    495   1.1      manu struct linux_sys_sched_setscheduler_args {
    496   1.1      manu 	syscallarg(pid_t) pid;
    497   1.1      manu 	syscallarg(int) policy;
    498   1.1      manu 	syscallarg(const struct linux_sched_param *) sp;
    499   1.1      manu };
    500   1.1      manu 
    501   1.1      manu struct linux_sys_sched_getscheduler_args {
    502   1.1      manu 	syscallarg(pid_t) pid;
    503   1.1      manu };
    504   1.1      manu 
    505   1.1      manu struct linux_sys_sched_get_priority_max_args {
    506   1.1      manu 	syscallarg(int) policy;
    507   1.1      manu };
    508   1.1      manu 
    509   1.1      manu struct linux_sys_sched_get_priority_min_args {
    510   1.1      manu 	syscallarg(int) policy;
    511   1.1      manu };
    512   1.1      manu 
    513   1.1      manu struct linux_sys_modify_ldt_args {
    514   1.1      manu 	syscallarg(int) func;
    515   1.1      manu 	syscallarg(void *) ptr;
    516   1.1      manu 	syscallarg(size_t) bytecount;
    517   1.1      manu };
    518   1.1      manu 
    519   1.1      manu struct linux_sys___sysctl_args {
    520   1.1      manu 	syscallarg(struct linux___sysctl *) lsp;
    521   1.1      manu };
    522   1.1      manu 
    523   1.1      manu struct linux_sys_arch_prctl_args {
    524   1.1      manu 	syscallarg(int) code;
    525   1.1      manu 	syscallarg(unsigned long) addr;
    526   1.1      manu };
    527   1.1      manu 
    528   1.1      manu struct linux_sys_setrlimit_args {
    529   1.1      manu 	syscallarg(u_int) which;
    530   1.9      manu 	syscallarg(struct rlimit *) rlp;
    531   1.1      manu };
    532   1.1      manu 
    533   1.1      manu struct linux_sys_settimeofday_args {
    534   1.1      manu 	syscallarg(struct timeval *) tp;
    535   1.1      manu 	syscallarg(struct timezone *) tzp;
    536   1.1      manu };
    537   1.1      manu 
    538   1.1      manu struct linux_sys_swapon_args {
    539   1.1      manu 	syscallarg(char *) name;
    540   1.1      manu };
    541   1.1      manu 
    542   1.1      manu struct linux_sys_swapoff_args {
    543   1.1      manu 	syscallarg(const char *) path;
    544   1.1      manu };
    545   1.1      manu 
    546   1.1      manu struct linux_sys_reboot_args {
    547   1.1      manu 	syscallarg(int) magic1;
    548   1.1      manu 	syscallarg(int) magic2;
    549   1.1      manu 	syscallarg(int) cmd;
    550   1.1      manu 	syscallarg(void *) arg;
    551   1.1      manu };
    552   1.1      manu 
    553   1.1      manu struct linux_sys_setdomainname_args {
    554   1.1      manu 	syscallarg(char *) domainname;
    555   1.1      manu 	syscallarg(int) len;
    556   1.1      manu };
    557   1.1      manu 
    558   1.1      manu struct linux_sys_iopl_args {
    559   1.1      manu 	syscallarg(int) level;
    560   1.1      manu };
    561   1.1      manu 
    562   1.1      manu struct linux_sys_ioperm_args {
    563   1.1      manu 	syscallarg(unsigned int) lo;
    564   1.1      manu 	syscallarg(unsigned int) hi;
    565   1.1      manu 	syscallarg(int) val;
    566   1.1      manu };
    567   1.1      manu 
    568   1.2      fvdl struct linux_sys_setxattr_args {
    569   1.2      fvdl 	syscallarg(char *) path;
    570   1.2      fvdl 	syscallarg(char *) name;
    571   1.2      fvdl 	syscallarg(void *) value;
    572   1.2      fvdl 	syscallarg(size_t) size;
    573   1.2      fvdl 	syscallarg(int) flags;
    574   1.2      fvdl };
    575   1.2      fvdl 
    576   1.2      fvdl struct linux_sys_lsetxattr_args {
    577   1.2      fvdl 	syscallarg(char *) path;
    578   1.2      fvdl 	syscallarg(char *) name;
    579   1.2      fvdl 	syscallarg(void *) value;
    580   1.2      fvdl 	syscallarg(size_t) size;
    581   1.2      fvdl 	syscallarg(int) flags;
    582   1.2      fvdl };
    583   1.2      fvdl 
    584   1.2      fvdl struct linux_sys_fsetxattr_args {
    585   1.2      fvdl 	syscallarg(int) fd;
    586   1.2      fvdl 	syscallarg(char *) name;
    587   1.2      fvdl 	syscallarg(void *) value;
    588   1.2      fvdl 	syscallarg(size_t) size;
    589   1.2      fvdl 	syscallarg(int) flags;
    590   1.2      fvdl };
    591   1.2      fvdl 
    592   1.2      fvdl struct linux_sys_getxattr_args {
    593   1.2      fvdl 	syscallarg(char *) path;
    594   1.2      fvdl 	syscallarg(char *) name;
    595   1.2      fvdl 	syscallarg(void *) value;
    596   1.2      fvdl 	syscallarg(size_t) size;
    597   1.2      fvdl };
    598   1.2      fvdl 
    599   1.2      fvdl struct linux_sys_lgetxattr_args {
    600   1.2      fvdl 	syscallarg(char *) path;
    601   1.2      fvdl 	syscallarg(char *) name;
    602   1.2      fvdl 	syscallarg(void *) value;
    603   1.2      fvdl 	syscallarg(size_t) size;
    604   1.2      fvdl };
    605   1.2      fvdl 
    606   1.2      fvdl struct linux_sys_fgetxattr_args {
    607   1.2      fvdl 	syscallarg(int) fd;
    608   1.2      fvdl 	syscallarg(char *) name;
    609   1.2      fvdl 	syscallarg(void *) value;
    610   1.2      fvdl 	syscallarg(size_t) size;
    611   1.2      fvdl };
    612   1.2      fvdl 
    613   1.2      fvdl struct linux_sys_listxattr_args {
    614   1.2      fvdl 	syscallarg(char *) path;
    615   1.2      fvdl 	syscallarg(char *) list;
    616   1.2      fvdl 	syscallarg(size_t) size;
    617   1.2      fvdl };
    618   1.2      fvdl 
    619   1.2      fvdl struct linux_sys_llistxattr_args {
    620   1.2      fvdl 	syscallarg(char *) path;
    621   1.2      fvdl 	syscallarg(char *) list;
    622   1.2      fvdl 	syscallarg(size_t) size;
    623   1.2      fvdl };
    624   1.2      fvdl 
    625   1.2      fvdl struct linux_sys_flistxattr_args {
    626   1.2      fvdl 	syscallarg(int) fd;
    627   1.2      fvdl 	syscallarg(char *) list;
    628   1.2      fvdl 	syscallarg(size_t) size;
    629   1.2      fvdl };
    630   1.2      fvdl 
    631   1.2      fvdl struct linux_sys_removexattr_args {
    632   1.2      fvdl 	syscallarg(char *) path;
    633   1.2      fvdl 	syscallarg(char *) name;
    634   1.2      fvdl };
    635   1.2      fvdl 
    636   1.2      fvdl struct linux_sys_lremovexattr_args {
    637   1.2      fvdl 	syscallarg(char *) path;
    638   1.2      fvdl 	syscallarg(char *) name;
    639   1.2      fvdl };
    640   1.2      fvdl 
    641   1.2      fvdl struct linux_sys_fremovexattr_args {
    642   1.2      fvdl 	syscallarg(int) fd;
    643   1.2      fvdl 	syscallarg(char *) name;
    644   1.2      fvdl };
    645   1.2      fvdl 
    646   1.9      manu struct linux_sys_tkill_args {
    647   1.9      manu 	syscallarg(int) tid;
    648   1.9      manu 	syscallarg(int) sig;
    649   1.9      manu };
    650   1.9      manu 
    651   1.1      manu struct linux_sys_time_args {
    652   1.1      manu 	syscallarg(linux_time_t *) t;
    653   1.1      manu };
    654   1.1      manu 
    655   1.7      manu struct linux_sys_futex_args {
    656   1.7      manu 	syscallarg(int *) uaddr;
    657   1.7      manu 	syscallarg(int) op;
    658   1.7      manu 	syscallarg(int) val;
    659   1.7      manu 	syscallarg(const struct timespec *) timeout;
    660   1.7      manu 	syscallarg(int *) uaddr2;
    661   1.7      manu 	syscallarg(int) val3;
    662   1.7      manu };
    663   1.7      manu 
    664   1.8      manu struct linux_sys_sched_setaffinity_args {
    665   1.8      manu 	syscallarg(pid_t) pid;
    666   1.8      manu 	syscallarg(unsigned int) len;
    667   1.8      manu 	syscallarg(unsigned long *) mask;
    668   1.8      manu };
    669   1.8      manu 
    670   1.8      manu struct linux_sys_sched_getaffinity_args {
    671   1.8      manu 	syscallarg(pid_t) pid;
    672   1.8      manu 	syscallarg(unsigned int) len;
    673   1.8      manu 	syscallarg(unsigned long *) mask;
    674   1.8      manu };
    675   1.8      manu 
    676   1.1      manu struct linux_sys_getdents64_args {
    677   1.1      manu 	syscallarg(int) fd;
    678   1.1      manu 	syscallarg(struct linux_dirent64 *) dent;
    679   1.1      manu 	syscallarg(unsigned int) count;
    680   1.1      manu };
    681   1.1      manu 
    682   1.5      manu struct linux_sys_set_tid_address_args {
    683   1.5      manu 	syscallarg(int *) tid;
    684   1.5      manu };
    685   1.5      manu 
    686   1.3      fvdl struct linux_sys_clock_settime_args {
    687   1.3      fvdl 	syscallarg(clockid_t) which;
    688   1.3      fvdl 	syscallarg(struct linux_timespec *) tp;
    689   1.3      fvdl };
    690   1.3      fvdl 
    691   1.3      fvdl struct linux_sys_clock_gettime_args {
    692   1.3      fvdl 	syscallarg(clockid_t) which;
    693   1.3      fvdl 	syscallarg(struct linux_timespec *) tp;
    694   1.3      fvdl };
    695   1.3      fvdl 
    696   1.3      fvdl struct linux_sys_clock_getres_args {
    697   1.3      fvdl 	syscallarg(clockid_t) which;
    698   1.3      fvdl 	syscallarg(struct linux_timespec *) tp;
    699   1.3      fvdl };
    700   1.3      fvdl 
    701   1.3      fvdl struct linux_sys_clock_nanosleep_args {
    702   1.3      fvdl 	syscallarg(clockid_t) which;
    703   1.3      fvdl 	syscallarg(int) flags;
    704   1.3      fvdl 	syscallarg(struct linux_timespec *) rqtp;
    705   1.3      fvdl 	syscallarg(struct linux_timespec *) rmtp;
    706   1.3      fvdl };
    707   1.3      fvdl 
    708   1.1      manu struct linux_sys_exit_group_args {
    709   1.1      manu 	syscallarg(int) error_code;
    710   1.1      manu };
    711   1.1      manu 
    712   1.9      manu struct linux_sys_tgkill_args {
    713   1.9      manu 	syscallarg(int) tgid;
    714   1.9      manu 	syscallarg(int) tid;
    715   1.9      manu 	syscallarg(int) sig;
    716   1.9      manu };
    717   1.9      manu 
    718   1.1      manu /*
    719   1.1      manu  * System call prototypes.
    720   1.1      manu  */
    721   1.1      manu 
    722   1.1      manu int	sys_read(struct lwp *, void *, register_t *);
    723   1.1      manu 
    724   1.1      manu int	sys_write(struct lwp *, void *, register_t *);
    725   1.1      manu 
    726   1.1      manu int	linux_sys_open(struct lwp *, void *, register_t *);
    727   1.1      manu 
    728   1.1      manu int	sys_close(struct lwp *, void *, register_t *);
    729   1.1      manu 
    730   1.1      manu int	linux_sys_stat64(struct lwp *, void *, register_t *);
    731   1.1      manu 
    732   1.1      manu int	linux_sys_fstat64(struct lwp *, void *, register_t *);
    733   1.1      manu 
    734   1.1      manu int	linux_sys_lstat64(struct lwp *, void *, register_t *);
    735   1.1      manu 
    736   1.1      manu int	sys_poll(struct lwp *, void *, register_t *);
    737   1.1      manu 
    738   1.1      manu int	compat_43_sys_lseek(struct lwp *, void *, register_t *);
    739   1.1      manu 
    740   1.1      manu int	linux_sys_mmap(struct lwp *, void *, register_t *);
    741   1.1      manu 
    742   1.1      manu int	linux_sys_mprotect(struct lwp *, void *, register_t *);
    743   1.1      manu 
    744   1.1      manu int	sys_munmap(struct lwp *, void *, register_t *);
    745   1.1      manu 
    746   1.1      manu int	linux_sys_brk(struct lwp *, void *, register_t *);
    747   1.1      manu 
    748   1.1      manu int	linux_sys_rt_sigaction(struct lwp *, void *, register_t *);
    749   1.1      manu 
    750   1.1      manu int	linux_sys_rt_sigprocmask(struct lwp *, void *, register_t *);
    751   1.1      manu 
    752   1.1      manu int	linux_sys_rt_sigreturn(struct lwp *, void *, register_t *);
    753   1.1      manu 
    754   1.1      manu int	linux_sys_ioctl(struct lwp *, void *, register_t *);
    755   1.1      manu 
    756   1.1      manu int	linux_sys_pread(struct lwp *, void *, register_t *);
    757   1.1      manu 
    758   1.1      manu int	linux_sys_pwrite(struct lwp *, void *, register_t *);
    759   1.1      manu 
    760   1.1      manu int	sys_readv(struct lwp *, void *, register_t *);
    761   1.1      manu 
    762   1.1      manu int	sys_writev(struct lwp *, void *, register_t *);
    763   1.1      manu 
    764   1.1      manu int	linux_sys_access(struct lwp *, void *, register_t *);
    765   1.1      manu 
    766   1.1      manu int	linux_sys_pipe(struct lwp *, void *, register_t *);
    767   1.1      manu 
    768   1.1      manu int	linux_sys_select(struct lwp *, void *, register_t *);
    769   1.1      manu 
    770   1.1      manu int	linux_sys_sched_yield(struct lwp *, void *, register_t *);
    771   1.1      manu 
    772   1.1      manu int	linux_sys_mremap(struct lwp *, void *, register_t *);
    773   1.1      manu 
    774   1.1      manu int	linux_sys_msync(struct lwp *, void *, register_t *);
    775   1.1      manu 
    776   1.1      manu int	sys_mincore(struct lwp *, void *, register_t *);
    777   1.1      manu 
    778   1.1      manu int	sys_madvise(struct lwp *, void *, register_t *);
    779   1.1      manu 
    780  1.10      manu #ifdef SYSVSHM
    781  1.10      manu int	linux_sys_shmget(struct lwp *, void *, register_t *);
    782  1.10      manu 
    783  1.14      manu int	sys_shmat(struct lwp *, void *, register_t *);
    784  1.10      manu 
    785  1.10      manu int	linux_sys_shmctl(struct lwp *, void *, register_t *);
    786  1.10      manu 
    787  1.10      manu #else
    788  1.10      manu #endif
    789   1.1      manu int	sys_dup(struct lwp *, void *, register_t *);
    790   1.1      manu 
    791   1.1      manu int	sys_dup2(struct lwp *, void *, register_t *);
    792   1.1      manu 
    793   1.1      manu int	linux_sys_pause(struct lwp *, void *, register_t *);
    794   1.1      manu 
    795   1.1      manu int	sys_nanosleep(struct lwp *, void *, register_t *);
    796   1.1      manu 
    797   1.1      manu int	sys_getitimer(struct lwp *, void *, register_t *);
    798   1.1      manu 
    799   1.1      manu int	linux_sys_alarm(struct lwp *, void *, register_t *);
    800   1.1      manu 
    801   1.1      manu int	sys_setitimer(struct lwp *, void *, register_t *);
    802   1.1      manu 
    803  1.12      manu int	linux_sys_getpid(struct lwp *, void *, register_t *);
    804   1.1      manu 
    805   1.1      manu int	linux_sys_socket(struct lwp *, void *, register_t *);
    806   1.1      manu 
    807   1.1      manu int	linux_sys_connect(struct lwp *, void *, register_t *);
    808   1.1      manu 
    809   1.1      manu int	linux_sys_accept(struct lwp *, void *, register_t *);
    810   1.1      manu 
    811   1.1      manu int	linux_sys_sendto(struct lwp *, void *, register_t *);
    812   1.1      manu 
    813   1.1      manu int	linux_sys_recvfrom(struct lwp *, void *, register_t *);
    814   1.1      manu 
    815   1.1      manu int	linux_sys_sendmsg(struct lwp *, void *, register_t *);
    816   1.1      manu 
    817   1.1      manu int	linux_sys_recvmsg(struct lwp *, void *, register_t *);
    818   1.1      manu 
    819   1.1      manu int	sys_shutdown(struct lwp *, void *, register_t *);
    820   1.1      manu 
    821   1.1      manu int	linux_sys_bind(struct lwp *, void *, register_t *);
    822   1.1      manu 
    823   1.1      manu int	sys_listen(struct lwp *, void *, register_t *);
    824   1.1      manu 
    825   1.1      manu int	linux_sys_getsockname(struct lwp *, void *, register_t *);
    826   1.1      manu 
    827   1.1      manu int	linux_sys_getpeername(struct lwp *, void *, register_t *);
    828   1.1      manu 
    829   1.1      manu int	linux_sys_socketpair(struct lwp *, void *, register_t *);
    830   1.1      manu 
    831   1.1      manu int	linux_sys_setsockopt(struct lwp *, void *, register_t *);
    832   1.1      manu 
    833   1.1      manu int	linux_sys_getsockopt(struct lwp *, void *, register_t *);
    834   1.1      manu 
    835   1.1      manu int	linux_sys_clone(struct lwp *, void *, register_t *);
    836   1.1      manu 
    837   1.1      manu int	sys_fork(struct lwp *, void *, register_t *);
    838   1.1      manu 
    839   1.1      manu int	sys___vfork14(struct lwp *, void *, register_t *);
    840   1.1      manu 
    841   1.1      manu int	linux_sys_execve(struct lwp *, void *, register_t *);
    842   1.1      manu 
    843   1.1      manu int	sys_exit(struct lwp *, void *, register_t *);
    844   1.1      manu 
    845   1.1      manu int	linux_sys_wait4(struct lwp *, void *, register_t *);
    846   1.1      manu 
    847   1.1      manu int	linux_sys_kill(struct lwp *, void *, register_t *);
    848   1.1      manu 
    849   1.1      manu int	linux_sys_uname(struct lwp *, void *, register_t *);
    850   1.1      manu 
    851  1.10      manu #ifdef SYSVSEM
    852  1.10      manu int	sys_semget(struct lwp *, void *, register_t *);
    853  1.10      manu 
    854  1.10      manu int	sys_semop(struct lwp *, void *, register_t *);
    855  1.10      manu 
    856  1.10      manu int	linux_sys_semctl(struct lwp *, void *, register_t *);
    857  1.10      manu 
    858  1.10      manu #else
    859  1.10      manu #endif
    860  1.10      manu #ifdef SYSVSHM
    861  1.10      manu int	sys_shmdt(struct lwp *, void *, register_t *);
    862  1.10      manu 
    863  1.10      manu #else
    864  1.10      manu #endif
    865  1.10      manu #ifdef SYSVMSG
    866  1.10      manu int	sys_msgget(struct lwp *, void *, register_t *);
    867  1.10      manu 
    868  1.10      manu int	sys_msgsnd(struct lwp *, void *, register_t *);
    869  1.10      manu 
    870  1.10      manu int	sys_msgrcv(struct lwp *, void *, register_t *);
    871  1.10      manu 
    872  1.10      manu int	linux_sys_msgctl(struct lwp *, void *, register_t *);
    873  1.10      manu 
    874  1.10      manu #else
    875  1.10      manu #endif
    876   1.1      manu int	linux_sys_fcntl(struct lwp *, void *, register_t *);
    877   1.1      manu 
    878   1.1      manu int	sys_flock(struct lwp *, void *, register_t *);
    879   1.1      manu 
    880   1.1      manu int	sys_fsync(struct lwp *, void *, register_t *);
    881   1.1      manu 
    882   1.1      manu int	linux_sys_fdatasync(struct lwp *, void *, register_t *);
    883   1.1      manu 
    884   1.1      manu int	linux_sys_truncate64(struct lwp *, void *, register_t *);
    885   1.1      manu 
    886   1.1      manu int	linux_sys_ftruncate64(struct lwp *, void *, register_t *);
    887   1.1      manu 
    888   1.1      manu int	linux_sys_getdents(struct lwp *, void *, register_t *);
    889   1.1      manu 
    890   1.1      manu int	sys___getcwd(struct lwp *, void *, register_t *);
    891   1.1      manu 
    892   1.1      manu int	linux_sys_chdir(struct lwp *, void *, register_t *);
    893   1.1      manu 
    894   1.1      manu int	sys_fchdir(struct lwp *, void *, register_t *);
    895   1.1      manu 
    896   1.1      manu int	linux_sys_rename(struct lwp *, void *, register_t *);
    897   1.1      manu 
    898   1.1      manu int	linux_sys_mkdir(struct lwp *, void *, register_t *);
    899   1.1      manu 
    900   1.1      manu int	linux_sys_rmdir(struct lwp *, void *, register_t *);
    901   1.1      manu 
    902   1.1      manu int	linux_sys_creat(struct lwp *, void *, register_t *);
    903   1.1      manu 
    904   1.1      manu int	linux_sys_link(struct lwp *, void *, register_t *);
    905   1.1      manu 
    906   1.1      manu int	linux_sys_unlink(struct lwp *, void *, register_t *);
    907   1.1      manu 
    908   1.1      manu int	linux_sys_symlink(struct lwp *, void *, register_t *);
    909   1.1      manu 
    910   1.1      manu int	linux_sys_readlink(struct lwp *, void *, register_t *);
    911   1.1      manu 
    912   1.1      manu int	linux_sys_chmod(struct lwp *, void *, register_t *);
    913   1.1      manu 
    914   1.1      manu int	sys_fchmod(struct lwp *, void *, register_t *);
    915   1.1      manu 
    916   1.1      manu int	linux_sys_chown(struct lwp *, void *, register_t *);
    917   1.1      manu 
    918   1.1      manu int	sys___posix_fchown(struct lwp *, void *, register_t *);
    919   1.1      manu 
    920   1.1      manu int	linux_sys_lchown(struct lwp *, void *, register_t *);
    921   1.1      manu 
    922   1.1      manu int	sys_umask(struct lwp *, void *, register_t *);
    923   1.1      manu 
    924   1.1      manu int	linux_sys_gettimeofday(struct lwp *, void *, register_t *);
    925   1.1      manu 
    926   1.1      manu int	linux_sys_getrlimit(struct lwp *, void *, register_t *);
    927   1.1      manu 
    928   1.1      manu int	sys_getrusage(struct lwp *, void *, register_t *);
    929   1.1      manu 
    930   1.1      manu int	linux_sys_sysinfo(struct lwp *, void *, register_t *);
    931   1.1      manu 
    932   1.1      manu int	linux_sys_times(struct lwp *, void *, register_t *);
    933   1.1      manu 
    934   1.1      manu int	linux_sys_ptrace(struct lwp *, void *, register_t *);
    935   1.1      manu 
    936   1.1      manu int	sys_getuid(struct lwp *, void *, register_t *);
    937   1.1      manu 
    938   1.1      manu int	sys_getgid(struct lwp *, void *, register_t *);
    939   1.1      manu 
    940   1.1      manu int	sys_setuid(struct lwp *, void *, register_t *);
    941   1.1      manu 
    942   1.1      manu int	sys_setgid(struct lwp *, void *, register_t *);
    943   1.1      manu 
    944   1.1      manu int	sys_geteuid(struct lwp *, void *, register_t *);
    945   1.1      manu 
    946   1.1      manu int	sys_getegid(struct lwp *, void *, register_t *);
    947   1.1      manu 
    948   1.1      manu int	sys_setpgid(struct lwp *, void *, register_t *);
    949   1.1      manu 
    950  1.12      manu int	linux_sys_getppid(struct lwp *, void *, register_t *);
    951   1.1      manu 
    952   1.1      manu int	sys_getpgrp(struct lwp *, void *, register_t *);
    953   1.1      manu 
    954   1.1      manu int	sys_setsid(struct lwp *, void *, register_t *);
    955   1.1      manu 
    956   1.1      manu int	sys_setreuid(struct lwp *, void *, register_t *);
    957   1.1      manu 
    958   1.1      manu int	sys_setregid(struct lwp *, void *, register_t *);
    959   1.1      manu 
    960   1.1      manu int	sys_getgroups(struct lwp *, void *, register_t *);
    961   1.1      manu 
    962   1.1      manu int	sys_setgroups(struct lwp *, void *, register_t *);
    963   1.1      manu 
    964   1.1      manu int	linux_sys_setresuid(struct lwp *, void *, register_t *);
    965   1.1      manu 
    966   1.1      manu int	linux_sys_getresuid(struct lwp *, void *, register_t *);
    967   1.1      manu 
    968   1.1      manu int	linux_sys_setresgid(struct lwp *, void *, register_t *);
    969   1.1      manu 
    970   1.1      manu int	linux_sys_getresgid(struct lwp *, void *, register_t *);
    971   1.1      manu 
    972   1.1      manu int	linux_sys_getpgid(struct lwp *, void *, register_t *);
    973   1.1      manu 
    974   1.1      manu int	linux_sys_setfsuid(struct lwp *, void *, register_t *);
    975   1.1      manu 
    976   1.1      manu int	linux_sys_getfsuid(struct lwp *, void *, register_t *);
    977   1.1      manu 
    978   1.1      manu int	sys_getsid(struct lwp *, void *, register_t *);
    979   1.1      manu 
    980   1.1      manu int	linux_sys_rt_sigpending(struct lwp *, void *, register_t *);
    981   1.1      manu 
    982   1.1      manu int	linux_sys_rt_queueinfo(struct lwp *, void *, register_t *);
    983   1.1      manu 
    984   1.1      manu int	linux_sys_rt_sigsuspend(struct lwp *, void *, register_t *);
    985   1.1      manu 
    986   1.1      manu int	linux_sys_sigaltstack(struct lwp *, void *, register_t *);
    987   1.1      manu 
    988   1.1      manu int	linux_sys_utime(struct lwp *, void *, register_t *);
    989   1.1      manu 
    990   1.1      manu int	linux_sys_mknod(struct lwp *, void *, register_t *);
    991   1.1      manu 
    992   1.6     joerg #ifdef EXEC_AOUT
    993   1.1      manu int	linux_sys_uselib(struct lwp *, void *, register_t *);
    994   1.1      manu 
    995   1.6     joerg #else
    996   1.6     joerg #endif
    997   1.1      manu int	linux_sys_personality(struct lwp *, void *, register_t *);
    998   1.1      manu 
    999  1.18     njoly int	linux_sys_statfs(struct lwp *, void *, register_t *);
   1000   1.1      manu 
   1001  1.18     njoly int	linux_sys_fstatfs(struct lwp *, void *, register_t *);
   1002   1.1      manu 
   1003  1.11  christos int	linux_sys_getpriority(struct lwp *, void *, register_t *);
   1004   1.1      manu 
   1005   1.1      manu int	sys_setpriority(struct lwp *, void *, register_t *);
   1006   1.1      manu 
   1007   1.1      manu int	linux_sys_sched_setparam(struct lwp *, void *, register_t *);
   1008   1.1      manu 
   1009   1.1      manu int	linux_sys_sched_getparam(struct lwp *, void *, register_t *);
   1010   1.1      manu 
   1011   1.1      manu int	linux_sys_sched_setscheduler(struct lwp *, void *, register_t *);
   1012   1.1      manu 
   1013   1.1      manu int	linux_sys_sched_getscheduler(struct lwp *, void *, register_t *);
   1014   1.1      manu 
   1015   1.1      manu int	linux_sys_sched_get_priority_max(struct lwp *, void *, register_t *);
   1016   1.1      manu 
   1017   1.1      manu int	linux_sys_sched_get_priority_min(struct lwp *, void *, register_t *);
   1018   1.1      manu 
   1019   1.1      manu int	sys_mlock(struct lwp *, void *, register_t *);
   1020   1.1      manu 
   1021   1.1      manu int	sys_munlock(struct lwp *, void *, register_t *);
   1022   1.1      manu 
   1023   1.1      manu int	sys_mlockall(struct lwp *, void *, register_t *);
   1024   1.1      manu 
   1025   1.1      manu int	sys_munlockall(struct lwp *, void *, register_t *);
   1026   1.1      manu 
   1027   1.1      manu int	linux_sys_modify_ldt(struct lwp *, void *, register_t *);
   1028   1.1      manu 
   1029   1.1      manu int	linux_sys___sysctl(struct lwp *, void *, register_t *);
   1030   1.1      manu 
   1031   1.1      manu int	linux_sys_arch_prctl(struct lwp *, void *, register_t *);
   1032   1.1      manu 
   1033   1.1      manu int	linux_sys_setrlimit(struct lwp *, void *, register_t *);
   1034   1.1      manu 
   1035   1.1      manu int	sys_chroot(struct lwp *, void *, register_t *);
   1036   1.1      manu 
   1037   1.1      manu int	sys_sync(struct lwp *, void *, register_t *);
   1038   1.1      manu 
   1039   1.1      manu int	sys_acct(struct lwp *, void *, register_t *);
   1040   1.1      manu 
   1041   1.1      manu int	linux_sys_settimeofday(struct lwp *, void *, register_t *);
   1042   1.1      manu 
   1043   1.1      manu int	linux_sys_swapon(struct lwp *, void *, register_t *);
   1044   1.1      manu 
   1045   1.1      manu int	linux_sys_swapoff(struct lwp *, void *, register_t *);
   1046   1.1      manu 
   1047   1.1      manu int	linux_sys_reboot(struct lwp *, void *, register_t *);
   1048   1.1      manu 
   1049   1.1      manu int	compat_43_sys_sethostname(struct lwp *, void *, register_t *);
   1050   1.1      manu 
   1051   1.1      manu int	linux_sys_setdomainname(struct lwp *, void *, register_t *);
   1052   1.1      manu 
   1053   1.1      manu int	linux_sys_iopl(struct lwp *, void *, register_t *);
   1054   1.1      manu 
   1055   1.1      manu int	linux_sys_ioperm(struct lwp *, void *, register_t *);
   1056   1.1      manu 
   1057   1.7      manu int	linux_sys_gettid(struct lwp *, void *, register_t *);
   1058   1.7      manu 
   1059   1.2      fvdl int	linux_sys_setxattr(struct lwp *, void *, register_t *);
   1060   1.2      fvdl 
   1061   1.2      fvdl int	linux_sys_lsetxattr(struct lwp *, void *, register_t *);
   1062   1.2      fvdl 
   1063   1.2      fvdl int	linux_sys_fsetxattr(struct lwp *, void *, register_t *);
   1064   1.2      fvdl 
   1065   1.2      fvdl int	linux_sys_getxattr(struct lwp *, void *, register_t *);
   1066   1.2      fvdl 
   1067   1.2      fvdl int	linux_sys_lgetxattr(struct lwp *, void *, register_t *);
   1068   1.2      fvdl 
   1069   1.2      fvdl int	linux_sys_fgetxattr(struct lwp *, void *, register_t *);
   1070   1.2      fvdl 
   1071   1.2      fvdl int	linux_sys_listxattr(struct lwp *, void *, register_t *);
   1072   1.2      fvdl 
   1073   1.2      fvdl int	linux_sys_llistxattr(struct lwp *, void *, register_t *);
   1074   1.2      fvdl 
   1075   1.2      fvdl int	linux_sys_flistxattr(struct lwp *, void *, register_t *);
   1076   1.2      fvdl 
   1077   1.2      fvdl int	linux_sys_removexattr(struct lwp *, void *, register_t *);
   1078   1.2      fvdl 
   1079   1.2      fvdl int	linux_sys_lremovexattr(struct lwp *, void *, register_t *);
   1080   1.2      fvdl 
   1081   1.2      fvdl int	linux_sys_fremovexattr(struct lwp *, void *, register_t *);
   1082   1.2      fvdl 
   1083   1.9      manu int	linux_sys_tkill(struct lwp *, void *, register_t *);
   1084   1.9      manu 
   1085   1.1      manu int	linux_sys_time(struct lwp *, void *, register_t *);
   1086   1.1      manu 
   1087   1.7      manu int	linux_sys_futex(struct lwp *, void *, register_t *);
   1088   1.7      manu 
   1089   1.8      manu int	linux_sys_sched_setaffinity(struct lwp *, void *, register_t *);
   1090   1.8      manu 
   1091   1.8      manu int	linux_sys_sched_getaffinity(struct lwp *, void *, register_t *);
   1092   1.8      manu 
   1093   1.1      manu int	linux_sys_getdents64(struct lwp *, void *, register_t *);
   1094   1.1      manu 
   1095   1.5      manu int	linux_sys_set_tid_address(struct lwp *, void *, register_t *);
   1096   1.5      manu 
   1097   1.3      fvdl int	linux_sys_clock_settime(struct lwp *, void *, register_t *);
   1098   1.3      fvdl 
   1099   1.3      fvdl int	linux_sys_clock_gettime(struct lwp *, void *, register_t *);
   1100   1.3      fvdl 
   1101   1.3      fvdl int	linux_sys_clock_getres(struct lwp *, void *, register_t *);
   1102   1.3      fvdl 
   1103   1.3      fvdl int	linux_sys_clock_nanosleep(struct lwp *, void *, register_t *);
   1104   1.3      fvdl 
   1105   1.1      manu int	linux_sys_exit_group(struct lwp *, void *, register_t *);
   1106   1.1      manu 
   1107   1.9      manu int	linux_sys_tgkill(struct lwp *, void *, register_t *);
   1108   1.9      manu 
   1109   1.1      manu int	linux_sys_nosys(struct lwp *, void *, register_t *);
   1110   1.1      manu 
   1111  1.10      manu #endif /* _LINUX_SYS_SYSCALLARGS_H_ */
   1112