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
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
|
/* $NetBSD: linux_syscallargs.h,v 1.80 2018/08/10 21:47:15 pgoyette Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.67 2017/02/03 16:28:34 christos Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
#define _LINUX_SYS_SYSCALLARGS_H_
/* Forward declaration */
struct lwp;
#define LINUX_SYS_MAXSYSARGS 8
#undef syscallarg
#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; \
}
#undef check_syscall_args
#define check_syscall_args(call) /*LINTED*/ \
typedef char call##_check_args[sizeof (struct call##_args) \
<= LINUX_SYS_MAXSYSARGS * sizeof (register_t) ? 1 : -1];
struct linux_sys_exit_args {
syscallarg(int) rval;
};
check_syscall_args(linux_sys_exit)
struct sys_read_args;
struct sys_write_args;
struct linux_sys_open_args {
syscallarg(const char *) path;
syscallarg(int) flags;
syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_open)
struct sys_close_args;
struct linux_sys_waitpid_args {
syscallarg(int) pid;
syscallarg(int *) status;
syscallarg(int) options;
};
check_syscall_args(linux_sys_waitpid)
struct linux_sys_creat_args {
syscallarg(const char *) path;
syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_creat)
struct sys_link_args;
struct linux_sys_unlink_args {
syscallarg(const char *) path;
};
check_syscall_args(linux_sys_unlink)
struct sys_execve_args;
struct sys_chdir_args;
struct linux_sys_time_args {
syscallarg(linux_time_t *) t;
};
check_syscall_args(linux_sys_time)
struct linux_sys_mknod_args {
syscallarg(const char *) path;
syscallarg(linux_umode_t) mode;
syscallarg(unsigned) dev;
};
check_syscall_args(linux_sys_mknod)
struct sys_chmod_args;
struct linux_sys_lchown16_args {
syscallarg(const char *) path;
syscallarg(linux_uid16_t) uid;
syscallarg(linux_gid16_t) gid;
};
check_syscall_args(linux_sys_lchown16)
struct compat_43_sys_lseek_args;
struct sys_setuid_args;
struct linux_sys_stime_args {
syscallarg(linux_time_t *) t;
};
check_syscall_args(linux_sys_stime)
struct linux_sys_ptrace_args {
syscallarg(int) request;
syscallarg(int) pid;
syscallarg(int) addr;
syscallarg(int) data;
};
check_syscall_args(linux_sys_ptrace)
struct linux_sys_alarm_args {
syscallarg(unsigned int) secs;
};
check_syscall_args(linux_sys_alarm)
struct linux_sys_utime_args {
syscallarg(const char *) path;
syscallarg(struct linux_utimbuf *) times;
};
check_syscall_args(linux_sys_utime)
struct sys_access_args;
struct linux_sys_nice_args {
syscallarg(int) incr;
};
check_syscall_args(linux_sys_nice)
struct linux_sys_kill_args {
syscallarg(int) pid;
syscallarg(int) signum;
};
check_syscall_args(linux_sys_kill)
struct sys___posix_rename_args;
struct sys_mkdir_args;
struct sys_rmdir_args;
struct sys_dup_args;
struct linux_sys_pipe_args {
syscallarg(int *) pfds;
};
check_syscall_args(linux_sys_pipe)
struct linux_sys_times_args {
syscallarg(struct times *) tms;
};
check_syscall_args(linux_sys_times)
struct linux_sys_brk_args {
syscallarg(char *) nsize;
};
check_syscall_args(linux_sys_brk)
struct sys_setgid_args;
struct linux_sys_signal_args {
syscallarg(int) signum;
syscallarg(linux_handler_t) handler;
};
check_syscall_args(linux_sys_signal)
struct sys_acct_args;
struct linux_sys_ioctl_args {
syscallarg(int) fd;
syscallarg(u_long) com;
syscallarg(void *) data;
};
check_syscall_args(linux_sys_ioctl)
struct linux_sys_fcntl_args {
syscallarg(int) fd;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
check_syscall_args(linux_sys_fcntl)
struct sys_setpgid_args;
struct linux_sys_oldolduname_args {
syscallarg(struct linux_oldold_utsname *) up;
};
check_syscall_args(linux_sys_oldolduname)
struct sys_umask_args;
struct sys_chroot_args;
struct sys_dup2_args;
struct linux_sys_sigaction_args {
syscallarg(int) signum;
syscallarg(const struct linux_old_sigaction *) nsa;
syscallarg(struct linux_old_sigaction *) osa;
};
check_syscall_args(linux_sys_sigaction)
struct linux_sys_sigsetmask_args {
syscallarg(linux_old_sigset_t) mask;
};
check_syscall_args(linux_sys_sigsetmask)
struct linux_sys_setreuid16_args {
syscallarg(linux_uid16_t) ruid;
syscallarg(linux_uid16_t) euid;
};
check_syscall_args(linux_sys_setreuid16)
struct linux_sys_setregid16_args {
syscallarg(linux_gid16_t) rgid;
syscallarg(linux_gid16_t) egid;
};
check_syscall_args(linux_sys_setregid16)
struct linux_sys_sigsuspend_args {
syscallarg(void *) restart;
syscallarg(int) oldmask;
syscallarg(int) mask;
};
check_syscall_args(linux_sys_sigsuspend)
struct linux_sys_sigpending_args {
syscallarg(linux_old_sigset_t *) set;
};
check_syscall_args(linux_sys_sigpending)
struct compat_43_sys_sethostname_args;
struct linux_sys_setrlimit_args {
syscallarg(u_int) which;
syscallarg(struct orlimit *) rlp;
};
check_syscall_args(linux_sys_setrlimit)
struct linux_sys_getrlimit_args {
syscallarg(u_int) which;
syscallarg(struct orlimit *) rlp;
};
check_syscall_args(linux_sys_getrlimit)
struct compat_50_sys_getrusage_args;
struct linux_sys_gettimeofday_args {
syscallarg(struct timeval50 *) tp;
syscallarg(struct timezone *) tzp;
};
check_syscall_args(linux_sys_gettimeofday)
struct linux_sys_settimeofday_args {
syscallarg(struct timeval50 *) tp;
syscallarg(struct timezone *) tzp;
};
check_syscall_args(linux_sys_settimeofday)
struct linux_sys_getgroups16_args {
syscallarg(int) gidsetsize;
syscallarg(linux_gid16_t *) gidset;
};
check_syscall_args(linux_sys_getgroups16)
struct linux_sys_setgroups16_args {
syscallarg(int) gidsetsize;
syscallarg(linux_gid16_t *) gidset;
};
check_syscall_args(linux_sys_setgroups16)
struct linux_sys_oldselect_args {
syscallarg(struct linux_oldselect *) lsp;
};
check_syscall_args(linux_sys_oldselect)
struct sys_symlink_args;
struct compat_43_sys_lstat_args;
struct sys_readlink_args;
#ifdef EXEC_AOUT
struct linux_sys_uselib_args {
syscallarg(const char *) path;
};
check_syscall_args(linux_sys_uselib)
#else
#endif
struct linux_sys_swapon_args {
syscallarg(char *) name;
};
check_syscall_args(linux_sys_swapon)
struct linux_sys_reboot_args {
syscallarg(int) magic1;
syscallarg(int) magic2;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
check_syscall_args(linux_sys_reboot)
struct linux_sys_readdir_args {
syscallarg(int) fd;
syscallarg(void *) dent;
syscallarg(unsigned int) count;
};
check_syscall_args(linux_sys_readdir)
struct linux_sys_old_mmap_args {
syscallarg(struct linux_oldmmap *) lmp;
};
check_syscall_args(linux_sys_old_mmap)
struct sys_munmap_args;
struct compat_43_sys_truncate_args;
struct compat_43_sys_ftruncate_args;
struct sys_fchmod_args;
struct linux_sys_fchown16_args {
syscallarg(int) fd;
syscallarg(linux_uid16_t) uid;
syscallarg(linux_gid16_t) gid;
};
check_syscall_args(linux_sys_fchown16)
struct linux_sys_getpriority_args {
syscallarg(int) which;
syscallarg(int) who;
};
check_syscall_args(linux_sys_getpriority)
struct sys_setpriority_args;
struct sys_profil_args;
struct linux_sys_statfs_args {
syscallarg(const char *) path;
syscallarg(struct linux_statfs *) sp;
};
check_syscall_args(linux_sys_statfs)
struct linux_sys_fstatfs_args {
syscallarg(int) fd;
syscallarg(struct linux_statfs *) sp;
};
check_syscall_args(linux_sys_fstatfs)
struct linux_sys_socketcall_args {
syscallarg(int) what;
syscallarg(void *) args;
};
check_syscall_args(linux_sys_socketcall)
struct compat_50_sys_setitimer_args;
struct compat_50_sys_getitimer_args;
struct linux_sys_stat_args {
syscallarg(const char *) path;
syscallarg(struct linux_stat *) sp;
};
check_syscall_args(linux_sys_stat)
struct linux_sys_lstat_args {
syscallarg(const char *) path;
syscallarg(struct linux_stat *) sp;
};
check_syscall_args(linux_sys_lstat)
struct linux_sys_fstat_args {
syscallarg(int) fd;
syscallarg(struct linux_stat *) sp;
};
check_syscall_args(linux_sys_fstat)
struct linux_sys_olduname_args {
syscallarg(struct linux_oldutsname *) up;
};
check_syscall_args(linux_sys_olduname)
struct linux_sys_wait4_args {
syscallarg(int) pid;
syscallarg(int *) status;
syscallarg(int) options;
syscallarg(struct rusage50 *) rusage;
};
check_syscall_args(linux_sys_wait4)
struct linux_sys_swapoff_args {
syscallarg(const char *) path;
};
check_syscall_args(linux_sys_swapoff)
struct linux_sys_sysinfo_args {
syscallarg(struct linux_sysinfo *) arg;
};
check_syscall_args(linux_sys_sysinfo)
struct linux_sys_ipc_args {
syscallarg(int) what;
syscallarg(int) a1;
syscallarg(int) a2;
syscallarg(int) a3;
syscallarg(void *) ptr;
};
check_syscall_args(linux_sys_ipc)
struct sys_fsync_args;
struct linux_sys_sigreturn_args {
syscallarg(struct linux_sigcontext *) scp;
};
check_syscall_args(linux_sys_sigreturn)
struct linux_sys_clone_args {
syscallarg(int) flags;
syscallarg(void *) stack;
syscallarg(void *) parent_tidptr;
syscallarg(void *) tls;
syscallarg(void *) child_tidptr;
};
check_syscall_args(linux_sys_clone)
struct linux_sys_setdomainname_args {
syscallarg(char *) domainname;
syscallarg(int) len;
};
check_syscall_args(linux_sys_setdomainname)
struct linux_sys_uname_args {
syscallarg(struct linux_utsname *) up;
};
check_syscall_args(linux_sys_uname)
struct linux_sys_mprotect_args {
syscallarg(const void *) start;
syscallarg(unsigned long) len;
syscallarg(int) prot;
};
check_syscall_args(linux_sys_mprotect)
struct linux_sys_sigprocmask_args {
syscallarg(int) how;
syscallarg(const linux_old_sigset_t *) set;
syscallarg(linux_old_sigset_t *) oset;
};
check_syscall_args(linux_sys_sigprocmask)
struct sys_getpgid_args;
struct sys_fchdir_args;
struct linux_sys_personality_args {
syscallarg(unsigned long) per;
};
check_syscall_args(linux_sys_personality)
struct linux_sys_setfsuid_args {
syscallarg(uid_t) uid;
};
check_syscall_args(linux_sys_setfsuid)
struct linux_sys_setfsgid_args {
syscallarg(gid_t) gid;
};
check_syscall_args(linux_sys_setfsgid)
struct linux_sys_llseek_args {
syscallarg(int) fd;
syscallarg(u_int32_t) ohigh;
syscallarg(u_int32_t) olow;
syscallarg(void *) res;
syscallarg(int) whence;
};
check_syscall_args(linux_sys_llseek)
struct linux_sys_getdents_args {
syscallarg(int) fd;
syscallarg(struct linux_dirent *) dent;
syscallarg(unsigned int) count;
};
check_syscall_args(linux_sys_getdents)
struct linux_sys_select_args {
syscallarg(int) nfds;
syscallarg(fd_set *) readfds;
syscallarg(fd_set *) writefds;
syscallarg(fd_set *) exceptfds;
syscallarg(struct timeval50 *) timeout;
};
check_syscall_args(linux_sys_select)
struct sys_flock_args;
struct sys___msync13_args;
struct sys_readv_args;
struct sys_writev_args;
struct sys_getsid_args;
struct linux_sys_fdatasync_args {
syscallarg(int) fd;
};
check_syscall_args(linux_sys_fdatasync)
struct linux_sys___sysctl_args {
syscallarg(struct linux___sysctl *) lsp;
};
check_syscall_args(linux_sys___sysctl)
struct sys_mlock_args;
struct sys_munlock_args;
struct sys_mlockall_args;
struct linux_sys_sched_setparam_args {
syscallarg(pid_t) pid;
syscallarg(const struct linux_sched_param *) sp;
};
check_syscall_args(linux_sys_sched_setparam)
struct linux_sys_sched_getparam_args {
syscallarg(pid_t) pid;
syscallarg(struct linux_sched_param *) sp;
};
check_syscall_args(linux_sys_sched_getparam)
struct linux_sys_sched_setscheduler_args {
syscallarg(pid_t) pid;
syscallarg(int) policy;
syscallarg(const struct linux_sched_param *) sp;
};
check_syscall_args(linux_sys_sched_setscheduler)
struct linux_sys_sched_getscheduler_args {
syscallarg(pid_t) pid;
};
check_syscall_args(linux_sys_sched_getscheduler)
struct linux_sys_sched_get_priority_max_args {
syscallarg(int) policy;
};
check_syscall_args(linux_sys_sched_get_priority_max)
struct linux_sys_sched_get_priority_min_args {
syscallarg(int) policy;
};
check_syscall_args(linux_sys_sched_get_priority_min)
struct linux_sys_nanosleep_args {
syscallarg(const struct linux_timespec *) rqtp;
syscallarg(struct linux_timespec *) rmtp;
};
check_syscall_args(linux_sys_nanosleep)
struct linux_sys_mremap_args {
syscallarg(void *) old_address;
syscallarg(size_t) old_size;
syscallarg(size_t) new_size;
syscallarg(u_long) flags;
};
check_syscall_args(linux_sys_mremap)
struct linux_sys_setresuid16_args {
syscallarg(linux_uid16_t) ruid;
syscallarg(linux_uid16_t) euid;
syscallarg(linux_uid16_t) suid;
};
check_syscall_args(linux_sys_setresuid16)
struct linux_sys_getresuid16_args {
syscallarg(linux_uid16_t *) ruid;
syscallarg(linux_uid16_t *) euid;
syscallarg(linux_uid16_t *) suid;
};
check_syscall_args(linux_sys_getresuid16)
struct sys_poll_args;
struct linux_sys_setresgid16_args {
syscallarg(linux_gid16_t) rgid;
syscallarg(linux_gid16_t) egid;
syscallarg(linux_gid16_t) sgid;
};
check_syscall_args(linux_sys_setresgid16)
struct linux_sys_getresgid16_args {
syscallarg(linux_gid16_t *) rgid;
syscallarg(linux_gid16_t *) egid;
syscallarg(linux_gid16_t *) sgid;
};
check_syscall_args(linux_sys_getresgid16)
struct linux_sys_rt_sigaction_args {
syscallarg(int) signum;
syscallarg(const struct linux_sigaction *) nsa;
syscallarg(struct linux_sigaction *) osa;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigaction)
struct linux_sys_rt_sigprocmask_args {
syscallarg(int) how;
syscallarg(const linux_sigset_t *) set;
syscallarg(linux_sigset_t *) oset;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigprocmask)
struct linux_sys_rt_sigpending_args {
syscallarg(linux_sigset_t *) set;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigpending)
struct linux_sys_rt_sigtimedwait_args {
syscallarg(const linux_sigset_t *) set;
syscallarg(linux_siginfo_t *) info;
syscallarg(const struct linux_timespec *) timeout;
};
check_syscall_args(linux_sys_rt_sigtimedwait)
struct linux_sys_rt_queueinfo_args {
syscallarg(int) pid;
syscallarg(int) signum;
syscallarg(linux_siginfo_t *) uinfo;
};
check_syscall_args(linux_sys_rt_queueinfo)
struct linux_sys_rt_sigsuspend_args {
syscallarg(linux_sigset_t *) unewset;
syscallarg(size_t) sigsetsize;
};
check_syscall_args(linux_sys_rt_sigsuspend)
struct linux_sys_pread_args {
syscallarg(int) fd;
syscallarg(char *) buf;
syscallarg(size_t) nbyte;
syscallarg(off_t) offset;
};
check_syscall_args(linux_sys_pread)
struct linux_sys_pwrite_args {
syscallarg(int) fd;
syscallarg(char *) buf;
syscallarg(size_t) nbyte;
syscallarg(off_t) offset;
};
check_syscall_args(linux_sys_pwrite)
struct linux_sys_chown16_args {
syscallarg(const char *) path;
syscallarg(linux_uid16_t) uid;
syscallarg(linux_gid16_t) gid;
};
check_syscall_args(linux_sys_chown16)
struct sys___getcwd_args;
struct linux_sys_sigaltstack_args {
syscallarg(const struct linux_sigaltstack *) ss;
syscallarg(struct linux_sigaltstack *) oss;
};
check_syscall_args(linux_sys_sigaltstack)
struct linux_sys_ugetrlimit_args {
syscallarg(int) which;
syscallarg(struct rlimit *) rlp;
};
check_syscall_args(linux_sys_ugetrlimit)
#define linux_sys_mmap2_args linux_sys_mmap_args
struct linux_sys_mmap2_args;
struct linux_sys_truncate64_args {
syscallarg(const char *) path;
syscallarg(off_t) length;
};
check_syscall_args(linux_sys_truncate64)
struct linux_sys_ftruncate64_args {
syscallarg(unsigned int) fd;
syscallarg(off_t) length;
};
check_syscall_args(linux_sys_ftruncate64)
struct linux_sys_stat64_args {
syscallarg(const char *) path;
syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_stat64)
struct linux_sys_lstat64_args {
syscallarg(const char *) path;
syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_lstat64)
struct linux_sys_fstat64_args {
syscallarg(int) fd;
syscallarg(struct linux_stat64 *) sp;
};
check_syscall_args(linux_sys_fstat64)
struct sys___posix_lchown_args;
struct sys_setreuid_args;
struct sys_setregid_args;
struct sys_getgroups_args;
struct sys_setgroups_args;
struct sys___posix_fchown_args;
struct linux_sys_setresuid_args {
syscallarg(uid_t) ruid;
syscallarg(uid_t) euid;
syscallarg(uid_t) suid;
};
check_syscall_args(linux_sys_setresuid)
struct linux_sys_getresuid_args {
syscallarg(uid_t *) ruid;
syscallarg(uid_t *) euid;
syscallarg(uid_t *) suid;
};
check_syscall_args(linux_sys_getresuid)
struct linux_sys_setresgid_args {
syscallarg(gid_t) rgid;
syscallarg(gid_t) egid;
syscallarg(gid_t) sgid;
};
check_syscall_args(linux_sys_setresgid)
struct linux_sys_getresgid_args {
syscallarg(gid_t *) rgid;
syscallarg(gid_t *) egid;
syscallarg(gid_t *) sgid;
};
check_syscall_args(linux_sys_getresgid)
struct sys___posix_chown_args;
struct sys_setuid_args;
struct sys_setgid_args;
struct linux_sys_setfsuid_args;
struct linux_sys_setfsgid_args;
struct linux_sys_getdents64_args {
syscallarg(int) fd;
syscallarg(struct linux_dirent64 *) dent;
syscallarg(unsigned int) count;
};
check_syscall_args(linux_sys_getdents64)
struct sys_mincore_args;
struct sys_madvise_args;
struct linux_sys_fcntl64_args {
syscallarg(int) fd;
syscallarg(int) cmd;
syscallarg(void *) arg;
};
check_syscall_args(linux_sys_fcntl64)
struct linux_sys_setxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_setxattr)
struct linux_sys_lsetxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_lsetxattr)
struct linux_sys_fsetxattr_args {
syscallarg(int) fd;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_fsetxattr)
struct linux_sys_getxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_getxattr)
struct linux_sys_lgetxattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_lgetxattr)
struct linux_sys_fgetxattr_args {
syscallarg(int) fd;
syscallarg(char *) name;
syscallarg(void *) value;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_fgetxattr)
struct linux_sys_listxattr_args {
syscallarg(char *) path;
syscallarg(char *) list;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_listxattr)
struct linux_sys_llistxattr_args {
syscallarg(char *) path;
syscallarg(char *) list;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_llistxattr)
struct linux_sys_flistxattr_args {
syscallarg(int) fd;
syscallarg(char *) list;
syscallarg(size_t) size;
};
check_syscall_args(linux_sys_flistxattr)
struct linux_sys_removexattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
};
check_syscall_args(linux_sys_removexattr)
struct linux_sys_lremovexattr_args {
syscallarg(char *) path;
syscallarg(char *) name;
};
check_syscall_args(linux_sys_lremovexattr)
struct linux_sys_fremovexattr_args {
syscallarg(int) fd;
syscallarg(char *) name;
};
check_syscall_args(linux_sys_fremovexattr)
struct linux_sys_tkill_args {
syscallarg(int) tid;
syscallarg(int) sig;
};
check_syscall_args(linux_sys_tkill)
struct linux_sys_futex_args {
syscallarg(int *) uaddr;
syscallarg(int) op;
syscallarg(int) val;
syscallarg(const struct linux_timespec *) timeout;
syscallarg(int *) uaddr2;
syscallarg(int) val3;
};
check_syscall_args(linux_sys_futex)
struct linux_sys_sched_setaffinity_args {
syscallarg(pid_t) pid;
syscallarg(unsigned int) len;
syscallarg(unsigned long *) mask;
};
check_syscall_args(linux_sys_sched_setaffinity)
struct linux_sys_sched_getaffinity_args {
syscallarg(pid_t) pid;
syscallarg(unsigned int) len;
syscallarg(unsigned long *) mask;
};
check_syscall_args(linux_sys_sched_getaffinity)
struct linux_sys_exit_group_args {
syscallarg(int) error_code;
};
check_syscall_args(linux_sys_exit_group)
struct linux_sys_set_tid_address_args {
syscallarg(int *) tid;
};
check_syscall_args(linux_sys_set_tid_address)
struct linux_sys_clock_settime_args {
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *) tp;
};
check_syscall_args(linux_sys_clock_settime)
struct linux_sys_clock_gettime_args {
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *) tp;
};
check_syscall_args(linux_sys_clock_gettime)
struct linux_sys_clock_getres_args {
syscallarg(clockid_t) which;
syscallarg(struct linux_timespec *) tp;
};
check_syscall_args(linux_sys_clock_getres)
struct linux_sys_clock_nanosleep_args {
syscallarg(clockid_t) which;
syscallarg(int) flags;
syscallarg(struct linux_timespec *) rqtp;
syscallarg(struct linux_timespec *) rmtp;
};
check_syscall_args(linux_sys_clock_nanosleep)
struct linux_sys_statfs64_args {
syscallarg(const char *) path;
syscallarg(size_t) sz;
syscallarg(struct linux_statfs64 *) sp;
};
check_syscall_args(linux_sys_statfs64)
struct linux_sys_fstatfs64_args {
syscallarg(int) fd;
syscallarg(size_t) sz;
syscallarg(struct linux_statfs64 *) sp;
};
check_syscall_args(linux_sys_fstatfs64)
struct linux_sys_tgkill_args {
syscallarg(int) tgid;
syscallarg(int) tid;
syscallarg(int) sig;
};
check_syscall_args(linux_sys_tgkill)
struct compat_50_sys_utimes_args;
struct linux_sys_fadvise64_64_args {
syscallarg(int) fd;
syscallarg(off_t) offset;
syscallarg(off_t) len;
syscallarg(int) advice;
};
check_syscall_args(linux_sys_fadvise64_64)
struct linux_sys_openat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) flags;
syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_openat)
struct sys_mkdirat_args;
struct linux_sys_mknodat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(linux_umode_t) mode;
syscallarg(unsigned) dev;
};
check_syscall_args(linux_sys_mknodat)
struct linux_sys_fchownat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(uid_t) owner;
syscallarg(gid_t) group;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_fchownat)
struct linux_sys_fstatat64_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(struct linux_stat64 *) sp;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_fstatat64)
struct linux_sys_unlinkat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_unlinkat)
struct sys_renameat_args;
struct linux_sys_linkat_args {
syscallarg(int) fd1;
syscallarg(const char *) name1;
syscallarg(int) fd2;
syscallarg(const char *) name2;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_linkat)
struct sys_symlinkat_args;
struct sys_readlinkat_args;
struct linux_sys_fchmodat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_fchmodat)
struct linux_sys_faccessat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(int) amode;
};
check_syscall_args(linux_sys_faccessat)
struct linux_sys_pselect6_args {
syscallarg(int) nfds;
syscallarg(fd_set *) readfds;
syscallarg(fd_set *) writefds;
syscallarg(fd_set *) exceptfds;
syscallarg(struct linux_timespec *) timeout;
syscallarg(linux_sized_sigset_t *) ss;
};
check_syscall_args(linux_sys_pselect6)
struct linux_sys_ppoll_args {
syscallarg(struct pollfd *) fds;
syscallarg(u_int) nfds;
syscallarg(struct linux_timespec *) timeout;
syscallarg(linux_sigset_t *) sigset;
};
check_syscall_args(linux_sys_ppoll)
struct linux_sys_set_robust_list_args {
syscallarg(struct linux_robust_list_head *) head;
syscallarg(size_t) len;
};
check_syscall_args(linux_sys_set_robust_list)
struct linux_sys_get_robust_list_args {
syscallarg(int) pid;
syscallarg(struct linux_robust_list_head **) head;
syscallarg(size_t *) len;
};
check_syscall_args(linux_sys_get_robust_list)
struct linux_sys_utimensat_args {
syscallarg(int) fd;
syscallarg(const char *) path;
syscallarg(struct linux_timespec *) times;
syscallarg(int) flag;
};
check_syscall_args(linux_sys_utimensat)
struct linux_sys_dup3_args {
syscallarg(int) from;
syscallarg(int) to;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_dup3)
struct linux_sys_pipe2_args {
syscallarg(int *) pfds;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_pipe2)
struct linux_sys_recvmmsg_args {
syscallarg(int) s;
syscallarg(struct linux_mmsghdr *) msgvec;
syscallarg(unsigned int) vlen;
syscallarg(unsigned int) flags;
syscallarg(struct timespec *) timeout;
};
check_syscall_args(linux_sys_recvmmsg)
struct linux_sys_accept4_args {
syscallarg(int) s;
syscallarg(struct osockaddr *) name;
syscallarg(int *) anamelen;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_accept4)
struct linux_sys_sendmmsg_args {
syscallarg(int) s;
syscallarg(struct linux_mmsghdr *) msgvec;
syscallarg(unsigned int) vlen;
syscallarg(unsigned int) flags;
};
check_syscall_args(linux_sys_sendmmsg)
struct linux_sys_cacheflush_args {
syscallarg(uintptr_t) from;
syscallarg(intptr_t) to;
syscallarg(int) flags;
};
check_syscall_args(linux_sys_cacheflush)
struct linux_sys_set_tls_args {
syscallarg(void *) tls;
};
check_syscall_args(linux_sys_set_tls)
/*
* System call prototypes.
*/
int linux_sys_nosys(struct lwp *, const void *, register_t *);
int linux_sys_exit(struct lwp *, const struct linux_sys_exit_args *, register_t *);
int sys_fork(struct lwp *, const void *, register_t *);
int sys_read(struct lwp *, const struct sys_read_args *, register_t *);
int sys_write(struct lwp *, const struct sys_write_args *, register_t *);
int linux_sys_open(struct lwp *, const struct linux_sys_open_args *, register_t *);
int sys_close(struct lwp *, const struct sys_close_args *, register_t *);
int linux_sys_waitpid(struct lwp *, const struct linux_sys_waitpid_args *, register_t *);
int linux_sys_creat(struct lwp *, const struct linux_sys_creat_args *, register_t *);
int sys_link(struct lwp *, const struct sys_link_args *, register_t *);
int linux_sys_unlink(struct lwp *, const struct linux_sys_unlink_args *, register_t *);
int sys_execve(struct lwp *, const struct sys_execve_args *, register_t *);
int sys_chdir(struct lwp *, const struct sys_chdir_args *, register_t *);
int linux_sys_time(struct lwp *, const struct linux_sys_time_args *, register_t *);
int linux_sys_mknod(struct lwp *, const struct linux_sys_mknod_args *, register_t *);
int sys_chmod(struct lwp *, const struct sys_chmod_args *, register_t *);
int linux_sys_lchown16(struct lwp *, const struct linux_sys_lchown16_args *, register_t *);
int compat_43_sys_lseek(struct lwp *, const struct compat_43_sys_lseek_args *, register_t *);
int sys_getpid(struct lwp *, const void *, register_t *);
int sys_setuid(struct lwp *, const struct sys_setuid_args *, register_t *);
int sys_getuid(struct lwp *, const void *, register_t *);
int linux_sys_stime(struct lwp *, const struct linux_sys_stime_args *, register_t *);
int linux_sys_ptrace(struct lwp *, const struct linux_sys_ptrace_args *, register_t *);
int linux_sys_alarm(struct lwp *, const struct linux_sys_alarm_args *, register_t *);
int linux_sys_pause(struct lwp *, const void *, register_t *);
int linux_sys_utime(struct lwp *, const struct linux_sys_utime_args *, register_t *);
int sys_access(struct lwp *, const struct sys_access_args *, register_t *);
int linux_sys_nice(struct lwp *, const struct linux_sys_nice_args *, register_t *);
int sys_sync(struct lwp *, const void *, register_t *);
int linux_sys_kill(struct lwp *, const struct linux_sys_kill_args *, register_t *);
int sys___posix_rename(struct lwp *, const struct sys___posix_rename_args *, register_t *);
int sys_mkdir(struct lwp *, const struct sys_mkdir_args *, register_t *);
int sys_rmdir(struct lwp *, const struct sys_rmdir_args *, register_t *);
int sys_dup(struct lwp *, const struct sys_dup_args *, register_t *);
int linux_sys_pipe(struct lwp *, const struct linux_sys_pipe_args *, register_t *);
int linux_sys_times(struct lwp *, const struct linux_sys_times_args *, register_t *);
int linux_sys_brk(struct lwp *, const struct linux_sys_brk_args *, register_t *);
int sys_setgid(struct lwp *, const struct sys_setgid_args *, register_t *);
int sys_getgid(struct lwp *, const void *, register_t *);
int linux_sys_signal(struct lwp *, const struct linux_sys_signal_args *, register_t *);
int sys_geteuid(struct lwp *, const void *, register_t *);
int sys_getegid(struct lwp *, const void *, register_t *);
int sys_acct(struct lwp *, const struct sys_acct_args *, register_t *);
int linux_sys_ioctl(struct lwp *, const struct linux_sys_ioctl_args *, register_t *);
int linux_sys_fcntl(struct lwp *, const struct linux_sys_fcntl_args *, register_t *);
int sys_setpgid(struct lwp *, const struct sys_setpgid_args *, register_t *);
int linux_sys_oldolduname(struct lwp *, const struct linux_sys_oldolduname_args *, register_t *);
int sys_umask(struct lwp *, const struct sys_umask_args *, register_t *);
int sys_chroot(struct lwp *, const struct sys_chroot_args *, register_t *);
int sys_dup2(struct lwp *, const struct sys_dup2_args *, register_t *);
int sys_getppid(struct lwp *, const void *, register_t *);
int sys_getpgrp(struct lwp *, const void *, register_t *);
int sys_setsid(struct lwp *, const void *, register_t *);
int linux_sys_sigaction(struct lwp *, const struct linux_sys_sigaction_args *, register_t *);
int linux_sys_siggetmask(struct lwp *, const void *, register_t *);
int linux_sys_sigsetmask(struct lwp *, const struct linux_sys_sigsetmask_args *, register_t *);
int linux_sys_setreuid16(struct lwp *, const struct linux_sys_setreuid16_args *, register_t *);
int linux_sys_setregid16(struct lwp *, const struct linux_sys_setregid16_args *, register_t *);
int linux_sys_sigsuspend(struct lwp *, const struct linux_sys_sigsuspend_args *, register_t *);
int linux_sys_sigpending(struct lwp *, const struct linux_sys_sigpending_args *, register_t *);
int compat_43_sys_sethostname(struct lwp *, const struct compat_43_sys_sethostname_args *, register_t *);
int linux_sys_setrlimit(struct lwp *, const struct linux_sys_setrlimit_args *, register_t *);
int linux_sys_getrlimit(struct lwp *, const struct linux_sys_getrlimit_args *, register_t *);
int compat_50_sys_getrusage(struct lwp *, const struct compat_50_sys_getrusage_args *, register_t *);
int linux_sys_gettimeofday(struct lwp *, const struct linux_sys_gettimeofday_args *, register_t *);
int linux_sys_settimeofday(struct lwp *, const struct linux_sys_settimeofday_args *, register_t *);
int linux_sys_getgroups16(struct lwp *, const struct linux_sys_getgroups16_args *, register_t *);
int linux_sys_setgroups16(struct lwp *, const struct linux_sys_setgroups16_args *, register_t *);
int linux_sys_oldselect(struct lwp *, const struct linux_sys_oldselect_args *, register_t *);
int sys_symlink(struct lwp *, const struct sys_symlink_args *, register_t *);
int compat_43_sys_lstat(struct lwp *, const struct compat_43_sys_lstat_args *, register_t *);
int sys_readlink(struct lwp *, const struct sys_readlink_args *, register_t *);
#ifdef EXEC_AOUT
int linux_sys_uselib(struct lwp *, const struct linux_sys_uselib_args *, register_t *);
#else
#endif
int linux_sys_swapon(struct lwp *, const struct linux_sys_swapon_args *, register_t *);
int linux_sys_reboot(struct lwp *, const struct linux_sys_reboot_args *, register_t *);
int linux_sys_readdir(struct lwp *, const struct linux_sys_readdir_args *, register_t *);
int linux_sys_old_mmap(struct lwp *, const struct linux_sys_old_mmap_args *, register_t *);
int sys_munmap(struct lwp *, const struct sys_munmap_args *, register_t *);
int compat_43_sys_truncate(struct lwp *, const struct compat_43_sys_truncate_args *, register_t *);
int compat_43_sys_ftruncate(struct lwp *, const struct compat_43_sys_ftruncate_args *, register_t *);
int sys_fchmod(struct lwp *, const struct sys_fchmod_args *, register_t *);
int linux_sys_fchown16(struct lwp *, const struct linux_sys_fchown16_args *, register_t *);
int linux_sys_getpriority(struct lwp *, const struct linux_sys_getpriority_args *, register_t *);
int sys_setpriority(struct lwp *, const struct sys_setpriority_args *, register_t *);
int sys_profil(struct lwp *, const struct sys_profil_args *, register_t *);
int linux_sys_statfs(struct lwp *, const struct linux_sys_statfs_args *, register_t *);
int linux_sys_fstatfs(struct lwp *, const struct linux_sys_fstatfs_args *, register_t *);
int linux_sys_socketcall(struct lwp *, const struct linux_sys_socketcall_args *, register_t *);
int compat_50_sys_setitimer(struct lwp *, const struct compat_50_sys_setitimer_args *, register_t *);
int compat_50_sys_getitimer(struct lwp *, const struct compat_50_sys_getitimer_args *, register_t *);
int linux_sys_stat(struct lwp *, const struct linux_sys_stat_args *, register_t *);
int linux_sys_lstat(struct lwp *, const struct linux_sys_lstat_args *, register_t *);
int linux_sys_fstat(struct lwp *, const struct linux_sys_fstat_args *, register_t *);
int linux_sys_olduname(struct lwp *, const struct linux_sys_olduname_args *, register_t *);
int linux_sys_wait4(struct lwp *, const struct linux_sys_wait4_args *, register_t *);
int linux_sys_swapoff(struct lwp *, const struct linux_sys_swapoff_args *, register_t *);
int linux_sys_sysinfo(struct lwp *, const struct linux_sys_sysinfo_args *, register_t *);
int linux_sys_ipc(struct lwp *, const struct linux_sys_ipc_args *, register_t *);
int sys_fsync(struct lwp *, const struct sys_fsync_args *, register_t *);
int linux_sys_sigreturn(struct lwp *, const struct linux_sys_sigreturn_args *, register_t *);
int linux_sys_clone(struct lwp *, const struct linux_sys_clone_args *, register_t *);
int linux_sys_setdomainname(struct lwp *, const struct linux_sys_setdomainname_args *, register_t *);
int linux_sys_uname(struct lwp *, const struct linux_sys_uname_args *, register_t *);
int linux_sys_mprotect(struct lwp *, const struct linux_sys_mprotect_args *, register_t *);
int linux_sys_sigprocmask(struct lwp *, const struct linux_sys_sigprocmask_args *, register_t *);
int sys_getpgid(struct lwp *, const struct sys_getpgid_args *, register_t *);
int sys_fchdir(struct lwp *, const struct sys_fchdir_args *, register_t *);
int linux_sys_personality(struct lwp *, const struct linux_sys_personality_args *, register_t *);
int linux_sys_setfsuid(struct lwp *, const struct linux_sys_setfsuid_args *, register_t *);
int linux_sys_setfsgid(struct lwp *, const struct linux_sys_setfsgid_args *, register_t *);
int linux_sys_llseek(struct lwp *, const struct linux_sys_llseek_args *, register_t *);
int linux_sys_getdents(struct lwp *, const struct linux_sys_getdents_args *, register_t *);
int linux_sys_select(struct lwp *, const struct linux_sys_select_args *, register_t *);
int sys_flock(struct lwp *, const struct sys_flock_args *, register_t *);
int sys___msync13(struct lwp *, const struct sys___msync13_args *, register_t *);
int sys_readv(struct lwp *, const struct sys_readv_args *, register_t *);
int sys_writev(struct lwp *, const struct sys_writev_args *, register_t *);
int sys_getsid(struct lwp *, const struct sys_getsid_args *, register_t *);
int linux_sys_fdatasync(struct lwp *, const struct linux_sys_fdatasync_args *, register_t *);
int linux_sys___sysctl(struct lwp *, const struct linux_sys___sysctl_args *, register_t *);
int sys_mlock(struct lwp *, const struct sys_mlock_args *, register_t *);
int sys_munlock(struct lwp *, const struct sys_munlock_args *, register_t *);
int sys_mlockall(struct lwp *, const struct sys_mlockall_args *, register_t *);
int sys_munlockall(struct lwp *, const void *, register_t *);
int linux_sys_sched_setparam(struct lwp *, const struct linux_sys_sched_setparam_args *, register_t *);
int linux_sys_sched_getparam(struct lwp *, const struct linux_sys_sched_getparam_args *, register_t *);
int linux_sys_sched_setscheduler(struct lwp *, const struct linux_sys_sched_setscheduler_args *, register_t *);
int linux_sys_sched_getscheduler(struct lwp *, const struct linux_sys_sched_getscheduler_args *, register_t *);
int linux_sys_sched_yield(struct lwp *, const void *, register_t *);
int linux_sys_sched_get_priority_max(struct lwp *, const struct linux_sys_sched_get_priority_max_args *, register_t *);
int linux_sys_sched_get_priority_min(struct lwp *, const struct linux_sys_sched_get_priority_min_args *, register_t *);
int linux_sys_nanosleep(struct lwp *, const struct linux_sys_nanosleep_args *, register_t *);
int linux_sys_mremap(struct lwp *, const struct linux_sys_mremap_args *, register_t *);
int linux_sys_setresuid16(struct lwp *, const struct linux_sys_setresuid16_args *, register_t *);
int linux_sys_getresuid16(struct lwp *, const struct linux_sys_getresuid16_args *, register_t *);
int sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
int linux_sys_setresgid16(struct lwp *, const struct linux_sys_setresgid16_args *, register_t *);
int linux_sys_getresgid16(struct lwp *, const struct linux_sys_getresgid16_args *, register_t *);
int linux_sys_rt_sigaction(struct lwp *, const struct linux_sys_rt_sigaction_args *, register_t *);
int linux_sys_rt_sigprocmask(struct lwp *, const struct linux_sys_rt_sigprocmask_args *, register_t *);
int linux_sys_rt_sigpending(struct lwp *, const struct linux_sys_rt_sigpending_args *, register_t *);
int linux_sys_rt_sigtimedwait(struct lwp *, const struct linux_sys_rt_sigtimedwait_args *, register_t *);
int linux_sys_rt_queueinfo(struct lwp *, const struct linux_sys_rt_queueinfo_args *, register_t *);
int linux_sys_rt_sigsuspend(struct lwp *, const struct linux_sys_rt_sigsuspend_args *, register_t *);
int linux_sys_pread(struct lwp *, const struct linux_sys_pread_args *, register_t *);
int linux_sys_pwrite(struct lwp *, const struct linux_sys_pwrite_args *, register_t *);
int linux_sys_chown16(struct lwp *, const struct linux_sys_chown16_args *, register_t *);
int sys___getcwd(struct lwp *, const struct sys___getcwd_args *, register_t *);
int linux_sys_sigaltstack(struct lwp *, const struct linux_sys_sigaltstack_args *, register_t *);
int sys___vfork14(struct lwp *, const void *, register_t *);
int linux_sys_ugetrlimit(struct lwp *, const struct linux_sys_ugetrlimit_args *, register_t *);
#define linux_sys_mmap2_args linux_sys_mmap_args
int linux_sys_mmap2(struct lwp *, const struct linux_sys_mmap2_args *, register_t *);
int linux_sys_truncate64(struct lwp *, const struct linux_sys_truncate64_args *, register_t *);
int linux_sys_ftruncate64(struct lwp *, const struct linux_sys_ftruncate64_args *, register_t *);
int linux_sys_stat64(struct lwp *, const struct linux_sys_stat64_args *, register_t *);
int linux_sys_lstat64(struct lwp *, const struct linux_sys_lstat64_args *, register_t *);
int linux_sys_fstat64(struct lwp *, const struct linux_sys_fstat64_args *, register_t *);
int sys___posix_lchown(struct lwp *, const struct sys___posix_lchown_args *, register_t *);
int sys_setreuid(struct lwp *, const struct sys_setreuid_args *, register_t *);
int sys_setregid(struct lwp *, const struct sys_setregid_args *, register_t *);
int sys_getgroups(struct lwp *, const struct sys_getgroups_args *, register_t *);
int sys_setgroups(struct lwp *, const struct sys_setgroups_args *, register_t *);
int sys___posix_fchown(struct lwp *, const struct sys___posix_fchown_args *, register_t *);
int linux_sys_setresuid(struct lwp *, const struct linux_sys_setresuid_args *, register_t *);
int linux_sys_getresuid(struct lwp *, const struct linux_sys_getresuid_args *, register_t *);
int linux_sys_setresgid(struct lwp *, const struct linux_sys_setresgid_args *, register_t *);
int linux_sys_getresgid(struct lwp *, const struct linux_sys_getresgid_args *, register_t *);
int sys___posix_chown(struct lwp *, const struct sys___posix_chown_args *, register_t *);
int linux_sys_getdents64(struct lwp *, const struct linux_sys_getdents64_args *, register_t *);
int sys_mincore(struct lwp *, const struct sys_mincore_args *, register_t *);
int sys_madvise(struct lwp *, const struct sys_madvise_args *, register_t *);
int linux_sys_fcntl64(struct lwp *, const struct linux_sys_fcntl64_args *, register_t *);
int linux_sys_gettid(struct lwp *, const void *, register_t *);
int linux_sys_setxattr(struct lwp *, const struct linux_sys_setxattr_args *, register_t *);
int linux_sys_lsetxattr(struct lwp *, const struct linux_sys_lsetxattr_args *, register_t *);
int linux_sys_fsetxattr(struct lwp *, const struct linux_sys_fsetxattr_args *, register_t *);
int linux_sys_getxattr(struct lwp *, const struct linux_sys_getxattr_args *, register_t *);
int linux_sys_lgetxattr(struct lwp *, const struct linux_sys_lgetxattr_args *, register_t *);
int linux_sys_fgetxattr(struct lwp *, const struct linux_sys_fgetxattr_args *, register_t *);
int linux_sys_listxattr(struct lwp *, const struct linux_sys_listxattr_args *, register_t *);
int linux_sys_llistxattr(struct lwp *, const struct linux_sys_llistxattr_args *, register_t *);
int linux_sys_flistxattr(struct lwp *, const struct linux_sys_flistxattr_args *, register_t *);
int linux_sys_removexattr(struct lwp *, const struct linux_sys_removexattr_args *, register_t *);
int linux_sys_lremovexattr(struct lwp *, const struct linux_sys_lremovexattr_args *, register_t *);
int linux_sys_fremovexattr(struct lwp *, const struct linux_sys_fremovexattr_args *, register_t *);
int linux_sys_tkill(struct lwp *, const struct linux_sys_tkill_args *, register_t *);
int linux_sys_futex(struct lwp *, const struct linux_sys_futex_args *, register_t *);
int linux_sys_sched_setaffinity(struct lwp *, const struct linux_sys_sched_setaffinity_args *, register_t *);
int linux_sys_sched_getaffinity(struct lwp *, const struct linux_sys_sched_getaffinity_args *, register_t *);
int linux_sys_exit_group(struct lwp *, const struct linux_sys_exit_group_args *, register_t *);
int linux_sys_set_tid_address(struct lwp *, const struct linux_sys_set_tid_address_args *, register_t *);
int linux_sys_clock_settime(struct lwp *, const struct linux_sys_clock_settime_args *, register_t *);
int linux_sys_clock_gettime(struct lwp *, const struct linux_sys_clock_gettime_args *, register_t *);
int linux_sys_clock_getres(struct lwp *, const struct linux_sys_clock_getres_args *, register_t *);
int linux_sys_clock_nanosleep(struct lwp *, const struct linux_sys_clock_nanosleep_args *, register_t *);
int linux_sys_statfs64(struct lwp *, const struct linux_sys_statfs64_args *, register_t *);
int linux_sys_fstatfs64(struct lwp *, const struct linux_sys_fstatfs64_args *, register_t *);
int linux_sys_tgkill(struct lwp *, const struct linux_sys_tgkill_args *, register_t *);
int compat_50_sys_utimes(struct lwp *, const struct compat_50_sys_utimes_args *, register_t *);
int linux_sys_fadvise64_64(struct lwp *, const struct linux_sys_fadvise64_64_args *, register_t *);
int linux_sys_openat(struct lwp *, const struct linux_sys_openat_args *, register_t *);
int sys_mkdirat(struct lwp *, const struct sys_mkdirat_args *, register_t *);
int linux_sys_mknodat(struct lwp *, const struct linux_sys_mknodat_args *, register_t *);
int linux_sys_fchownat(struct lwp *, const struct linux_sys_fchownat_args *, register_t *);
int linux_sys_fstatat64(struct lwp *, const struct linux_sys_fstatat64_args *, register_t *);
int linux_sys_unlinkat(struct lwp *, const struct linux_sys_unlinkat_args *, register_t *);
int sys_renameat(struct lwp *, const struct sys_renameat_args *, register_t *);
int linux_sys_linkat(struct lwp *, const struct linux_sys_linkat_args *, register_t *);
int sys_symlinkat(struct lwp *, const struct sys_symlinkat_args *, register_t *);
int sys_readlinkat(struct lwp *, const struct sys_readlinkat_args *, register_t *);
int linux_sys_fchmodat(struct lwp *, const struct linux_sys_fchmodat_args *, register_t *);
int linux_sys_faccessat(struct lwp *, const struct linux_sys_faccessat_args *, register_t *);
int linux_sys_pselect6(struct lwp *, const struct linux_sys_pselect6_args *, register_t *);
int linux_sys_ppoll(struct lwp *, const struct linux_sys_ppoll_args *, register_t *);
int linux_sys_set_robust_list(struct lwp *, const struct linux_sys_set_robust_list_args *, register_t *);
int linux_sys_get_robust_list(struct lwp *, const struct linux_sys_get_robust_list_args *, register_t *);
int linux_sys_utimensat(struct lwp *, const struct linux_sys_utimensat_args *, register_t *);
int linux_sys_dup3(struct lwp *, const struct linux_sys_dup3_args *, register_t *);
int linux_sys_pipe2(struct lwp *, const struct linux_sys_pipe2_args *, register_t *);
int linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, register_t *);
int linux_sys_accept4(struct lwp *, const struct linux_sys_accept4_args *, register_t *);
int linux_sys_sendmmsg(struct lwp *, const struct linux_sys_sendmmsg_args *, register_t *);
int linux_sys_breakpoint(struct lwp *, const void *, register_t *);
int linux_sys_cacheflush(struct lwp *, const struct linux_sys_cacheflush_args *, register_t *);
int linux_sys_set_tls(struct lwp *, const struct linux_sys_set_tls_args *, register_t *);
#endif /* _LINUX_SYS_SYSCALLARGS_H_ */
|