15f2336efSEd Maste /* 25f2336efSEd Maste * System call prototypes. 35f2336efSEd Maste * 40e26cd44SEd Maste * DO NOT EDIT-- this file is automatically @generated. 55f2336efSEd Maste * $FreeBSD$ 65f2336efSEd Maste */ 75f2336efSEd Maste 85f2336efSEd Maste #ifndef _LINUX_SYSPROTO_H_ 95f2336efSEd Maste #define _LINUX_SYSPROTO_H_ 105f2336efSEd Maste 115f2336efSEd Maste #include <sys/signal.h> 125f2336efSEd Maste #include <sys/acl.h> 135f2336efSEd Maste #include <sys/cpuset.h> 145f2336efSEd Maste #include <sys/domainset.h> 155f2336efSEd Maste #include <sys/_ffcounter.h> 165f2336efSEd Maste #include <sys/_semaphore.h> 175f2336efSEd Maste #include <sys/ucontext.h> 185f2336efSEd Maste #include <sys/wait.h> 195f2336efSEd Maste 205f2336efSEd Maste #include <bsm/audit_kevents.h> 215f2336efSEd Maste 225f2336efSEd Maste struct proc; 235f2336efSEd Maste 245f2336efSEd Maste struct thread; 255f2336efSEd Maste 265f2336efSEd Maste #define PAD_(t) (sizeof(register_t) <= sizeof(t) ? \ 275f2336efSEd Maste 0 : sizeof(register_t) - sizeof(t)) 285f2336efSEd Maste 295f2336efSEd Maste #if BYTE_ORDER == LITTLE_ENDIAN 305f2336efSEd Maste #define PADL_(t) 0 315f2336efSEd Maste #define PADR_(t) PAD_(t) 325f2336efSEd Maste #else 335f2336efSEd Maste #define PADL_(t) PAD_(t) 345f2336efSEd Maste #define PADR_(t) 0 355f2336efSEd Maste #endif 365f2336efSEd Maste 375f2336efSEd Maste #define nosys linux_nosys 385f2336efSEd Maste struct linux_setxattr_args { 39*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 40*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 41*a39cdcd7SEdward Tomasz Napierala char value_l_[PADL_(const char *)]; const char * value; char value_r_[PADR_(const char *)]; 42*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 43*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 445f2336efSEd Maste }; 455f2336efSEd Maste struct linux_lsetxattr_args { 46*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 47*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 48*a39cdcd7SEdward Tomasz Napierala char value_l_[PADL_(const char *)]; const char * value; char value_r_[PADR_(const char *)]; 49*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 50*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 515f2336efSEd Maste }; 525f2336efSEd Maste struct linux_fsetxattr_args { 53*a39cdcd7SEdward Tomasz Napierala char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 54*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 55*a39cdcd7SEdward Tomasz Napierala char value_l_[PADL_(const char *)]; const char * value; char value_r_[PADR_(const char *)]; 56*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 57*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 585f2336efSEd Maste }; 595f2336efSEd Maste struct linux_getxattr_args { 60*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 61*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 62*a39cdcd7SEdward Tomasz Napierala char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)]; 63*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 645f2336efSEd Maste }; 655f2336efSEd Maste struct linux_lgetxattr_args { 66*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 67*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 68*a39cdcd7SEdward Tomasz Napierala char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)]; 69*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 705f2336efSEd Maste }; 715f2336efSEd Maste struct linux_fgetxattr_args { 72*a39cdcd7SEdward Tomasz Napierala char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 73*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 74*a39cdcd7SEdward Tomasz Napierala char value_l_[PADL_(char *)]; char * value; char value_r_[PADR_(char *)]; 75*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 765f2336efSEd Maste }; 775f2336efSEd Maste struct linux_listxattr_args { 78*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 79*a39cdcd7SEdward Tomasz Napierala char list_l_[PADL_(const char *)]; const char * list; char list_r_[PADR_(const char *)]; 80*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 815f2336efSEd Maste }; 825f2336efSEd Maste struct linux_llistxattr_args { 83*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 84*a39cdcd7SEdward Tomasz Napierala char list_l_[PADL_(const char *)]; const char * list; char list_r_[PADR_(const char *)]; 85*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 865f2336efSEd Maste }; 875f2336efSEd Maste struct linux_flistxattr_args { 88*a39cdcd7SEdward Tomasz Napierala char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 89*a39cdcd7SEdward Tomasz Napierala char list_l_[PADL_(const char *)]; const char * list; char list_r_[PADR_(const char *)]; 90*a39cdcd7SEdward Tomasz Napierala char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 915f2336efSEd Maste }; 925f2336efSEd Maste struct linux_removexattr_args { 93*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 94*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 955f2336efSEd Maste }; 965f2336efSEd Maste struct linux_lremovexattr_args { 97*a39cdcd7SEdward Tomasz Napierala char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 98*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 995f2336efSEd Maste }; 1005f2336efSEd Maste struct linux_fremovexattr_args { 101*a39cdcd7SEdward Tomasz Napierala char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 102*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 1035f2336efSEd Maste }; 1045f2336efSEd Maste struct linux_getcwd_args { 1055f2336efSEd Maste char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; 1065f2336efSEd Maste char bufsize_l_[PADL_(l_ulong)]; l_ulong bufsize; char bufsize_r_[PADR_(l_ulong)]; 1075f2336efSEd Maste }; 1085f2336efSEd Maste struct linux_lookup_dcookie_args { 1095f2336efSEd Maste register_t dummy; 1105f2336efSEd Maste }; 1115f2336efSEd Maste struct linux_eventfd2_args { 1125f2336efSEd Maste char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)]; 1135f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 1145f2336efSEd Maste }; 1155f2336efSEd Maste struct linux_epoll_create1_args { 1165f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 1175f2336efSEd Maste }; 1185f2336efSEd Maste struct linux_epoll_ctl_args { 1195f2336efSEd Maste char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)]; 1205f2336efSEd Maste char op_l_[PADL_(l_int)]; l_int op; char op_r_[PADR_(l_int)]; 1215f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 1225f2336efSEd Maste char event_l_[PADL_(struct epoll_event *)]; struct epoll_event * event; char event_r_[PADR_(struct epoll_event *)]; 1235f2336efSEd Maste }; 1245f2336efSEd Maste struct linux_epoll_pwait_args { 1255f2336efSEd Maste char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)]; 1265f2336efSEd Maste char events_l_[PADL_(struct epoll_event *)]; struct epoll_event * events; char events_r_[PADR_(struct epoll_event *)]; 1275f2336efSEd Maste char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)]; 1285f2336efSEd Maste char timeout_l_[PADL_(l_int)]; l_int timeout; char timeout_r_[PADR_(l_int)]; 1295f2336efSEd Maste char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)]; 1305f2336efSEd Maste char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)]; 1315f2336efSEd Maste }; 1325f2336efSEd Maste struct linux_dup3_args { 1335f2336efSEd Maste char oldfd_l_[PADL_(l_int)]; l_int oldfd; char oldfd_r_[PADR_(l_int)]; 1345f2336efSEd Maste char newfd_l_[PADL_(l_int)]; l_int newfd; char newfd_r_[PADR_(l_int)]; 1355f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 1365f2336efSEd Maste }; 1375f2336efSEd Maste struct linux_fcntl_args { 1385f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 1395f2336efSEd Maste char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)]; 1405f2336efSEd Maste char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)]; 1415f2336efSEd Maste }; 1425f2336efSEd Maste struct linux_inotify_init1_args { 1435f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 1445f2336efSEd Maste }; 1455f2336efSEd Maste struct linux_inotify_add_watch_args { 1465f2336efSEd Maste register_t dummy; 1475f2336efSEd Maste }; 1485f2336efSEd Maste struct linux_inotify_rm_watch_args { 1495f2336efSEd Maste register_t dummy; 1505f2336efSEd Maste }; 1515f2336efSEd Maste struct linux_ioctl_args { 1525f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 1535f2336efSEd Maste char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)]; 154*a39cdcd7SEdward Tomasz Napierala char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)]; 1555f2336efSEd Maste }; 1565f2336efSEd Maste struct linux_ioprio_set_args { 1575f2336efSEd Maste register_t dummy; 1585f2336efSEd Maste }; 1595f2336efSEd Maste struct linux_ioprio_get_args { 1605f2336efSEd Maste register_t dummy; 1615f2336efSEd Maste }; 1625f2336efSEd Maste struct linux_mknodat_args { 1635f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 1645f2336efSEd Maste char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)]; 1655f2336efSEd Maste char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)]; 1665f2336efSEd Maste char dev_l_[PADL_(l_uint)]; l_uint dev; char dev_r_[PADR_(l_uint)]; 1675f2336efSEd Maste }; 1685f2336efSEd Maste struct linux_mkdirat_args { 1695f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 1705f2336efSEd Maste char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)]; 171*a39cdcd7SEdward Tomasz Napierala char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)]; 1725f2336efSEd Maste }; 1735f2336efSEd Maste struct linux_unlinkat_args { 1745f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 1755f2336efSEd Maste char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)]; 1765f2336efSEd Maste char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)]; 1775f2336efSEd Maste }; 1785f2336efSEd Maste struct linux_symlinkat_args { 1795f2336efSEd Maste char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)]; 1805f2336efSEd Maste char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)]; 1815f2336efSEd Maste char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)]; 1825f2336efSEd Maste }; 1835f2336efSEd Maste struct linux_linkat_args { 1845f2336efSEd Maste char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)]; 1855f2336efSEd Maste char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)]; 1865f2336efSEd Maste char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)]; 1875f2336efSEd Maste char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)]; 1885f2336efSEd Maste char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)]; 1895f2336efSEd Maste }; 1905f2336efSEd Maste struct linux_renameat_args { 1915f2336efSEd Maste char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)]; 1925f2336efSEd Maste char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)]; 1935f2336efSEd Maste char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)]; 1945f2336efSEd Maste char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)]; 1955f2336efSEd Maste }; 1965f2336efSEd Maste struct linux_mount_args { 1975f2336efSEd Maste char specialfile_l_[PADL_(char *)]; char * specialfile; char specialfile_r_[PADR_(char *)]; 1985f2336efSEd Maste char dir_l_[PADL_(char *)]; char * dir; char dir_r_[PADR_(char *)]; 1995f2336efSEd Maste char filesystemtype_l_[PADL_(char *)]; char * filesystemtype; char filesystemtype_r_[PADR_(char *)]; 2005f2336efSEd Maste char rwflag_l_[PADL_(l_ulong)]; l_ulong rwflag; char rwflag_r_[PADR_(l_ulong)]; 2015f2336efSEd Maste char data_l_[PADL_(void *)]; void * data; char data_r_[PADR_(void *)]; 2025f2336efSEd Maste }; 2035f2336efSEd Maste struct linux_pivot_root_args { 2045f2336efSEd Maste register_t dummy; 2055f2336efSEd Maste }; 2065f2336efSEd Maste struct linux_statfs_args { 2075f2336efSEd Maste char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 2085f2336efSEd Maste char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)]; 2095f2336efSEd Maste }; 2105f2336efSEd Maste struct linux_fstatfs_args { 2115f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 2125f2336efSEd Maste char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)]; 2135f2336efSEd Maste }; 2145f2336efSEd Maste struct linux_truncate_args { 2155f2336efSEd Maste char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 2165f2336efSEd Maste char length_l_[PADL_(l_ulong)]; l_ulong length; char length_r_[PADR_(l_ulong)]; 2175f2336efSEd Maste }; 2185f2336efSEd Maste struct linux_ftruncate_args { 2195f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 2205f2336efSEd Maste char length_l_[PADL_(l_long)]; l_long length; char length_r_[PADR_(l_long)]; 2215f2336efSEd Maste }; 2225f2336efSEd Maste struct linux_fallocate_args { 2235f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 2245f2336efSEd Maste char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)]; 2255f2336efSEd Maste char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)]; 2265f2336efSEd Maste char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)]; 2275f2336efSEd Maste }; 2285f2336efSEd Maste struct linux_faccessat_args { 2295f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 2305f2336efSEd Maste char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)]; 2315f2336efSEd Maste char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)]; 2325f2336efSEd Maste }; 2335f2336efSEd Maste struct linux_chdir_args { 2345f2336efSEd Maste char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 2355f2336efSEd Maste }; 2365f2336efSEd Maste struct linux_fchmodat_args { 2375f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 2385f2336efSEd Maste char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)]; 2395f2336efSEd Maste char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)]; 2405f2336efSEd Maste }; 2415f2336efSEd Maste struct linux_fchownat_args { 2425f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 2435f2336efSEd Maste char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)]; 2445f2336efSEd Maste char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)]; 2455f2336efSEd Maste char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)]; 2465f2336efSEd Maste char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)]; 2475f2336efSEd Maste }; 2485f2336efSEd Maste struct linux_openat_args { 2495f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 2505f2336efSEd Maste char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)]; 2515f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 252*a39cdcd7SEdward Tomasz Napierala char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)]; 2535f2336efSEd Maste }; 2545f2336efSEd Maste struct linux_vhangup_args { 2555f2336efSEd Maste register_t dummy; 2565f2336efSEd Maste }; 2575f2336efSEd Maste struct linux_pipe2_args { 2585f2336efSEd Maste char pipefds_l_[PADL_(l_int *)]; l_int * pipefds; char pipefds_r_[PADR_(l_int *)]; 2595f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 2605f2336efSEd Maste }; 2615f2336efSEd Maste struct linux_getdents64_args { 2625f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 2635f2336efSEd Maste char dirent_l_[PADL_(void *)]; void * dirent; char dirent_r_[PADR_(void *)]; 2645f2336efSEd Maste char count_l_[PADL_(l_uint)]; l_uint count; char count_r_[PADR_(l_uint)]; 2655f2336efSEd Maste }; 2665f2336efSEd Maste struct linux_lseek_args { 2675f2336efSEd Maste char fdes_l_[PADL_(l_uint)]; l_uint fdes; char fdes_r_[PADR_(l_uint)]; 2685f2336efSEd Maste char off_l_[PADL_(l_off_t)]; l_off_t off; char off_r_[PADR_(l_off_t)]; 2695f2336efSEd Maste char whence_l_[PADL_(l_int)]; l_int whence; char whence_r_[PADR_(l_int)]; 2705f2336efSEd Maste }; 2715f2336efSEd Maste struct linux_pread_args { 2725f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 2735f2336efSEd Maste char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; 2745f2336efSEd Maste char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)]; 2755f2336efSEd Maste char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)]; 2765f2336efSEd Maste }; 2775f2336efSEd Maste struct linux_pwrite_args { 2785f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 2795f2336efSEd Maste char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; 2805f2336efSEd Maste char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)]; 2815f2336efSEd Maste char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)]; 2825f2336efSEd Maste }; 2835f2336efSEd Maste struct linux_preadv_args { 2845f2336efSEd Maste char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)]; 2855f2336efSEd Maste char vec_l_[PADL_(struct iovec *)]; struct iovec * vec; char vec_r_[PADR_(struct iovec *)]; 2865f2336efSEd Maste char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)]; 2875f2336efSEd Maste char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)]; 2885f2336efSEd Maste char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)]; 2895f2336efSEd Maste }; 2905f2336efSEd Maste struct linux_pwritev_args { 2915f2336efSEd Maste char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)]; 2925f2336efSEd Maste char vec_l_[PADL_(struct iovec *)]; struct iovec * vec; char vec_r_[PADR_(struct iovec *)]; 2935f2336efSEd Maste char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)]; 2945f2336efSEd Maste char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)]; 2955f2336efSEd Maste char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)]; 2965f2336efSEd Maste }; 2975f2336efSEd Maste struct linux_sendfile_args { 2985f2336efSEd Maste char out_l_[PADL_(l_int)]; l_int out; char out_r_[PADR_(l_int)]; 2995f2336efSEd Maste char in_l_[PADL_(l_int)]; l_int in; char in_r_[PADR_(l_int)]; 300*a39cdcd7SEdward Tomasz Napierala char offset_l_[PADL_(l_off_t *)]; l_off_t * offset; char offset_r_[PADR_(l_off_t *)]; 3015f2336efSEd Maste char count_l_[PADL_(l_size_t)]; l_size_t count; char count_r_[PADR_(l_size_t)]; 3025f2336efSEd Maste }; 3035f2336efSEd Maste struct linux_pselect6_args { 3045f2336efSEd Maste char nfds_l_[PADL_(l_int)]; l_int nfds; char nfds_r_[PADR_(l_int)]; 3055f2336efSEd Maste char readfds_l_[PADL_(l_fd_set *)]; l_fd_set * readfds; char readfds_r_[PADR_(l_fd_set *)]; 3065f2336efSEd Maste char writefds_l_[PADL_(l_fd_set *)]; l_fd_set * writefds; char writefds_r_[PADR_(l_fd_set *)]; 3075f2336efSEd Maste char exceptfds_l_[PADL_(l_fd_set *)]; l_fd_set * exceptfds; char exceptfds_r_[PADR_(l_fd_set *)]; 3085f2336efSEd Maste char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)]; 3095f2336efSEd Maste char sig_l_[PADL_(l_uintptr_t *)]; l_uintptr_t * sig; char sig_r_[PADR_(l_uintptr_t *)]; 3105f2336efSEd Maste }; 3115f2336efSEd Maste struct linux_ppoll_args { 3125f2336efSEd Maste char fds_l_[PADL_(struct pollfd *)]; struct pollfd * fds; char fds_r_[PADR_(struct pollfd *)]; 313*a39cdcd7SEdward Tomasz Napierala char nfds_l_[PADL_(l_uint)]; l_uint nfds; char nfds_r_[PADR_(l_uint)]; 3145f2336efSEd Maste char tsp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tsp; char tsp_r_[PADR_(struct l_timespec *)]; 3155f2336efSEd Maste char sset_l_[PADL_(l_sigset_t *)]; l_sigset_t * sset; char sset_r_[PADR_(l_sigset_t *)]; 3165f2336efSEd Maste char ssize_l_[PADL_(l_size_t)]; l_size_t ssize; char ssize_r_[PADR_(l_size_t)]; 3175f2336efSEd Maste }; 3185f2336efSEd Maste struct linux_signalfd4_args { 3195f2336efSEd Maste register_t dummy; 3205f2336efSEd Maste }; 3215f2336efSEd Maste struct linux_vmsplice_args { 3225f2336efSEd Maste register_t dummy; 3235f2336efSEd Maste }; 3245f2336efSEd Maste struct linux_splice_args { 3255f2336efSEd Maste register_t dummy; 3265f2336efSEd Maste }; 3275f2336efSEd Maste struct linux_tee_args { 3285f2336efSEd Maste register_t dummy; 3295f2336efSEd Maste }; 3305f2336efSEd Maste struct linux_readlinkat_args { 3315f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 3325f2336efSEd Maste char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)]; 3335f2336efSEd Maste char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; 3345f2336efSEd Maste char bufsiz_l_[PADL_(l_int)]; l_int bufsiz; char bufsiz_r_[PADR_(l_int)]; 3355f2336efSEd Maste }; 3365f2336efSEd Maste struct linux_newfstatat_args { 3375f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 3385f2336efSEd Maste char pathname_l_[PADL_(char *)]; char * pathname; char pathname_r_[PADR_(char *)]; 3395f2336efSEd Maste char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)]; 3405f2336efSEd Maste char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)]; 3415f2336efSEd Maste }; 3425f2336efSEd Maste struct linux_newfstat_args { 3435f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 3445f2336efSEd Maste char buf_l_[PADL_(struct l_newstat *)]; struct l_newstat * buf; char buf_r_[PADR_(struct l_newstat *)]; 3455f2336efSEd Maste }; 3465f2336efSEd Maste struct linux_fdatasync_args { 3475f2336efSEd Maste char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)]; 3485f2336efSEd Maste }; 3495f2336efSEd Maste struct linux_sync_file_range_args { 3500cde2b32SEdward Tomasz Napierala char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 3510cde2b32SEdward Tomasz Napierala char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)]; 3520cde2b32SEdward Tomasz Napierala char nbytes_l_[PADL_(l_loff_t)]; l_loff_t nbytes; char nbytes_r_[PADR_(l_loff_t)]; 353*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 3545f2336efSEd Maste }; 3555f2336efSEd Maste struct linux_timerfd_create_args { 3565f2336efSEd Maste char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)]; 3575f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 3585f2336efSEd Maste }; 3595f2336efSEd Maste struct linux_timerfd_settime_args { 3605f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 3615f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 3625f2336efSEd Maste char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)]; 3635f2336efSEd Maste char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)]; 3645f2336efSEd Maste }; 3655f2336efSEd Maste struct linux_timerfd_gettime_args { 3665f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 3675f2336efSEd Maste char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)]; 3685f2336efSEd Maste }; 3695f2336efSEd Maste struct linux_utimensat_args { 3705f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 3715f2336efSEd Maste char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)]; 3725f2336efSEd Maste char times_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * times; char times_r_[PADR_(const struct l_timespec *)]; 3735f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 3745f2336efSEd Maste }; 3755f2336efSEd Maste struct linux_capget_args { 3765f2336efSEd Maste char hdrp_l_[PADL_(struct l_user_cap_header *)]; struct l_user_cap_header * hdrp; char hdrp_r_[PADR_(struct l_user_cap_header *)]; 3775f2336efSEd Maste char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR_(struct l_user_cap_data *)]; 3785f2336efSEd Maste }; 3795f2336efSEd Maste struct linux_capset_args { 3805f2336efSEd Maste char hdrp_l_[PADL_(struct l_user_cap_header *)]; struct l_user_cap_header * hdrp; char hdrp_r_[PADR_(struct l_user_cap_header *)]; 3815f2336efSEd Maste char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR_(struct l_user_cap_data *)]; 3825f2336efSEd Maste }; 3835f2336efSEd Maste struct linux_personality_args { 3845f2336efSEd Maste char per_l_[PADL_(l_uint)]; l_uint per; char per_r_[PADR_(l_uint)]; 3855f2336efSEd Maste }; 3865f2336efSEd Maste struct linux_exit_args { 387*a39cdcd7SEdward Tomasz Napierala char rval_l_[PADL_(u_int)]; u_int rval; char rval_r_[PADR_(u_int)]; 3885f2336efSEd Maste }; 3895f2336efSEd Maste struct linux_exit_group_args { 390*a39cdcd7SEdward Tomasz Napierala char error_code_l_[PADL_(l_int)]; l_int error_code; char error_code_r_[PADR_(l_int)]; 3915f2336efSEd Maste }; 3925f2336efSEd Maste struct linux_waitid_args { 3935f2336efSEd Maste char idtype_l_[PADL_(l_int)]; l_int idtype; char idtype_r_[PADR_(l_int)]; 3945f2336efSEd Maste char id_l_[PADL_(l_pid_t)]; l_pid_t id; char id_r_[PADR_(l_pid_t)]; 3955f2336efSEd Maste char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)]; 3965f2336efSEd Maste char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)]; 3975f2336efSEd Maste char rusage_l_[PADL_(struct rusage *)]; struct rusage * rusage; char rusage_r_[PADR_(struct rusage *)]; 3985f2336efSEd Maste }; 3995f2336efSEd Maste struct linux_set_tid_address_args { 400*a39cdcd7SEdward Tomasz Napierala char tidptr_l_[PADL_(l_int *)]; l_int * tidptr; char tidptr_r_[PADR_(l_int *)]; 4015f2336efSEd Maste }; 4025f2336efSEd Maste struct linux_unshare_args { 4035f2336efSEd Maste register_t dummy; 4045f2336efSEd Maste }; 4055f2336efSEd Maste struct linux_sys_futex_args { 4065f2336efSEd Maste char uaddr_l_[PADL_(void *)]; void * uaddr; char uaddr_r_[PADR_(void *)]; 4075f2336efSEd Maste char op_l_[PADL_(int)]; int op; char op_r_[PADR_(int)]; 4085f2336efSEd Maste char val_l_[PADL_(int)]; int val; char val_r_[PADR_(int)]; 4095f2336efSEd Maste char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)]; 4105f2336efSEd Maste char uaddr2_l_[PADL_(void *)]; void * uaddr2; char uaddr2_r_[PADR_(void *)]; 4115f2336efSEd Maste char val3_l_[PADL_(int)]; int val3; char val3_r_[PADR_(int)]; 4125f2336efSEd Maste }; 4135f2336efSEd Maste struct linux_set_robust_list_args { 4145f2336efSEd Maste char head_l_[PADL_(struct linux_robust_list_head *)]; struct linux_robust_list_head * head; char head_r_[PADR_(struct linux_robust_list_head *)]; 4155f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 4165f2336efSEd Maste }; 4175f2336efSEd Maste struct linux_get_robust_list_args { 4185f2336efSEd Maste char pid_l_[PADL_(l_int)]; l_int pid; char pid_r_[PADR_(l_int)]; 4195f2336efSEd Maste char head_l_[PADL_(struct linux_robust_list_head **)]; struct linux_robust_list_head ** head; char head_r_[PADR_(struct linux_robust_list_head **)]; 4205f2336efSEd Maste char len_l_[PADL_(l_size_t *)]; l_size_t * len; char len_r_[PADR_(l_size_t *)]; 4215f2336efSEd Maste }; 4225f2336efSEd Maste struct linux_nanosleep_args { 4235f2336efSEd Maste char rqtp_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * rqtp; char rqtp_r_[PADR_(const struct l_timespec *)]; 4245f2336efSEd Maste char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)]; 4255f2336efSEd Maste }; 4265f2336efSEd Maste struct linux_getitimer_args { 4275f2336efSEd Maste char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)]; 4285f2336efSEd Maste char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)]; 4295f2336efSEd Maste }; 4305f2336efSEd Maste struct linux_setitimer_args { 4315f2336efSEd Maste char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)]; 4325f2336efSEd Maste char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)]; 4335f2336efSEd Maste char oitv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * oitv; char oitv_r_[PADR_(struct l_itimerval *)]; 4345f2336efSEd Maste }; 4355f2336efSEd Maste struct linux_kexec_load_args { 4365f2336efSEd Maste register_t dummy; 4375f2336efSEd Maste }; 4385f2336efSEd Maste struct linux_init_module_args { 4395f2336efSEd Maste register_t dummy; 4405f2336efSEd Maste }; 4415f2336efSEd Maste struct linux_delete_module_args { 4425f2336efSEd Maste register_t dummy; 4435f2336efSEd Maste }; 4445f2336efSEd Maste struct linux_timer_create_args { 4455f2336efSEd Maste char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)]; 4465f2336efSEd Maste char evp_l_[PADL_(struct sigevent *)]; struct sigevent * evp; char evp_r_[PADR_(struct sigevent *)]; 4475f2336efSEd Maste char timerid_l_[PADL_(l_timer_t *)]; l_timer_t * timerid; char timerid_r_[PADR_(l_timer_t *)]; 4485f2336efSEd Maste }; 4495f2336efSEd Maste struct linux_timer_gettime_args { 4505f2336efSEd Maste char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)]; 4515f2336efSEd Maste char setting_l_[PADL_(struct itimerspec *)]; struct itimerspec * setting; char setting_r_[PADR_(struct itimerspec *)]; 4525f2336efSEd Maste }; 4535f2336efSEd Maste struct linux_timer_getoverrun_args { 4545f2336efSEd Maste char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)]; 4555f2336efSEd Maste }; 4565f2336efSEd Maste struct linux_timer_settime_args { 4575f2336efSEd Maste char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)]; 4585f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 4595f2336efSEd Maste char new_l_[PADL_(const struct itimerspec *)]; const struct itimerspec * new; char new_r_[PADR_(const struct itimerspec *)]; 4605f2336efSEd Maste char old_l_[PADL_(struct itimerspec *)]; struct itimerspec * old; char old_r_[PADR_(struct itimerspec *)]; 4615f2336efSEd Maste }; 4625f2336efSEd Maste struct linux_timer_delete_args { 4635f2336efSEd Maste char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)]; 4645f2336efSEd Maste }; 4655f2336efSEd Maste struct linux_clock_settime_args { 4665f2336efSEd Maste char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; 4675f2336efSEd Maste char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)]; 4685f2336efSEd Maste }; 4695f2336efSEd Maste struct linux_clock_gettime_args { 4705f2336efSEd Maste char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; 4715f2336efSEd Maste char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)]; 4725f2336efSEd Maste }; 4735f2336efSEd Maste struct linux_clock_getres_args { 4745f2336efSEd Maste char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; 4755f2336efSEd Maste char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)]; 4765f2336efSEd Maste }; 4775f2336efSEd Maste struct linux_clock_nanosleep_args { 4785f2336efSEd Maste char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; 479*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 4805f2336efSEd Maste char rqtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rqtp; char rqtp_r_[PADR_(struct l_timespec *)]; 4815f2336efSEd Maste char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)]; 4825f2336efSEd Maste }; 4835f2336efSEd Maste struct linux_syslog_args { 4845f2336efSEd Maste char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)]; 4855f2336efSEd Maste char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; 4865f2336efSEd Maste char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)]; 4875f2336efSEd Maste }; 4885f2336efSEd Maste struct linux_ptrace_args { 4895f2336efSEd Maste char req_l_[PADL_(l_long)]; l_long req; char req_r_[PADR_(l_long)]; 4905f2336efSEd Maste char pid_l_[PADL_(l_long)]; l_long pid; char pid_r_[PADR_(l_long)]; 4915f2336efSEd Maste char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)]; 4925f2336efSEd Maste char data_l_[PADL_(l_ulong)]; l_ulong data; char data_r_[PADR_(l_ulong)]; 4935f2336efSEd Maste }; 4945f2336efSEd Maste struct linux_sched_setparam_args { 4955f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 4965f2336efSEd Maste char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)]; 4975f2336efSEd Maste }; 4985f2336efSEd Maste struct linux_sched_setscheduler_args { 4995f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5005f2336efSEd Maste char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)]; 5015f2336efSEd Maste char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)]; 5025f2336efSEd Maste }; 5035f2336efSEd Maste struct linux_sched_getscheduler_args { 5045f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5055f2336efSEd Maste }; 5065f2336efSEd Maste struct linux_sched_getparam_args { 5075f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5085f2336efSEd Maste char param_l_[PADL_(struct sched_param *)]; struct sched_param * param; char param_r_[PADR_(struct sched_param *)]; 5095f2336efSEd Maste }; 5105f2336efSEd Maste struct linux_sched_setaffinity_args { 5115f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5125f2336efSEd Maste char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)]; 5135f2336efSEd Maste char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)]; 5145f2336efSEd Maste }; 5155f2336efSEd Maste struct linux_sched_getaffinity_args { 5165f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5175f2336efSEd Maste char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)]; 5185f2336efSEd Maste char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)]; 5195f2336efSEd Maste }; 5205f2336efSEd Maste struct linux_sched_get_priority_max_args { 5215f2336efSEd Maste char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)]; 5225f2336efSEd Maste }; 5235f2336efSEd Maste struct linux_sched_get_priority_min_args { 5245f2336efSEd Maste char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)]; 5255f2336efSEd Maste }; 5265f2336efSEd Maste struct linux_sched_rr_get_interval_args { 5275f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5285f2336efSEd Maste char interval_l_[PADL_(struct l_timespec *)]; struct l_timespec * interval; char interval_r_[PADR_(struct l_timespec *)]; 5295f2336efSEd Maste }; 5305f2336efSEd Maste struct linux_kill_args { 531*a39cdcd7SEdward Tomasz Napierala char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5325f2336efSEd Maste char signum_l_[PADL_(l_int)]; l_int signum; char signum_r_[PADR_(l_int)]; 5335f2336efSEd Maste }; 5345f2336efSEd Maste struct linux_tkill_args { 535*a39cdcd7SEdward Tomasz Napierala char tid_l_[PADL_(l_pid_t)]; l_pid_t tid; char tid_r_[PADR_(l_pid_t)]; 5365f2336efSEd Maste char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)]; 5375f2336efSEd Maste }; 5385f2336efSEd Maste struct linux_tgkill_args { 539*a39cdcd7SEdward Tomasz Napierala char tgid_l_[PADL_(l_pid_t)]; l_pid_t tgid; char tgid_r_[PADR_(l_pid_t)]; 540*a39cdcd7SEdward Tomasz Napierala char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5415f2336efSEd Maste char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)]; 5425f2336efSEd Maste }; 5435f2336efSEd Maste struct linux_sigaltstack_args { 5445f2336efSEd Maste char uss_l_[PADL_(l_stack_t *)]; l_stack_t * uss; char uss_r_[PADR_(l_stack_t *)]; 5455f2336efSEd Maste char uoss_l_[PADL_(l_stack_t *)]; l_stack_t * uoss; char uoss_r_[PADR_(l_stack_t *)]; 5465f2336efSEd Maste }; 5475f2336efSEd Maste struct linux_rt_sigsuspend_args { 5485f2336efSEd Maste char newset_l_[PADL_(l_sigset_t *)]; l_sigset_t * newset; char newset_r_[PADR_(l_sigset_t *)]; 5495f2336efSEd Maste char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)]; 5505f2336efSEd Maste }; 5515f2336efSEd Maste struct linux_rt_sigaction_args { 5525f2336efSEd Maste char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)]; 5535f2336efSEd Maste char act_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * act; char act_r_[PADR_(l_sigaction_t *)]; 5545f2336efSEd Maste char oact_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * oact; char oact_r_[PADR_(l_sigaction_t *)]; 5555f2336efSEd Maste char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)]; 5565f2336efSEd Maste }; 5575f2336efSEd Maste struct linux_rt_sigprocmask_args { 5585f2336efSEd Maste char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)]; 5595f2336efSEd Maste char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)]; 5605f2336efSEd Maste char omask_l_[PADL_(l_sigset_t *)]; l_sigset_t * omask; char omask_r_[PADR_(l_sigset_t *)]; 5615f2336efSEd Maste char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)]; 5625f2336efSEd Maste }; 5635f2336efSEd Maste struct linux_rt_sigpending_args { 5645f2336efSEd Maste char set_l_[PADL_(l_sigset_t *)]; l_sigset_t * set; char set_r_[PADR_(l_sigset_t *)]; 5655f2336efSEd Maste char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)]; 5665f2336efSEd Maste }; 5675f2336efSEd Maste struct linux_rt_sigtimedwait_args { 5685f2336efSEd Maste char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)]; 5695f2336efSEd Maste char ptr_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * ptr; char ptr_r_[PADR_(l_siginfo_t *)]; 5705f2336efSEd Maste char timeout_l_[PADL_(struct l_timeval *)]; struct l_timeval * timeout; char timeout_r_[PADR_(struct l_timeval *)]; 5715f2336efSEd Maste char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)]; 5725f2336efSEd Maste }; 5735f2336efSEd Maste struct linux_rt_sigqueueinfo_args { 5745f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 5755f2336efSEd Maste char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)]; 5765f2336efSEd Maste char info_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * info; char info_r_[PADR_(l_siginfo_t *)]; 5775f2336efSEd Maste }; 5785f2336efSEd Maste struct linux_rt_sigreturn_args { 5795f2336efSEd Maste char ucp_l_[PADL_(struct l_ucontext *)]; struct l_ucontext * ucp; char ucp_r_[PADR_(struct l_ucontext *)]; 5805f2336efSEd Maste }; 5815f2336efSEd Maste struct linux_getpriority_args { 5825f2336efSEd Maste char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)]; 5835f2336efSEd Maste char who_l_[PADL_(l_int)]; l_int who; char who_r_[PADR_(l_int)]; 5845f2336efSEd Maste }; 5855f2336efSEd Maste struct linux_reboot_args { 5865f2336efSEd Maste char magic1_l_[PADL_(l_int)]; l_int magic1; char magic1_r_[PADR_(l_int)]; 5875f2336efSEd Maste char magic2_l_[PADL_(l_int)]; l_int magic2; char magic2_r_[PADR_(l_int)]; 5885f2336efSEd Maste char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)]; 5895f2336efSEd Maste char arg_l_[PADL_(void *)]; void * arg; char arg_r_[PADR_(void *)]; 5905f2336efSEd Maste }; 5915f2336efSEd Maste struct linux_setfsuid_args { 5925f2336efSEd Maste char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)]; 5935f2336efSEd Maste }; 5945f2336efSEd Maste struct linux_setfsgid_args { 5955f2336efSEd Maste char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)]; 5965f2336efSEd Maste }; 5975f2336efSEd Maste struct linux_times_args { 5985f2336efSEd Maste char buf_l_[PADL_(struct l_times_argv *)]; struct l_times_argv * buf; char buf_r_[PADR_(struct l_times_argv *)]; 5995f2336efSEd Maste }; 6005f2336efSEd Maste struct linux_getsid_args { 6015f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 6025f2336efSEd Maste }; 6035f2336efSEd Maste struct linux_getgroups_args { 6045f2336efSEd Maste char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)]; 6055f2336efSEd Maste char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)]; 6065f2336efSEd Maste }; 6075f2336efSEd Maste struct linux_setgroups_args { 6085f2336efSEd Maste char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)]; 6095f2336efSEd Maste char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)]; 6105f2336efSEd Maste }; 6115f2336efSEd Maste struct linux_newuname_args { 6125f2336efSEd Maste char buf_l_[PADL_(struct l_new_utsname *)]; struct l_new_utsname * buf; char buf_r_[PADR_(struct l_new_utsname *)]; 6135f2336efSEd Maste }; 6145f2336efSEd Maste struct linux_sethostname_args { 6155f2336efSEd Maste char hostname_l_[PADL_(char *)]; char * hostname; char hostname_r_[PADR_(char *)]; 6165f2336efSEd Maste char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)]; 6175f2336efSEd Maste }; 6185f2336efSEd Maste struct linux_setdomainname_args { 6195f2336efSEd Maste char name_l_[PADL_(char *)]; char * name; char name_r_[PADR_(char *)]; 6205f2336efSEd Maste char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)]; 6215f2336efSEd Maste }; 6225f2336efSEd Maste struct linux_getrlimit_args { 6235f2336efSEd Maste char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)]; 6245f2336efSEd Maste char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)]; 6255f2336efSEd Maste }; 6265f2336efSEd Maste struct linux_setrlimit_args { 6275f2336efSEd Maste char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)]; 6285f2336efSEd Maste char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)]; 6295f2336efSEd Maste }; 6305f2336efSEd Maste struct linux_prctl_args { 6315f2336efSEd Maste char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)]; 6325f2336efSEd Maste char arg2_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg2; char arg2_r_[PADR_(l_uintptr_t)]; 6335f2336efSEd Maste char arg3_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg3; char arg3_r_[PADR_(l_uintptr_t)]; 6345f2336efSEd Maste char arg4_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg4; char arg4_r_[PADR_(l_uintptr_t)]; 6355f2336efSEd Maste char arg5_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg5; char arg5_r_[PADR_(l_uintptr_t)]; 6365f2336efSEd Maste }; 6375f2336efSEd Maste struct linux_getcpu_args { 6385f2336efSEd Maste char cpu_l_[PADL_(l_uint *)]; l_uint * cpu; char cpu_r_[PADR_(l_uint *)]; 6395f2336efSEd Maste char node_l_[PADL_(l_uint *)]; l_uint * node; char node_r_[PADR_(l_uint *)]; 6405f2336efSEd Maste char cache_l_[PADL_(void *)]; void * cache; char cache_r_[PADR_(void *)]; 6415f2336efSEd Maste }; 6425f2336efSEd Maste struct linux_adjtimex_args { 6435f2336efSEd Maste register_t dummy; 6445f2336efSEd Maste }; 6455f2336efSEd Maste struct linux_getpid_args { 6465f2336efSEd Maste register_t dummy; 6475f2336efSEd Maste }; 6485f2336efSEd Maste struct linux_getppid_args { 6495f2336efSEd Maste register_t dummy; 6505f2336efSEd Maste }; 6515f2336efSEd Maste struct linux_getuid_args { 6525f2336efSEd Maste register_t dummy; 6535f2336efSEd Maste }; 6545f2336efSEd Maste struct linux_getgid_args { 6555f2336efSEd Maste register_t dummy; 6565f2336efSEd Maste }; 6575f2336efSEd Maste struct linux_gettid_args { 6585f2336efSEd Maste register_t dummy; 6595f2336efSEd Maste }; 6605f2336efSEd Maste struct linux_sysinfo_args { 6615f2336efSEd Maste char info_l_[PADL_(struct l_sysinfo *)]; struct l_sysinfo * info; char info_r_[PADR_(struct l_sysinfo *)]; 6625f2336efSEd Maste }; 6635f2336efSEd Maste struct linux_mq_open_args { 664*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 665*a39cdcd7SEdward Tomasz Napierala char oflag_l_[PADL_(l_int)]; l_int oflag; char oflag_r_[PADR_(l_int)]; 666*a39cdcd7SEdward Tomasz Napierala char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)]; 667*a39cdcd7SEdward Tomasz Napierala char attr_l_[PADL_(struct mq_attr *)]; struct mq_attr * attr; char attr_r_[PADR_(struct mq_attr *)]; 6685f2336efSEd Maste }; 6695f2336efSEd Maste struct linux_mq_unlink_args { 670*a39cdcd7SEdward Tomasz Napierala char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)]; 6715f2336efSEd Maste }; 6725f2336efSEd Maste struct linux_mq_timedsend_args { 673*a39cdcd7SEdward Tomasz Napierala char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)]; 674*a39cdcd7SEdward Tomasz Napierala char msg_ptr_l_[PADL_(const char *)]; const char * msg_ptr; char msg_ptr_r_[PADR_(const char *)]; 675*a39cdcd7SEdward Tomasz Napierala char msg_len_l_[PADL_(l_size_t)]; l_size_t msg_len; char msg_len_r_[PADR_(l_size_t)]; 676*a39cdcd7SEdward Tomasz Napierala char msg_prio_l_[PADL_(l_uint)]; l_uint msg_prio; char msg_prio_r_[PADR_(l_uint)]; 677*a39cdcd7SEdward Tomasz Napierala char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)]; 6785f2336efSEd Maste }; 6795f2336efSEd Maste struct linux_mq_timedreceive_args { 680*a39cdcd7SEdward Tomasz Napierala char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)]; 681*a39cdcd7SEdward Tomasz Napierala char msg_ptr_l_[PADL_(char *)]; char * msg_ptr; char msg_ptr_r_[PADR_(char *)]; 682*a39cdcd7SEdward Tomasz Napierala char msg_len_l_[PADL_(l_size_t)]; l_size_t msg_len; char msg_len_r_[PADR_(l_size_t)]; 683*a39cdcd7SEdward Tomasz Napierala char msg_prio_l_[PADL_(l_uint *)]; l_uint * msg_prio; char msg_prio_r_[PADR_(l_uint *)]; 684*a39cdcd7SEdward Tomasz Napierala char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)]; 6855f2336efSEd Maste }; 6865f2336efSEd Maste struct linux_mq_notify_args { 687*a39cdcd7SEdward Tomasz Napierala char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)]; 688*a39cdcd7SEdward Tomasz Napierala char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)]; 6895f2336efSEd Maste }; 6905f2336efSEd Maste struct linux_mq_getsetattr_args { 691*a39cdcd7SEdward Tomasz Napierala char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)]; 692*a39cdcd7SEdward Tomasz Napierala char attr_l_[PADL_(const struct mq_attr *)]; const struct mq_attr * attr; char attr_r_[PADR_(const struct mq_attr *)]; 693*a39cdcd7SEdward Tomasz Napierala char oattr_l_[PADL_(struct mq_attr *)]; struct mq_attr * oattr; char oattr_r_[PADR_(struct mq_attr *)]; 6945f2336efSEd Maste }; 6955f2336efSEd Maste struct linux_msgget_args { 6965f2336efSEd Maste char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)]; 6975f2336efSEd Maste char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)]; 6985f2336efSEd Maste }; 6995f2336efSEd Maste struct linux_msgctl_args { 7005f2336efSEd Maste char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)]; 7015f2336efSEd Maste char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)]; 7025f2336efSEd Maste char buf_l_[PADL_(struct l_msqid_ds *)]; struct l_msqid_ds * buf; char buf_r_[PADR_(struct l_msqid_ds *)]; 7035f2336efSEd Maste }; 7045f2336efSEd Maste struct linux_msgrcv_args { 7055f2336efSEd Maste char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)]; 7065f2336efSEd Maste char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf *)]; 7075f2336efSEd Maste char msgsz_l_[PADL_(l_size_t)]; l_size_t msgsz; char msgsz_r_[PADR_(l_size_t)]; 7085f2336efSEd Maste char msgtyp_l_[PADL_(l_long)]; l_long msgtyp; char msgtyp_r_[PADR_(l_long)]; 7095f2336efSEd Maste char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)]; 7105f2336efSEd Maste }; 7115f2336efSEd Maste struct linux_msgsnd_args { 7125f2336efSEd Maste char msqid_l_[PADL_(l_int)]; l_int msqid; char msqid_r_[PADR_(l_int)]; 7135f2336efSEd Maste char msgp_l_[PADL_(struct l_msgbuf *)]; struct l_msgbuf * msgp; char msgp_r_[PADR_(struct l_msgbuf *)]; 7145f2336efSEd Maste char msgsz_l_[PADL_(l_size_t)]; l_size_t msgsz; char msgsz_r_[PADR_(l_size_t)]; 7155f2336efSEd Maste char msgflg_l_[PADL_(l_int)]; l_int msgflg; char msgflg_r_[PADR_(l_int)]; 7165f2336efSEd Maste }; 7175f2336efSEd Maste struct linux_semget_args { 7185f2336efSEd Maste char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)]; 7195f2336efSEd Maste char nsems_l_[PADL_(l_int)]; l_int nsems; char nsems_r_[PADR_(l_int)]; 7205f2336efSEd Maste char semflg_l_[PADL_(l_int)]; l_int semflg; char semflg_r_[PADR_(l_int)]; 7215f2336efSEd Maste }; 7225f2336efSEd Maste struct linux_semctl_args { 7235f2336efSEd Maste char semid_l_[PADL_(l_int)]; l_int semid; char semid_r_[PADR_(l_int)]; 7245f2336efSEd Maste char semnum_l_[PADL_(l_int)]; l_int semnum; char semnum_r_[PADR_(l_int)]; 7255f2336efSEd Maste char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)]; 7265f2336efSEd Maste char arg_l_[PADL_(union l_semun)]; union l_semun arg; char arg_r_[PADR_(union l_semun)]; 7275f2336efSEd Maste }; 7285f2336efSEd Maste struct linux_semtimedop_args { 7295f2336efSEd Maste register_t dummy; 7305f2336efSEd Maste }; 7315f2336efSEd Maste struct linux_semop_args { 7325f2336efSEd Maste char semid_l_[PADL_(l_int)]; l_int semid; char semid_r_[PADR_(l_int)]; 7335f2336efSEd Maste char tsops_l_[PADL_(struct l_sembuf *)]; struct l_sembuf * tsops; char tsops_r_[PADR_(struct l_sembuf *)]; 7345f2336efSEd Maste char nsops_l_[PADL_(l_uint)]; l_uint nsops; char nsops_r_[PADR_(l_uint)]; 7355f2336efSEd Maste }; 7365f2336efSEd Maste struct linux_shmget_args { 7375f2336efSEd Maste char key_l_[PADL_(l_key_t)]; l_key_t key; char key_r_[PADR_(l_key_t)]; 7385f2336efSEd Maste char size_l_[PADL_(l_size_t)]; l_size_t size; char size_r_[PADR_(l_size_t)]; 7395f2336efSEd Maste char shmflg_l_[PADL_(l_int)]; l_int shmflg; char shmflg_r_[PADR_(l_int)]; 7405f2336efSEd Maste }; 7415f2336efSEd Maste struct linux_shmctl_args { 7425f2336efSEd Maste char shmid_l_[PADL_(l_int)]; l_int shmid; char shmid_r_[PADR_(l_int)]; 7435f2336efSEd Maste char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)]; 7445f2336efSEd Maste char buf_l_[PADL_(struct l_shmid_ds *)]; struct l_shmid_ds * buf; char buf_r_[PADR_(struct l_shmid_ds *)]; 7455f2336efSEd Maste }; 7465f2336efSEd Maste struct linux_shmat_args { 7475f2336efSEd Maste char shmid_l_[PADL_(l_int)]; l_int shmid; char shmid_r_[PADR_(l_int)]; 7485f2336efSEd Maste char shmaddr_l_[PADL_(char *)]; char * shmaddr; char shmaddr_r_[PADR_(char *)]; 7495f2336efSEd Maste char shmflg_l_[PADL_(l_int)]; l_int shmflg; char shmflg_r_[PADR_(l_int)]; 7505f2336efSEd Maste }; 7515f2336efSEd Maste struct linux_shmdt_args { 7525f2336efSEd Maste char shmaddr_l_[PADL_(char *)]; char * shmaddr; char shmaddr_r_[PADR_(char *)]; 7535f2336efSEd Maste }; 7545f2336efSEd Maste struct linux_socket_args { 7555f2336efSEd Maste char domain_l_[PADL_(l_int)]; l_int domain; char domain_r_[PADR_(l_int)]; 7565f2336efSEd Maste char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)]; 7575f2336efSEd Maste char protocol_l_[PADL_(l_int)]; l_int protocol; char protocol_r_[PADR_(l_int)]; 7585f2336efSEd Maste }; 7595f2336efSEd Maste struct linux_socketpair_args { 7605f2336efSEd Maste char domain_l_[PADL_(l_int)]; l_int domain; char domain_r_[PADR_(l_int)]; 7615f2336efSEd Maste char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)]; 7625f2336efSEd Maste char protocol_l_[PADL_(l_int)]; l_int protocol; char protocol_r_[PADR_(l_int)]; 7635f2336efSEd Maste char rsv_l_[PADL_(l_uintptr_t)]; l_uintptr_t rsv; char rsv_r_[PADR_(l_uintptr_t)]; 7645f2336efSEd Maste }; 7655f2336efSEd Maste struct linux_bind_args { 7665f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7675f2336efSEd Maste char name_l_[PADL_(l_uintptr_t)]; l_uintptr_t name; char name_r_[PADR_(l_uintptr_t)]; 7685f2336efSEd Maste char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)]; 7695f2336efSEd Maste }; 7705f2336efSEd Maste struct linux_listen_args { 7715f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7725f2336efSEd Maste char backlog_l_[PADL_(l_int)]; l_int backlog; char backlog_r_[PADR_(l_int)]; 7735f2336efSEd Maste }; 7745f2336efSEd Maste struct linux_accept_args { 7755f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7765f2336efSEd Maste char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)]; 7775f2336efSEd Maste char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)]; 7785f2336efSEd Maste }; 7795f2336efSEd Maste struct linux_connect_args { 7805f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7815f2336efSEd Maste char name_l_[PADL_(l_uintptr_t)]; l_uintptr_t name; char name_r_[PADR_(l_uintptr_t)]; 7825f2336efSEd Maste char namelen_l_[PADL_(l_int)]; l_int namelen; char namelen_r_[PADR_(l_int)]; 7835f2336efSEd Maste }; 7845f2336efSEd Maste struct linux_getsockname_args { 7855f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7865f2336efSEd Maste char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)]; 7875f2336efSEd Maste char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)]; 7885f2336efSEd Maste }; 7895f2336efSEd Maste struct linux_getpeername_args { 7905f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7915f2336efSEd Maste char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)]; 7925f2336efSEd Maste char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)]; 7935f2336efSEd Maste }; 7945f2336efSEd Maste struct linux_sendto_args { 7955f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 7965f2336efSEd Maste char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)]; 797*a39cdcd7SEdward Tomasz Napierala char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 798*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 7995f2336efSEd Maste char to_l_[PADL_(l_uintptr_t)]; l_uintptr_t to; char to_r_[PADR_(l_uintptr_t)]; 8005f2336efSEd Maste char tolen_l_[PADL_(l_int)]; l_int tolen; char tolen_r_[PADR_(l_int)]; 8015f2336efSEd Maste }; 8025f2336efSEd Maste struct linux_recvfrom_args { 8035f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 8045f2336efSEd Maste char buf_l_[PADL_(l_uintptr_t)]; l_uintptr_t buf; char buf_r_[PADR_(l_uintptr_t)]; 8055f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 806*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 8075f2336efSEd Maste char from_l_[PADL_(l_uintptr_t)]; l_uintptr_t from; char from_r_[PADR_(l_uintptr_t)]; 8085f2336efSEd Maste char fromlen_l_[PADL_(l_uintptr_t)]; l_uintptr_t fromlen; char fromlen_r_[PADR_(l_uintptr_t)]; 8095f2336efSEd Maste }; 8105f2336efSEd Maste struct linux_setsockopt_args { 8115f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 8125f2336efSEd Maste char level_l_[PADL_(l_int)]; l_int level; char level_r_[PADR_(l_int)]; 8135f2336efSEd Maste char optname_l_[PADL_(l_int)]; l_int optname; char optname_r_[PADR_(l_int)]; 8145f2336efSEd Maste char optval_l_[PADL_(l_uintptr_t)]; l_uintptr_t optval; char optval_r_[PADR_(l_uintptr_t)]; 8155f2336efSEd Maste char optlen_l_[PADL_(l_int)]; l_int optlen; char optlen_r_[PADR_(l_int)]; 8165f2336efSEd Maste }; 8175f2336efSEd Maste struct linux_getsockopt_args { 8185f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 8195f2336efSEd Maste char level_l_[PADL_(l_int)]; l_int level; char level_r_[PADR_(l_int)]; 8205f2336efSEd Maste char optname_l_[PADL_(l_int)]; l_int optname; char optname_r_[PADR_(l_int)]; 8215f2336efSEd Maste char optval_l_[PADL_(l_uintptr_t)]; l_uintptr_t optval; char optval_r_[PADR_(l_uintptr_t)]; 8225f2336efSEd Maste char optlen_l_[PADL_(l_uintptr_t)]; l_uintptr_t optlen; char optlen_r_[PADR_(l_uintptr_t)]; 8235f2336efSEd Maste }; 8245f2336efSEd Maste struct linux_shutdown_args { 8255f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 8265f2336efSEd Maste char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)]; 8275f2336efSEd Maste }; 8285f2336efSEd Maste struct linux_sendmsg_args { 8295f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 8305f2336efSEd Maste char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)]; 831*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 8325f2336efSEd Maste }; 8335f2336efSEd Maste struct linux_recvmsg_args { 8345f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 8355f2336efSEd Maste char msg_l_[PADL_(l_uintptr_t)]; l_uintptr_t msg; char msg_r_[PADR_(l_uintptr_t)]; 836*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 8375f2336efSEd Maste }; 8385f2336efSEd Maste struct linux_brk_args { 8395f2336efSEd Maste char dsend_l_[PADL_(l_ulong)]; l_ulong dsend; char dsend_r_[PADR_(l_ulong)]; 8405f2336efSEd Maste }; 8415f2336efSEd Maste struct linux_mremap_args { 8425f2336efSEd Maste char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)]; 8435f2336efSEd Maste char old_len_l_[PADL_(l_ulong)]; l_ulong old_len; char old_len_r_[PADR_(l_ulong)]; 8445f2336efSEd Maste char new_len_l_[PADL_(l_ulong)]; l_ulong new_len; char new_len_r_[PADR_(l_ulong)]; 8455f2336efSEd Maste char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)]; 8465f2336efSEd Maste char new_addr_l_[PADL_(l_ulong)]; l_ulong new_addr; char new_addr_r_[PADR_(l_ulong)]; 8475f2336efSEd Maste }; 8485f2336efSEd Maste struct linux_add_key_args { 8495f2336efSEd Maste register_t dummy; 8505f2336efSEd Maste }; 8515f2336efSEd Maste struct linux_request_key_args { 8525f2336efSEd Maste register_t dummy; 8535f2336efSEd Maste }; 8545f2336efSEd Maste struct linux_keyctl_args { 8555f2336efSEd Maste register_t dummy; 8565f2336efSEd Maste }; 8575f2336efSEd Maste struct linux_clone_args { 858*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)]; 8595f2336efSEd Maste char stack_l_[PADL_(void *)]; void * stack; char stack_r_[PADR_(void *)]; 8605f2336efSEd Maste char parent_tidptr_l_[PADL_(void *)]; void * parent_tidptr; char parent_tidptr_r_[PADR_(void *)]; 8615f2336efSEd Maste char tls_l_[PADL_(void *)]; void * tls; char tls_r_[PADR_(void *)]; 862c38eeb8eSEd Maste char child_tidptr_l_[PADL_(void *)]; void * child_tidptr; char child_tidptr_r_[PADR_(void *)]; 8635f2336efSEd Maste }; 8645f2336efSEd Maste struct linux_execve_args { 8655f2336efSEd Maste char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 8665f2336efSEd Maste char argp_l_[PADL_(char **)]; char ** argp; char argp_r_[PADR_(char **)]; 8675f2336efSEd Maste char envp_l_[PADL_(char **)]; char ** envp; char envp_r_[PADR_(char **)]; 8685f2336efSEd Maste }; 8695f2336efSEd Maste struct linux_mmap2_args { 8705f2336efSEd Maste char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)]; 8715f2336efSEd Maste char len_l_[PADL_(l_ulong)]; l_ulong len; char len_r_[PADR_(l_ulong)]; 8725f2336efSEd Maste char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)]; 8735f2336efSEd Maste char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)]; 8745f2336efSEd Maste char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)]; 8755f2336efSEd Maste char pgoff_l_[PADL_(l_ulong)]; l_ulong pgoff; char pgoff_r_[PADR_(l_ulong)]; 8765f2336efSEd Maste }; 8775f2336efSEd Maste struct linux_fadvise64_args { 8785f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 8795f2336efSEd Maste char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)]; 8805f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 8815f2336efSEd Maste char advice_l_[PADL_(l_int)]; l_int advice; char advice_r_[PADR_(l_int)]; 8825f2336efSEd Maste }; 8835f2336efSEd Maste struct linux_swapoff_args { 8845f2336efSEd Maste register_t dummy; 8855f2336efSEd Maste }; 8865f2336efSEd Maste struct linux_mprotect_args { 887*a39cdcd7SEdward Tomasz Napierala char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)]; 888*a39cdcd7SEdward Tomasz Napierala char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 889*a39cdcd7SEdward Tomasz Napierala char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)]; 8905f2336efSEd Maste }; 8915f2336efSEd Maste struct linux_msync_args { 8925f2336efSEd Maste char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)]; 8935f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 8945f2336efSEd Maste char fl_l_[PADL_(l_int)]; l_int fl; char fl_r_[PADR_(l_int)]; 8955f2336efSEd Maste }; 8965f2336efSEd Maste struct linux_mincore_args { 8975f2336efSEd Maste char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)]; 8985f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 8995f2336efSEd Maste char vec_l_[PADL_(u_char *)]; u_char * vec; char vec_r_[PADR_(u_char *)]; 9005f2336efSEd Maste }; 901bafd96b8SEdward Tomasz Napierala struct linux_madvise_args { 902*a39cdcd7SEdward Tomasz Napierala char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)]; 903*a39cdcd7SEdward Tomasz Napierala char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 904*a39cdcd7SEdward Tomasz Napierala char behav_l_[PADL_(l_int)]; l_int behav; char behav_r_[PADR_(l_int)]; 905bafd96b8SEdward Tomasz Napierala }; 9065f2336efSEd Maste struct linux_remap_file_pages_args { 9075f2336efSEd Maste register_t dummy; 9085f2336efSEd Maste }; 9095f2336efSEd Maste struct linux_mbind_args { 9105f2336efSEd Maste register_t dummy; 9115f2336efSEd Maste }; 9125f2336efSEd Maste struct linux_get_mempolicy_args { 9135f2336efSEd Maste register_t dummy; 9145f2336efSEd Maste }; 9155f2336efSEd Maste struct linux_set_mempolicy_args { 9165f2336efSEd Maste register_t dummy; 9175f2336efSEd Maste }; 9185f2336efSEd Maste struct linux_migrate_pages_args { 9195f2336efSEd Maste register_t dummy; 9205f2336efSEd Maste }; 9215f2336efSEd Maste struct linux_move_pages_args { 9225f2336efSEd Maste register_t dummy; 9235f2336efSEd Maste }; 9245f2336efSEd Maste struct linux_rt_tgsigqueueinfo_args { 9255f2336efSEd Maste char tgid_l_[PADL_(l_pid_t)]; l_pid_t tgid; char tgid_r_[PADR_(l_pid_t)]; 9265f2336efSEd Maste char tid_l_[PADL_(l_pid_t)]; l_pid_t tid; char tid_r_[PADR_(l_pid_t)]; 9275f2336efSEd Maste char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)]; 9285f2336efSEd Maste char uinfo_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * uinfo; char uinfo_r_[PADR_(l_siginfo_t *)]; 9295f2336efSEd Maste }; 9305f2336efSEd Maste struct linux_perf_event_open_args { 9315f2336efSEd Maste register_t dummy; 9325f2336efSEd Maste }; 9335f2336efSEd Maste struct linux_accept4_args { 9345f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 9355f2336efSEd Maste char addr_l_[PADL_(l_uintptr_t)]; l_uintptr_t addr; char addr_r_[PADR_(l_uintptr_t)]; 9365f2336efSEd Maste char namelen_l_[PADL_(l_uintptr_t)]; l_uintptr_t namelen; char namelen_r_[PADR_(l_uintptr_t)]; 937*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 9385f2336efSEd Maste }; 9395f2336efSEd Maste struct linux_recvmmsg_args { 9405f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 9415f2336efSEd Maste char msg_l_[PADL_(struct l_mmsghdr *)]; struct l_mmsghdr * msg; char msg_r_[PADR_(struct l_mmsghdr *)]; 9425f2336efSEd Maste char vlen_l_[PADL_(l_uint)]; l_uint vlen; char vlen_r_[PADR_(l_uint)]; 9435f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 9445f2336efSEd Maste char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)]; 9455f2336efSEd Maste }; 9465f2336efSEd Maste struct linux_wait4_args { 9475f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 9485f2336efSEd Maste char status_l_[PADL_(l_int *)]; l_int * status; char status_r_[PADR_(l_int *)]; 9495f2336efSEd Maste char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)]; 9505f2336efSEd Maste char rusage_l_[PADL_(struct rusage *)]; struct rusage * rusage; char rusage_r_[PADR_(struct rusage *)]; 9515f2336efSEd Maste }; 9525f2336efSEd Maste struct linux_prlimit64_args { 9535f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 9545f2336efSEd Maste char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)]; 9555f2336efSEd Maste char new_l_[PADL_(struct rlimit *)]; struct rlimit * new; char new_r_[PADR_(struct rlimit *)]; 9565f2336efSEd Maste char old_l_[PADL_(struct rlimit *)]; struct rlimit * old; char old_r_[PADR_(struct rlimit *)]; 9575f2336efSEd Maste }; 9585f2336efSEd Maste struct linux_fanotify_init_args { 9595f2336efSEd Maste register_t dummy; 9605f2336efSEd Maste }; 9615f2336efSEd Maste struct linux_fanotify_mark_args { 9625f2336efSEd Maste register_t dummy; 9635f2336efSEd Maste }; 9645f2336efSEd Maste struct linux_name_to_handle_at_args { 9655f2336efSEd Maste register_t dummy; 9665f2336efSEd Maste }; 9675f2336efSEd Maste struct linux_open_by_handle_at_args { 9685f2336efSEd Maste register_t dummy; 9695f2336efSEd Maste }; 9705f2336efSEd Maste struct linux_clock_adjtime_args { 9715f2336efSEd Maste register_t dummy; 9725f2336efSEd Maste }; 9735f2336efSEd Maste struct linux_syncfs_args { 9745f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 9755f2336efSEd Maste }; 9765f2336efSEd Maste struct linux_setns_args { 9775f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 9785f2336efSEd Maste char nstype_l_[PADL_(l_int)]; l_int nstype; char nstype_r_[PADR_(l_int)]; 9795f2336efSEd Maste }; 9805f2336efSEd Maste struct linux_sendmmsg_args { 9815f2336efSEd Maste char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)]; 9825f2336efSEd Maste char msg_l_[PADL_(struct l_mmsghdr *)]; struct l_mmsghdr * msg; char msg_r_[PADR_(struct l_mmsghdr *)]; 9835f2336efSEd Maste char vlen_l_[PADL_(l_uint)]; l_uint vlen; char vlen_r_[PADR_(l_uint)]; 9845f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 9855f2336efSEd Maste }; 9865f2336efSEd Maste struct linux_process_vm_readv_args { 9875f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 9885f2336efSEd Maste char lvec_l_[PADL_(const struct iovec *)]; const struct iovec * lvec; char lvec_r_[PADR_(const struct iovec *)]; 9895f2336efSEd Maste char liovcnt_l_[PADL_(l_ulong)]; l_ulong liovcnt; char liovcnt_r_[PADR_(l_ulong)]; 9905f2336efSEd Maste char rvec_l_[PADL_(const struct iovec *)]; const struct iovec * rvec; char rvec_r_[PADR_(const struct iovec *)]; 9915f2336efSEd Maste char riovcnt_l_[PADL_(l_ulong)]; l_ulong riovcnt; char riovcnt_r_[PADR_(l_ulong)]; 9925f2336efSEd Maste char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)]; 9935f2336efSEd Maste }; 9945f2336efSEd Maste struct linux_process_vm_writev_args { 9955f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 9965f2336efSEd Maste char lvec_l_[PADL_(const struct iovec *)]; const struct iovec * lvec; char lvec_r_[PADR_(const struct iovec *)]; 9975f2336efSEd Maste char liovcnt_l_[PADL_(l_ulong)]; l_ulong liovcnt; char liovcnt_r_[PADR_(l_ulong)]; 9985f2336efSEd Maste char rvec_l_[PADL_(const struct iovec *)]; const struct iovec * rvec; char rvec_r_[PADR_(const struct iovec *)]; 9995f2336efSEd Maste char riovcnt_l_[PADL_(l_ulong)]; l_ulong riovcnt; char riovcnt_r_[PADR_(l_ulong)]; 10005f2336efSEd Maste char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)]; 10015f2336efSEd Maste }; 10025f2336efSEd Maste struct linux_kcmp_args { 10035f2336efSEd Maste char pid1_l_[PADL_(l_pid_t)]; l_pid_t pid1; char pid1_r_[PADR_(l_pid_t)]; 10045f2336efSEd Maste char pid2_l_[PADL_(l_pid_t)]; l_pid_t pid2; char pid2_r_[PADR_(l_pid_t)]; 10055f2336efSEd Maste char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)]; 10065f2336efSEd Maste char idx1_l_[PADL_(l_ulong)]; l_ulong idx1; char idx1_r_[PADR_(l_ulong)]; 10075f2336efSEd Maste char idx_l_[PADL_(l_ulong)]; l_ulong idx; char idx_r_[PADR_(l_ulong)]; 10085f2336efSEd Maste }; 10095f2336efSEd Maste struct linux_finit_module_args { 10105f2336efSEd Maste char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)]; 10115f2336efSEd Maste char uargs_l_[PADL_(const char *)]; const char * uargs; char uargs_r_[PADR_(const char *)]; 10125f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10135f2336efSEd Maste }; 10145f2336efSEd Maste struct linux_sched_setattr_args { 10155f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 10165f2336efSEd Maste char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)]; 10175f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10185f2336efSEd Maste }; 10195f2336efSEd Maste struct linux_sched_getattr_args { 10205f2336efSEd Maste char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)]; 10215f2336efSEd Maste char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)]; 10225f2336efSEd Maste char size_l_[PADL_(l_uint)]; l_uint size; char size_r_[PADR_(l_uint)]; 10235f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10245f2336efSEd Maste }; 10255f2336efSEd Maste struct linux_renameat2_args { 102665ab1fddSEd Maste char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)]; 10275f2336efSEd Maste char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)]; 102865ab1fddSEd Maste char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)]; 10295f2336efSEd Maste char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)]; 1030*a39cdcd7SEdward Tomasz Napierala char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10315f2336efSEd Maste }; 10325f2336efSEd Maste struct linux_seccomp_args { 10335f2336efSEd Maste char op_l_[PADL_(l_uint)]; l_uint op; char op_r_[PADR_(l_uint)]; 10345f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10355f2336efSEd Maste char uargs_l_[PADL_(const char *)]; const char * uargs; char uargs_r_[PADR_(const char *)]; 10365f2336efSEd Maste }; 10375f2336efSEd Maste struct linux_getrandom_args { 10385f2336efSEd Maste char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)]; 10395f2336efSEd Maste char count_l_[PADL_(l_size_t)]; l_size_t count; char count_r_[PADR_(l_size_t)]; 10405f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10415f2336efSEd Maste }; 10425f2336efSEd Maste struct linux_memfd_create_args { 10435f2336efSEd Maste char uname_ptr_l_[PADL_(const char *)]; const char * uname_ptr; char uname_ptr_r_[PADR_(const char *)]; 10445f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10455f2336efSEd Maste }; 10465f2336efSEd Maste struct linux_bpf_args { 10475f2336efSEd Maste char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)]; 10485f2336efSEd Maste char attr_l_[PADL_(void *)]; void * attr; char attr_r_[PADR_(void *)]; 10495f2336efSEd Maste char size_l_[PADL_(l_uint)]; l_uint size; char size_r_[PADR_(l_uint)]; 10505f2336efSEd Maste }; 10515f2336efSEd Maste struct linux_execveat_args { 10525f2336efSEd Maste char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)]; 10535f2336efSEd Maste char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)]; 10545f2336efSEd Maste char argv_l_[PADL_(const char **)]; const char ** argv; char argv_r_[PADR_(const char **)]; 10555f2336efSEd Maste char envp_l_[PADL_(const char **)]; const char ** envp; char envp_r_[PADR_(const char **)]; 10565f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10575f2336efSEd Maste }; 10585f2336efSEd Maste struct linux_userfaultfd_args { 10595f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10605f2336efSEd Maste }; 10615f2336efSEd Maste struct linux_membarrier_args { 10625f2336efSEd Maste char cmd_l_[PADL_(l_int)]; l_int cmd; char cmd_r_[PADR_(l_int)]; 10635f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10645f2336efSEd Maste }; 10655f2336efSEd Maste struct linux_mlock2_args { 10665f2336efSEd Maste char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)]; 10675f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 10685f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10695f2336efSEd Maste }; 10705f2336efSEd Maste struct linux_copy_file_range_args { 10715f2336efSEd Maste char fd_in_l_[PADL_(l_int)]; l_int fd_in; char fd_in_r_[PADR_(l_int)]; 10725f2336efSEd Maste char off_in_l_[PADL_(l_loff_t *)]; l_loff_t * off_in; char off_in_r_[PADR_(l_loff_t *)]; 10735f2336efSEd Maste char fd_out_l_[PADL_(l_int)]; l_int fd_out; char fd_out_r_[PADR_(l_int)]; 10745f2336efSEd Maste char off_out_l_[PADL_(l_loff_t *)]; l_loff_t * off_out; char off_out_r_[PADR_(l_loff_t *)]; 10755f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 10765f2336efSEd Maste char flags_l_[PADL_(l_uint)]; l_uint flags; char flags_r_[PADR_(l_uint)]; 10775f2336efSEd Maste }; 10785f2336efSEd Maste struct linux_preadv2_args { 10795f2336efSEd Maste char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)]; 10805f2336efSEd Maste char vec_l_[PADL_(const struct iovec *)]; const struct iovec * vec; char vec_r_[PADR_(const struct iovec *)]; 10815f2336efSEd Maste char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)]; 10825f2336efSEd Maste char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)]; 10835f2336efSEd Maste char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)]; 10845f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10855f2336efSEd Maste }; 10865f2336efSEd Maste struct linux_pwritev2_args { 10875f2336efSEd Maste char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)]; 10885f2336efSEd Maste char vec_l_[PADL_(const struct iovec *)]; const struct iovec * vec; char vec_r_[PADR_(const struct iovec *)]; 10895f2336efSEd Maste char vlen_l_[PADL_(l_ulong)]; l_ulong vlen; char vlen_r_[PADR_(l_ulong)]; 10905f2336efSEd Maste char pos_l_l_[PADL_(l_ulong)]; l_ulong pos_l; char pos_l_r_[PADR_(l_ulong)]; 10915f2336efSEd Maste char pos_h_l_[PADL_(l_ulong)]; l_ulong pos_h; char pos_h_r_[PADR_(l_ulong)]; 10925f2336efSEd Maste char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)]; 10935f2336efSEd Maste }; 10945f2336efSEd Maste struct linux_pkey_mprotect_args { 10955f2336efSEd Maste char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)]; 10965f2336efSEd Maste char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)]; 10975f2336efSEd Maste char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)]; 10985f2336efSEd Maste char pkey_l_[PADL_(l_int)]; l_int pkey; char pkey_r_[PADR_(l_int)]; 10995f2336efSEd Maste }; 11005f2336efSEd Maste struct linux_pkey_alloc_args { 11015f2336efSEd Maste char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)]; 11025f2336efSEd Maste char init_val_l_[PADL_(l_ulong)]; l_ulong init_val; char init_val_r_[PADR_(l_ulong)]; 11035f2336efSEd Maste }; 11045f2336efSEd Maste struct linux_pkey_free_args { 11055f2336efSEd Maste char pkey_l_[PADL_(l_int)]; l_int pkey; char pkey_r_[PADR_(l_int)]; 11065f2336efSEd Maste }; 11075f2336efSEd Maste #define nosys linux_nosys 11085f2336efSEd Maste int linux_setxattr(struct thread *, struct linux_setxattr_args *); 11095f2336efSEd Maste int linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *); 11105f2336efSEd Maste int linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *); 11115f2336efSEd Maste int linux_getxattr(struct thread *, struct linux_getxattr_args *); 11125f2336efSEd Maste int linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *); 11135f2336efSEd Maste int linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *); 11145f2336efSEd Maste int linux_listxattr(struct thread *, struct linux_listxattr_args *); 11155f2336efSEd Maste int linux_llistxattr(struct thread *, struct linux_llistxattr_args *); 11165f2336efSEd Maste int linux_flistxattr(struct thread *, struct linux_flistxattr_args *); 11175f2336efSEd Maste int linux_removexattr(struct thread *, struct linux_removexattr_args *); 11185f2336efSEd Maste int linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *); 11195f2336efSEd Maste int linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *); 11205f2336efSEd Maste int linux_getcwd(struct thread *, struct linux_getcwd_args *); 11215f2336efSEd Maste int linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *); 11225f2336efSEd Maste int linux_eventfd2(struct thread *, struct linux_eventfd2_args *); 11235f2336efSEd Maste int linux_epoll_create1(struct thread *, struct linux_epoll_create1_args *); 11245f2336efSEd Maste int linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *); 11255f2336efSEd Maste int linux_epoll_pwait(struct thread *, struct linux_epoll_pwait_args *); 11265f2336efSEd Maste int linux_dup3(struct thread *, struct linux_dup3_args *); 11275f2336efSEd Maste int linux_fcntl(struct thread *, struct linux_fcntl_args *); 11285f2336efSEd Maste int linux_inotify_init1(struct thread *, struct linux_inotify_init1_args *); 11295f2336efSEd Maste int linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *); 11305f2336efSEd Maste int linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *); 11315f2336efSEd Maste int linux_ioctl(struct thread *, struct linux_ioctl_args *); 11325f2336efSEd Maste int linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *); 11335f2336efSEd Maste int linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *); 11345f2336efSEd Maste int linux_mknodat(struct thread *, struct linux_mknodat_args *); 11355f2336efSEd Maste int linux_mkdirat(struct thread *, struct linux_mkdirat_args *); 11365f2336efSEd Maste int linux_unlinkat(struct thread *, struct linux_unlinkat_args *); 11375f2336efSEd Maste int linux_symlinkat(struct thread *, struct linux_symlinkat_args *); 11385f2336efSEd Maste int linux_linkat(struct thread *, struct linux_linkat_args *); 11395f2336efSEd Maste int linux_renameat(struct thread *, struct linux_renameat_args *); 11405f2336efSEd Maste int linux_mount(struct thread *, struct linux_mount_args *); 11415f2336efSEd Maste int linux_pivot_root(struct thread *, struct linux_pivot_root_args *); 11425f2336efSEd Maste int linux_statfs(struct thread *, struct linux_statfs_args *); 11435f2336efSEd Maste int linux_fstatfs(struct thread *, struct linux_fstatfs_args *); 11445f2336efSEd Maste int linux_truncate(struct thread *, struct linux_truncate_args *); 11455f2336efSEd Maste int linux_ftruncate(struct thread *, struct linux_ftruncate_args *); 11465f2336efSEd Maste int linux_fallocate(struct thread *, struct linux_fallocate_args *); 11475f2336efSEd Maste int linux_faccessat(struct thread *, struct linux_faccessat_args *); 11485f2336efSEd Maste int linux_chdir(struct thread *, struct linux_chdir_args *); 11495f2336efSEd Maste int linux_fchmodat(struct thread *, struct linux_fchmodat_args *); 11505f2336efSEd Maste int linux_fchownat(struct thread *, struct linux_fchownat_args *); 11515f2336efSEd Maste int linux_openat(struct thread *, struct linux_openat_args *); 11525f2336efSEd Maste int linux_vhangup(struct thread *, struct linux_vhangup_args *); 11535f2336efSEd Maste int linux_pipe2(struct thread *, struct linux_pipe2_args *); 11545f2336efSEd Maste int linux_getdents64(struct thread *, struct linux_getdents64_args *); 11555f2336efSEd Maste int linux_lseek(struct thread *, struct linux_lseek_args *); 11565f2336efSEd Maste int linux_pread(struct thread *, struct linux_pread_args *); 11575f2336efSEd Maste int linux_pwrite(struct thread *, struct linux_pwrite_args *); 11585f2336efSEd Maste int linux_preadv(struct thread *, struct linux_preadv_args *); 11595f2336efSEd Maste int linux_pwritev(struct thread *, struct linux_pwritev_args *); 11605f2336efSEd Maste int linux_sendfile(struct thread *, struct linux_sendfile_args *); 11615f2336efSEd Maste int linux_pselect6(struct thread *, struct linux_pselect6_args *); 11625f2336efSEd Maste int linux_ppoll(struct thread *, struct linux_ppoll_args *); 11635f2336efSEd Maste int linux_signalfd4(struct thread *, struct linux_signalfd4_args *); 11645f2336efSEd Maste int linux_vmsplice(struct thread *, struct linux_vmsplice_args *); 11655f2336efSEd Maste int linux_splice(struct thread *, struct linux_splice_args *); 11665f2336efSEd Maste int linux_tee(struct thread *, struct linux_tee_args *); 11675f2336efSEd Maste int linux_readlinkat(struct thread *, struct linux_readlinkat_args *); 11685f2336efSEd Maste int linux_newfstatat(struct thread *, struct linux_newfstatat_args *); 11695f2336efSEd Maste int linux_newfstat(struct thread *, struct linux_newfstat_args *); 11705f2336efSEd Maste int linux_fdatasync(struct thread *, struct linux_fdatasync_args *); 11715f2336efSEd Maste int linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *); 11725f2336efSEd Maste int linux_timerfd_create(struct thread *, struct linux_timerfd_create_args *); 11735f2336efSEd Maste int linux_timerfd_settime(struct thread *, struct linux_timerfd_settime_args *); 11745f2336efSEd Maste int linux_timerfd_gettime(struct thread *, struct linux_timerfd_gettime_args *); 11755f2336efSEd Maste int linux_utimensat(struct thread *, struct linux_utimensat_args *); 11765f2336efSEd Maste int linux_capget(struct thread *, struct linux_capget_args *); 11775f2336efSEd Maste int linux_capset(struct thread *, struct linux_capset_args *); 11785f2336efSEd Maste int linux_personality(struct thread *, struct linux_personality_args *); 11795f2336efSEd Maste int linux_exit(struct thread *, struct linux_exit_args *); 11805f2336efSEd Maste int linux_exit_group(struct thread *, struct linux_exit_group_args *); 11815f2336efSEd Maste int linux_waitid(struct thread *, struct linux_waitid_args *); 11825f2336efSEd Maste int linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *); 11835f2336efSEd Maste int linux_unshare(struct thread *, struct linux_unshare_args *); 11845f2336efSEd Maste int linux_sys_futex(struct thread *, struct linux_sys_futex_args *); 11855f2336efSEd Maste int linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *); 11865f2336efSEd Maste int linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *); 11875f2336efSEd Maste int linux_nanosleep(struct thread *, struct linux_nanosleep_args *); 11885f2336efSEd Maste int linux_getitimer(struct thread *, struct linux_getitimer_args *); 11895f2336efSEd Maste int linux_setitimer(struct thread *, struct linux_setitimer_args *); 11905f2336efSEd Maste int linux_kexec_load(struct thread *, struct linux_kexec_load_args *); 11915f2336efSEd Maste int linux_init_module(struct thread *, struct linux_init_module_args *); 11925f2336efSEd Maste int linux_delete_module(struct thread *, struct linux_delete_module_args *); 11935f2336efSEd Maste int linux_timer_create(struct thread *, struct linux_timer_create_args *); 11945f2336efSEd Maste int linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *); 11955f2336efSEd Maste int linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *); 11965f2336efSEd Maste int linux_timer_settime(struct thread *, struct linux_timer_settime_args *); 11975f2336efSEd Maste int linux_timer_delete(struct thread *, struct linux_timer_delete_args *); 11985f2336efSEd Maste int linux_clock_settime(struct thread *, struct linux_clock_settime_args *); 11995f2336efSEd Maste int linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *); 12005f2336efSEd Maste int linux_clock_getres(struct thread *, struct linux_clock_getres_args *); 12015f2336efSEd Maste int linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *); 12025f2336efSEd Maste int linux_syslog(struct thread *, struct linux_syslog_args *); 12035f2336efSEd Maste int linux_ptrace(struct thread *, struct linux_ptrace_args *); 12045f2336efSEd Maste int linux_sched_setparam(struct thread *, struct linux_sched_setparam_args *); 12055f2336efSEd Maste int linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *); 12065f2336efSEd Maste int linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *); 12075f2336efSEd Maste int linux_sched_getparam(struct thread *, struct linux_sched_getparam_args *); 12085f2336efSEd Maste int linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *); 12095f2336efSEd Maste int linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *); 12105f2336efSEd Maste int linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *); 12115f2336efSEd Maste int linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *); 12125f2336efSEd Maste int linux_sched_rr_get_interval(struct thread *, struct linux_sched_rr_get_interval_args *); 12135f2336efSEd Maste int linux_kill(struct thread *, struct linux_kill_args *); 12145f2336efSEd Maste int linux_tkill(struct thread *, struct linux_tkill_args *); 12155f2336efSEd Maste int linux_tgkill(struct thread *, struct linux_tgkill_args *); 12165f2336efSEd Maste int linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *); 12175f2336efSEd Maste int linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *); 12185f2336efSEd Maste int linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *); 12195f2336efSEd Maste int linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *); 12205f2336efSEd Maste int linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *); 12215f2336efSEd Maste int linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *); 12225f2336efSEd Maste int linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *); 12235f2336efSEd Maste int linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *); 12245f2336efSEd Maste int linux_getpriority(struct thread *, struct linux_getpriority_args *); 12255f2336efSEd Maste int linux_reboot(struct thread *, struct linux_reboot_args *); 12265f2336efSEd Maste int linux_setfsuid(struct thread *, struct linux_setfsuid_args *); 12275f2336efSEd Maste int linux_setfsgid(struct thread *, struct linux_setfsgid_args *); 12285f2336efSEd Maste int linux_times(struct thread *, struct linux_times_args *); 12295f2336efSEd Maste int linux_getsid(struct thread *, struct linux_getsid_args *); 12305f2336efSEd Maste int linux_getgroups(struct thread *, struct linux_getgroups_args *); 12315f2336efSEd Maste int linux_setgroups(struct thread *, struct linux_setgroups_args *); 12325f2336efSEd Maste int linux_newuname(struct thread *, struct linux_newuname_args *); 12335f2336efSEd Maste int linux_sethostname(struct thread *, struct linux_sethostname_args *); 12345f2336efSEd Maste int linux_setdomainname(struct thread *, struct linux_setdomainname_args *); 12355f2336efSEd Maste int linux_getrlimit(struct thread *, struct linux_getrlimit_args *); 12365f2336efSEd Maste int linux_setrlimit(struct thread *, struct linux_setrlimit_args *); 12375f2336efSEd Maste int linux_prctl(struct thread *, struct linux_prctl_args *); 12385f2336efSEd Maste int linux_getcpu(struct thread *, struct linux_getcpu_args *); 12395f2336efSEd Maste int linux_adjtimex(struct thread *, struct linux_adjtimex_args *); 12405f2336efSEd Maste int linux_getpid(struct thread *, struct linux_getpid_args *); 12415f2336efSEd Maste int linux_getppid(struct thread *, struct linux_getppid_args *); 12425f2336efSEd Maste int linux_getuid(struct thread *, struct linux_getuid_args *); 12435f2336efSEd Maste int linux_getgid(struct thread *, struct linux_getgid_args *); 12445f2336efSEd Maste int linux_gettid(struct thread *, struct linux_gettid_args *); 12455f2336efSEd Maste int linux_sysinfo(struct thread *, struct linux_sysinfo_args *); 12465f2336efSEd Maste int linux_mq_open(struct thread *, struct linux_mq_open_args *); 12475f2336efSEd Maste int linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *); 12485f2336efSEd Maste int linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *); 12495f2336efSEd Maste int linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *); 12505f2336efSEd Maste int linux_mq_notify(struct thread *, struct linux_mq_notify_args *); 12515f2336efSEd Maste int linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *); 12525f2336efSEd Maste int linux_msgget(struct thread *, struct linux_msgget_args *); 12535f2336efSEd Maste int linux_msgctl(struct thread *, struct linux_msgctl_args *); 12545f2336efSEd Maste int linux_msgrcv(struct thread *, struct linux_msgrcv_args *); 12555f2336efSEd Maste int linux_msgsnd(struct thread *, struct linux_msgsnd_args *); 12565f2336efSEd Maste int linux_semget(struct thread *, struct linux_semget_args *); 12575f2336efSEd Maste int linux_semctl(struct thread *, struct linux_semctl_args *); 12585f2336efSEd Maste int linux_semtimedop(struct thread *, struct linux_semtimedop_args *); 12595f2336efSEd Maste int linux_semop(struct thread *, struct linux_semop_args *); 12605f2336efSEd Maste int linux_shmget(struct thread *, struct linux_shmget_args *); 12615f2336efSEd Maste int linux_shmctl(struct thread *, struct linux_shmctl_args *); 12625f2336efSEd Maste int linux_shmat(struct thread *, struct linux_shmat_args *); 12635f2336efSEd Maste int linux_shmdt(struct thread *, struct linux_shmdt_args *); 12645f2336efSEd Maste int linux_socket(struct thread *, struct linux_socket_args *); 12655f2336efSEd Maste int linux_socketpair(struct thread *, struct linux_socketpair_args *); 12665f2336efSEd Maste int linux_bind(struct thread *, struct linux_bind_args *); 12675f2336efSEd Maste int linux_listen(struct thread *, struct linux_listen_args *); 12685f2336efSEd Maste int linux_accept(struct thread *, struct linux_accept_args *); 12695f2336efSEd Maste int linux_connect(struct thread *, struct linux_connect_args *); 12705f2336efSEd Maste int linux_getsockname(struct thread *, struct linux_getsockname_args *); 12715f2336efSEd Maste int linux_getpeername(struct thread *, struct linux_getpeername_args *); 12725f2336efSEd Maste int linux_sendto(struct thread *, struct linux_sendto_args *); 12735f2336efSEd Maste int linux_recvfrom(struct thread *, struct linux_recvfrom_args *); 12745f2336efSEd Maste int linux_setsockopt(struct thread *, struct linux_setsockopt_args *); 12755f2336efSEd Maste int linux_getsockopt(struct thread *, struct linux_getsockopt_args *); 12765f2336efSEd Maste int linux_shutdown(struct thread *, struct linux_shutdown_args *); 12775f2336efSEd Maste int linux_sendmsg(struct thread *, struct linux_sendmsg_args *); 12785f2336efSEd Maste int linux_recvmsg(struct thread *, struct linux_recvmsg_args *); 12795f2336efSEd Maste int linux_brk(struct thread *, struct linux_brk_args *); 12805f2336efSEd Maste int linux_mremap(struct thread *, struct linux_mremap_args *); 12815f2336efSEd Maste int linux_add_key(struct thread *, struct linux_add_key_args *); 12825f2336efSEd Maste int linux_request_key(struct thread *, struct linux_request_key_args *); 12835f2336efSEd Maste int linux_keyctl(struct thread *, struct linux_keyctl_args *); 12845f2336efSEd Maste int linux_clone(struct thread *, struct linux_clone_args *); 12855f2336efSEd Maste int linux_execve(struct thread *, struct linux_execve_args *); 12865f2336efSEd Maste int linux_mmap2(struct thread *, struct linux_mmap2_args *); 12875f2336efSEd Maste int linux_fadvise64(struct thread *, struct linux_fadvise64_args *); 12885f2336efSEd Maste int linux_swapoff(struct thread *, struct linux_swapoff_args *); 12895f2336efSEd Maste int linux_mprotect(struct thread *, struct linux_mprotect_args *); 12905f2336efSEd Maste int linux_msync(struct thread *, struct linux_msync_args *); 12915f2336efSEd Maste int linux_mincore(struct thread *, struct linux_mincore_args *); 1292bafd96b8SEdward Tomasz Napierala int linux_madvise(struct thread *, struct linux_madvise_args *); 12935f2336efSEd Maste int linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *); 12945f2336efSEd Maste int linux_mbind(struct thread *, struct linux_mbind_args *); 12955f2336efSEd Maste int linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *); 12965f2336efSEd Maste int linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *); 12975f2336efSEd Maste int linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *); 12985f2336efSEd Maste int linux_move_pages(struct thread *, struct linux_move_pages_args *); 12995f2336efSEd Maste int linux_rt_tgsigqueueinfo(struct thread *, struct linux_rt_tgsigqueueinfo_args *); 13005f2336efSEd Maste int linux_perf_event_open(struct thread *, struct linux_perf_event_open_args *); 13015f2336efSEd Maste int linux_accept4(struct thread *, struct linux_accept4_args *); 13025f2336efSEd Maste int linux_recvmmsg(struct thread *, struct linux_recvmmsg_args *); 13035f2336efSEd Maste int linux_wait4(struct thread *, struct linux_wait4_args *); 13045f2336efSEd Maste int linux_prlimit64(struct thread *, struct linux_prlimit64_args *); 13055f2336efSEd Maste int linux_fanotify_init(struct thread *, struct linux_fanotify_init_args *); 13065f2336efSEd Maste int linux_fanotify_mark(struct thread *, struct linux_fanotify_mark_args *); 13075f2336efSEd Maste int linux_name_to_handle_at(struct thread *, struct linux_name_to_handle_at_args *); 13085f2336efSEd Maste int linux_open_by_handle_at(struct thread *, struct linux_open_by_handle_at_args *); 13095f2336efSEd Maste int linux_clock_adjtime(struct thread *, struct linux_clock_adjtime_args *); 13105f2336efSEd Maste int linux_syncfs(struct thread *, struct linux_syncfs_args *); 13115f2336efSEd Maste int linux_setns(struct thread *, struct linux_setns_args *); 13125f2336efSEd Maste int linux_sendmmsg(struct thread *, struct linux_sendmmsg_args *); 13135f2336efSEd Maste int linux_process_vm_readv(struct thread *, struct linux_process_vm_readv_args *); 13145f2336efSEd Maste int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args *); 13155f2336efSEd Maste int linux_kcmp(struct thread *, struct linux_kcmp_args *); 13165f2336efSEd Maste int linux_finit_module(struct thread *, struct linux_finit_module_args *); 13175f2336efSEd Maste int linux_sched_setattr(struct thread *, struct linux_sched_setattr_args *); 13185f2336efSEd Maste int linux_sched_getattr(struct thread *, struct linux_sched_getattr_args *); 13195f2336efSEd Maste int linux_renameat2(struct thread *, struct linux_renameat2_args *); 13205f2336efSEd Maste int linux_seccomp(struct thread *, struct linux_seccomp_args *); 13215f2336efSEd Maste int linux_getrandom(struct thread *, struct linux_getrandom_args *); 13225f2336efSEd Maste int linux_memfd_create(struct thread *, struct linux_memfd_create_args *); 13235f2336efSEd Maste int linux_bpf(struct thread *, struct linux_bpf_args *); 13245f2336efSEd Maste int linux_execveat(struct thread *, struct linux_execveat_args *); 13255f2336efSEd Maste int linux_userfaultfd(struct thread *, struct linux_userfaultfd_args *); 13265f2336efSEd Maste int linux_membarrier(struct thread *, struct linux_membarrier_args *); 13275f2336efSEd Maste int linux_mlock2(struct thread *, struct linux_mlock2_args *); 13285f2336efSEd Maste int linux_copy_file_range(struct thread *, struct linux_copy_file_range_args *); 13295f2336efSEd Maste int linux_preadv2(struct thread *, struct linux_preadv2_args *); 13305f2336efSEd Maste int linux_pwritev2(struct thread *, struct linux_pwritev2_args *); 13315f2336efSEd Maste int linux_pkey_mprotect(struct thread *, struct linux_pkey_mprotect_args *); 13325f2336efSEd Maste int linux_pkey_alloc(struct thread *, struct linux_pkey_alloc_args *); 13335f2336efSEd Maste int linux_pkey_free(struct thread *, struct linux_pkey_free_args *); 13345f2336efSEd Maste 13355f2336efSEd Maste #ifdef COMPAT_43 13365f2336efSEd Maste 13375f2336efSEd Maste #define nosys linux_nosys 13385f2336efSEd Maste 13395f2336efSEd Maste #endif /* COMPAT_43 */ 13405f2336efSEd Maste 13415f2336efSEd Maste 13425f2336efSEd Maste #ifdef COMPAT_FREEBSD4 13435f2336efSEd Maste 13445f2336efSEd Maste #define nosys linux_nosys 13455f2336efSEd Maste 13465f2336efSEd Maste #endif /* COMPAT_FREEBSD4 */ 13475f2336efSEd Maste 13485f2336efSEd Maste 13495f2336efSEd Maste #ifdef COMPAT_FREEBSD6 13505f2336efSEd Maste 13515f2336efSEd Maste #define nosys linux_nosys 13525f2336efSEd Maste 13535f2336efSEd Maste #endif /* COMPAT_FREEBSD6 */ 13545f2336efSEd Maste 13555f2336efSEd Maste 13565f2336efSEd Maste #ifdef COMPAT_FREEBSD7 13575f2336efSEd Maste 13585f2336efSEd Maste #define nosys linux_nosys 13595f2336efSEd Maste 13605f2336efSEd Maste #endif /* COMPAT_FREEBSD7 */ 13615f2336efSEd Maste 13625f2336efSEd Maste 13635f2336efSEd Maste #ifdef COMPAT_FREEBSD10 13645f2336efSEd Maste 13655f2336efSEd Maste #define nosys linux_nosys 13665f2336efSEd Maste 13675f2336efSEd Maste #endif /* COMPAT_FREEBSD10 */ 13685f2336efSEd Maste 13695f2336efSEd Maste 13705f2336efSEd Maste #ifdef COMPAT_FREEBSD11 13715f2336efSEd Maste 13725f2336efSEd Maste #define nosys linux_nosys 13735f2336efSEd Maste 13745f2336efSEd Maste #endif /* COMPAT_FREEBSD11 */ 13755f2336efSEd Maste 1376d19f028eSKyle Evans 1377d19f028eSKyle Evans #ifdef COMPAT_FREEBSD12 1378d19f028eSKyle Evans 1379d19f028eSKyle Evans #define nosys linux_nosys 1380d19f028eSKyle Evans 1381d19f028eSKyle Evans #endif /* COMPAT_FREEBSD12 */ 1382d19f028eSKyle Evans 13835f2336efSEd Maste #define LINUX_SYS_AUE_linux_setxattr AUE_NULL 13845f2336efSEd Maste #define LINUX_SYS_AUE_linux_lsetxattr AUE_NULL 13855f2336efSEd Maste #define LINUX_SYS_AUE_linux_fsetxattr AUE_NULL 13865f2336efSEd Maste #define LINUX_SYS_AUE_linux_getxattr AUE_NULL 13875f2336efSEd Maste #define LINUX_SYS_AUE_linux_lgetxattr AUE_NULL 13885f2336efSEd Maste #define LINUX_SYS_AUE_linux_fgetxattr AUE_NULL 13895f2336efSEd Maste #define LINUX_SYS_AUE_linux_listxattr AUE_NULL 13905f2336efSEd Maste #define LINUX_SYS_AUE_linux_llistxattr AUE_NULL 13915f2336efSEd Maste #define LINUX_SYS_AUE_linux_flistxattr AUE_NULL 13925f2336efSEd Maste #define LINUX_SYS_AUE_linux_removexattr AUE_NULL 13935f2336efSEd Maste #define LINUX_SYS_AUE_linux_lremovexattr AUE_NULL 13945f2336efSEd Maste #define LINUX_SYS_AUE_linux_fremovexattr AUE_NULL 13955f2336efSEd Maste #define LINUX_SYS_AUE_linux_getcwd AUE_GETCWD 13965f2336efSEd Maste #define LINUX_SYS_AUE_linux_lookup_dcookie AUE_NULL 13975f2336efSEd Maste #define LINUX_SYS_AUE_linux_eventfd2 AUE_NULL 13985f2336efSEd Maste #define LINUX_SYS_AUE_linux_epoll_create1 AUE_NULL 13995f2336efSEd Maste #define LINUX_SYS_AUE_linux_epoll_ctl AUE_NULL 14005f2336efSEd Maste #define LINUX_SYS_AUE_linux_epoll_pwait AUE_NULL 14015f2336efSEd Maste #define LINUX_SYS_AUE_linux_dup3 AUE_NULL 14025f2336efSEd Maste #define LINUX_SYS_AUE_linux_fcntl AUE_FCNTL 14035f2336efSEd Maste #define LINUX_SYS_AUE_linux_inotify_init1 AUE_NULL 14045f2336efSEd Maste #define LINUX_SYS_AUE_linux_inotify_add_watch AUE_NULL 14055f2336efSEd Maste #define LINUX_SYS_AUE_linux_inotify_rm_watch AUE_NULL 14065f2336efSEd Maste #define LINUX_SYS_AUE_linux_ioctl AUE_IOCTL 14075f2336efSEd Maste #define LINUX_SYS_AUE_linux_ioprio_set AUE_NULL 14085f2336efSEd Maste #define LINUX_SYS_AUE_linux_ioprio_get AUE_NULL 14095f2336efSEd Maste #define LINUX_SYS_AUE_linux_mknodat AUE_MKNODAT 14105f2336efSEd Maste #define LINUX_SYS_AUE_linux_mkdirat AUE_MKDIRAT 14115f2336efSEd Maste #define LINUX_SYS_AUE_linux_unlinkat AUE_UNLINKAT 14125f2336efSEd Maste #define LINUX_SYS_AUE_linux_symlinkat AUE_SYMLINKAT 14135f2336efSEd Maste #define LINUX_SYS_AUE_linux_linkat AUE_LINKAT 14145f2336efSEd Maste #define LINUX_SYS_AUE_linux_renameat AUE_RENAMEAT 14155f2336efSEd Maste #define LINUX_SYS_AUE_linux_mount AUE_MOUNT 14165f2336efSEd Maste #define LINUX_SYS_AUE_linux_pivot_root AUE_PIVOT_ROOT 14175f2336efSEd Maste #define LINUX_SYS_AUE_linux_statfs AUE_STATFS 14185f2336efSEd Maste #define LINUX_SYS_AUE_linux_fstatfs AUE_FSTATFS 14195f2336efSEd Maste #define LINUX_SYS_AUE_linux_truncate AUE_TRUNCATE 14205f2336efSEd Maste #define LINUX_SYS_AUE_linux_ftruncate AUE_FTRUNCATE 14215f2336efSEd Maste #define LINUX_SYS_AUE_linux_fallocate AUE_NULL 14225f2336efSEd Maste #define LINUX_SYS_AUE_linux_faccessat AUE_FACCESSAT 14235f2336efSEd Maste #define LINUX_SYS_AUE_linux_chdir AUE_CHDIR 14245f2336efSEd Maste #define LINUX_SYS_AUE_linux_fchmodat AUE_FCHMODAT 14255f2336efSEd Maste #define LINUX_SYS_AUE_linux_fchownat AUE_FCHOWNAT 14265f2336efSEd Maste #define LINUX_SYS_AUE_linux_openat AUE_OPEN_RWTC 14275f2336efSEd Maste #define LINUX_SYS_AUE_linux_vhangup AUE_NULL 14285f2336efSEd Maste #define LINUX_SYS_AUE_linux_pipe2 AUE_NULL 14295f2336efSEd Maste #define LINUX_SYS_AUE_linux_getdents64 AUE_GETDIRENTRIES 14305f2336efSEd Maste #define LINUX_SYS_AUE_linux_lseek AUE_LSEEK 14315f2336efSEd Maste #define LINUX_SYS_AUE_linux_pread AUE_PREAD 14325f2336efSEd Maste #define LINUX_SYS_AUE_linux_pwrite AUE_PWRITE 14335f2336efSEd Maste #define LINUX_SYS_AUE_linux_preadv AUE_NULL 14345f2336efSEd Maste #define LINUX_SYS_AUE_linux_pwritev AUE_NULL 14355f2336efSEd Maste #define LINUX_SYS_AUE_linux_sendfile AUE_SENDFILE 14365f2336efSEd Maste #define LINUX_SYS_AUE_linux_pselect6 AUE_SELECT 14375f2336efSEd Maste #define LINUX_SYS_AUE_linux_ppoll AUE_POLL 14385f2336efSEd Maste #define LINUX_SYS_AUE_linux_signalfd4 AUE_NULL 14395f2336efSEd Maste #define LINUX_SYS_AUE_linux_vmsplice AUE_NULL 14405f2336efSEd Maste #define LINUX_SYS_AUE_linux_splice AUE_NULL 14415f2336efSEd Maste #define LINUX_SYS_AUE_linux_tee AUE_NULL 14425f2336efSEd Maste #define LINUX_SYS_AUE_linux_readlinkat AUE_READLINKAT 14435f2336efSEd Maste #define LINUX_SYS_AUE_linux_newfstatat AUE_FSTATAT 14445f2336efSEd Maste #define LINUX_SYS_AUE_linux_newfstat AUE_FSTAT 14455f2336efSEd Maste #define LINUX_SYS_AUE_linux_fdatasync AUE_NULL 14465f2336efSEd Maste #define LINUX_SYS_AUE_linux_sync_file_range AUE_NULL 14475f2336efSEd Maste #define LINUX_SYS_AUE_linux_timerfd_create AUE_NULL 14485f2336efSEd Maste #define LINUX_SYS_AUE_linux_timerfd_settime AUE_NULL 14495f2336efSEd Maste #define LINUX_SYS_AUE_linux_timerfd_gettime AUE_NULL 14505f2336efSEd Maste #define LINUX_SYS_AUE_linux_utimensat AUE_FUTIMESAT 14515f2336efSEd Maste #define LINUX_SYS_AUE_linux_capget AUE_CAPGET 14525f2336efSEd Maste #define LINUX_SYS_AUE_linux_capset AUE_CAPSET 14535f2336efSEd Maste #define LINUX_SYS_AUE_linux_personality AUE_PERSONALITY 14545f2336efSEd Maste #define LINUX_SYS_AUE_linux_exit AUE_EXIT 14555f2336efSEd Maste #define LINUX_SYS_AUE_linux_exit_group AUE_EXIT 14565f2336efSEd Maste #define LINUX_SYS_AUE_linux_waitid AUE_WAIT6 14575f2336efSEd Maste #define LINUX_SYS_AUE_linux_set_tid_address AUE_NULL 14585f2336efSEd Maste #define LINUX_SYS_AUE_linux_unshare AUE_NULL 14595f2336efSEd Maste #define LINUX_SYS_AUE_linux_sys_futex AUE_NULL 14605f2336efSEd Maste #define LINUX_SYS_AUE_linux_set_robust_list AUE_NULL 14615f2336efSEd Maste #define LINUX_SYS_AUE_linux_get_robust_list AUE_NULL 14625f2336efSEd Maste #define LINUX_SYS_AUE_linux_nanosleep AUE_NULL 14635f2336efSEd Maste #define LINUX_SYS_AUE_linux_getitimer AUE_GETITIMER 14645f2336efSEd Maste #define LINUX_SYS_AUE_linux_setitimer AUE_SETITIMER 14655f2336efSEd Maste #define LINUX_SYS_AUE_linux_kexec_load AUE_NULL 14665f2336efSEd Maste #define LINUX_SYS_AUE_linux_init_module AUE_NULL 14675f2336efSEd Maste #define LINUX_SYS_AUE_linux_delete_module AUE_NULL 14685f2336efSEd Maste #define LINUX_SYS_AUE_linux_timer_create AUE_NULL 14695f2336efSEd Maste #define LINUX_SYS_AUE_linux_timer_gettime AUE_NULL 14705f2336efSEd Maste #define LINUX_SYS_AUE_linux_timer_getoverrun AUE_NULL 14715f2336efSEd Maste #define LINUX_SYS_AUE_linux_timer_settime AUE_NULL 14725f2336efSEd Maste #define LINUX_SYS_AUE_linux_timer_delete AUE_NULL 14735f2336efSEd Maste #define LINUX_SYS_AUE_linux_clock_settime AUE_CLOCK_SETTIME 14745f2336efSEd Maste #define LINUX_SYS_AUE_linux_clock_gettime AUE_NULL 14755f2336efSEd Maste #define LINUX_SYS_AUE_linux_clock_getres AUE_NULL 14765f2336efSEd Maste #define LINUX_SYS_AUE_linux_clock_nanosleep AUE_NULL 14775f2336efSEd Maste #define LINUX_SYS_AUE_linux_syslog AUE_NULL 14785f2336efSEd Maste #define LINUX_SYS_AUE_linux_ptrace AUE_PTRACE 14795f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_setparam AUE_SCHED_SETPARAM 14805f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_setscheduler AUE_SCHED_SETSCHEDULER 14815f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_getscheduler AUE_SCHED_GETSCHEDULER 14825f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_getparam AUE_SCHED_GETPARAM 14835f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_setaffinity AUE_NULL 14845f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_getaffinity AUE_NULL 14855f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_get_priority_max AUE_SCHED_GET_PRIORITY_MAX 14865f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_get_priority_min AUE_SCHED_GET_PRIORITY_MIN 14875f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_rr_get_interval AUE_SCHED_RR_GET_INTERVAL 14885f2336efSEd Maste #define LINUX_SYS_AUE_linux_kill AUE_KILL 14895f2336efSEd Maste #define LINUX_SYS_AUE_linux_tkill AUE_NULL 14905f2336efSEd Maste #define LINUX_SYS_AUE_linux_tgkill AUE_NULL 14915f2336efSEd Maste #define LINUX_SYS_AUE_linux_sigaltstack AUE_NULL 14925f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigsuspend AUE_NULL 14935f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigaction AUE_NULL 14945f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigprocmask AUE_NULL 14955f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigpending AUE_NULL 14965f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigtimedwait AUE_NULL 14975f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigqueueinfo AUE_NULL 14985f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_sigreturn AUE_NULL 14995f2336efSEd Maste #define LINUX_SYS_AUE_linux_getpriority AUE_GETPRIORITY 15005f2336efSEd Maste #define LINUX_SYS_AUE_linux_reboot AUE_REBOOT 15015f2336efSEd Maste #define LINUX_SYS_AUE_linux_setfsuid AUE_SETFSUID 15025f2336efSEd Maste #define LINUX_SYS_AUE_linux_setfsgid AUE_SETFSGID 15035f2336efSEd Maste #define LINUX_SYS_AUE_linux_times AUE_NULL 15045f2336efSEd Maste #define LINUX_SYS_AUE_linux_getsid AUE_GETSID 15055f2336efSEd Maste #define LINUX_SYS_AUE_linux_getgroups AUE_GETGROUPS 15065f2336efSEd Maste #define LINUX_SYS_AUE_linux_setgroups AUE_SETGROUPS 15075f2336efSEd Maste #define LINUX_SYS_AUE_linux_newuname AUE_NULL 15085f2336efSEd Maste #define LINUX_SYS_AUE_linux_sethostname AUE_SYSCTL 15095f2336efSEd Maste #define LINUX_SYS_AUE_linux_setdomainname AUE_SYSCTL 15105f2336efSEd Maste #define LINUX_SYS_AUE_linux_getrlimit AUE_GETRLIMIT 15115f2336efSEd Maste #define LINUX_SYS_AUE_linux_setrlimit AUE_SETRLIMIT 15125f2336efSEd Maste #define LINUX_SYS_AUE_linux_prctl AUE_PRCTL 15135f2336efSEd Maste #define LINUX_SYS_AUE_linux_getcpu AUE_NULL 15145f2336efSEd Maste #define LINUX_SYS_AUE_linux_adjtimex AUE_ADJTIME 15155f2336efSEd Maste #define LINUX_SYS_AUE_linux_getpid AUE_GETPID 15165f2336efSEd Maste #define LINUX_SYS_AUE_linux_getppid AUE_GETPPID 15175f2336efSEd Maste #define LINUX_SYS_AUE_linux_getuid AUE_GETUID 15185f2336efSEd Maste #define LINUX_SYS_AUE_linux_getgid AUE_GETGID 15195f2336efSEd Maste #define LINUX_SYS_AUE_linux_gettid AUE_NULL 15205f2336efSEd Maste #define LINUX_SYS_AUE_linux_sysinfo AUE_NULL 15215f2336efSEd Maste #define LINUX_SYS_AUE_linux_mq_open AUE_NULL 15225f2336efSEd Maste #define LINUX_SYS_AUE_linux_mq_unlink AUE_NULL 15235f2336efSEd Maste #define LINUX_SYS_AUE_linux_mq_timedsend AUE_NULL 15245f2336efSEd Maste #define LINUX_SYS_AUE_linux_mq_timedreceive AUE_NULL 15255f2336efSEd Maste #define LINUX_SYS_AUE_linux_mq_notify AUE_NULL 15265f2336efSEd Maste #define LINUX_SYS_AUE_linux_mq_getsetattr AUE_NULL 15275f2336efSEd Maste #define LINUX_SYS_AUE_linux_msgget AUE_NULL 15285f2336efSEd Maste #define LINUX_SYS_AUE_linux_msgctl AUE_NULL 15295f2336efSEd Maste #define LINUX_SYS_AUE_linux_msgrcv AUE_NULL 15305f2336efSEd Maste #define LINUX_SYS_AUE_linux_msgsnd AUE_NULL 15315f2336efSEd Maste #define LINUX_SYS_AUE_linux_semget AUE_NULL 15325f2336efSEd Maste #define LINUX_SYS_AUE_linux_semctl AUE_NULL 15335f2336efSEd Maste #define LINUX_SYS_AUE_linux_semtimedop AUE_NULL 15345f2336efSEd Maste #define LINUX_SYS_AUE_linux_semop AUE_NULL 15355f2336efSEd Maste #define LINUX_SYS_AUE_linux_shmget AUE_NULL 15365f2336efSEd Maste #define LINUX_SYS_AUE_linux_shmctl AUE_NULL 15375f2336efSEd Maste #define LINUX_SYS_AUE_linux_shmat AUE_NULL 15385f2336efSEd Maste #define LINUX_SYS_AUE_linux_shmdt AUE_NULL 15395f2336efSEd Maste #define LINUX_SYS_AUE_linux_socket AUE_SOCKET 15405f2336efSEd Maste #define LINUX_SYS_AUE_linux_socketpair AUE_SOCKETPAIR 15415f2336efSEd Maste #define LINUX_SYS_AUE_linux_bind AUE_BIND 15425f2336efSEd Maste #define LINUX_SYS_AUE_linux_listen AUE_LISTEN 15435f2336efSEd Maste #define LINUX_SYS_AUE_linux_accept AUE_ACCEPT 15445f2336efSEd Maste #define LINUX_SYS_AUE_linux_connect AUE_CONNECT 15455f2336efSEd Maste #define LINUX_SYS_AUE_linux_getsockname AUE_GETSOCKNAME 15465f2336efSEd Maste #define LINUX_SYS_AUE_linux_getpeername AUE_GETPEERNAME 15475f2336efSEd Maste #define LINUX_SYS_AUE_linux_sendto AUE_SENDTO 15485f2336efSEd Maste #define LINUX_SYS_AUE_linux_recvfrom AUE_RECVFROM 15495f2336efSEd Maste #define LINUX_SYS_AUE_linux_setsockopt AUE_SETSOCKOPT 15505f2336efSEd Maste #define LINUX_SYS_AUE_linux_getsockopt AUE_GETSOCKOPT 15515f2336efSEd Maste #define LINUX_SYS_AUE_linux_shutdown AUE_NULL 15525f2336efSEd Maste #define LINUX_SYS_AUE_linux_sendmsg AUE_SENDMSG 15535f2336efSEd Maste #define LINUX_SYS_AUE_linux_recvmsg AUE_RECVMSG 15545f2336efSEd Maste #define LINUX_SYS_AUE_linux_brk AUE_NULL 15555f2336efSEd Maste #define LINUX_SYS_AUE_linux_mremap AUE_NULL 15565f2336efSEd Maste #define LINUX_SYS_AUE_linux_add_key AUE_NULL 15575f2336efSEd Maste #define LINUX_SYS_AUE_linux_request_key AUE_NULL 15585f2336efSEd Maste #define LINUX_SYS_AUE_linux_keyctl AUE_NULL 15595f2336efSEd Maste #define LINUX_SYS_AUE_linux_clone AUE_RFORK 15605f2336efSEd Maste #define LINUX_SYS_AUE_linux_execve AUE_EXECVE 15615f2336efSEd Maste #define LINUX_SYS_AUE_linux_mmap2 AUE_MMAP 15625f2336efSEd Maste #define LINUX_SYS_AUE_linux_fadvise64 AUE_NULL 15635f2336efSEd Maste #define LINUX_SYS_AUE_linux_swapoff AUE_SWAPOFF 15645f2336efSEd Maste #define LINUX_SYS_AUE_linux_mprotect AUE_MPROTECT 15655f2336efSEd Maste #define LINUX_SYS_AUE_linux_msync AUE_MSYNC 15665f2336efSEd Maste #define LINUX_SYS_AUE_linux_mincore AUE_MINCORE 1567bafd96b8SEdward Tomasz Napierala #define LINUX_SYS_AUE_linux_madvise AUE_MADVISE 15685f2336efSEd Maste #define LINUX_SYS_AUE_linux_remap_file_pages AUE_NULL 15695f2336efSEd Maste #define LINUX_SYS_AUE_linux_mbind AUE_NULL 15705f2336efSEd Maste #define LINUX_SYS_AUE_linux_get_mempolicy AUE_NULL 15715f2336efSEd Maste #define LINUX_SYS_AUE_linux_set_mempolicy AUE_NULL 15725f2336efSEd Maste #define LINUX_SYS_AUE_linux_migrate_pages AUE_NULL 15735f2336efSEd Maste #define LINUX_SYS_AUE_linux_move_pages AUE_NULL 15745f2336efSEd Maste #define LINUX_SYS_AUE_linux_rt_tgsigqueueinfo AUE_NULL 15755f2336efSEd Maste #define LINUX_SYS_AUE_linux_perf_event_open AUE_NULL 15765f2336efSEd Maste #define LINUX_SYS_AUE_linux_accept4 AUE_ACCEPT 15775f2336efSEd Maste #define LINUX_SYS_AUE_linux_recvmmsg AUE_NULL 15785f2336efSEd Maste #define LINUX_SYS_AUE_linux_wait4 AUE_WAIT4 15795f2336efSEd Maste #define LINUX_SYS_AUE_linux_prlimit64 AUE_NULL 15805f2336efSEd Maste #define LINUX_SYS_AUE_linux_fanotify_init AUE_NULL 15815f2336efSEd Maste #define LINUX_SYS_AUE_linux_fanotify_mark AUE_NULL 15825f2336efSEd Maste #define LINUX_SYS_AUE_linux_name_to_handle_at AUE_NULL 15835f2336efSEd Maste #define LINUX_SYS_AUE_linux_open_by_handle_at AUE_NULL 15845f2336efSEd Maste #define LINUX_SYS_AUE_linux_clock_adjtime AUE_NULL 15855f2336efSEd Maste #define LINUX_SYS_AUE_linux_syncfs AUE_SYNC 15865f2336efSEd Maste #define LINUX_SYS_AUE_linux_setns AUE_NULL 15875f2336efSEd Maste #define LINUX_SYS_AUE_linux_sendmmsg AUE_NULL 15885f2336efSEd Maste #define LINUX_SYS_AUE_linux_process_vm_readv AUE_NULL 15895f2336efSEd Maste #define LINUX_SYS_AUE_linux_process_vm_writev AUE_NULL 15905f2336efSEd Maste #define LINUX_SYS_AUE_linux_kcmp AUE_NULL 15915f2336efSEd Maste #define LINUX_SYS_AUE_linux_finit_module AUE_NULL 15925f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_setattr AUE_NULL 15935f2336efSEd Maste #define LINUX_SYS_AUE_linux_sched_getattr AUE_NULL 15945f2336efSEd Maste #define LINUX_SYS_AUE_linux_renameat2 AUE_NULL 15955f2336efSEd Maste #define LINUX_SYS_AUE_linux_seccomp AUE_NULL 15965f2336efSEd Maste #define LINUX_SYS_AUE_linux_getrandom AUE_NULL 15975f2336efSEd Maste #define LINUX_SYS_AUE_linux_memfd_create AUE_NULL 15985f2336efSEd Maste #define LINUX_SYS_AUE_linux_bpf AUE_NULL 15995f2336efSEd Maste #define LINUX_SYS_AUE_linux_execveat AUE_NULL 16005f2336efSEd Maste #define LINUX_SYS_AUE_linux_userfaultfd AUE_NULL 16015f2336efSEd Maste #define LINUX_SYS_AUE_linux_membarrier AUE_NULL 16025f2336efSEd Maste #define LINUX_SYS_AUE_linux_mlock2 AUE_NULL 16035f2336efSEd Maste #define LINUX_SYS_AUE_linux_copy_file_range AUE_NULL 16045f2336efSEd Maste #define LINUX_SYS_AUE_linux_preadv2 AUE_NULL 16055f2336efSEd Maste #define LINUX_SYS_AUE_linux_pwritev2 AUE_NULL 16065f2336efSEd Maste #define LINUX_SYS_AUE_linux_pkey_mprotect AUE_NULL 16075f2336efSEd Maste #define LINUX_SYS_AUE_linux_pkey_alloc AUE_NULL 16085f2336efSEd Maste #define LINUX_SYS_AUE_linux_pkey_free AUE_NULL 16095f2336efSEd Maste 16105f2336efSEd Maste #undef PAD_ 16115f2336efSEd Maste #undef PADL_ 16125f2336efSEd Maste #undef PADR_ 16135f2336efSEd Maste 16145f2336efSEd Maste #endif /* !_LINUX_SYSPROTO_H_ */ 1615