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