linux_syscallargs.h revision 1.35 1 /* $NetBSD: linux_syscallargs.h,v 1.35 2001/03/30 17:18:47 jdolecek Exp $ */
2
3 /*
4 * System call argument lists.
5 *
6 * DO NOT EDIT-- this file is automatically generated.
7 * created from NetBSD: syscalls.master,v 1.32 2001/03/30 17:16:33 jdolecek Exp
8 */
9
10 #ifndef _LINUX_SYS__SYSCALLARGS_H_
11 #define _LINUX_SYS__SYSCALLARGS_H_
12
13 #ifdef syscallarg
14 #undef syscallarg
15 #endif
16
17 #define syscallarg(x) \
18 union { \
19 register_t pad; \
20 struct { x datum; } le; \
21 struct { \
22 int8_t pad[ (sizeof (register_t) < sizeof (x)) \
23 ? 0 \
24 : sizeof (register_t) - sizeof (x)]; \
25 x datum; \
26 } be; \
27 }
28
29 struct osf1_sys_wait4_args {
30 syscallarg(int) pid;
31 syscallarg(int *) status;
32 syscallarg(int) options;
33 syscallarg(struct osf1_rusage *) rusage;
34 };
35
36 struct linux_sys_creat_args {
37 syscallarg(const char *) path;
38 syscallarg(mode_t) mode;
39 };
40
41 struct linux_sys_link_args {
42 syscallarg(const char *) path;
43 syscallarg(const char *) link;
44 };
45
46 struct linux_sys_unlink_args {
47 syscallarg(const char *) path;
48 };
49
50 struct linux_sys_chdir_args {
51 syscallarg(const char *) path;
52 };
53
54 struct linux_sys_mknod_args {
55 syscallarg(const char *) path;
56 syscallarg(int) mode;
57 syscallarg(int) dev;
58 };
59
60 struct linux_sys_chmod_args {
61 syscallarg(const char *) path;
62 syscallarg(int) mode;
63 };
64
65 struct linux_sys_brk_args {
66 syscallarg(char *) nsize;
67 };
68
69 struct osf1_sys_mount_args {
70 syscallarg(int) type;
71 syscallarg(const char *) path;
72 syscallarg(int) flags;
73 syscallarg(caddr_t) data;
74 };
75
76 struct linux_sys_ptrace_args {
77 syscallarg(long) request;
78 syscallarg(long) pid;
79 syscallarg(long) addr;
80 syscallarg(long) data;
81 };
82
83 struct linux_sys_access_args {
84 syscallarg(const char *) path;
85 syscallarg(int) flags;
86 };
87
88 struct linux_sys_kill_args {
89 syscallarg(int) pid;
90 syscallarg(int) signum;
91 };
92
93 struct osf1_sys_set_program_attributes_args {
94 syscallarg(caddr_t) taddr;
95 syscallarg(unsigned long) tsize;
96 syscallarg(caddr_t) daddr;
97 syscallarg(unsigned long) dsize;
98 };
99
100 struct linux_sys_open_args {
101 syscallarg(const char *) path;
102 syscallarg(int) flags;
103 syscallarg(int) mode;
104 };
105
106 struct linux_sys_sigpending_args {
107 syscallarg(linux_old_sigset_t *) set;
108 };
109
110 struct linux_sys_ioctl_args {
111 syscallarg(int) fd;
112 syscallarg(u_long) com;
113 syscallarg(caddr_t) data;
114 };
115
116 struct linux_sys_symlink_args {
117 syscallarg(const char *) path;
118 syscallarg(const char *) to;
119 };
120
121 struct linux_sys_readlink_args {
122 syscallarg(const char *) name;
123 syscallarg(char *) buf;
124 syscallarg(int) count;
125 };
126
127 struct linux_sys_execve_args {
128 syscallarg(const char *) path;
129 syscallarg(char **) argp;
130 syscallarg(char **) envp;
131 };
132
133 struct linux_sys_stat_args {
134 syscallarg(const char *) path;
135 syscallarg(struct linux_stat *) sp;
136 };
137
138 struct linux_sys_lstat_args {
139 syscallarg(const char *) path;
140 syscallarg(struct linux_stat *) sp;
141 };
142
143 struct osf1_sys_setitimer_args {
144 syscallarg(u_int) which;
145 syscallarg(struct osf1_itimerval *) itv;
146 syscallarg(struct osf1_itimerval *) oitv;
147 };
148
149 struct linux_sys_fstat_args {
150 syscallarg(int) fd;
151 syscallarg(struct linux_stat *) sp;
152 };
153
154 struct linux_sys_fcntl_args {
155 syscallarg(int) fd;
156 syscallarg(int) cmd;
157 syscallarg(void *) arg;
158 };
159
160 struct osf1_sys_select_args {
161 syscallarg(u_int) nd;
162 syscallarg(fd_set *) in;
163 syscallarg(fd_set *) ou;
164 syscallarg(fd_set *) ex;
165 syscallarg(struct osf1_timeval *) tv;
166 };
167
168 struct linux_sys_socket_args {
169 syscallarg(int) domain;
170 syscallarg(int) type;
171 syscallarg(int) protocol;
172 };
173
174 struct linux_sys_connect_args {
175 syscallarg(int) s;
176 syscallarg(const struct sockaddr *) name;
177 syscallarg(unsigned int) namelen;
178 };
179
180 struct linux_sys_sigreturn_args {
181 syscallarg(struct linux_sigframe *) sfp;
182 };
183
184 struct linux_sys_setsockopt_args {
185 syscallarg(int) s;
186 syscallarg(int) level;
187 syscallarg(int) optname;
188 syscallarg(void *) optval;
189 syscallarg(int) optlen;
190 };
191
192 struct linux_sys_sigsuspend_args {
193 syscallarg(caddr_t) restart;
194 syscallarg(int) oldmask;
195 syscallarg(int) mask;
196 };
197
198 struct osf1_sys_gettimeofday_args {
199 syscallarg(struct osf1_timeval *) tv;
200 syscallarg(struct osf1_timezone *) tzp;
201 };
202
203 struct osf1_sys_getrusage_args {
204 syscallarg(int) who;
205 syscallarg(struct osf1_rusage *) rusage;
206 };
207
208 struct linux_sys_getsockopt_args {
209 syscallarg(int) s;
210 syscallarg(int) level;
211 syscallarg(int) optname;
212 syscallarg(void *) optval;
213 syscallarg(int *) optlen;
214 };
215
216 struct osf1_sys_settimeofday_args {
217 syscallarg(struct osf1_timeval *) tv;
218 syscallarg(struct osf1_timezone *) tzp;
219 };
220
221 struct linux_sys_recvfrom_args {
222 syscallarg(int) s;
223 syscallarg(void *) buf;
224 syscallarg(int) len;
225 syscallarg(int) flags;
226 syscallarg(struct sockaddr *) from;
227 syscallarg(int *) fromlen;
228 };
229
230 struct linux_sys_rename_args {
231 syscallarg(const char *) from;
232 syscallarg(const char *) to;
233 };
234
235 struct linux_sys_truncate_args {
236 syscallarg(const char *) path;
237 syscallarg(long) length;
238 };
239
240 struct linux_sys_sendto_args {
241 syscallarg(int) s;
242 syscallarg(void *) msg;
243 syscallarg(int) len;
244 syscallarg(int) flags;
245 syscallarg(struct sockaddr *) to;
246 syscallarg(int) tolen;
247 };
248
249 struct linux_sys_socketpair_args {
250 syscallarg(int) domain;
251 syscallarg(int) type;
252 syscallarg(int) protocol;
253 syscallarg(int *) rsv;
254 };
255
256 struct linux_sys_mkdir_args {
257 syscallarg(const char *) path;
258 syscallarg(int) mode;
259 };
260
261 struct linux_sys_rmdir_args {
262 syscallarg(const char *) path;
263 };
264
265 struct osf1_sys_utimes_args {
266 syscallarg(const char *) path;
267 syscallarg(const struct osf1_timeval *) tptr;
268 };
269
270 struct linux_sys_sigaction_args {
271 syscallarg(int) signum;
272 syscallarg(const struct linux_old_sigaction *) nsa;
273 syscallarg(struct linux_old_sigaction *) osa;
274 };
275
276 struct osf1_sys_statfs_args {
277 syscallarg(const char *) path;
278 syscallarg(struct osf1_statfs *) buf;
279 syscallarg(int) len;
280 };
281
282 struct osf1_sys_fstatfs_args {
283 syscallarg(int) fd;
284 syscallarg(struct osf1_statfs *) buf;
285 syscallarg(int) len;
286 };
287
288 struct linux_sys_setdomainname_args {
289 syscallarg(char *) domainname;
290 syscallarg(int) len;
291 };
292
293 struct linux_sys_olduname_args {
294 syscallarg(struct linux_old_utsname *) up;
295 };
296
297 struct linux_sys_msync_args {
298 syscallarg(caddr_t) addr;
299 syscallarg(int) len;
300 syscallarg(int) fl;
301 };
302
303 struct linux_sys_getpgid_args {
304 syscallarg(int) pid;
305 };
306
307 struct osf1_sys_sysinfo_args {
308 syscallarg(int) cmd;
309 syscallarg(char) buf;
310 syscallarg(long) len;
311 };
312
313 struct osf1_sys_usleep_thread_args {
314 syscallarg(struct osf1_timeval *) sleep;
315 syscallarg(struct osf1_timeval *) slept;
316 };
317
318 struct osf1_sys_getsysinfo_args {
319 syscallarg(u_long) op;
320 syscallarg(caddr_t) buffer;
321 syscallarg(u_long) nbytes;
322 syscallarg(caddr_t) arg;
323 syscallarg(u_long) flag;
324 };
325
326 struct osf1_sys_setsysinfo_args {
327 syscallarg(u_long) op;
328 syscallarg(caddr_t) buffer;
329 syscallarg(u_long) nbytes;
330 syscallarg(caddr_t) arg;
331 syscallarg(u_long) flag;
332 };
333
334 struct linux_sys_fdatasync_args {
335 syscallarg(int) fd;
336 };
337
338 struct linux_sys_swapoff_args {
339 syscallarg(const char *) path;
340 };
341
342 struct linux_sys_getdents_args {
343 syscallarg(int) fd;
344 syscallarg(struct linux_dirent *) dent;
345 syscallarg(unsigned int) count;
346 };
347
348 struct linux_sys_reboot_args {
349 syscallarg(int) magic1;
350 syscallarg(int) magic2;
351 syscallarg(int) cmd;
352 syscallarg(void *) arg;
353 };
354
355 struct linux_sys_clone_args {
356 syscallarg(int) flags;
357 syscallarg(void *) stack;
358 };
359
360 struct linux_sys_uselib_args {
361 syscallarg(const char *) path;
362 };
363
364 struct linux_sys_sysinfo_args {
365 syscallarg(struct linux_sysinfo *) arg;
366 };
367
368 struct linux_sys___sysctl_args {
369 syscallarg(struct linux___sysctl *) lsp;
370 };
371
372 struct linux_sys_swapon_args {
373 syscallarg(const char *) name;
374 };
375
376 struct linux_sys_times_args {
377 syscallarg(struct times *) tms;
378 };
379
380 struct linux_sys_personality_args {
381 syscallarg(int) per;
382 };
383
384 struct linux_sys_setfsuid_args {
385 syscallarg(uid_t) uid;
386 };
387
388 struct linux_sys_statfs_args {
389 syscallarg(const char *) path;
390 syscallarg(struct linux_statfs *) sp;
391 };
392
393 struct linux_sys_fstatfs_args {
394 syscallarg(int) fd;
395 syscallarg(struct linux_statfs *) sp;
396 };
397
398 struct linux_sys_sched_setparam_args {
399 syscallarg(pid_t) pid;
400 syscallarg(const struct linux_sched_param *) sp;
401 };
402
403 struct linux_sys_sched_getparam_args {
404 syscallarg(pid_t) pid;
405 syscallarg(struct linux_sched_param *) sp;
406 };
407
408 struct linux_sys_sched_setscheduler_args {
409 syscallarg(pid_t) pid;
410 syscallarg(int) policy;
411 syscallarg(const struct linux_sched_param *) sp;
412 };
413
414 struct linux_sys_sched_getscheduler_args {
415 syscallarg(pid_t) pid;
416 };
417
418 struct linux_sys_sched_get_priority_max_args {
419 syscallarg(int) policy;
420 };
421
422 struct linux_sys_sched_get_priority_min_args {
423 syscallarg(int) policy;
424 };
425
426 struct linux_sys_uname_args {
427 syscallarg(struct linux_utsname *) up;
428 };
429
430 struct linux_sys_mremap_args {
431 syscallarg(void *) old_address;
432 syscallarg(size_t) old_size;
433 syscallarg(size_t) new_size;
434 syscallarg(u_long) flags;
435 };
436
437 struct linux_sys_setresuid_args {
438 syscallarg(uid_t) ruid;
439 syscallarg(uid_t) euid;
440 syscallarg(uid_t) suid;
441 };
442
443 struct linux_sys_getresuid_args {
444 syscallarg(uid_t *) ruid;
445 syscallarg(uid_t *) euid;
446 syscallarg(uid_t *) suid;
447 };
448
449 struct linux_sys_pread_args {
450 syscallarg(int) fd;
451 syscallarg(char *) buf;
452 syscallarg(size_t) nbyte;
453 syscallarg(linux_off_t) offset;
454 };
455
456 struct linux_sys_pwrite_args {
457 syscallarg(int) fd;
458 syscallarg(char *) buf;
459 syscallarg(size_t) nbyte;
460 syscallarg(linux_off_t) offset;
461 };
462
463 struct linux_sys_rt_sigreturn_args {
464 syscallarg(struct linux_rt_sigframe *) sfp;
465 };
466
467 struct linux_sys_rt_sigaction_args {
468 syscallarg(int) signum;
469 syscallarg(const struct linux_sigaction *) nsa;
470 syscallarg(struct linux_sigaction *) osa;
471 syscallarg(size_t) sigsetsize;
472 };
473
474 struct linux_sys_rt_sigprocmask_args {
475 syscallarg(int) how;
476 syscallarg(const linux_sigset_t *) set;
477 syscallarg(linux_sigset_t *) oset;
478 syscallarg(size_t) sigsetsize;
479 };
480
481 struct linux_sys_rt_sigpending_args {
482 syscallarg(linux_sigset_t *) set;
483 syscallarg(size_t) sigsetsize;
484 };
485
486 struct linux_sys_rt_queueinfo_args {
487 syscallarg(int) pid;
488 syscallarg(int) signum;
489 syscallarg(linux_siginfo_t *) uinfo;
490 };
491
492 struct linux_sys_rt_sigsuspend_args {
493 syscallarg(linux_sigset_t *) unewset;
494 syscallarg(size_t) sigsetsize;
495 };
496
497 struct linux_sys_select_args {
498 syscallarg(int) nfds;
499 syscallarg(fd_set *) readfds;
500 syscallarg(fd_set *) writefds;
501 syscallarg(fd_set *) exceptfds;
502 syscallarg(struct timeval *) timeout;
503 };
504
505 struct linux_sys_wait4_args {
506 syscallarg(int) pid;
507 syscallarg(int *) status;
508 syscallarg(int) options;
509 syscallarg(struct rusage *) rusage;
510 };
511
512 /*
513 * System call prototypes.
514 */
515
516 int linux_sys_nosys(struct proc *, void *, register_t *);
517 int sys_exit(struct proc *, void *, register_t *);
518 int sys_fork(struct proc *, void *, register_t *);
519 int sys_read(struct proc *, void *, register_t *);
520 int sys_write(struct proc *, void *, register_t *);
521 int sys_close(struct proc *, void *, register_t *);
522 int osf1_sys_wait4(struct proc *, void *, register_t *);
523 int linux_sys_creat(struct proc *, void *, register_t *);
524 int linux_sys_link(struct proc *, void *, register_t *);
525 int linux_sys_unlink(struct proc *, void *, register_t *);
526 int linux_sys_chdir(struct proc *, void *, register_t *);
527 int sys_fchdir(struct proc *, void *, register_t *);
528 int linux_sys_mknod(struct proc *, void *, register_t *);
529 int linux_sys_chmod(struct proc *, void *, register_t *);
530 int sys___posix_chown(struct proc *, void *, register_t *);
531 int linux_sys_brk(struct proc *, void *, register_t *);
532 int compat_43_sys_lseek(struct proc *, void *, register_t *);
533 int sys_getpid_with_ppid(struct proc *, void *, register_t *);
534 int osf1_sys_mount(struct proc *, void *, register_t *);
535 int sys_setuid(struct proc *, void *, register_t *);
536 int sys_getuid_with_euid(struct proc *, void *, register_t *);
537 int linux_sys_ptrace(struct proc *, void *, register_t *);
538 int linux_sys_access(struct proc *, void *, register_t *);
539 int sys_sync(struct proc *, void *, register_t *);
540 int linux_sys_kill(struct proc *, void *, register_t *);
541 int sys_setpgid(struct proc *, void *, register_t *);
542 int sys_dup(struct proc *, void *, register_t *);
543 int linux_sys_pipe(struct proc *, void *, register_t *);
544 int osf1_sys_set_program_attributes(struct proc *, void *, register_t *);
545 int linux_sys_open(struct proc *, void *, register_t *);
546 int sys_getgid_with_egid(struct proc *, void *, register_t *);
547 int compat_13_sys_sigprocmask(struct proc *, void *, register_t *);
548 int sys_acct(struct proc *, void *, register_t *);
549 int linux_sys_sigpending(struct proc *, void *, register_t *);
550 int linux_sys_ioctl(struct proc *, void *, register_t *);
551 int linux_sys_symlink(struct proc *, void *, register_t *);
552 int linux_sys_readlink(struct proc *, void *, register_t *);
553 int linux_sys_execve(struct proc *, void *, register_t *);
554 int sys_umask(struct proc *, void *, register_t *);
555 int sys_chroot(struct proc *, void *, register_t *);
556 int sys_getpgrp(struct proc *, void *, register_t *);
557 int compat_43_sys_getpagesize(struct proc *, void *, register_t *);
558 int sys___vfork14(struct proc *, void *, register_t *);
559 int linux_sys_stat(struct proc *, void *, register_t *);
560 int linux_sys_lstat(struct proc *, void *, register_t *);
561 int linux_sys_mmap(struct proc *, void *, register_t *);
562 int sys_munmap(struct proc *, void *, register_t *);
563 int sys_mprotect(struct proc *, void *, register_t *);
564 int sys_getgroups(struct proc *, void *, register_t *);
565 int sys_setgroups(struct proc *, void *, register_t *);
566 int osf1_sys_setitimer(struct proc *, void *, register_t *);
567 int compat_43_sys_gethostname(struct proc *, void *, register_t *);
568 int compat_43_sys_sethostname(struct proc *, void *, register_t *);
569 int sys_dup2(struct proc *, void *, register_t *);
570 int linux_sys_fstat(struct proc *, void *, register_t *);
571 int linux_sys_fcntl(struct proc *, void *, register_t *);
572 int osf1_sys_select(struct proc *, void *, register_t *);
573 int sys_poll(struct proc *, void *, register_t *);
574 int sys_fsync(struct proc *, void *, register_t *);
575 int sys_setpriority(struct proc *, void *, register_t *);
576 int linux_sys_socket(struct proc *, void *, register_t *);
577 int linux_sys_connect(struct proc *, void *, register_t *);
578 int compat_43_sys_accept(struct proc *, void *, register_t *);
579 int sys_getpriority(struct proc *, void *, register_t *);
580 int compat_43_sys_send(struct proc *, void *, register_t *);
581 int compat_43_sys_recv(struct proc *, void *, register_t *);
582 int linux_sys_sigreturn(struct proc *, void *, register_t *);
583 int sys_bind(struct proc *, void *, register_t *);
584 int linux_sys_setsockopt(struct proc *, void *, register_t *);
585 int sys_listen(struct proc *, void *, register_t *);
586 int linux_sys_sigsuspend(struct proc *, void *, register_t *);
587 int compat_43_sys_sigstack(struct proc *, void *, register_t *);
588 int sys_recvmsg(struct proc *, void *, register_t *);
589 int sys_sendmsg(struct proc *, void *, register_t *);
590 int osf1_sys_gettimeofday(struct proc *, void *, register_t *);
591 int osf1_sys_getrusage(struct proc *, void *, register_t *);
592 int linux_sys_getsockopt(struct proc *, void *, register_t *);
593 int sys_readv(struct proc *, void *, register_t *);
594 int sys_writev(struct proc *, void *, register_t *);
595 int osf1_sys_settimeofday(struct proc *, void *, register_t *);
596 int sys___posix_fchown(struct proc *, void *, register_t *);
597 int sys_fchmod(struct proc *, void *, register_t *);
598 int linux_sys_recvfrom(struct proc *, void *, register_t *);
599 int sys_setreuid(struct proc *, void *, register_t *);
600 int sys_setregid(struct proc *, void *, register_t *);
601 int linux_sys_rename(struct proc *, void *, register_t *);
602 int linux_sys_truncate(struct proc *, void *, register_t *);
603 int compat_43_sys_ftruncate(struct proc *, void *, register_t *);
604 int sys_flock(struct proc *, void *, register_t *);
605 int sys_setgid(struct proc *, void *, register_t *);
606 int linux_sys_sendto(struct proc *, void *, register_t *);
607 int sys_shutdown(struct proc *, void *, register_t *);
608 int linux_sys_socketpair(struct proc *, void *, register_t *);
609 int linux_sys_mkdir(struct proc *, void *, register_t *);
610 int linux_sys_rmdir(struct proc *, void *, register_t *);
611 int osf1_sys_utimes(struct proc *, void *, register_t *);
612 int compat_43_sys_getpeername(struct proc *, void *, register_t *);
613 int compat_43_sys_getrlimit(struct proc *, void *, register_t *);
614 int compat_43_sys_setrlimit(struct proc *, void *, register_t *);
615 int sys_setsid(struct proc *, void *, register_t *);
616 int compat_43_sys_getsockname(struct proc *, void *, register_t *);
617 int linux_sys_sigaction(struct proc *, void *, register_t *);
618 int compat_43_sys_getdirentries(struct proc *, void *, register_t *);
619 int osf1_sys_statfs(struct proc *, void *, register_t *);
620 int osf1_sys_fstatfs(struct proc *, void *, register_t *);
621 int compat_09_sys_getdomainname(struct proc *, void *, register_t *);
622 int linux_sys_setdomainname(struct proc *, void *, register_t *);
623 #ifdef SYSVMSG
624 int linux_sys_msgctl(struct proc *, void *, register_t *);
625 int sys_msgget(struct proc *, void *, register_t *);
626 int sys_msgrcv(struct proc *, void *, register_t *);
627 int sys_msgsnd(struct proc *, void *, register_t *);
628 #else
629 #endif
630 #ifdef SYSVSEM
631 int linux_sys_semctl(struct proc *, void *, register_t *);
632 int sys_semget(struct proc *, void *, register_t *);
633 int sys_semop(struct proc *, void *, register_t *);
634 #else
635 #endif
636 int linux_sys_olduname(struct proc *, void *, register_t *);
637 int sys___posix_lchown(struct proc *, void *, register_t *);
638 #ifdef SYSVSHM
639 int linux_sys_shmat(struct proc *, void *, register_t *);
640 int linux_sys_shmctl(struct proc *, void *, register_t *);
641 int sys_shmdt(struct proc *, void *, register_t *);
642 int sys_shmget(struct proc *, void *, register_t *);
643 #else
644 #endif
645 int linux_sys_msync(struct proc *, void *, register_t *);
646 int linux_sys_getpgid(struct proc *, void *, register_t *);
647 int sys_getsid(struct proc *, void *, register_t *);
648 int osf1_sys_sysinfo(struct proc *, void *, register_t *);
649 int osf1_sys_usleep_thread(struct proc *, void *, register_t *);
650 int osf1_sys_getsysinfo(struct proc *, void *, register_t *);
651 int osf1_sys_setsysinfo(struct proc *, void *, register_t *);
652 int linux_sys_fdatasync(struct proc *, void *, register_t *);
653 int linux_sys_swapoff(struct proc *, void *, register_t *);
654 int linux_sys_getdents(struct proc *, void *, register_t *);
655 int linux_sys_reboot(struct proc *, void *, register_t *);
656 int linux_sys_clone(struct proc *, void *, register_t *);
657 #ifdef EXEC_AOUT
658 int linux_sys_uselib(struct proc *, void *, register_t *);
659 #else
660 #endif
661 int sys_mlock(struct proc *, void *, register_t *);
662 int sys_munlock(struct proc *, void *, register_t *);
663 int sys_mlockall(struct proc *, void *, register_t *);
664 int sys_munlockall(struct proc *, void *, register_t *);
665 int linux_sys_sysinfo(struct proc *, void *, register_t *);
666 int linux_sys___sysctl(struct proc *, void *, register_t *);
667 int linux_sys_swapon(struct proc *, void *, register_t *);
668 int linux_sys_times(struct proc *, void *, register_t *);
669 int linux_sys_personality(struct proc *, void *, register_t *);
670 int linux_sys_setfsuid(struct proc *, void *, register_t *);
671 int linux_sys_statfs(struct proc *, void *, register_t *);
672 int linux_sys_fstatfs(struct proc *, void *, register_t *);
673 int linux_sys_sched_setparam(struct proc *, void *, register_t *);
674 int linux_sys_sched_getparam(struct proc *, void *, register_t *);
675 int linux_sys_sched_setscheduler(struct proc *, void *, register_t *);
676 int linux_sys_sched_getscheduler(struct proc *, void *, register_t *);
677 int linux_sys_sched_yield(struct proc *, void *, register_t *);
678 int linux_sys_sched_get_priority_max(struct proc *, void *, register_t *);
679 int linux_sys_sched_get_priority_min(struct proc *, void *, register_t *);
680 int linux_sys_uname(struct proc *, void *, register_t *);
681 int sys_nanosleep(struct proc *, void *, register_t *);
682 int linux_sys_mremap(struct proc *, void *, register_t *);
683 int linux_sys_setresuid(struct proc *, void *, register_t *);
684 int linux_sys_getresuid(struct proc *, void *, register_t *);
685 int linux_sys_pread(struct proc *, void *, register_t *);
686 int linux_sys_pwrite(struct proc *, void *, register_t *);
687 int linux_sys_rt_sigreturn(struct proc *, void *, register_t *);
688 int linux_sys_rt_sigaction(struct proc *, void *, register_t *);
689 int linux_sys_rt_sigprocmask(struct proc *, void *, register_t *);
690 int linux_sys_rt_sigpending(struct proc *, void *, register_t *);
691 int linux_sys_rt_queueinfo(struct proc *, void *, register_t *);
692 int linux_sys_rt_sigsuspend(struct proc *, void *, register_t *);
693 int linux_sys_select(struct proc *, void *, register_t *);
694 int sys_gettimeofday(struct proc *, void *, register_t *);
695 int sys_settimeofday(struct proc *, void *, register_t *);
696 int sys_getitimer(struct proc *, void *, register_t *);
697 int sys_setitimer(struct proc *, void *, register_t *);
698 int sys_utimes(struct proc *, void *, register_t *);
699 int sys_getrusage(struct proc *, void *, register_t *);
700 int linux_sys_wait4(struct proc *, void *, register_t *);
701 int sys___getcwd(struct proc *, void *, register_t *);
702 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
703