linux_syscallargs.h revision 1.54 1 /* $NetBSD: linux_syscallargs.h,v 1.54 2004/09/20 18:42:23 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.71 2004/09/20 18:41:07 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 { /* LINTED zero array dimension */ \
22 int8_t pad[ /* CONSTCOND */ \
23 (sizeof (register_t) < sizeof (x)) \
24 ? 0 \
25 : sizeof (register_t) - sizeof (x)]; \
26 x datum; \
27 } be; \
28 }
29
30 struct linux_sys_open_args {
31 syscallarg(const char *) path;
32 syscallarg(int) flags;
33 syscallarg(int) mode;
34 };
35
36 struct linux_sys_waitpid_args {
37 syscallarg(int) pid;
38 syscallarg(int *) status;
39 syscallarg(int) options;
40 };
41
42 struct linux_sys_creat_args {
43 syscallarg(const char *) path;
44 syscallarg(int) mode;
45 };
46
47 struct linux_sys_link_args {
48 syscallarg(const char *) path;
49 syscallarg(const char *) link;
50 };
51
52 struct linux_sys_unlink_args {
53 syscallarg(const char *) path;
54 };
55
56 struct linux_sys_execve_args {
57 syscallarg(const char *) path;
58 syscallarg(char **) argp;
59 syscallarg(char **) envp;
60 };
61
62 struct linux_sys_chdir_args {
63 syscallarg(const char *) path;
64 };
65
66 struct linux_sys_time_args {
67 syscallarg(linux_time_t *) t;
68 };
69
70 struct linux_sys_mknod_args {
71 syscallarg(const char *) path;
72 syscallarg(int) mode;
73 syscallarg(int) dev;
74 };
75
76 struct linux_sys_chmod_args {
77 syscallarg(const char *) path;
78 syscallarg(int) mode;
79 };
80
81 struct linux_sys_lchown16_args {
82 syscallarg(const char *) path;
83 syscallarg(int) uid;
84 syscallarg(int) gid;
85 };
86
87 struct linux_sys_break_args {
88 syscallarg(char *) nsize;
89 };
90
91 struct linux_sys_stime_args {
92 syscallarg(linux_time_t *) t;
93 };
94
95 struct linux_sys_ptrace_args {
96 syscallarg(int) request;
97 syscallarg(int) pid;
98 syscallarg(int) addr;
99 syscallarg(int) data;
100 };
101
102 struct linux_sys_alarm_args {
103 syscallarg(unsigned int) secs;
104 };
105
106 struct linux_sys_utime_args {
107 syscallarg(const char *) path;
108 syscallarg(struct linux_utimbuf *) times;
109 };
110
111 struct linux_sys_access_args {
112 syscallarg(const char *) path;
113 syscallarg(int) flags;
114 };
115
116 struct linux_sys_nice_args {
117 syscallarg(int) incr;
118 };
119
120 struct linux_sys_kill_args {
121 syscallarg(int) pid;
122 syscallarg(int) signum;
123 };
124
125 struct linux_sys_rename_args {
126 syscallarg(const char *) from;
127 syscallarg(const char *) to;
128 };
129
130 struct linux_sys_mkdir_args {
131 syscallarg(const char *) path;
132 syscallarg(int) mode;
133 };
134
135 struct linux_sys_rmdir_args {
136 syscallarg(const char *) path;
137 };
138
139 struct linux_sys_pipe_args {
140 syscallarg(int *) pfds;
141 };
142
143 struct linux_sys_times_args {
144 syscallarg(struct times *) tms;
145 };
146
147 struct linux_sys_brk_args {
148 syscallarg(char *) nsize;
149 };
150
151 struct linux_sys_signal_args {
152 syscallarg(int) signum;
153 syscallarg(linux_handler_t) handler;
154 };
155
156 struct linux_sys_ioctl_args {
157 syscallarg(int) fd;
158 syscallarg(u_long) com;
159 syscallarg(caddr_t) data;
160 };
161
162 struct linux_sys_fcntl_args {
163 syscallarg(int) fd;
164 syscallarg(int) cmd;
165 syscallarg(void *) arg;
166 };
167
168 struct linux_sys_oldolduname_args {
169 syscallarg(struct linux_oldold_utsname *) up;
170 };
171
172 struct linux_sys_sigaction_args {
173 syscallarg(int) signum;
174 syscallarg(const struct linux_old_sigaction *) nsa;
175 syscallarg(struct linux_old_sigaction *) osa;
176 };
177
178 struct linux_sys_sigsetmask_args {
179 syscallarg(linux_old_sigset_t) mask;
180 };
181
182 struct linux_sys_setreuid16_args {
183 syscallarg(int) ruid;
184 syscallarg(int) euid;
185 };
186
187 struct linux_sys_setregid16_args {
188 syscallarg(int) rgid;
189 syscallarg(int) egid;
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 linux_sys_sigpending_args {
199 syscallarg(linux_old_sigset_t *) set;
200 };
201
202 struct linux_sys_setrlimit_args {
203 syscallarg(u_int) which;
204 syscallarg(struct orlimit *) rlp;
205 };
206
207 struct linux_sys_getrlimit_args {
208 syscallarg(u_int) which;
209 syscallarg(struct orlimit *) rlp;
210 };
211
212 struct linux_sys_gettimeofday_args {
213 syscallarg(struct timeval *) tp;
214 syscallarg(struct timezone *) tzp;
215 };
216
217 struct linux_sys_settimeofday_args {
218 syscallarg(struct timeval *) tp;
219 syscallarg(struct timezone *) tzp;
220 };
221
222 struct linux_sys_getgroups16_args {
223 syscallarg(int) gidsetsize;
224 syscallarg(linux_gid_t *) gidset;
225 };
226
227 struct linux_sys_setgroups16_args {
228 syscallarg(int) gidsetsize;
229 syscallarg(linux_gid_t *) gidset;
230 };
231
232 struct linux_sys_oldselect_args {
233 syscallarg(struct linux_oldselect *) lsp;
234 };
235
236 struct linux_sys_symlink_args {
237 syscallarg(const char *) path;
238 syscallarg(const char *) to;
239 };
240
241 struct linux_sys_readlink_args {
242 syscallarg(const char *) name;
243 syscallarg(char *) buf;
244 syscallarg(int) count;
245 };
246
247 struct linux_sys_uselib_args {
248 syscallarg(const char *) path;
249 };
250
251 struct linux_sys_swapon_args {
252 syscallarg(char *) name;
253 };
254
255 struct linux_sys_reboot_args {
256 syscallarg(int) magic1;
257 syscallarg(int) magic2;
258 syscallarg(int) cmd;
259 syscallarg(void *) arg;
260 };
261
262 struct linux_sys_readdir_args {
263 syscallarg(int) fd;
264 syscallarg(caddr_t) dent;
265 syscallarg(unsigned int) count;
266 };
267
268 struct linux_sys_old_mmap_args {
269 syscallarg(struct linux_oldmmap *) lmp;
270 };
271
272 struct linux_sys_truncate_args {
273 syscallarg(const char *) path;
274 syscallarg(long) length;
275 };
276
277 struct linux_sys_fchown16_args {
278 syscallarg(int) fd;
279 syscallarg(int) uid;
280 syscallarg(int) gid;
281 };
282
283 struct linux_sys_statfs_args {
284 syscallarg(const char *) path;
285 syscallarg(struct linux_statfs *) sp;
286 };
287
288 struct linux_sys_fstatfs_args {
289 syscallarg(int) fd;
290 syscallarg(struct linux_statfs *) sp;
291 };
292
293 struct linux_sys_ioperm_args {
294 syscallarg(unsigned int) lo;
295 syscallarg(unsigned int) hi;
296 syscallarg(int) val;
297 };
298
299 struct linux_sys_socketcall_args {
300 syscallarg(int) what;
301 syscallarg(void *) args;
302 };
303
304 struct linux_sys_stat_args {
305 syscallarg(const char *) path;
306 syscallarg(struct linux_stat *) sp;
307 };
308
309 struct linux_sys_lstat_args {
310 syscallarg(const char *) path;
311 syscallarg(struct linux_stat *) sp;
312 };
313
314 struct linux_sys_fstat_args {
315 syscallarg(int) fd;
316 syscallarg(struct linux_stat *) sp;
317 };
318
319 struct linux_sys_olduname_args {
320 syscallarg(struct linux_old_utsname *) up;
321 };
322
323 struct linux_sys_iopl_args {
324 syscallarg(int) level;
325 };
326
327 struct linux_sys_wait4_args {
328 syscallarg(int) pid;
329 syscallarg(int *) status;
330 syscallarg(int) options;
331 syscallarg(struct rusage *) rusage;
332 };
333
334 struct linux_sys_swapoff_args {
335 syscallarg(const char *) path;
336 };
337
338 struct linux_sys_sysinfo_args {
339 syscallarg(struct linux_sysinfo *) arg;
340 };
341
342 struct linux_sys_ipc_args {
343 syscallarg(int) what;
344 syscallarg(int) a1;
345 syscallarg(int) a2;
346 syscallarg(int) a3;
347 syscallarg(caddr_t) ptr;
348 };
349
350 struct linux_sys_sigreturn_args {
351 syscallarg(struct linux_sigcontext *) scp;
352 };
353
354 struct linux_sys_clone_args {
355 syscallarg(int) flags;
356 syscallarg(void *) stack;
357 };
358
359 struct linux_sys_setdomainname_args {
360 syscallarg(char *) domainname;
361 syscallarg(int) len;
362 };
363
364 struct linux_sys_uname_args {
365 syscallarg(struct linux_utsname *) up;
366 };
367
368 struct linux_sys_modify_ldt_args {
369 syscallarg(int) func;
370 syscallarg(void *) ptr;
371 syscallarg(size_t) bytecount;
372 };
373
374 struct linux_sys_mprotect_args {
375 syscallarg(const void *) start;
376 syscallarg(unsigned long) len;
377 syscallarg(int) prot;
378 };
379
380 struct linux_sys_sigprocmask_args {
381 syscallarg(int) how;
382 syscallarg(const linux_old_sigset_t *) set;
383 syscallarg(linux_old_sigset_t *) oset;
384 };
385
386 struct linux_sys_getpgid_args {
387 syscallarg(int) pid;
388 };
389
390 struct linux_sys_personality_args {
391 syscallarg(int) per;
392 };
393
394 struct linux_sys_llseek_args {
395 syscallarg(int) fd;
396 syscallarg(u_int32_t) ohigh;
397 syscallarg(u_int32_t) olow;
398 syscallarg(caddr_t) res;
399 syscallarg(int) whence;
400 };
401
402 struct linux_sys_getdents_args {
403 syscallarg(int) fd;
404 syscallarg(struct linux_dirent *) dent;
405 syscallarg(unsigned int) count;
406 };
407
408 struct linux_sys_select_args {
409 syscallarg(int) nfds;
410 syscallarg(fd_set *) readfds;
411 syscallarg(fd_set *) writefds;
412 syscallarg(fd_set *) exceptfds;
413 syscallarg(struct timeval *) timeout;
414 };
415
416 struct linux_sys_msync_args {
417 syscallarg(caddr_t) addr;
418 syscallarg(int) len;
419 syscallarg(int) fl;
420 };
421
422 struct linux_sys_fdatasync_args {
423 syscallarg(int) fd;
424 };
425
426 struct linux_sys___sysctl_args {
427 syscallarg(struct linux___sysctl *) lsp;
428 };
429
430 struct linux_sys_sched_setparam_args {
431 syscallarg(pid_t) pid;
432 syscallarg(const struct linux_sched_param *) sp;
433 };
434
435 struct linux_sys_sched_getparam_args {
436 syscallarg(pid_t) pid;
437 syscallarg(struct linux_sched_param *) sp;
438 };
439
440 struct linux_sys_sched_setscheduler_args {
441 syscallarg(pid_t) pid;
442 syscallarg(int) policy;
443 syscallarg(const struct linux_sched_param *) sp;
444 };
445
446 struct linux_sys_sched_getscheduler_args {
447 syscallarg(pid_t) pid;
448 };
449
450 struct linux_sys_sched_get_priority_max_args {
451 syscallarg(int) policy;
452 };
453
454 struct linux_sys_sched_get_priority_min_args {
455 syscallarg(int) policy;
456 };
457
458 struct linux_sys_mremap_args {
459 syscallarg(void *) old_address;
460 syscallarg(size_t) old_size;
461 syscallarg(size_t) new_size;
462 syscallarg(u_long) flags;
463 };
464
465 struct linux_sys_setresuid16_args {
466 syscallarg(uid_t) ruid;
467 syscallarg(uid_t) euid;
468 syscallarg(uid_t) suid;
469 };
470
471 struct linux_sys_setresgid16_args {
472 syscallarg(gid_t) rgid;
473 syscallarg(gid_t) egid;
474 syscallarg(gid_t) sgid;
475 };
476
477 struct linux_sys_rt_sigreturn_args {
478 syscallarg(struct linux_ucontext *) ucp;
479 };
480
481 struct linux_sys_rt_sigaction_args {
482 syscallarg(int) signum;
483 syscallarg(const struct linux_sigaction *) nsa;
484 syscallarg(struct linux_sigaction *) osa;
485 syscallarg(size_t) sigsetsize;
486 };
487
488 struct linux_sys_rt_sigprocmask_args {
489 syscallarg(int) how;
490 syscallarg(const linux_sigset_t *) set;
491 syscallarg(linux_sigset_t *) oset;
492 syscallarg(size_t) sigsetsize;
493 };
494
495 struct linux_sys_rt_sigpending_args {
496 syscallarg(linux_sigset_t *) set;
497 syscallarg(size_t) sigsetsize;
498 };
499
500 struct linux_sys_rt_queueinfo_args {
501 syscallarg(int) pid;
502 syscallarg(int) signum;
503 syscallarg(void *) uinfo;
504 };
505
506 struct linux_sys_rt_sigsuspend_args {
507 syscallarg(linux_sigset_t *) unewset;
508 syscallarg(size_t) sigsetsize;
509 };
510
511 struct linux_sys_pread_args {
512 syscallarg(int) fd;
513 syscallarg(char *) buf;
514 syscallarg(size_t) nbyte;
515 syscallarg(linux_off_t) offset;
516 };
517
518 struct linux_sys_pwrite_args {
519 syscallarg(int) fd;
520 syscallarg(char *) buf;
521 syscallarg(size_t) nbyte;
522 syscallarg(linux_off_t) offset;
523 };
524
525 struct linux_sys_chown16_args {
526 syscallarg(const char *) path;
527 syscallarg(int) uid;
528 syscallarg(int) gid;
529 };
530
531 struct linux_sys_sigaltstack_args {
532 syscallarg(const struct linux_sigaltstack *) ss;
533 syscallarg(struct linux_sigaltstack *) oss;
534 };
535
536 struct linux_sys_ugetrlimit_args {
537 syscallarg(int) which;
538 syscallarg(struct orlimit *) rlp;
539 };
540
541 struct linux_sys_truncate64_args {
542 syscallarg(const char *) path;
543 syscallarg(off_t) length;
544 };
545
546 struct linux_sys_ftruncate64_args {
547 syscallarg(unsigned int) fd;
548 syscallarg(off_t) length;
549 };
550
551 struct linux_sys_stat64_args {
552 syscallarg(const char *) path;
553 syscallarg(struct linux_stat64 *) sp;
554 };
555
556 struct linux_sys_lstat64_args {
557 syscallarg(const char *) path;
558 syscallarg(struct linux_stat64 *) sp;
559 };
560
561 struct linux_sys_fstat64_args {
562 syscallarg(int) fd;
563 syscallarg(struct linux_stat64 *) sp;
564 };
565
566 struct linux_sys_lchown_args {
567 syscallarg(const char *) path;
568 syscallarg(uid_t) uid;
569 syscallarg(gid_t) gid;
570 };
571
572 struct linux_sys_setresuid_args {
573 syscallarg(uid_t) ruid;
574 syscallarg(uid_t) euid;
575 syscallarg(uid_t) suid;
576 };
577
578 struct linux_sys_getresuid_args {
579 syscallarg(uid_t *) ruid;
580 syscallarg(uid_t *) euid;
581 syscallarg(uid_t *) suid;
582 };
583
584 struct linux_sys_setresgid_args {
585 syscallarg(gid_t) rgid;
586 syscallarg(gid_t) egid;
587 syscallarg(gid_t) sgid;
588 };
589
590 struct linux_sys_getresgid_args {
591 syscallarg(gid_t *) rgid;
592 syscallarg(gid_t *) egid;
593 syscallarg(gid_t *) sgid;
594 };
595
596 struct linux_sys_chown_args {
597 syscallarg(const char *) path;
598 syscallarg(uid_t) uid;
599 syscallarg(gid_t) gid;
600 };
601
602 struct linux_sys_setfsuid_args {
603 syscallarg(uid_t) uid;
604 };
605
606 struct linux_sys_getdents64_args {
607 syscallarg(int) fd;
608 syscallarg(struct linux_dirent64 *) dent;
609 syscallarg(unsigned int) count;
610 };
611
612 struct linux_sys_fcntl64_args {
613 syscallarg(int) fd;
614 syscallarg(int) cmd;
615 syscallarg(void *) arg;
616 };
617
618 struct linux_sys_exit_group_args {
619 syscallarg(int) error_code;
620 };
621
622 struct linux_sys_statfs64_args {
623 syscallarg(const char *) path;
624 syscallarg(size_t) sz;
625 syscallarg(struct linux_statfs64 *) sp;
626 };
627
628 struct linux_sys_fstatfs64_args {
629 syscallarg(int) fd;
630 syscallarg(size_t) sz;
631 syscallarg(struct linux_statfs64 *) sp;
632 };
633
634 /*
635 * System call prototypes.
636 */
637
638 int linux_sys_nosys(struct lwp *, void *, register_t *);
639
640 int sys_exit(struct lwp *, void *, register_t *);
641
642 int sys_fork(struct lwp *, void *, register_t *);
643
644 int sys_read(struct lwp *, void *, register_t *);
645
646 int sys_write(struct lwp *, void *, register_t *);
647
648 int linux_sys_open(struct lwp *, void *, register_t *);
649
650 int sys_close(struct lwp *, void *, register_t *);
651
652 int linux_sys_waitpid(struct lwp *, void *, register_t *);
653
654 int linux_sys_creat(struct lwp *, void *, register_t *);
655
656 int linux_sys_link(struct lwp *, void *, register_t *);
657
658 int linux_sys_unlink(struct lwp *, void *, register_t *);
659
660 int linux_sys_execve(struct lwp *, void *, register_t *);
661
662 int linux_sys_chdir(struct lwp *, void *, register_t *);
663
664 int linux_sys_time(struct lwp *, void *, register_t *);
665
666 int linux_sys_mknod(struct lwp *, void *, register_t *);
667
668 int linux_sys_chmod(struct lwp *, void *, register_t *);
669
670 int linux_sys_lchown16(struct lwp *, void *, register_t *);
671
672 int linux_sys_break(struct lwp *, void *, register_t *);
673
674 int compat_43_sys_lseek(struct lwp *, void *, register_t *);
675
676 int sys_getpid(struct lwp *, void *, register_t *);
677
678 int sys_setuid(struct lwp *, void *, register_t *);
679
680 int sys_getuid(struct lwp *, void *, register_t *);
681
682 int linux_sys_stime(struct lwp *, void *, register_t *);
683
684 int linux_sys_ptrace(struct lwp *, void *, register_t *);
685
686 int linux_sys_alarm(struct lwp *, void *, register_t *);
687
688 int linux_sys_pause(struct lwp *, void *, register_t *);
689
690 int linux_sys_utime(struct lwp *, void *, register_t *);
691
692 int linux_sys_access(struct lwp *, void *, register_t *);
693
694 int linux_sys_nice(struct lwp *, void *, register_t *);
695
696 int sys_sync(struct lwp *, void *, register_t *);
697
698 int linux_sys_kill(struct lwp *, void *, register_t *);
699
700 int linux_sys_rename(struct lwp *, void *, register_t *);
701
702 int linux_sys_mkdir(struct lwp *, void *, register_t *);
703
704 int linux_sys_rmdir(struct lwp *, void *, register_t *);
705
706 int sys_dup(struct lwp *, void *, register_t *);
707
708 int linux_sys_pipe(struct lwp *, void *, register_t *);
709
710 int linux_sys_times(struct lwp *, void *, register_t *);
711
712 int linux_sys_brk(struct lwp *, void *, register_t *);
713
714 int sys_setgid(struct lwp *, void *, register_t *);
715
716 int sys_getgid(struct lwp *, void *, register_t *);
717
718 int linux_sys_signal(struct lwp *, void *, register_t *);
719
720 int sys_geteuid(struct lwp *, void *, register_t *);
721
722 int sys_getegid(struct lwp *, void *, register_t *);
723
724 int sys_acct(struct lwp *, void *, register_t *);
725
726 int linux_sys_ioctl(struct lwp *, void *, register_t *);
727
728 int linux_sys_fcntl(struct lwp *, void *, register_t *);
729
730 int sys_setpgid(struct lwp *, void *, register_t *);
731
732 int linux_sys_oldolduname(struct lwp *, void *, register_t *);
733
734 int sys_umask(struct lwp *, void *, register_t *);
735
736 int sys_chroot(struct lwp *, void *, register_t *);
737
738 int sys_dup2(struct lwp *, void *, register_t *);
739
740 int sys_getppid(struct lwp *, void *, register_t *);
741
742 int sys_getpgrp(struct lwp *, void *, register_t *);
743
744 int sys_setsid(struct lwp *, void *, register_t *);
745
746 int linux_sys_sigaction(struct lwp *, void *, register_t *);
747
748 int linux_sys_siggetmask(struct lwp *, void *, register_t *);
749
750 int linux_sys_sigsetmask(struct lwp *, void *, register_t *);
751
752 int linux_sys_setreuid16(struct lwp *, void *, register_t *);
753
754 int linux_sys_setregid16(struct lwp *, void *, register_t *);
755
756 int linux_sys_sigsuspend(struct lwp *, void *, register_t *);
757
758 int linux_sys_sigpending(struct lwp *, void *, register_t *);
759
760 int compat_43_sys_sethostname(struct lwp *, void *, register_t *);
761
762 int linux_sys_setrlimit(struct lwp *, void *, register_t *);
763
764 int linux_sys_getrlimit(struct lwp *, void *, register_t *);
765
766 int sys_getrusage(struct lwp *, void *, register_t *);
767
768 int linux_sys_gettimeofday(struct lwp *, void *, register_t *);
769
770 int linux_sys_settimeofday(struct lwp *, void *, register_t *);
771
772 int linux_sys_getgroups16(struct lwp *, void *, register_t *);
773
774 int linux_sys_setgroups16(struct lwp *, void *, register_t *);
775
776 int linux_sys_oldselect(struct lwp *, void *, register_t *);
777
778 int linux_sys_symlink(struct lwp *, void *, register_t *);
779
780 int compat_43_sys_lstat(struct lwp *, void *, register_t *);
781
782 int linux_sys_readlink(struct lwp *, void *, register_t *);
783
784 int linux_sys_uselib(struct lwp *, void *, register_t *);
785
786 int linux_sys_swapon(struct lwp *, void *, register_t *);
787
788 int linux_sys_reboot(struct lwp *, void *, register_t *);
789
790 int linux_sys_readdir(struct lwp *, void *, register_t *);
791
792 int linux_sys_old_mmap(struct lwp *, void *, register_t *);
793
794 int sys_munmap(struct lwp *, void *, register_t *);
795
796 int linux_sys_truncate(struct lwp *, void *, register_t *);
797
798 int compat_43_sys_ftruncate(struct lwp *, void *, register_t *);
799
800 int sys_fchmod(struct lwp *, void *, register_t *);
801
802 int linux_sys_fchown16(struct lwp *, void *, register_t *);
803
804 int sys_getpriority(struct lwp *, void *, register_t *);
805
806 int sys_setpriority(struct lwp *, void *, register_t *);
807
808 int sys_profil(struct lwp *, void *, register_t *);
809
810 int linux_sys_statfs(struct lwp *, void *, register_t *);
811
812 int linux_sys_fstatfs(struct lwp *, void *, register_t *);
813
814 int linux_sys_ioperm(struct lwp *, void *, register_t *);
815
816 int linux_sys_socketcall(struct lwp *, void *, register_t *);
817
818 int sys_setitimer(struct lwp *, void *, register_t *);
819
820 int sys_getitimer(struct lwp *, void *, register_t *);
821
822 int linux_sys_stat(struct lwp *, void *, register_t *);
823
824 int linux_sys_lstat(struct lwp *, void *, register_t *);
825
826 int linux_sys_fstat(struct lwp *, void *, register_t *);
827
828 int linux_sys_olduname(struct lwp *, void *, register_t *);
829
830 int linux_sys_iopl(struct lwp *, void *, register_t *);
831
832 int linux_sys_wait4(struct lwp *, void *, register_t *);
833
834 int linux_sys_swapoff(struct lwp *, void *, register_t *);
835
836 int linux_sys_sysinfo(struct lwp *, void *, register_t *);
837
838 int linux_sys_ipc(struct lwp *, void *, register_t *);
839
840 int sys_fsync(struct lwp *, void *, register_t *);
841
842 int linux_sys_sigreturn(struct lwp *, void *, register_t *);
843
844 int linux_sys_clone(struct lwp *, void *, register_t *);
845
846 int linux_sys_setdomainname(struct lwp *, void *, register_t *);
847
848 int linux_sys_uname(struct lwp *, void *, register_t *);
849
850 int linux_sys_modify_ldt(struct lwp *, void *, register_t *);
851
852 int linux_sys_mprotect(struct lwp *, void *, register_t *);
853
854 int linux_sys_sigprocmask(struct lwp *, void *, register_t *);
855
856 int linux_sys_getpgid(struct lwp *, void *, register_t *);
857
858 int sys_fchdir(struct lwp *, void *, register_t *);
859
860 int linux_sys_personality(struct lwp *, void *, register_t *);
861
862 int linux_sys_setfsuid(struct lwp *, void *, register_t *);
863
864 int linux_sys_getfsuid(struct lwp *, void *, register_t *);
865
866 int linux_sys_llseek(struct lwp *, void *, register_t *);
867
868 int linux_sys_getdents(struct lwp *, void *, register_t *);
869
870 int linux_sys_select(struct lwp *, void *, register_t *);
871
872 int sys_flock(struct lwp *, void *, register_t *);
873
874 int linux_sys_msync(struct lwp *, void *, register_t *);
875
876 int sys_readv(struct lwp *, void *, register_t *);
877
878 int sys_writev(struct lwp *, void *, register_t *);
879
880 int sys_getsid(struct lwp *, void *, register_t *);
881
882 int linux_sys_fdatasync(struct lwp *, void *, register_t *);
883
884 int linux_sys___sysctl(struct lwp *, void *, register_t *);
885
886 int sys_mlock(struct lwp *, void *, register_t *);
887
888 int sys_munlock(struct lwp *, void *, register_t *);
889
890 int sys_mlockall(struct lwp *, void *, register_t *);
891
892 int sys_munlockall(struct lwp *, void *, register_t *);
893
894 int linux_sys_sched_setparam(struct lwp *, void *, register_t *);
895
896 int linux_sys_sched_getparam(struct lwp *, void *, register_t *);
897
898 int linux_sys_sched_setscheduler(struct lwp *, void *, register_t *);
899
900 int linux_sys_sched_getscheduler(struct lwp *, void *, register_t *);
901
902 int linux_sys_sched_yield(struct lwp *, void *, register_t *);
903
904 int linux_sys_sched_get_priority_max(struct lwp *, void *, register_t *);
905
906 int linux_sys_sched_get_priority_min(struct lwp *, void *, register_t *);
907
908 int sys_nanosleep(struct lwp *, void *, register_t *);
909
910 int linux_sys_mremap(struct lwp *, void *, register_t *);
911
912 int linux_sys_setresuid16(struct lwp *, void *, register_t *);
913
914 int linux_sys_getresuid(struct lwp *, void *, register_t *);
915
916 int sys_poll(struct lwp *, void *, register_t *);
917
918 int linux_sys_setresgid16(struct lwp *, void *, register_t *);
919
920 int linux_sys_getresgid(struct lwp *, void *, register_t *);
921
922 int linux_sys_rt_sigreturn(struct lwp *, void *, register_t *);
923
924 int linux_sys_rt_sigaction(struct lwp *, void *, register_t *);
925
926 int linux_sys_rt_sigprocmask(struct lwp *, void *, register_t *);
927
928 int linux_sys_rt_sigpending(struct lwp *, void *, register_t *);
929
930 int linux_sys_rt_queueinfo(struct lwp *, void *, register_t *);
931
932 int linux_sys_rt_sigsuspend(struct lwp *, void *, register_t *);
933
934 int linux_sys_pread(struct lwp *, void *, register_t *);
935
936 int linux_sys_pwrite(struct lwp *, void *, register_t *);
937
938 int linux_sys_chown16(struct lwp *, void *, register_t *);
939
940 int sys___getcwd(struct lwp *, void *, register_t *);
941
942 int linux_sys_sigaltstack(struct lwp *, void *, register_t *);
943
944 int sys___vfork14(struct lwp *, void *, register_t *);
945
946 int linux_sys_ugetrlimit(struct lwp *, void *, register_t *);
947
948 int linux_sys_mmap2(struct lwp *, void *, register_t *);
949
950 int linux_sys_truncate64(struct lwp *, void *, register_t *);
951
952 int linux_sys_ftruncate64(struct lwp *, void *, register_t *);
953
954 int linux_sys_stat64(struct lwp *, void *, register_t *);
955
956 int linux_sys_lstat64(struct lwp *, void *, register_t *);
957
958 int linux_sys_fstat64(struct lwp *, void *, register_t *);
959
960 int linux_sys_lchown(struct lwp *, void *, register_t *);
961
962 int sys_setreuid(struct lwp *, void *, register_t *);
963
964 int sys_setregid(struct lwp *, void *, register_t *);
965
966 int sys_getgroups(struct lwp *, void *, register_t *);
967
968 int sys_setgroups(struct lwp *, void *, register_t *);
969
970 int sys___posix_fchown(struct lwp *, void *, register_t *);
971
972 int linux_sys_setresuid(struct lwp *, void *, register_t *);
973
974 int linux_sys_setresgid(struct lwp *, void *, register_t *);
975
976 int linux_sys_chown(struct lwp *, void *, register_t *);
977
978 int sys_mincore(struct lwp *, void *, register_t *);
979
980 int sys_madvise(struct lwp *, void *, register_t *);
981
982 int linux_sys_getdents64(struct lwp *, void *, register_t *);
983
984 int linux_sys_fcntl64(struct lwp *, void *, register_t *);
985
986 int linux_sys_exit_group(struct lwp *, void *, register_t *);
987
988 int linux_sys_statfs64(struct lwp *, void *, register_t *);
989
990 int linux_sys_fstatfs64(struct lwp *, void *, register_t *);
991
992 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
993