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