xref: /freebsd/sys/i386/linux/linux_proto.h (revision db612abe8df3355d1eb23bb3b50fdd97bc21e979)
1 /*
2  * System call prototypes.
3  *
4  * DO NOT EDIT-- this file is automatically generated.
5  * $FreeBSD$
6  * created from FreeBSD: src/sys/i386/linux/syscalls.master,v 1.92 2008/04/16 19:25:39 jkim Exp
7  */
8 
9 #ifndef _LINUX_SYSPROTO_H_
10 #define	_LINUX_SYSPROTO_H_
11 
12 #include <sys/signal.h>
13 #include <sys/acl.h>
14 #include <sys/cpuset.h>
15 #include <sys/_semaphore.h>
16 #include <sys/ucontext.h>
17 
18 #include <bsm/audit_kevents.h>
19 
20 struct proc;
21 
22 struct thread;
23 
24 #define	PAD_(t)	(sizeof(register_t) <= sizeof(t) ? \
25 		0 : sizeof(register_t) - sizeof(t))
26 
27 #if BYTE_ORDER == LITTLE_ENDIAN
28 #define	PADL_(t)	0
29 #define	PADR_(t)	PAD_(t)
30 #else
31 #define	PADL_(t)	PAD_(t)
32 #define	PADR_(t)	0
33 #endif
34 
35 #define	nosys	linux_nosys
36 struct linux_fork_args {
37 	register_t dummy;
38 };
39 struct linux_open_args {
40 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
41 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
42 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
43 };
44 struct linux_waitpid_args {
45 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
46 	char status_l_[PADL_(l_int *)]; l_int * status; char status_r_[PADR_(l_int *)];
47 	char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
48 };
49 struct linux_creat_args {
50 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
51 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
52 };
53 struct linux_link_args {
54 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
55 	char to_l_[PADL_(char *)]; char * to; char to_r_[PADR_(char *)];
56 };
57 struct linux_unlink_args {
58 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
59 };
60 struct linux_execve_args {
61 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
62 	char argp_l_[PADL_(char **)]; char ** argp; char argp_r_[PADR_(char **)];
63 	char envp_l_[PADL_(char **)]; char ** envp; char envp_r_[PADR_(char **)];
64 };
65 struct linux_chdir_args {
66 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
67 };
68 struct linux_time_args {
69 	char tm_l_[PADL_(l_time_t *)]; l_time_t * tm; char tm_r_[PADR_(l_time_t *)];
70 };
71 struct linux_mknod_args {
72 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
73 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
74 	char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
75 };
76 struct linux_chmod_args {
77 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
78 	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
79 };
80 struct linux_lchown16_args {
81 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
82 	char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
83 	char gid_l_[PADL_(l_gid16_t)]; l_gid16_t gid; char gid_r_[PADR_(l_gid16_t)];
84 };
85 struct linux_stat_args {
86 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
87 	char up_l_[PADL_(struct linux_stat *)]; struct linux_stat * up; char up_r_[PADR_(struct linux_stat *)];
88 };
89 struct linux_lseek_args {
90 	char fdes_l_[PADL_(l_uint)]; l_uint fdes; char fdes_r_[PADR_(l_uint)];
91 	char off_l_[PADL_(l_off_t)]; l_off_t off; char off_r_[PADR_(l_off_t)];
92 	char whence_l_[PADL_(l_int)]; l_int whence; char whence_r_[PADR_(l_int)];
93 };
94 struct linux_getpid_args {
95 	register_t dummy;
96 };
97 struct linux_mount_args {
98 	char specialfile_l_[PADL_(char *)]; char * specialfile; char specialfile_r_[PADR_(char *)];
99 	char dir_l_[PADL_(char *)]; char * dir; char dir_r_[PADR_(char *)];
100 	char filesystemtype_l_[PADL_(char *)]; char * filesystemtype; char filesystemtype_r_[PADR_(char *)];
101 	char rwflag_l_[PADL_(l_ulong)]; l_ulong rwflag; char rwflag_r_[PADR_(l_ulong)];
102 	char data_l_[PADL_(void *)]; void * data; char data_r_[PADR_(void *)];
103 };
104 struct linux_oldumount_args {
105 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
106 };
107 struct linux_setuid16_args {
108 	char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
109 };
110 struct linux_getuid16_args {
111 	register_t dummy;
112 };
113 struct linux_stime_args {
114 	register_t dummy;
115 };
116 struct linux_ptrace_args {
117 	char req_l_[PADL_(l_long)]; l_long req; char req_r_[PADR_(l_long)];
118 	char pid_l_[PADL_(l_long)]; l_long pid; char pid_r_[PADR_(l_long)];
119 	char addr_l_[PADL_(l_long)]; l_long addr; char addr_r_[PADR_(l_long)];
120 	char data_l_[PADL_(l_long)]; l_long data; char data_r_[PADR_(l_long)];
121 };
122 struct linux_alarm_args {
123 	char secs_l_[PADL_(l_uint)]; l_uint secs; char secs_r_[PADR_(l_uint)];
124 };
125 struct linux_fstat_args {
126 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
127 	char up_l_[PADL_(struct linux_stat *)]; struct linux_stat * up; char up_r_[PADR_(struct linux_stat *)];
128 };
129 struct linux_pause_args {
130 	register_t dummy;
131 };
132 struct linux_utime_args {
133 	char fname_l_[PADL_(char *)]; char * fname; char fname_r_[PADR_(char *)];
134 	char times_l_[PADL_(struct l_utimbuf *)]; struct l_utimbuf * times; char times_r_[PADR_(struct l_utimbuf *)];
135 };
136 struct linux_access_args {
137 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
138 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
139 };
140 struct linux_nice_args {
141 	char inc_l_[PADL_(l_int)]; l_int inc; char inc_r_[PADR_(l_int)];
142 };
143 struct linux_kill_args {
144 	char pid_l_[PADL_(l_int)]; l_int pid; char pid_r_[PADR_(l_int)];
145 	char signum_l_[PADL_(l_int)]; l_int signum; char signum_r_[PADR_(l_int)];
146 };
147 struct linux_rename_args {
148 	char from_l_[PADL_(char *)]; char * from; char from_r_[PADR_(char *)];
149 	char to_l_[PADL_(char *)]; char * to; char to_r_[PADR_(char *)];
150 };
151 struct linux_mkdir_args {
152 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
153 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
154 };
155 struct linux_rmdir_args {
156 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
157 };
158 struct linux_pipe_args {
159 	char pipefds_l_[PADL_(l_ulong *)]; l_ulong * pipefds; char pipefds_r_[PADR_(l_ulong *)];
160 };
161 struct linux_times_args {
162 	char buf_l_[PADL_(struct l_times_argv *)]; struct l_times_argv * buf; char buf_r_[PADR_(struct l_times_argv *)];
163 };
164 struct linux_brk_args {
165 	char dsend_l_[PADL_(l_ulong)]; l_ulong dsend; char dsend_r_[PADR_(l_ulong)];
166 };
167 struct linux_setgid16_args {
168 	char gid_l_[PADL_(l_gid16_t)]; l_gid16_t gid; char gid_r_[PADR_(l_gid16_t)];
169 };
170 struct linux_getgid16_args {
171 	register_t dummy;
172 };
173 struct linux_signal_args {
174 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
175 	char handler_l_[PADL_(l_handler_t)]; l_handler_t handler; char handler_r_[PADR_(l_handler_t)];
176 };
177 struct linux_geteuid16_args {
178 	register_t dummy;
179 };
180 struct linux_getegid16_args {
181 	register_t dummy;
182 };
183 struct linux_umount_args {
184 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
185 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
186 };
187 struct linux_ioctl_args {
188 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
189 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
190 	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
191 };
192 struct linux_fcntl_args {
193 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
194 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
195 	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
196 };
197 struct linux_olduname_args {
198 	register_t dummy;
199 };
200 struct linux_ustat_args {
201 	char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
202 	char ubuf_l_[PADL_(struct l_ustat *)]; struct l_ustat * ubuf; char ubuf_r_[PADR_(struct l_ustat *)];
203 };
204 struct linux_getppid_args {
205 	register_t dummy;
206 };
207 struct linux_sigaction_args {
208 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
209 	char nsa_l_[PADL_(l_osigaction_t *)]; l_osigaction_t * nsa; char nsa_r_[PADR_(l_osigaction_t *)];
210 	char osa_l_[PADL_(l_osigaction_t *)]; l_osigaction_t * osa; char osa_r_[PADR_(l_osigaction_t *)];
211 };
212 struct linux_sgetmask_args {
213 	register_t dummy;
214 };
215 struct linux_ssetmask_args {
216 	char mask_l_[PADL_(l_osigset_t)]; l_osigset_t mask; char mask_r_[PADR_(l_osigset_t)];
217 };
218 struct linux_setreuid16_args {
219 	char ruid_l_[PADL_(l_uid16_t)]; l_uid16_t ruid; char ruid_r_[PADR_(l_uid16_t)];
220 	char euid_l_[PADL_(l_uid16_t)]; l_uid16_t euid; char euid_r_[PADR_(l_uid16_t)];
221 };
222 struct linux_setregid16_args {
223 	char rgid_l_[PADL_(l_gid16_t)]; l_gid16_t rgid; char rgid_r_[PADR_(l_gid16_t)];
224 	char egid_l_[PADL_(l_gid16_t)]; l_gid16_t egid; char egid_r_[PADR_(l_gid16_t)];
225 };
226 struct linux_sigsuspend_args {
227 	char hist0_l_[PADL_(l_int)]; l_int hist0; char hist0_r_[PADR_(l_int)];
228 	char hist1_l_[PADL_(l_int)]; l_int hist1; char hist1_r_[PADR_(l_int)];
229 	char mask_l_[PADL_(l_osigset_t)]; l_osigset_t mask; char mask_r_[PADR_(l_osigset_t)];
230 };
231 struct linux_sigpending_args {
232 	char mask_l_[PADL_(l_osigset_t *)]; l_osigset_t * mask; char mask_r_[PADR_(l_osigset_t *)];
233 };
234 struct linux_sethostname_args {
235 	char hostname_l_[PADL_(char *)]; char * hostname; char hostname_r_[PADR_(char *)];
236 	char len_l_[PADL_(u_int)]; u_int len; char len_r_[PADR_(u_int)];
237 };
238 struct linux_setrlimit_args {
239 	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
240 	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
241 };
242 struct linux_old_getrlimit_args {
243 	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
244 	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
245 };
246 struct linux_getgroups16_args {
247 	char gidsetsize_l_[PADL_(l_uint)]; l_uint gidsetsize; char gidsetsize_r_[PADR_(l_uint)];
248 	char gidset_l_[PADL_(l_gid16_t *)]; l_gid16_t * gidset; char gidset_r_[PADR_(l_gid16_t *)];
249 };
250 struct linux_setgroups16_args {
251 	char gidsetsize_l_[PADL_(l_uint)]; l_uint gidsetsize; char gidsetsize_r_[PADR_(l_uint)];
252 	char gidset_l_[PADL_(l_gid16_t *)]; l_gid16_t * gidset; char gidset_r_[PADR_(l_gid16_t *)];
253 };
254 struct linux_old_select_args {
255 	char ptr_l_[PADL_(struct l_old_select_argv *)]; struct l_old_select_argv * ptr; char ptr_r_[PADR_(struct l_old_select_argv *)];
256 };
257 struct linux_symlink_args {
258 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
259 	char to_l_[PADL_(char *)]; char * to; char to_r_[PADR_(char *)];
260 };
261 struct linux_lstat_args {
262 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
263 	char up_l_[PADL_(struct ostat *)]; struct ostat * up; char up_r_[PADR_(struct ostat *)];
264 };
265 struct linux_readlink_args {
266 	char name_l_[PADL_(char *)]; char * name; char name_r_[PADR_(char *)];
267 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
268 	char count_l_[PADL_(l_int)]; l_int count; char count_r_[PADR_(l_int)];
269 };
270 struct linux_uselib_args {
271 	char library_l_[PADL_(char *)]; char * library; char library_r_[PADR_(char *)];
272 };
273 struct linux_reboot_args {
274 	char magic1_l_[PADL_(l_int)]; l_int magic1; char magic1_r_[PADR_(l_int)];
275 	char magic2_l_[PADL_(l_int)]; l_int magic2; char magic2_r_[PADR_(l_int)];
276 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
277 	char arg_l_[PADL_(void *)]; void * arg; char arg_r_[PADR_(void *)];
278 };
279 struct linux_readdir_args {
280 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
281 	char dent_l_[PADL_(struct l_dirent *)]; struct l_dirent * dent; char dent_r_[PADR_(struct l_dirent *)];
282 	char count_l_[PADL_(l_uint)]; l_uint count; char count_r_[PADR_(l_uint)];
283 };
284 struct linux_mmap_args {
285 	char ptr_l_[PADL_(struct l_mmap_argv *)]; struct l_mmap_argv * ptr; char ptr_r_[PADR_(struct l_mmap_argv *)];
286 };
287 struct linux_truncate_args {
288 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
289 	char length_l_[PADL_(l_ulong)]; l_ulong length; char length_r_[PADR_(l_ulong)];
290 };
291 struct linux_ftruncate_args {
292 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
293 	char length_l_[PADL_(long)]; long length; char length_r_[PADR_(long)];
294 };
295 struct linux_getpriority_args {
296 	char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
297 	char who_l_[PADL_(int)]; int who; char who_r_[PADR_(int)];
298 };
299 struct linux_statfs_args {
300 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
301 	char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)];
302 };
303 struct linux_fstatfs_args {
304 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
305 	char buf_l_[PADL_(struct l_statfs_buf *)]; struct l_statfs_buf * buf; char buf_r_[PADR_(struct l_statfs_buf *)];
306 };
307 struct linux_ioperm_args {
308 	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
309 	char length_l_[PADL_(l_ulong)]; l_ulong length; char length_r_[PADR_(l_ulong)];
310 	char enable_l_[PADL_(l_int)]; l_int enable; char enable_r_[PADR_(l_int)];
311 };
312 struct linux_socketcall_args {
313 	char what_l_[PADL_(l_int)]; l_int what; char what_r_[PADR_(l_int)];
314 	char args_l_[PADL_(l_ulong)]; l_ulong args; char args_r_[PADR_(l_ulong)];
315 };
316 struct linux_syslog_args {
317 	char type_l_[PADL_(l_int)]; l_int type; char type_r_[PADR_(l_int)];
318 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
319 	char len_l_[PADL_(l_int)]; l_int len; char len_r_[PADR_(l_int)];
320 };
321 struct linux_setitimer_args {
322 	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
323 	char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)];
324 	char oitv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * oitv; char oitv_r_[PADR_(struct l_itimerval *)];
325 };
326 struct linux_getitimer_args {
327 	char which_l_[PADL_(l_int)]; l_int which; char which_r_[PADR_(l_int)];
328 	char itv_l_[PADL_(struct l_itimerval *)]; struct l_itimerval * itv; char itv_r_[PADR_(struct l_itimerval *)];
329 };
330 struct linux_newstat_args {
331 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
332 	char buf_l_[PADL_(struct l_newstat *)]; struct l_newstat * buf; char buf_r_[PADR_(struct l_newstat *)];
333 };
334 struct linux_newlstat_args {
335 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
336 	char buf_l_[PADL_(struct l_newstat *)]; struct l_newstat * buf; char buf_r_[PADR_(struct l_newstat *)];
337 };
338 struct linux_newfstat_args {
339 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
340 	char buf_l_[PADL_(struct l_newstat *)]; struct l_newstat * buf; char buf_r_[PADR_(struct l_newstat *)];
341 };
342 struct linux_uname_args {
343 	register_t dummy;
344 };
345 struct linux_iopl_args {
346 	char level_l_[PADL_(l_ulong)]; l_ulong level; char level_r_[PADR_(l_ulong)];
347 };
348 struct linux_vhangup_args {
349 	register_t dummy;
350 };
351 struct linux_vm86old_args {
352 	register_t dummy;
353 };
354 struct linux_wait4_args {
355 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
356 	char status_l_[PADL_(l_uint *)]; l_uint * status; char status_r_[PADR_(l_uint *)];
357 	char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
358 	char rusage_l_[PADL_(struct l_rusage *)]; struct l_rusage * rusage; char rusage_r_[PADR_(struct l_rusage *)];
359 };
360 struct linux_swapoff_args {
361 	register_t dummy;
362 };
363 struct linux_sysinfo_args {
364 	char info_l_[PADL_(struct l_sysinfo *)]; struct l_sysinfo * info; char info_r_[PADR_(struct l_sysinfo *)];
365 };
366 struct linux_ipc_args {
367 	char what_l_[PADL_(l_uint)]; l_uint what; char what_r_[PADR_(l_uint)];
368 	char arg1_l_[PADL_(l_int)]; l_int arg1; char arg1_r_[PADR_(l_int)];
369 	char arg2_l_[PADL_(l_int)]; l_int arg2; char arg2_r_[PADR_(l_int)];
370 	char arg3_l_[PADL_(l_int)]; l_int arg3; char arg3_r_[PADR_(l_int)];
371 	char ptr_l_[PADL_(void *)]; void * ptr; char ptr_r_[PADR_(void *)];
372 	char arg5_l_[PADL_(l_long)]; l_long arg5; char arg5_r_[PADR_(l_long)];
373 };
374 struct linux_sigreturn_args {
375 	char sfp_l_[PADL_(struct l_sigframe *)]; struct l_sigframe * sfp; char sfp_r_[PADR_(struct l_sigframe *)];
376 };
377 struct linux_clone_args {
378 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
379 	char stack_l_[PADL_(void *)]; void * stack; char stack_r_[PADR_(void *)];
380 	char parent_tidptr_l_[PADL_(void *)]; void * parent_tidptr; char parent_tidptr_r_[PADR_(void *)];
381 	char dummy_l_[PADL_(int)]; int dummy; char dummy_r_[PADR_(int)];
382 	char child_tidptr_l_[PADL_(void *)]; void * child_tidptr; char child_tidptr_r_[PADR_(void *)];
383 };
384 struct linux_newuname_args {
385 	char buf_l_[PADL_(struct l_new_utsname *)]; struct l_new_utsname * buf; char buf_r_[PADR_(struct l_new_utsname *)];
386 };
387 struct linux_modify_ldt_args {
388 	char func_l_[PADL_(l_int)]; l_int func; char func_r_[PADR_(l_int)];
389 	char ptr_l_[PADL_(void *)]; void * ptr; char ptr_r_[PADR_(void *)];
390 	char bytecount_l_[PADL_(l_ulong)]; l_ulong bytecount; char bytecount_r_[PADR_(l_ulong)];
391 };
392 struct linux_adjtimex_args {
393 	register_t dummy;
394 };
395 struct linux_mprotect_args {
396 	char addr_l_[PADL_(caddr_t)]; caddr_t addr; char addr_r_[PADR_(caddr_t)];
397 	char len_l_[PADL_(int)]; int len; char len_r_[PADR_(int)];
398 	char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)];
399 };
400 struct linux_sigprocmask_args {
401 	char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)];
402 	char mask_l_[PADL_(l_osigset_t *)]; l_osigset_t * mask; char mask_r_[PADR_(l_osigset_t *)];
403 	char omask_l_[PADL_(l_osigset_t *)]; l_osigset_t * omask; char omask_r_[PADR_(l_osigset_t *)];
404 };
405 struct linux_create_module_args {
406 	register_t dummy;
407 };
408 struct linux_init_module_args {
409 	register_t dummy;
410 };
411 struct linux_delete_module_args {
412 	register_t dummy;
413 };
414 struct linux_get_kernel_syms_args {
415 	register_t dummy;
416 };
417 struct linux_quotactl_args {
418 	register_t dummy;
419 };
420 struct linux_bdflush_args {
421 	register_t dummy;
422 };
423 struct linux_sysfs_args {
424 	char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)];
425 	char arg1_l_[PADL_(l_ulong)]; l_ulong arg1; char arg1_r_[PADR_(l_ulong)];
426 	char arg2_l_[PADL_(l_ulong)]; l_ulong arg2; char arg2_r_[PADR_(l_ulong)];
427 };
428 struct linux_personality_args {
429 	char per_l_[PADL_(l_ulong)]; l_ulong per; char per_r_[PADR_(l_ulong)];
430 };
431 struct linux_setfsuid16_args {
432 	char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
433 };
434 struct linux_setfsgid16_args {
435 	char gid_l_[PADL_(l_gid16_t)]; l_gid16_t gid; char gid_r_[PADR_(l_gid16_t)];
436 };
437 struct linux_llseek_args {
438 	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
439 	char ohigh_l_[PADL_(l_ulong)]; l_ulong ohigh; char ohigh_r_[PADR_(l_ulong)];
440 	char olow_l_[PADL_(l_ulong)]; l_ulong olow; char olow_r_[PADR_(l_ulong)];
441 	char res_l_[PADL_(l_loff_t *)]; l_loff_t * res; char res_r_[PADR_(l_loff_t *)];
442 	char whence_l_[PADL_(l_uint)]; l_uint whence; char whence_r_[PADR_(l_uint)];
443 };
444 struct linux_getdents_args {
445 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
446 	char dent_l_[PADL_(void *)]; void * dent; char dent_r_[PADR_(void *)];
447 	char count_l_[PADL_(l_uint)]; l_uint count; char count_r_[PADR_(l_uint)];
448 };
449 struct linux_select_args {
450 	char nfds_l_[PADL_(l_int)]; l_int nfds; char nfds_r_[PADR_(l_int)];
451 	char readfds_l_[PADL_(l_fd_set *)]; l_fd_set * readfds; char readfds_r_[PADR_(l_fd_set *)];
452 	char writefds_l_[PADL_(l_fd_set *)]; l_fd_set * writefds; char writefds_r_[PADR_(l_fd_set *)];
453 	char exceptfds_l_[PADL_(l_fd_set *)]; l_fd_set * exceptfds; char exceptfds_r_[PADR_(l_fd_set *)];
454 	char timeout_l_[PADL_(struct l_timeval *)]; struct l_timeval * timeout; char timeout_r_[PADR_(struct l_timeval *)];
455 };
456 struct linux_msync_args {
457 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
458 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
459 	char fl_l_[PADL_(l_int)]; l_int fl; char fl_r_[PADR_(l_int)];
460 };
461 struct linux_getsid_args {
462 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
463 };
464 struct linux_fdatasync_args {
465 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
466 };
467 struct linux_sysctl_args {
468 	char args_l_[PADL_(struct l___sysctl_args *)]; struct l___sysctl_args * args; char args_r_[PADR_(struct l___sysctl_args *)];
469 };
470 struct linux_sched_setscheduler_args {
471 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
472 	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
473 	char param_l_[PADL_(struct l_sched_param *)]; struct l_sched_param * param; char param_r_[PADR_(struct l_sched_param *)];
474 };
475 struct linux_sched_getscheduler_args {
476 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
477 };
478 struct linux_sched_get_priority_max_args {
479 	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
480 };
481 struct linux_sched_get_priority_min_args {
482 	char policy_l_[PADL_(l_int)]; l_int policy; char policy_r_[PADR_(l_int)];
483 };
484 struct linux_nanosleep_args {
485 	char rqtp_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * rqtp; char rqtp_r_[PADR_(const struct l_timespec *)];
486 	char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
487 };
488 struct linux_mremap_args {
489 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
490 	char old_len_l_[PADL_(l_ulong)]; l_ulong old_len; char old_len_r_[PADR_(l_ulong)];
491 	char new_len_l_[PADL_(l_ulong)]; l_ulong new_len; char new_len_r_[PADR_(l_ulong)];
492 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
493 	char new_addr_l_[PADL_(l_ulong)]; l_ulong new_addr; char new_addr_r_[PADR_(l_ulong)];
494 };
495 struct linux_setresuid16_args {
496 	char ruid_l_[PADL_(l_uid16_t)]; l_uid16_t ruid; char ruid_r_[PADR_(l_uid16_t)];
497 	char euid_l_[PADL_(l_uid16_t)]; l_uid16_t euid; char euid_r_[PADR_(l_uid16_t)];
498 	char suid_l_[PADL_(l_uid16_t)]; l_uid16_t suid; char suid_r_[PADR_(l_uid16_t)];
499 };
500 struct linux_getresuid16_args {
501 	char ruid_l_[PADL_(l_uid16_t *)]; l_uid16_t * ruid; char ruid_r_[PADR_(l_uid16_t *)];
502 	char euid_l_[PADL_(l_uid16_t *)]; l_uid16_t * euid; char euid_r_[PADR_(l_uid16_t *)];
503 	char suid_l_[PADL_(l_uid16_t *)]; l_uid16_t * suid; char suid_r_[PADR_(l_uid16_t *)];
504 };
505 struct linux_vm86_args {
506 	register_t dummy;
507 };
508 struct linux_query_module_args {
509 	register_t dummy;
510 };
511 struct linux_nfsservctl_args {
512 	register_t dummy;
513 };
514 struct linux_setresgid16_args {
515 	char rgid_l_[PADL_(l_gid16_t)]; l_gid16_t rgid; char rgid_r_[PADR_(l_gid16_t)];
516 	char egid_l_[PADL_(l_gid16_t)]; l_gid16_t egid; char egid_r_[PADR_(l_gid16_t)];
517 	char sgid_l_[PADL_(l_gid16_t)]; l_gid16_t sgid; char sgid_r_[PADR_(l_gid16_t)];
518 };
519 struct linux_getresgid16_args {
520 	char rgid_l_[PADL_(l_gid16_t *)]; l_gid16_t * rgid; char rgid_r_[PADR_(l_gid16_t *)];
521 	char egid_l_[PADL_(l_gid16_t *)]; l_gid16_t * egid; char egid_r_[PADR_(l_gid16_t *)];
522 	char sgid_l_[PADL_(l_gid16_t *)]; l_gid16_t * sgid; char sgid_r_[PADR_(l_gid16_t *)];
523 };
524 struct linux_prctl_args {
525 	char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)];
526 	char arg2_l_[PADL_(l_int)]; l_int arg2; char arg2_r_[PADR_(l_int)];
527 	char arg3_l_[PADL_(l_int)]; l_int arg3; char arg3_r_[PADR_(l_int)];
528 	char arg4_l_[PADL_(l_int)]; l_int arg4; char arg4_r_[PADR_(l_int)];
529 	char arg5_l_[PADL_(l_int)]; l_int arg5; char arg5_r_[PADR_(l_int)];
530 };
531 struct linux_rt_sigreturn_args {
532 	char ucp_l_[PADL_(struct l_ucontext *)]; struct l_ucontext * ucp; char ucp_r_[PADR_(struct l_ucontext *)];
533 };
534 struct linux_rt_sigaction_args {
535 	char sig_l_[PADL_(l_int)]; l_int sig; char sig_r_[PADR_(l_int)];
536 	char act_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * act; char act_r_[PADR_(l_sigaction_t *)];
537 	char oact_l_[PADL_(l_sigaction_t *)]; l_sigaction_t * oact; char oact_r_[PADR_(l_sigaction_t *)];
538 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
539 };
540 struct linux_rt_sigprocmask_args {
541 	char how_l_[PADL_(l_int)]; l_int how; char how_r_[PADR_(l_int)];
542 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
543 	char omask_l_[PADL_(l_sigset_t *)]; l_sigset_t * omask; char omask_r_[PADR_(l_sigset_t *)];
544 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
545 };
546 struct linux_rt_sigpending_args {
547 	char set_l_[PADL_(l_sigset_t *)]; l_sigset_t * set; char set_r_[PADR_(l_sigset_t *)];
548 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
549 };
550 struct linux_rt_sigtimedwait_args {
551 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
552 	char ptr_l_[PADL_(l_siginfo_t *)]; l_siginfo_t * ptr; char ptr_r_[PADR_(l_siginfo_t *)];
553 	char timeout_l_[PADL_(struct l_timeval *)]; struct l_timeval * timeout; char timeout_r_[PADR_(struct l_timeval *)];
554 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
555 };
556 struct linux_rt_sigqueueinfo_args {
557 	register_t dummy;
558 };
559 struct linux_rt_sigsuspend_args {
560 	char newset_l_[PADL_(l_sigset_t *)]; l_sigset_t * newset; char newset_r_[PADR_(l_sigset_t *)];
561 	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
562 };
563 struct linux_pread_args {
564 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
565 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
566 	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
567 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
568 };
569 struct linux_pwrite_args {
570 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
571 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
572 	char nbyte_l_[PADL_(l_size_t)]; l_size_t nbyte; char nbyte_r_[PADR_(l_size_t)];
573 	char offset_l_[PADL_(l_loff_t)]; l_loff_t offset; char offset_r_[PADR_(l_loff_t)];
574 };
575 struct linux_chown16_args {
576 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
577 	char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
578 	char gid_l_[PADL_(l_gid16_t)]; l_gid16_t gid; char gid_r_[PADR_(l_gid16_t)];
579 };
580 struct linux_getcwd_args {
581 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
582 	char bufsize_l_[PADL_(l_ulong)]; l_ulong bufsize; char bufsize_r_[PADR_(l_ulong)];
583 };
584 struct linux_capget_args {
585 	register_t dummy;
586 };
587 struct linux_capset_args {
588 	register_t dummy;
589 };
590 struct linux_sigaltstack_args {
591 	char uss_l_[PADL_(l_stack_t *)]; l_stack_t * uss; char uss_r_[PADR_(l_stack_t *)];
592 	char uoss_l_[PADL_(l_stack_t *)]; l_stack_t * uoss; char uoss_r_[PADR_(l_stack_t *)];
593 };
594 struct linux_sendfile_args {
595 	register_t dummy;
596 };
597 struct linux_vfork_args {
598 	register_t dummy;
599 };
600 struct linux_getrlimit_args {
601 	char resource_l_[PADL_(l_uint)]; l_uint resource; char resource_r_[PADR_(l_uint)];
602 	char rlim_l_[PADL_(struct l_rlimit *)]; struct l_rlimit * rlim; char rlim_r_[PADR_(struct l_rlimit *)];
603 };
604 struct linux_mmap2_args {
605 	char addr_l_[PADL_(l_ulong)]; l_ulong addr; char addr_r_[PADR_(l_ulong)];
606 	char len_l_[PADL_(l_ulong)]; l_ulong len; char len_r_[PADR_(l_ulong)];
607 	char prot_l_[PADL_(l_ulong)]; l_ulong prot; char prot_r_[PADR_(l_ulong)];
608 	char flags_l_[PADL_(l_ulong)]; l_ulong flags; char flags_r_[PADR_(l_ulong)];
609 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
610 	char pgoff_l_[PADL_(l_ulong)]; l_ulong pgoff; char pgoff_r_[PADR_(l_ulong)];
611 };
612 struct linux_truncate64_args {
613 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
614 	char length_l_[PADL_(l_loff_t)]; l_loff_t length; char length_r_[PADR_(l_loff_t)];
615 };
616 struct linux_ftruncate64_args {
617 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
618 	char length_l_[PADL_(l_loff_t)]; l_loff_t length; char length_r_[PADR_(l_loff_t)];
619 };
620 struct linux_stat64_args {
621 	char filename_l_[PADL_(char *)]; char * filename; char filename_r_[PADR_(char *)];
622 	char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)];
623 	char flags_l_[PADL_(l_long)]; l_long flags; char flags_r_[PADR_(l_long)];
624 };
625 struct linux_lstat64_args {
626 	char filename_l_[PADL_(char *)]; char * filename; char filename_r_[PADR_(char *)];
627 	char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)];
628 	char flags_l_[PADL_(l_long)]; l_long flags; char flags_r_[PADR_(l_long)];
629 };
630 struct linux_fstat64_args {
631 	char fd_l_[PADL_(l_ulong)]; l_ulong fd; char fd_r_[PADR_(l_ulong)];
632 	char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)];
633 	char flags_l_[PADL_(l_long)]; l_long flags; char flags_r_[PADR_(l_long)];
634 };
635 struct linux_lchown_args {
636 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
637 	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
638 	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
639 };
640 struct linux_getuid_args {
641 	register_t dummy;
642 };
643 struct linux_getgid_args {
644 	register_t dummy;
645 };
646 struct linux_getgroups_args {
647 	char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)];
648 	char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)];
649 };
650 struct linux_setgroups_args {
651 	char gidsetsize_l_[PADL_(l_int)]; l_int gidsetsize; char gidsetsize_r_[PADR_(l_int)];
652 	char grouplist_l_[PADL_(l_gid_t *)]; l_gid_t * grouplist; char grouplist_r_[PADR_(l_gid_t *)];
653 };
654 struct linux_chown_args {
655 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
656 	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
657 	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
658 };
659 struct linux_setfsuid_args {
660 	char uid_l_[PADL_(l_uid_t)]; l_uid_t uid; char uid_r_[PADR_(l_uid_t)];
661 };
662 struct linux_setfsgid_args {
663 	char gid_l_[PADL_(l_gid_t)]; l_gid_t gid; char gid_r_[PADR_(l_gid_t)];
664 };
665 struct linux_pivot_root_args {
666 	char new_root_l_[PADL_(char *)]; char * new_root; char new_root_r_[PADR_(char *)];
667 	char put_old_l_[PADL_(char *)]; char * put_old; char put_old_r_[PADR_(char *)];
668 };
669 struct linux_mincore_args {
670 	char start_l_[PADL_(l_ulong)]; l_ulong start; char start_r_[PADR_(l_ulong)];
671 	char len_l_[PADL_(l_size_t)]; l_size_t len; char len_r_[PADR_(l_size_t)];
672 	char vec_l_[PADL_(u_char *)]; u_char * vec; char vec_r_[PADR_(u_char *)];
673 };
674 struct linux_getdents64_args {
675 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
676 	char dirent_l_[PADL_(void *)]; void * dirent; char dirent_r_[PADR_(void *)];
677 	char count_l_[PADL_(l_uint)]; l_uint count; char count_r_[PADR_(l_uint)];
678 };
679 struct linux_fcntl64_args {
680 	char fd_l_[PADL_(l_uint)]; l_uint fd; char fd_r_[PADR_(l_uint)];
681 	char cmd_l_[PADL_(l_uint)]; l_uint cmd; char cmd_r_[PADR_(l_uint)];
682 	char arg_l_[PADL_(l_ulong)]; l_ulong arg; char arg_r_[PADR_(l_ulong)];
683 };
684 struct linux_gettid_args {
685 	register_t dummy;
686 };
687 struct linux_setxattr_args {
688 	register_t dummy;
689 };
690 struct linux_lsetxattr_args {
691 	register_t dummy;
692 };
693 struct linux_fsetxattr_args {
694 	register_t dummy;
695 };
696 struct linux_getxattr_args {
697 	register_t dummy;
698 };
699 struct linux_lgetxattr_args {
700 	register_t dummy;
701 };
702 struct linux_fgetxattr_args {
703 	register_t dummy;
704 };
705 struct linux_listxattr_args {
706 	register_t dummy;
707 };
708 struct linux_llistxattr_args {
709 	register_t dummy;
710 };
711 struct linux_flistxattr_args {
712 	register_t dummy;
713 };
714 struct linux_removexattr_args {
715 	register_t dummy;
716 };
717 struct linux_lremovexattr_args {
718 	register_t dummy;
719 };
720 struct linux_fremovexattr_args {
721 	register_t dummy;
722 };
723 struct linux_tkill_args {
724 	char tid_l_[PADL_(int)]; int tid; char tid_r_[PADR_(int)];
725 	char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
726 };
727 struct linux_sys_futex_args {
728 	char uaddr_l_[PADL_(void *)]; void * uaddr; char uaddr_r_[PADR_(void *)];
729 	char op_l_[PADL_(int)]; int op; char op_r_[PADR_(int)];
730 	char val_l_[PADL_(int)]; int val; char val_r_[PADR_(int)];
731 	char timeout_l_[PADL_(struct l_timespec *)]; struct l_timespec * timeout; char timeout_r_[PADR_(struct l_timespec *)];
732 	char uaddr2_l_[PADL_(void *)]; void * uaddr2; char uaddr2_r_[PADR_(void *)];
733 	char val3_l_[PADL_(int)]; int val3; char val3_r_[PADR_(int)];
734 };
735 struct linux_sched_setaffinity_args {
736 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
737 	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
738 	char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)];
739 };
740 struct linux_sched_getaffinity_args {
741 	char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
742 	char len_l_[PADL_(l_uint)]; l_uint len; char len_r_[PADR_(l_uint)];
743 	char user_mask_ptr_l_[PADL_(l_ulong *)]; l_ulong * user_mask_ptr; char user_mask_ptr_r_[PADR_(l_ulong *)];
744 };
745 struct linux_set_thread_area_args {
746 	char desc_l_[PADL_(struct l_user_desc *)]; struct l_user_desc * desc; char desc_r_[PADR_(struct l_user_desc *)];
747 };
748 struct linux_get_thread_area_args {
749 	char desc_l_[PADL_(struct l_user_desc *)]; struct l_user_desc * desc; char desc_r_[PADR_(struct l_user_desc *)];
750 };
751 struct linux_fadvise64_args {
752 	register_t dummy;
753 };
754 struct linux_exit_group_args {
755 	char error_code_l_[PADL_(int)]; int error_code; char error_code_r_[PADR_(int)];
756 };
757 struct linux_lookup_dcookie_args {
758 	register_t dummy;
759 };
760 struct linux_epoll_create_args {
761 	register_t dummy;
762 };
763 struct linux_epoll_ctl_args {
764 	register_t dummy;
765 };
766 struct linux_epoll_wait_args {
767 	register_t dummy;
768 };
769 struct linux_remap_file_pages_args {
770 	register_t dummy;
771 };
772 struct linux_set_tid_address_args {
773 	char tidptr_l_[PADL_(int *)]; int * tidptr; char tidptr_r_[PADR_(int *)];
774 };
775 struct linux_timer_create_args {
776 	char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)];
777 	char evp_l_[PADL_(struct sigevent *)]; struct sigevent * evp; char evp_r_[PADR_(struct sigevent *)];
778 	char timerid_l_[PADL_(l_timer_t *)]; l_timer_t * timerid; char timerid_r_[PADR_(l_timer_t *)];
779 };
780 struct linux_timer_settime_args {
781 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
782 	char new_l_[PADL_(const struct itimerspec *)]; const struct itimerspec * new; char new_r_[PADR_(const struct itimerspec *)];
783 	char old_l_[PADL_(struct itimerspec *)]; struct itimerspec * old; char old_r_[PADR_(struct itimerspec *)];
784 };
785 struct linux_timer_gettime_args {
786 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
787 	char setting_l_[PADL_(struct itimerspec *)]; struct itimerspec * setting; char setting_r_[PADR_(struct itimerspec *)];
788 };
789 struct linux_timer_getoverrun_args {
790 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
791 };
792 struct linux_timer_delete_args {
793 	char timerid_l_[PADL_(l_timer_t)]; l_timer_t timerid; char timerid_r_[PADR_(l_timer_t)];
794 };
795 struct linux_clock_settime_args {
796 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
797 	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
798 };
799 struct linux_clock_gettime_args {
800 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
801 	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
802 };
803 struct linux_clock_getres_args {
804 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
805 	char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)];
806 };
807 struct linux_clock_nanosleep_args {
808 	char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)];
809 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
810 	char rqtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rqtp; char rqtp_r_[PADR_(struct l_timespec *)];
811 	char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)];
812 };
813 struct linux_statfs64_args {
814 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
815 	char bufsize_l_[PADL_(size_t)]; size_t bufsize; char bufsize_r_[PADR_(size_t)];
816 	char buf_l_[PADL_(struct l_statfs64_buf *)]; struct l_statfs64_buf * buf; char buf_r_[PADR_(struct l_statfs64_buf *)];
817 };
818 struct linux_fstatfs64_args {
819 	register_t dummy;
820 };
821 struct linux_tgkill_args {
822 	char tgid_l_[PADL_(int)]; int tgid; char tgid_r_[PADR_(int)];
823 	char pid_l_[PADL_(int)]; int pid; char pid_r_[PADR_(int)];
824 	char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
825 };
826 struct linux_utimes_args {
827 	char fname_l_[PADL_(char *)]; char * fname; char fname_r_[PADR_(char *)];
828 	char tptr_l_[PADL_(struct l_timeval *)]; struct l_timeval * tptr; char tptr_r_[PADR_(struct l_timeval *)];
829 };
830 struct linux_fadvise64_64_args {
831 	register_t dummy;
832 };
833 struct linux_mbind_args {
834 	register_t dummy;
835 };
836 struct linux_get_mempolicy_args {
837 	register_t dummy;
838 };
839 struct linux_set_mempolicy_args {
840 	register_t dummy;
841 };
842 struct linux_mq_open_args {
843 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
844 	char oflag_l_[PADL_(int)]; int oflag; char oflag_r_[PADR_(int)];
845 	char mode_l_[PADL_(mode_t)]; mode_t mode; char mode_r_[PADR_(mode_t)];
846 	char attr_l_[PADL_(struct mq_attr *)]; struct mq_attr * attr; char attr_r_[PADR_(struct mq_attr *)];
847 };
848 struct linux_mq_unlink_args {
849 	char name_l_[PADL_(const char *)]; const char * name; char name_r_[PADR_(const char *)];
850 };
851 struct linux_mq_timedsend_args {
852 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
853 	char msg_ptr_l_[PADL_(const char *)]; const char * msg_ptr; char msg_ptr_r_[PADR_(const char *)];
854 	char msg_len_l_[PADL_(size_t)]; size_t msg_len; char msg_len_r_[PADR_(size_t)];
855 	char msg_prio_l_[PADL_(unsigned int)]; unsigned int msg_prio; char msg_prio_r_[PADR_(unsigned int)];
856 	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
857 };
858 struct linux_mq_timedreceive_args {
859 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
860 	char msg_ptr_l_[PADL_(char *)]; char * msg_ptr; char msg_ptr_r_[PADR_(char *)];
861 	char msg_len_l_[PADL_(size_t)]; size_t msg_len; char msg_len_r_[PADR_(size_t)];
862 	char msg_prio_l_[PADL_(unsigned int)]; unsigned int msg_prio; char msg_prio_r_[PADR_(unsigned int)];
863 	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
864 };
865 struct linux_mq_notify_args {
866 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
867 	char abs_timeout_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * abs_timeout; char abs_timeout_r_[PADR_(const struct l_timespec *)];
868 };
869 struct linux_mq_getsetattr_args {
870 	char mqd_l_[PADL_(l_mqd_t)]; l_mqd_t mqd; char mqd_r_[PADR_(l_mqd_t)];
871 	char attr_l_[PADL_(const struct mq_attr *)]; const struct mq_attr * attr; char attr_r_[PADR_(const struct mq_attr *)];
872 	char oattr_l_[PADL_(struct mq_attr *)]; struct mq_attr * oattr; char oattr_r_[PADR_(struct mq_attr *)];
873 };
874 struct linux_kexec_load_args {
875 	register_t dummy;
876 };
877 struct linux_waitid_args {
878 	register_t dummy;
879 };
880 struct linux_add_key_args {
881 	register_t dummy;
882 };
883 struct linux_request_key_args {
884 	register_t dummy;
885 };
886 struct linux_keyctl_args {
887 	register_t dummy;
888 };
889 struct linux_ioprio_set_args {
890 	register_t dummy;
891 };
892 struct linux_ioprio_get_args {
893 	register_t dummy;
894 };
895 struct linux_inotify_init_args {
896 	register_t dummy;
897 };
898 struct linux_inotify_add_watch_args {
899 	register_t dummy;
900 };
901 struct linux_inotify_rm_watch_args {
902 	register_t dummy;
903 };
904 struct linux_migrate_pages_args {
905 	register_t dummy;
906 };
907 struct linux_openat_args {
908 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
909 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
910 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
911 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
912 };
913 struct linux_mkdirat_args {
914 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
915 	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
916 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
917 };
918 struct linux_mknodat_args {
919 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
920 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
921 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
922 	char dev_l_[PADL_(l_uint)]; l_uint dev; char dev_r_[PADR_(l_uint)];
923 };
924 struct linux_fchownat_args {
925 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
926 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
927 	char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
928 	char gid_l_[PADL_(l_gid16_t)]; l_gid16_t gid; char gid_r_[PADR_(l_gid16_t)];
929 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
930 };
931 struct linux_futimesat_args {
932 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
933 	char filename_l_[PADL_(char *)]; char * filename; char filename_r_[PADR_(char *)];
934 	char utimes_l_[PADL_(struct l_timeval *)]; struct l_timeval * utimes; char utimes_r_[PADR_(struct l_timeval *)];
935 };
936 struct linux_fstatat64_args {
937 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
938 	char pathname_l_[PADL_(char *)]; char * pathname; char pathname_r_[PADR_(char *)];
939 	char statbuf_l_[PADL_(struct l_stat64 *)]; struct l_stat64 * statbuf; char statbuf_r_[PADR_(struct l_stat64 *)];
940 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
941 };
942 struct linux_unlinkat_args {
943 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
944 	char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
945 	char flag_l_[PADL_(l_int)]; l_int flag; char flag_r_[PADR_(l_int)];
946 };
947 struct linux_renameat_args {
948 	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
949 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
950 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
951 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
952 };
953 struct linux_linkat_args {
954 	char olddfd_l_[PADL_(l_int)]; l_int olddfd; char olddfd_r_[PADR_(l_int)];
955 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
956 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
957 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
958 	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
959 };
960 struct linux_symlinkat_args {
961 	char oldname_l_[PADL_(const char *)]; const char * oldname; char oldname_r_[PADR_(const char *)];
962 	char newdfd_l_[PADL_(l_int)]; l_int newdfd; char newdfd_r_[PADR_(l_int)];
963 	char newname_l_[PADL_(const char *)]; const char * newname; char newname_r_[PADR_(const char *)];
964 };
965 struct linux_readlinkat_args {
966 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
967 	char path_l_[PADL_(const char *)]; const char * path; char path_r_[PADR_(const char *)];
968 	char buf_l_[PADL_(char *)]; char * buf; char buf_r_[PADR_(char *)];
969 	char bufsiz_l_[PADL_(l_int)]; l_int bufsiz; char bufsiz_r_[PADR_(l_int)];
970 };
971 struct linux_fchmodat_args {
972 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
973 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
974 	char mode_l_[PADL_(l_mode_t)]; l_mode_t mode; char mode_r_[PADR_(l_mode_t)];
975 };
976 struct linux_faccessat_args {
977 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
978 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
979 	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
980 };
981 struct linux_pselect6_args {
982 	register_t dummy;
983 };
984 struct linux_ppoll_args {
985 	register_t dummy;
986 };
987 struct linux_unshare_args {
988 	register_t dummy;
989 };
990 struct linux_set_robust_list_args {
991 	register_t dummy;
992 };
993 struct linux_get_robust_list_args {
994 	register_t dummy;
995 };
996 struct linux_splice_args {
997 	register_t dummy;
998 };
999 struct linux_sync_file_range_args {
1000 	register_t dummy;
1001 };
1002 struct linux_tee_args {
1003 	register_t dummy;
1004 };
1005 struct linux_vmsplice_args {
1006 	register_t dummy;
1007 };
1008 #define	nosys	linux_nosys
1009 int	linux_fork(struct thread *, struct linux_fork_args *);
1010 int	linux_open(struct thread *, struct linux_open_args *);
1011 int	linux_waitpid(struct thread *, struct linux_waitpid_args *);
1012 int	linux_creat(struct thread *, struct linux_creat_args *);
1013 int	linux_link(struct thread *, struct linux_link_args *);
1014 int	linux_unlink(struct thread *, struct linux_unlink_args *);
1015 int	linux_execve(struct thread *, struct linux_execve_args *);
1016 int	linux_chdir(struct thread *, struct linux_chdir_args *);
1017 int	linux_time(struct thread *, struct linux_time_args *);
1018 int	linux_mknod(struct thread *, struct linux_mknod_args *);
1019 int	linux_chmod(struct thread *, struct linux_chmod_args *);
1020 int	linux_lchown16(struct thread *, struct linux_lchown16_args *);
1021 int	linux_stat(struct thread *, struct linux_stat_args *);
1022 int	linux_lseek(struct thread *, struct linux_lseek_args *);
1023 int	linux_getpid(struct thread *, struct linux_getpid_args *);
1024 int	linux_mount(struct thread *, struct linux_mount_args *);
1025 int	linux_oldumount(struct thread *, struct linux_oldumount_args *);
1026 int	linux_setuid16(struct thread *, struct linux_setuid16_args *);
1027 int	linux_getuid16(struct thread *, struct linux_getuid16_args *);
1028 int	linux_stime(struct thread *, struct linux_stime_args *);
1029 int	linux_ptrace(struct thread *, struct linux_ptrace_args *);
1030 int	linux_alarm(struct thread *, struct linux_alarm_args *);
1031 int	linux_fstat(struct thread *, struct linux_fstat_args *);
1032 int	linux_pause(struct thread *, struct linux_pause_args *);
1033 int	linux_utime(struct thread *, struct linux_utime_args *);
1034 int	linux_access(struct thread *, struct linux_access_args *);
1035 int	linux_nice(struct thread *, struct linux_nice_args *);
1036 int	linux_kill(struct thread *, struct linux_kill_args *);
1037 int	linux_rename(struct thread *, struct linux_rename_args *);
1038 int	linux_mkdir(struct thread *, struct linux_mkdir_args *);
1039 int	linux_rmdir(struct thread *, struct linux_rmdir_args *);
1040 int	linux_pipe(struct thread *, struct linux_pipe_args *);
1041 int	linux_times(struct thread *, struct linux_times_args *);
1042 int	linux_brk(struct thread *, struct linux_brk_args *);
1043 int	linux_setgid16(struct thread *, struct linux_setgid16_args *);
1044 int	linux_getgid16(struct thread *, struct linux_getgid16_args *);
1045 int	linux_signal(struct thread *, struct linux_signal_args *);
1046 int	linux_geteuid16(struct thread *, struct linux_geteuid16_args *);
1047 int	linux_getegid16(struct thread *, struct linux_getegid16_args *);
1048 int	linux_umount(struct thread *, struct linux_umount_args *);
1049 int	linux_ioctl(struct thread *, struct linux_ioctl_args *);
1050 int	linux_fcntl(struct thread *, struct linux_fcntl_args *);
1051 int	linux_olduname(struct thread *, struct linux_olduname_args *);
1052 int	linux_ustat(struct thread *, struct linux_ustat_args *);
1053 int	linux_getppid(struct thread *, struct linux_getppid_args *);
1054 int	linux_sigaction(struct thread *, struct linux_sigaction_args *);
1055 int	linux_sgetmask(struct thread *, struct linux_sgetmask_args *);
1056 int	linux_ssetmask(struct thread *, struct linux_ssetmask_args *);
1057 int	linux_setreuid16(struct thread *, struct linux_setreuid16_args *);
1058 int	linux_setregid16(struct thread *, struct linux_setregid16_args *);
1059 int	linux_sigsuspend(struct thread *, struct linux_sigsuspend_args *);
1060 int	linux_sigpending(struct thread *, struct linux_sigpending_args *);
1061 int	linux_sethostname(struct thread *, struct linux_sethostname_args *);
1062 int	linux_setrlimit(struct thread *, struct linux_setrlimit_args *);
1063 int	linux_old_getrlimit(struct thread *, struct linux_old_getrlimit_args *);
1064 int	linux_getgroups16(struct thread *, struct linux_getgroups16_args *);
1065 int	linux_setgroups16(struct thread *, struct linux_setgroups16_args *);
1066 int	linux_old_select(struct thread *, struct linux_old_select_args *);
1067 int	linux_symlink(struct thread *, struct linux_symlink_args *);
1068 int	linux_lstat(struct thread *, struct linux_lstat_args *);
1069 int	linux_readlink(struct thread *, struct linux_readlink_args *);
1070 int	linux_uselib(struct thread *, struct linux_uselib_args *);
1071 int	linux_reboot(struct thread *, struct linux_reboot_args *);
1072 int	linux_readdir(struct thread *, struct linux_readdir_args *);
1073 int	linux_mmap(struct thread *, struct linux_mmap_args *);
1074 int	linux_truncate(struct thread *, struct linux_truncate_args *);
1075 int	linux_ftruncate(struct thread *, struct linux_ftruncate_args *);
1076 int	linux_getpriority(struct thread *, struct linux_getpriority_args *);
1077 int	linux_statfs(struct thread *, struct linux_statfs_args *);
1078 int	linux_fstatfs(struct thread *, struct linux_fstatfs_args *);
1079 int	linux_ioperm(struct thread *, struct linux_ioperm_args *);
1080 int	linux_socketcall(struct thread *, struct linux_socketcall_args *);
1081 int	linux_syslog(struct thread *, struct linux_syslog_args *);
1082 int	linux_setitimer(struct thread *, struct linux_setitimer_args *);
1083 int	linux_getitimer(struct thread *, struct linux_getitimer_args *);
1084 int	linux_newstat(struct thread *, struct linux_newstat_args *);
1085 int	linux_newlstat(struct thread *, struct linux_newlstat_args *);
1086 int	linux_newfstat(struct thread *, struct linux_newfstat_args *);
1087 int	linux_uname(struct thread *, struct linux_uname_args *);
1088 int	linux_iopl(struct thread *, struct linux_iopl_args *);
1089 int	linux_vhangup(struct thread *, struct linux_vhangup_args *);
1090 int	linux_vm86old(struct thread *, struct linux_vm86old_args *);
1091 int	linux_wait4(struct thread *, struct linux_wait4_args *);
1092 int	linux_swapoff(struct thread *, struct linux_swapoff_args *);
1093 int	linux_sysinfo(struct thread *, struct linux_sysinfo_args *);
1094 int	linux_ipc(struct thread *, struct linux_ipc_args *);
1095 int	linux_sigreturn(struct thread *, struct linux_sigreturn_args *);
1096 int	linux_clone(struct thread *, struct linux_clone_args *);
1097 int	linux_newuname(struct thread *, struct linux_newuname_args *);
1098 int	linux_modify_ldt(struct thread *, struct linux_modify_ldt_args *);
1099 int	linux_adjtimex(struct thread *, struct linux_adjtimex_args *);
1100 int	linux_mprotect(struct thread *, struct linux_mprotect_args *);
1101 int	linux_sigprocmask(struct thread *, struct linux_sigprocmask_args *);
1102 int	linux_create_module(struct thread *, struct linux_create_module_args *);
1103 int	linux_init_module(struct thread *, struct linux_init_module_args *);
1104 int	linux_delete_module(struct thread *, struct linux_delete_module_args *);
1105 int	linux_get_kernel_syms(struct thread *, struct linux_get_kernel_syms_args *);
1106 int	linux_quotactl(struct thread *, struct linux_quotactl_args *);
1107 int	linux_bdflush(struct thread *, struct linux_bdflush_args *);
1108 int	linux_sysfs(struct thread *, struct linux_sysfs_args *);
1109 int	linux_personality(struct thread *, struct linux_personality_args *);
1110 int	linux_setfsuid16(struct thread *, struct linux_setfsuid16_args *);
1111 int	linux_setfsgid16(struct thread *, struct linux_setfsgid16_args *);
1112 int	linux_llseek(struct thread *, struct linux_llseek_args *);
1113 int	linux_getdents(struct thread *, struct linux_getdents_args *);
1114 int	linux_select(struct thread *, struct linux_select_args *);
1115 int	linux_msync(struct thread *, struct linux_msync_args *);
1116 int	linux_getsid(struct thread *, struct linux_getsid_args *);
1117 int	linux_fdatasync(struct thread *, struct linux_fdatasync_args *);
1118 int	linux_sysctl(struct thread *, struct linux_sysctl_args *);
1119 int	linux_sched_setscheduler(struct thread *, struct linux_sched_setscheduler_args *);
1120 int	linux_sched_getscheduler(struct thread *, struct linux_sched_getscheduler_args *);
1121 int	linux_sched_get_priority_max(struct thread *, struct linux_sched_get_priority_max_args *);
1122 int	linux_sched_get_priority_min(struct thread *, struct linux_sched_get_priority_min_args *);
1123 int	linux_nanosleep(struct thread *, struct linux_nanosleep_args *);
1124 int	linux_mremap(struct thread *, struct linux_mremap_args *);
1125 int	linux_setresuid16(struct thread *, struct linux_setresuid16_args *);
1126 int	linux_getresuid16(struct thread *, struct linux_getresuid16_args *);
1127 int	linux_vm86(struct thread *, struct linux_vm86_args *);
1128 int	linux_query_module(struct thread *, struct linux_query_module_args *);
1129 int	linux_nfsservctl(struct thread *, struct linux_nfsservctl_args *);
1130 int	linux_setresgid16(struct thread *, struct linux_setresgid16_args *);
1131 int	linux_getresgid16(struct thread *, struct linux_getresgid16_args *);
1132 int	linux_prctl(struct thread *, struct linux_prctl_args *);
1133 int	linux_rt_sigreturn(struct thread *, struct linux_rt_sigreturn_args *);
1134 int	linux_rt_sigaction(struct thread *, struct linux_rt_sigaction_args *);
1135 int	linux_rt_sigprocmask(struct thread *, struct linux_rt_sigprocmask_args *);
1136 int	linux_rt_sigpending(struct thread *, struct linux_rt_sigpending_args *);
1137 int	linux_rt_sigtimedwait(struct thread *, struct linux_rt_sigtimedwait_args *);
1138 int	linux_rt_sigqueueinfo(struct thread *, struct linux_rt_sigqueueinfo_args *);
1139 int	linux_rt_sigsuspend(struct thread *, struct linux_rt_sigsuspend_args *);
1140 int	linux_pread(struct thread *, struct linux_pread_args *);
1141 int	linux_pwrite(struct thread *, struct linux_pwrite_args *);
1142 int	linux_chown16(struct thread *, struct linux_chown16_args *);
1143 int	linux_getcwd(struct thread *, struct linux_getcwd_args *);
1144 int	linux_capget(struct thread *, struct linux_capget_args *);
1145 int	linux_capset(struct thread *, struct linux_capset_args *);
1146 int	linux_sigaltstack(struct thread *, struct linux_sigaltstack_args *);
1147 int	linux_sendfile(struct thread *, struct linux_sendfile_args *);
1148 int	linux_vfork(struct thread *, struct linux_vfork_args *);
1149 int	linux_getrlimit(struct thread *, struct linux_getrlimit_args *);
1150 int	linux_mmap2(struct thread *, struct linux_mmap2_args *);
1151 int	linux_truncate64(struct thread *, struct linux_truncate64_args *);
1152 int	linux_ftruncate64(struct thread *, struct linux_ftruncate64_args *);
1153 int	linux_stat64(struct thread *, struct linux_stat64_args *);
1154 int	linux_lstat64(struct thread *, struct linux_lstat64_args *);
1155 int	linux_fstat64(struct thread *, struct linux_fstat64_args *);
1156 int	linux_lchown(struct thread *, struct linux_lchown_args *);
1157 int	linux_getuid(struct thread *, struct linux_getuid_args *);
1158 int	linux_getgid(struct thread *, struct linux_getgid_args *);
1159 int	linux_getgroups(struct thread *, struct linux_getgroups_args *);
1160 int	linux_setgroups(struct thread *, struct linux_setgroups_args *);
1161 int	linux_chown(struct thread *, struct linux_chown_args *);
1162 int	linux_setfsuid(struct thread *, struct linux_setfsuid_args *);
1163 int	linux_setfsgid(struct thread *, struct linux_setfsgid_args *);
1164 int	linux_pivot_root(struct thread *, struct linux_pivot_root_args *);
1165 int	linux_mincore(struct thread *, struct linux_mincore_args *);
1166 int	linux_getdents64(struct thread *, struct linux_getdents64_args *);
1167 int	linux_fcntl64(struct thread *, struct linux_fcntl64_args *);
1168 int	linux_gettid(struct thread *, struct linux_gettid_args *);
1169 int	linux_setxattr(struct thread *, struct linux_setxattr_args *);
1170 int	linux_lsetxattr(struct thread *, struct linux_lsetxattr_args *);
1171 int	linux_fsetxattr(struct thread *, struct linux_fsetxattr_args *);
1172 int	linux_getxattr(struct thread *, struct linux_getxattr_args *);
1173 int	linux_lgetxattr(struct thread *, struct linux_lgetxattr_args *);
1174 int	linux_fgetxattr(struct thread *, struct linux_fgetxattr_args *);
1175 int	linux_listxattr(struct thread *, struct linux_listxattr_args *);
1176 int	linux_llistxattr(struct thread *, struct linux_llistxattr_args *);
1177 int	linux_flistxattr(struct thread *, struct linux_flistxattr_args *);
1178 int	linux_removexattr(struct thread *, struct linux_removexattr_args *);
1179 int	linux_lremovexattr(struct thread *, struct linux_lremovexattr_args *);
1180 int	linux_fremovexattr(struct thread *, struct linux_fremovexattr_args *);
1181 int	linux_tkill(struct thread *, struct linux_tkill_args *);
1182 int	linux_sys_futex(struct thread *, struct linux_sys_futex_args *);
1183 int	linux_sched_setaffinity(struct thread *, struct linux_sched_setaffinity_args *);
1184 int	linux_sched_getaffinity(struct thread *, struct linux_sched_getaffinity_args *);
1185 int	linux_set_thread_area(struct thread *, struct linux_set_thread_area_args *);
1186 int	linux_get_thread_area(struct thread *, struct linux_get_thread_area_args *);
1187 int	linux_fadvise64(struct thread *, struct linux_fadvise64_args *);
1188 int	linux_exit_group(struct thread *, struct linux_exit_group_args *);
1189 int	linux_lookup_dcookie(struct thread *, struct linux_lookup_dcookie_args *);
1190 int	linux_epoll_create(struct thread *, struct linux_epoll_create_args *);
1191 int	linux_epoll_ctl(struct thread *, struct linux_epoll_ctl_args *);
1192 int	linux_epoll_wait(struct thread *, struct linux_epoll_wait_args *);
1193 int	linux_remap_file_pages(struct thread *, struct linux_remap_file_pages_args *);
1194 int	linux_set_tid_address(struct thread *, struct linux_set_tid_address_args *);
1195 int	linux_timer_create(struct thread *, struct linux_timer_create_args *);
1196 int	linux_timer_settime(struct thread *, struct linux_timer_settime_args *);
1197 int	linux_timer_gettime(struct thread *, struct linux_timer_gettime_args *);
1198 int	linux_timer_getoverrun(struct thread *, struct linux_timer_getoverrun_args *);
1199 int	linux_timer_delete(struct thread *, struct linux_timer_delete_args *);
1200 int	linux_clock_settime(struct thread *, struct linux_clock_settime_args *);
1201 int	linux_clock_gettime(struct thread *, struct linux_clock_gettime_args *);
1202 int	linux_clock_getres(struct thread *, struct linux_clock_getres_args *);
1203 int	linux_clock_nanosleep(struct thread *, struct linux_clock_nanosleep_args *);
1204 int	linux_statfs64(struct thread *, struct linux_statfs64_args *);
1205 int	linux_fstatfs64(struct thread *, struct linux_fstatfs64_args *);
1206 int	linux_tgkill(struct thread *, struct linux_tgkill_args *);
1207 int	linux_utimes(struct thread *, struct linux_utimes_args *);
1208 int	linux_fadvise64_64(struct thread *, struct linux_fadvise64_64_args *);
1209 int	linux_mbind(struct thread *, struct linux_mbind_args *);
1210 int	linux_get_mempolicy(struct thread *, struct linux_get_mempolicy_args *);
1211 int	linux_set_mempolicy(struct thread *, struct linux_set_mempolicy_args *);
1212 int	linux_mq_open(struct thread *, struct linux_mq_open_args *);
1213 int	linux_mq_unlink(struct thread *, struct linux_mq_unlink_args *);
1214 int	linux_mq_timedsend(struct thread *, struct linux_mq_timedsend_args *);
1215 int	linux_mq_timedreceive(struct thread *, struct linux_mq_timedreceive_args *);
1216 int	linux_mq_notify(struct thread *, struct linux_mq_notify_args *);
1217 int	linux_mq_getsetattr(struct thread *, struct linux_mq_getsetattr_args *);
1218 int	linux_kexec_load(struct thread *, struct linux_kexec_load_args *);
1219 int	linux_waitid(struct thread *, struct linux_waitid_args *);
1220 int	linux_add_key(struct thread *, struct linux_add_key_args *);
1221 int	linux_request_key(struct thread *, struct linux_request_key_args *);
1222 int	linux_keyctl(struct thread *, struct linux_keyctl_args *);
1223 int	linux_ioprio_set(struct thread *, struct linux_ioprio_set_args *);
1224 int	linux_ioprio_get(struct thread *, struct linux_ioprio_get_args *);
1225 int	linux_inotify_init(struct thread *, struct linux_inotify_init_args *);
1226 int	linux_inotify_add_watch(struct thread *, struct linux_inotify_add_watch_args *);
1227 int	linux_inotify_rm_watch(struct thread *, struct linux_inotify_rm_watch_args *);
1228 int	linux_migrate_pages(struct thread *, struct linux_migrate_pages_args *);
1229 int	linux_openat(struct thread *, struct linux_openat_args *);
1230 int	linux_mkdirat(struct thread *, struct linux_mkdirat_args *);
1231 int	linux_mknodat(struct thread *, struct linux_mknodat_args *);
1232 int	linux_fchownat(struct thread *, struct linux_fchownat_args *);
1233 int	linux_futimesat(struct thread *, struct linux_futimesat_args *);
1234 int	linux_fstatat64(struct thread *, struct linux_fstatat64_args *);
1235 int	linux_unlinkat(struct thread *, struct linux_unlinkat_args *);
1236 int	linux_renameat(struct thread *, struct linux_renameat_args *);
1237 int	linux_linkat(struct thread *, struct linux_linkat_args *);
1238 int	linux_symlinkat(struct thread *, struct linux_symlinkat_args *);
1239 int	linux_readlinkat(struct thread *, struct linux_readlinkat_args *);
1240 int	linux_fchmodat(struct thread *, struct linux_fchmodat_args *);
1241 int	linux_faccessat(struct thread *, struct linux_faccessat_args *);
1242 int	linux_pselect6(struct thread *, struct linux_pselect6_args *);
1243 int	linux_ppoll(struct thread *, struct linux_ppoll_args *);
1244 int	linux_unshare(struct thread *, struct linux_unshare_args *);
1245 int	linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
1246 int	linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
1247 int	linux_splice(struct thread *, struct linux_splice_args *);
1248 int	linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
1249 int	linux_tee(struct thread *, struct linux_tee_args *);
1250 int	linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
1251 
1252 #ifdef COMPAT_43
1253 
1254 #define	nosys	linux_nosys
1255 
1256 #endif /* COMPAT_43 */
1257 
1258 
1259 #ifdef COMPAT_FREEBSD4
1260 
1261 #define	nosys	linux_nosys
1262 
1263 #endif /* COMPAT_FREEBSD4 */
1264 
1265 
1266 #ifdef COMPAT_FREEBSD6
1267 
1268 #define	nosys	linux_nosys
1269 
1270 #endif /* COMPAT_FREEBSD6 */
1271 
1272 #define	LINUX_SYS_AUE_linux_fork	AUE_FORK
1273 #define	LINUX_SYS_AUE_linux_open	AUE_OPEN_RWTC
1274 #define	LINUX_SYS_AUE_linux_waitpid	AUE_WAIT4
1275 #define	LINUX_SYS_AUE_linux_creat	AUE_CREAT
1276 #define	LINUX_SYS_AUE_linux_link	AUE_LINK
1277 #define	LINUX_SYS_AUE_linux_unlink	AUE_UNLINK
1278 #define	LINUX_SYS_AUE_linux_execve	AUE_EXECVE
1279 #define	LINUX_SYS_AUE_linux_chdir	AUE_CHDIR
1280 #define	LINUX_SYS_AUE_linux_time	AUE_NULL
1281 #define	LINUX_SYS_AUE_linux_mknod	AUE_MKNOD
1282 #define	LINUX_SYS_AUE_linux_chmod	AUE_CHMOD
1283 #define	LINUX_SYS_AUE_linux_lchown16	AUE_LCHOWN
1284 #define	LINUX_SYS_AUE_linux_stat	AUE_STAT
1285 #define	LINUX_SYS_AUE_linux_lseek	AUE_LSEEK
1286 #define	LINUX_SYS_AUE_linux_getpid	AUE_GETPID
1287 #define	LINUX_SYS_AUE_linux_mount	AUE_MOUNT
1288 #define	LINUX_SYS_AUE_linux_oldumount	AUE_UMOUNT
1289 #define	LINUX_SYS_AUE_linux_setuid16	AUE_SETUID
1290 #define	LINUX_SYS_AUE_linux_getuid16	AUE_GETUID
1291 #define	LINUX_SYS_AUE_linux_stime	AUE_SETTIMEOFDAY
1292 #define	LINUX_SYS_AUE_linux_ptrace	AUE_PTRACE
1293 #define	LINUX_SYS_AUE_linux_alarm	AUE_NULL
1294 #define	LINUX_SYS_AUE_linux_fstat	AUE_FSTAT
1295 #define	LINUX_SYS_AUE_linux_pause	AUE_NULL
1296 #define	LINUX_SYS_AUE_linux_utime	AUE_UTIME
1297 #define	LINUX_SYS_AUE_linux_access	AUE_ACCESS
1298 #define	LINUX_SYS_AUE_linux_nice	AUE_NICE
1299 #define	LINUX_SYS_AUE_linux_kill	AUE_KILL
1300 #define	LINUX_SYS_AUE_linux_rename	AUE_RENAME
1301 #define	LINUX_SYS_AUE_linux_mkdir	AUE_MKDIR
1302 #define	LINUX_SYS_AUE_linux_rmdir	AUE_RMDIR
1303 #define	LINUX_SYS_AUE_linux_pipe	AUE_PIPE
1304 #define	LINUX_SYS_AUE_linux_times	AUE_NULL
1305 #define	LINUX_SYS_AUE_linux_brk	AUE_NULL
1306 #define	LINUX_SYS_AUE_linux_setgid16	AUE_SETGID
1307 #define	LINUX_SYS_AUE_linux_getgid16	AUE_GETGID
1308 #define	LINUX_SYS_AUE_linux_signal	AUE_NULL
1309 #define	LINUX_SYS_AUE_linux_geteuid16	AUE_GETEUID
1310 #define	LINUX_SYS_AUE_linux_getegid16	AUE_GETEGID
1311 #define	LINUX_SYS_AUE_linux_umount	AUE_UMOUNT
1312 #define	LINUX_SYS_AUE_linux_ioctl	AUE_IOCTL
1313 #define	LINUX_SYS_AUE_linux_fcntl	AUE_FCNTL
1314 #define	LINUX_SYS_AUE_linux_olduname	AUE_NULL
1315 #define	LINUX_SYS_AUE_linux_ustat	AUE_NULL
1316 #define	LINUX_SYS_AUE_linux_getppid	AUE_GETPPID
1317 #define	LINUX_SYS_AUE_linux_sigaction	AUE_NULL
1318 #define	LINUX_SYS_AUE_linux_sgetmask	AUE_NULL
1319 #define	LINUX_SYS_AUE_linux_ssetmask	AUE_NULL
1320 #define	LINUX_SYS_AUE_linux_setreuid16	AUE_SETREUID
1321 #define	LINUX_SYS_AUE_linux_setregid16	AUE_SETREGID
1322 #define	LINUX_SYS_AUE_linux_sigsuspend	AUE_NULL
1323 #define	LINUX_SYS_AUE_linux_sigpending	AUE_NULL
1324 #define	LINUX_SYS_AUE_linux_sethostname	AUE_SYSCTL
1325 #define	LINUX_SYS_AUE_linux_setrlimit	AUE_SETRLIMIT
1326 #define	LINUX_SYS_AUE_linux_old_getrlimit	AUE_GETRLIMIT
1327 #define	LINUX_SYS_AUE_linux_getgroups16	AUE_GETGROUPS
1328 #define	LINUX_SYS_AUE_linux_setgroups16	AUE_SETGROUPS
1329 #define	LINUX_SYS_AUE_linux_old_select	AUE_SELECT
1330 #define	LINUX_SYS_AUE_linux_symlink	AUE_SYMLINK
1331 #define	LINUX_SYS_AUE_linux_lstat	AUE_LSTAT
1332 #define	LINUX_SYS_AUE_linux_readlink	AUE_READLINK
1333 #define	LINUX_SYS_AUE_linux_uselib	AUE_USELIB
1334 #define	LINUX_SYS_AUE_linux_reboot	AUE_REBOOT
1335 #define	LINUX_SYS_AUE_linux_readdir	AUE_GETDIRENTRIES
1336 #define	LINUX_SYS_AUE_linux_mmap	AUE_MMAP
1337 #define	LINUX_SYS_AUE_linux_truncate	AUE_TRUNCATE
1338 #define	LINUX_SYS_AUE_linux_ftruncate	AUE_FTRUNCATE
1339 #define	LINUX_SYS_AUE_linux_getpriority	AUE_GETPRIORITY
1340 #define	LINUX_SYS_AUE_linux_statfs	AUE_STATFS
1341 #define	LINUX_SYS_AUE_linux_fstatfs	AUE_FSTATFS
1342 #define	LINUX_SYS_AUE_linux_ioperm	AUE_NULL
1343 #define	LINUX_SYS_AUE_linux_socketcall	AUE_NULL
1344 #define	LINUX_SYS_AUE_linux_syslog	AUE_NULL
1345 #define	LINUX_SYS_AUE_linux_setitimer	AUE_SETITIMER
1346 #define	LINUX_SYS_AUE_linux_getitimer	AUE_GETITIMER
1347 #define	LINUX_SYS_AUE_linux_newstat	AUE_STAT
1348 #define	LINUX_SYS_AUE_linux_newlstat	AUE_LSTAT
1349 #define	LINUX_SYS_AUE_linux_newfstat	AUE_FSTAT
1350 #define	LINUX_SYS_AUE_linux_uname	AUE_NULL
1351 #define	LINUX_SYS_AUE_linux_iopl	AUE_NULL
1352 #define	LINUX_SYS_AUE_linux_vhangup	AUE_NULL
1353 #define	LINUX_SYS_AUE_linux_vm86old	AUE_NULL
1354 #define	LINUX_SYS_AUE_linux_wait4	AUE_WAIT4
1355 #define	LINUX_SYS_AUE_linux_swapoff	AUE_SWAPOFF
1356 #define	LINUX_SYS_AUE_linux_sysinfo	AUE_NULL
1357 #define	LINUX_SYS_AUE_linux_ipc	AUE_NULL
1358 #define	LINUX_SYS_AUE_linux_sigreturn	AUE_SIGRETURN
1359 #define	LINUX_SYS_AUE_linux_clone	AUE_RFORK
1360 #define	LINUX_SYS_AUE_linux_newuname	AUE_NULL
1361 #define	LINUX_SYS_AUE_linux_modify_ldt	AUE_NULL
1362 #define	LINUX_SYS_AUE_linux_adjtimex	AUE_ADJTIME
1363 #define	LINUX_SYS_AUE_linux_mprotect	AUE_MPROTECT
1364 #define	LINUX_SYS_AUE_linux_sigprocmask	AUE_SIGPROCMASK
1365 #define	LINUX_SYS_AUE_linux_create_module	AUE_NULL
1366 #define	LINUX_SYS_AUE_linux_init_module	AUE_NULL
1367 #define	LINUX_SYS_AUE_linux_delete_module	AUE_NULL
1368 #define	LINUX_SYS_AUE_linux_get_kernel_syms	AUE_NULL
1369 #define	LINUX_SYS_AUE_linux_quotactl	AUE_QUOTACTL
1370 #define	LINUX_SYS_AUE_linux_bdflush	AUE_BDFLUSH
1371 #define	LINUX_SYS_AUE_linux_sysfs	AUE_NULL
1372 #define	LINUX_SYS_AUE_linux_personality	AUE_PERSONALITY
1373 #define	LINUX_SYS_AUE_linux_setfsuid16	AUE_SETFSUID
1374 #define	LINUX_SYS_AUE_linux_setfsgid16	AUE_SETFSGID
1375 #define	LINUX_SYS_AUE_linux_llseek	AUE_LSEEK
1376 #define	LINUX_SYS_AUE_linux_getdents	AUE_GETDIRENTRIES
1377 #define	LINUX_SYS_AUE_linux_select	AUE_SELECT
1378 #define	LINUX_SYS_AUE_linux_msync	AUE_MSYNC
1379 #define	LINUX_SYS_AUE_linux_getsid	AUE_GETSID
1380 #define	LINUX_SYS_AUE_linux_fdatasync	AUE_NULL
1381 #define	LINUX_SYS_AUE_linux_sysctl	AUE_SYSCTL
1382 #define	LINUX_SYS_AUE_linux_sched_setscheduler	AUE_SCHED_SETSCHEDULER
1383 #define	LINUX_SYS_AUE_linux_sched_getscheduler	AUE_SCHED_GETSCHEDULER
1384 #define	LINUX_SYS_AUE_linux_sched_get_priority_max	AUE_SCHED_GET_PRIORITY_MAX
1385 #define	LINUX_SYS_AUE_linux_sched_get_priority_min	AUE_SCHED_GET_PRIORITY_MIN
1386 #define	LINUX_SYS_AUE_linux_nanosleep	AUE_NULL
1387 #define	LINUX_SYS_AUE_linux_mremap	AUE_NULL
1388 #define	LINUX_SYS_AUE_linux_setresuid16	AUE_SETRESUID
1389 #define	LINUX_SYS_AUE_linux_getresuid16	AUE_GETRESUID
1390 #define	LINUX_SYS_AUE_linux_vm86	AUE_NULL
1391 #define	LINUX_SYS_AUE_linux_query_module	AUE_NULL
1392 #define	LINUX_SYS_AUE_linux_nfsservctl	AUE_NULL
1393 #define	LINUX_SYS_AUE_linux_setresgid16	AUE_SETRESGID
1394 #define	LINUX_SYS_AUE_linux_getresgid16	AUE_GETRESGID
1395 #define	LINUX_SYS_AUE_linux_prctl	AUE_PRCTL
1396 #define	LINUX_SYS_AUE_linux_rt_sigreturn	AUE_NULL
1397 #define	LINUX_SYS_AUE_linux_rt_sigaction	AUE_NULL
1398 #define	LINUX_SYS_AUE_linux_rt_sigprocmask	AUE_NULL
1399 #define	LINUX_SYS_AUE_linux_rt_sigpending	AUE_NULL
1400 #define	LINUX_SYS_AUE_linux_rt_sigtimedwait	AUE_NULL
1401 #define	LINUX_SYS_AUE_linux_rt_sigqueueinfo	AUE_NULL
1402 #define	LINUX_SYS_AUE_linux_rt_sigsuspend	AUE_NULL
1403 #define	LINUX_SYS_AUE_linux_pread	AUE_PREAD
1404 #define	LINUX_SYS_AUE_linux_pwrite	AUE_PWRITE
1405 #define	LINUX_SYS_AUE_linux_chown16	AUE_CHOWN
1406 #define	LINUX_SYS_AUE_linux_getcwd	AUE_GETCWD
1407 #define	LINUX_SYS_AUE_linux_capget	AUE_CAPGET
1408 #define	LINUX_SYS_AUE_linux_capset	AUE_CAPSET
1409 #define	LINUX_SYS_AUE_linux_sigaltstack	AUE_NULL
1410 #define	LINUX_SYS_AUE_linux_sendfile	AUE_SENDFILE
1411 #define	LINUX_SYS_AUE_linux_vfork	AUE_VFORK
1412 #define	LINUX_SYS_AUE_linux_getrlimit	AUE_GETRLIMIT
1413 #define	LINUX_SYS_AUE_linux_mmap2	AUE_MMAP
1414 #define	LINUX_SYS_AUE_linux_truncate64	AUE_TRUNCATE
1415 #define	LINUX_SYS_AUE_linux_ftruncate64	AUE_FTRUNCATE
1416 #define	LINUX_SYS_AUE_linux_stat64	AUE_STAT
1417 #define	LINUX_SYS_AUE_linux_lstat64	AUE_LSTAT
1418 #define	LINUX_SYS_AUE_linux_fstat64	AUE_FSTAT
1419 #define	LINUX_SYS_AUE_linux_lchown	AUE_LCHOWN
1420 #define	LINUX_SYS_AUE_linux_getuid	AUE_GETUID
1421 #define	LINUX_SYS_AUE_linux_getgid	AUE_GETGID
1422 #define	LINUX_SYS_AUE_linux_getgroups	AUE_GETGROUPS
1423 #define	LINUX_SYS_AUE_linux_setgroups	AUE_SETGROUPS
1424 #define	LINUX_SYS_AUE_linux_chown	AUE_CHOWN
1425 #define	LINUX_SYS_AUE_linux_setfsuid	AUE_SETFSUID
1426 #define	LINUX_SYS_AUE_linux_setfsgid	AUE_SETFSGID
1427 #define	LINUX_SYS_AUE_linux_pivot_root	AUE_PIVOT_ROOT
1428 #define	LINUX_SYS_AUE_linux_mincore	AUE_MINCORE
1429 #define	LINUX_SYS_AUE_linux_getdents64	AUE_GETDIRENTRIES
1430 #define	LINUX_SYS_AUE_linux_fcntl64	AUE_FCNTL
1431 #define	LINUX_SYS_AUE_linux_gettid	AUE_NULL
1432 #define	LINUX_SYS_AUE_linux_setxattr	AUE_NULL
1433 #define	LINUX_SYS_AUE_linux_lsetxattr	AUE_NULL
1434 #define	LINUX_SYS_AUE_linux_fsetxattr	AUE_NULL
1435 #define	LINUX_SYS_AUE_linux_getxattr	AUE_NULL
1436 #define	LINUX_SYS_AUE_linux_lgetxattr	AUE_NULL
1437 #define	LINUX_SYS_AUE_linux_fgetxattr	AUE_NULL
1438 #define	LINUX_SYS_AUE_linux_listxattr	AUE_NULL
1439 #define	LINUX_SYS_AUE_linux_llistxattr	AUE_NULL
1440 #define	LINUX_SYS_AUE_linux_flistxattr	AUE_NULL
1441 #define	LINUX_SYS_AUE_linux_removexattr	AUE_NULL
1442 #define	LINUX_SYS_AUE_linux_lremovexattr	AUE_NULL
1443 #define	LINUX_SYS_AUE_linux_fremovexattr	AUE_NULL
1444 #define	LINUX_SYS_AUE_linux_tkill	AUE_NULL
1445 #define	LINUX_SYS_AUE_linux_sys_futex	AUE_NULL
1446 #define	LINUX_SYS_AUE_linux_sched_setaffinity	AUE_NULL
1447 #define	LINUX_SYS_AUE_linux_sched_getaffinity	AUE_NULL
1448 #define	LINUX_SYS_AUE_linux_set_thread_area	AUE_NULL
1449 #define	LINUX_SYS_AUE_linux_get_thread_area	AUE_NULL
1450 #define	LINUX_SYS_AUE_linux_fadvise64	AUE_NULL
1451 #define	LINUX_SYS_AUE_linux_exit_group	AUE_EXIT
1452 #define	LINUX_SYS_AUE_linux_lookup_dcookie	AUE_NULL
1453 #define	LINUX_SYS_AUE_linux_epoll_create	AUE_NULL
1454 #define	LINUX_SYS_AUE_linux_epoll_ctl	AUE_NULL
1455 #define	LINUX_SYS_AUE_linux_epoll_wait	AUE_NULL
1456 #define	LINUX_SYS_AUE_linux_remap_file_pages	AUE_NULL
1457 #define	LINUX_SYS_AUE_linux_set_tid_address	AUE_NULL
1458 #define	LINUX_SYS_AUE_linux_timer_create	AUE_NULL
1459 #define	LINUX_SYS_AUE_linux_timer_settime	AUE_NULL
1460 #define	LINUX_SYS_AUE_linux_timer_gettime	AUE_NULL
1461 #define	LINUX_SYS_AUE_linux_timer_getoverrun	AUE_NULL
1462 #define	LINUX_SYS_AUE_linux_timer_delete	AUE_NULL
1463 #define	LINUX_SYS_AUE_linux_clock_settime	AUE_CLOCK_SETTIME
1464 #define	LINUX_SYS_AUE_linux_clock_gettime	AUE_NULL
1465 #define	LINUX_SYS_AUE_linux_clock_getres	AUE_NULL
1466 #define	LINUX_SYS_AUE_linux_clock_nanosleep	AUE_NULL
1467 #define	LINUX_SYS_AUE_linux_statfs64	AUE_STATFS
1468 #define	LINUX_SYS_AUE_linux_fstatfs64	AUE_FSTATFS
1469 #define	LINUX_SYS_AUE_linux_tgkill	AUE_NULL
1470 #define	LINUX_SYS_AUE_linux_utimes	AUE_UTIMES
1471 #define	LINUX_SYS_AUE_linux_fadvise64_64	AUE_NULL
1472 #define	LINUX_SYS_AUE_linux_mbind	AUE_NULL
1473 #define	LINUX_SYS_AUE_linux_get_mempolicy	AUE_NULL
1474 #define	LINUX_SYS_AUE_linux_set_mempolicy	AUE_NULL
1475 #define	LINUX_SYS_AUE_linux_mq_open	AUE_NULL
1476 #define	LINUX_SYS_AUE_linux_mq_unlink	AUE_NULL
1477 #define	LINUX_SYS_AUE_linux_mq_timedsend	AUE_NULL
1478 #define	LINUX_SYS_AUE_linux_mq_timedreceive	AUE_NULL
1479 #define	LINUX_SYS_AUE_linux_mq_notify	AUE_NULL
1480 #define	LINUX_SYS_AUE_linux_mq_getsetattr	AUE_NULL
1481 #define	LINUX_SYS_AUE_linux_kexec_load	AUE_NULL
1482 #define	LINUX_SYS_AUE_linux_waitid	AUE_NULL
1483 #define	LINUX_SYS_AUE_linux_add_key	AUE_NULL
1484 #define	LINUX_SYS_AUE_linux_request_key	AUE_NULL
1485 #define	LINUX_SYS_AUE_linux_keyctl	AUE_NULL
1486 #define	LINUX_SYS_AUE_linux_ioprio_set	AUE_NULL
1487 #define	LINUX_SYS_AUE_linux_ioprio_get	AUE_NULL
1488 #define	LINUX_SYS_AUE_linux_inotify_init	AUE_NULL
1489 #define	LINUX_SYS_AUE_linux_inotify_add_watch	AUE_NULL
1490 #define	LINUX_SYS_AUE_linux_inotify_rm_watch	AUE_NULL
1491 #define	LINUX_SYS_AUE_linux_migrate_pages	AUE_NULL
1492 #define	LINUX_SYS_AUE_linux_openat	AUE_OPEN_RWTC
1493 #define	LINUX_SYS_AUE_linux_mkdirat	AUE_MKDIRAT
1494 #define	LINUX_SYS_AUE_linux_mknodat	AUE_MKNODAT
1495 #define	LINUX_SYS_AUE_linux_fchownat	AUE_FCHOWNAT
1496 #define	LINUX_SYS_AUE_linux_futimesat	AUE_FUTIMESAT
1497 #define	LINUX_SYS_AUE_linux_fstatat64	AUE_FSTATAT
1498 #define	LINUX_SYS_AUE_linux_unlinkat	AUE_UNLINKAT
1499 #define	LINUX_SYS_AUE_linux_renameat	AUE_RENAMEAT
1500 #define	LINUX_SYS_AUE_linux_linkat	AUE_LINKAT
1501 #define	LINUX_SYS_AUE_linux_symlinkat	AUE_SYMLINKAT
1502 #define	LINUX_SYS_AUE_linux_readlinkat	AUE_READLINKAT
1503 #define	LINUX_SYS_AUE_linux_fchmodat	AUE_FCHMODAT
1504 #define	LINUX_SYS_AUE_linux_faccessat	AUE_FACCESSAT
1505 #define	LINUX_SYS_AUE_linux_pselect6	AUE_NULL
1506 #define	LINUX_SYS_AUE_linux_ppoll	AUE_NULL
1507 #define	LINUX_SYS_AUE_linux_unshare	AUE_NULL
1508 #define	LINUX_SYS_AUE_linux_set_robust_list	AUE_NULL
1509 #define	LINUX_SYS_AUE_linux_get_robust_list	AUE_NULL
1510 #define	LINUX_SYS_AUE_linux_splice	AUE_NULL
1511 #define	LINUX_SYS_AUE_linux_sync_file_range	AUE_NULL
1512 #define	LINUX_SYS_AUE_linux_tee	AUE_NULL
1513 #define	LINUX_SYS_AUE_linux_vmsplice	AUE_NULL
1514 
1515 #undef PAD_
1516 #undef PADL_
1517 #undef PADR_
1518 
1519 #endif /* !_LINUX_SYSPROTO_H_ */
1520