blob: 3a65859f10a6c9c1b86fd6e50cc9fb1a01f44a68 (
plain)
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
|
/* $NetBSD: netbsd32_syscall.h,v 1.157 2021/09/20 01:07:56 thorpej Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.141 2021/09/20 01:07:45 thorpej Exp
*/
#ifndef _NETBSD32_SYS_SYSCALL_H_
#define _NETBSD32_SYS_SYSCALL_H_
#define NETBSD32_SYS_MAXSYSARGS 8
/* syscall: "netbsd32_syscall" ret: "int" args: "int" "..." */
#define NETBSD32_SYS_netbsd32_syscall 0
/* syscall: "netbsd32_exit" ret: "void" args: "int" */
#define NETBSD32_SYS_netbsd32_exit 1
/* syscall: "fork" ret: "int" args: */
#define NETBSD32_SYS_fork 2
/* syscall: "netbsd32_read" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_read 3
/* syscall: "netbsd32_write" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_write 4
/* syscall: "netbsd32_open" ret: "int" args: "netbsd32_charp" "int" "..." */
#define NETBSD32_SYS_netbsd32_open 5
/* syscall: "netbsd32_close" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_close 6
/* syscall: "compat_50_netbsd32_wait4" ret: "int" args: "int" "netbsd32_intp" "int" "netbsd32_rusage50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_wait4 7
/* syscall: "compat_43_netbsd32_ocreat" ret: "int" args: "netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_compat_43_netbsd32_ocreat 8
/* syscall: "netbsd32_link" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_link 9
/* syscall: "netbsd32_unlink" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_unlink 10
/* 11 is obsolete execv */
/* syscall: "netbsd32_chdir" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_chdir 12
/* syscall: "netbsd32_fchdir" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_fchdir 13
/* syscall: "compat_50_netbsd32_mknod" ret: "int" args: "netbsd32_charp" "mode_t" "uint32_t" */
#define NETBSD32_SYS_compat_50_netbsd32_mknod 14
/* syscall: "netbsd32_chmod" ret: "int" args: "netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_netbsd32_chmod 15
/* syscall: "netbsd32_chown" ret: "int" args: "netbsd32_charp" "uid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32_chown 16
/* syscall: "netbsd32_break" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_break 17
/* syscall: "compat_20_netbsd32_getfsstat" ret: "int" args: "netbsd32_statfsp_t" "netbsd32_long" "int" */
#define NETBSD32_SYS_compat_20_netbsd32_getfsstat 18
/* syscall: "compat_43_netbsd32_olseek" ret: "netbsd32_long" args: "int" "netbsd32_long" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_olseek 19
/* syscall: "getpid" ret: "pid_t" args: */
#define NETBSD32_SYS_getpid 20
/* syscall: "compat_40_netbsd32_mount" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "int" "netbsd32_voidp" */
#define NETBSD32_SYS_compat_40_netbsd32_mount 21
/* syscall: "netbsd32_unmount" ret: "int" args: "netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_unmount 22
/* syscall: "netbsd32_setuid" ret: "int" args: "uid_t" */
#define NETBSD32_SYS_netbsd32_setuid 23
/* syscall: "getuid" ret: "uid_t" args: */
#define NETBSD32_SYS_getuid 24
/* syscall: "geteuid" ret: "uid_t" args: */
#define NETBSD32_SYS_geteuid 25
/* syscall: "netbsd32_ptrace" ret: "int" args: "int" "pid_t" "netbsd32_voidp" "int" */
#define NETBSD32_SYS_netbsd32_ptrace 26
/* syscall: "netbsd32_recvmsg" ret: "netbsd32_ssize_t" args: "int" "netbsd32_msghdrp_t" "int" */
#define NETBSD32_SYS_netbsd32_recvmsg 27
/* syscall: "netbsd32_sendmsg" ret: "netbsd32_ssize_t" args: "int" "netbsd32_msghdrp_t" "int" */
#define NETBSD32_SYS_netbsd32_sendmsg 28
/* syscall: "netbsd32_recvfrom" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" "int" "netbsd32_sockaddrp_t" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_recvfrom 29
/* syscall: "netbsd32_accept" ret: "int" args: "int" "netbsd32_sockaddrp_t" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_accept 30
/* syscall: "netbsd32_getpeername" ret: "int" args: "int" "netbsd32_sockaddrp_t" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_getpeername 31
/* syscall: "netbsd32_getsockname" ret: "int" args: "int" "netbsd32_sockaddrp_t" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_getsockname 32
/* syscall: "netbsd32_access" ret: "int" args: "netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_access 33
/* syscall: "netbsd32_chflags" ret: "int" args: "netbsd32_charp" "netbsd32_u_long" */
#define NETBSD32_SYS_netbsd32_chflags 34
/* syscall: "netbsd32_fchflags" ret: "int" args: "int" "netbsd32_u_long" */
#define NETBSD32_SYS_netbsd32_fchflags 35
/* syscall: "sync" ret: "void" args: */
#define NETBSD32_SYS_sync 36
/* syscall: "netbsd32_kill" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_kill 37
/* syscall: "compat_43_netbsd32_stat43" ret: "int" args: "netbsd32_charp" "netbsd32_stat43p_t" */
#define NETBSD32_SYS_compat_43_netbsd32_stat43 38
/* syscall: "getppid" ret: "pid_t" args: */
#define NETBSD32_SYS_getppid 39
/* syscall: "compat_43_netbsd32_lstat43" ret: "int" args: "netbsd32_charp" "netbsd32_stat43p_t" */
#define NETBSD32_SYS_compat_43_netbsd32_lstat43 40
/* syscall: "netbsd32_dup" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_dup 41
/* syscall: "pipe" ret: "int" args: */
#define NETBSD32_SYS_pipe 42
/* syscall: "getegid" ret: "gid_t" args: */
#define NETBSD32_SYS_getegid 43
/* syscall: "netbsd32_profil" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "netbsd32_u_long" "u_int" */
#define NETBSD32_SYS_netbsd32_profil 44
/* syscall: "netbsd32_ktrace" ret: "int" args: "netbsd32_charp" "int" "int" "int" */
#define NETBSD32_SYS_netbsd32_ktrace 45
/* syscall: "netbsd32_sigaction" ret: "int" args: "int" "netbsd32_sigactionp_t" "netbsd32_sigactionp_t" */
#define NETBSD32_SYS_netbsd32_sigaction 46
/* syscall: "getgid" ret: "gid_t" args: */
#define NETBSD32_SYS_getgid 47
/* syscall: "compat_13_sigprocmask13" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_compat_13_sigprocmask13 48
/* syscall: "netbsd32___getlogin" ret: "int" args: "netbsd32_charp" "u_int" */
#define NETBSD32_SYS_netbsd32___getlogin 49
/* syscall: "netbsd32_setlogin" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_setlogin 50
/* syscall: "netbsd32_acct" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_acct 51
/* syscall: "compat_13_sigpending13" ret: "int" args: */
#define NETBSD32_SYS_compat_13_sigpending13 52
/* syscall: "compat_13_netbsd32_sigaltstack13" ret: "int" args: "netbsd32_sigaltstack13p_t" "netbsd32_sigaltstack13p_t" */
#define NETBSD32_SYS_compat_13_netbsd32_sigaltstack13 53
/* syscall: "netbsd32_ioctl" ret: "int" args: "int" "netbsd32_u_long" "..." */
#define NETBSD32_SYS_netbsd32_ioctl 54
/* syscall: "compat_12_netbsd32_reboot" ret: "int" args: "int" */
#define NETBSD32_SYS_compat_12_netbsd32_reboot 55
/* syscall: "netbsd32_revoke" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_revoke 56
/* syscall: "netbsd32_symlink" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_symlink 57
/* syscall: "netbsd32_readlink" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_readlink 58
/* syscall: "netbsd32_execve" ret: "int" args: "netbsd32_charp" "netbsd32_charpp" "netbsd32_charpp" */
#define NETBSD32_SYS_netbsd32_execve 59
/* syscall: "netbsd32_umask" ret: "mode_t" args: "mode_t" */
#define NETBSD32_SYS_netbsd32_umask 60
/* syscall: "netbsd32_chroot" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_chroot 61
/* syscall: "compat_43_netbsd32_fstat43" ret: "int" args: "int" "netbsd32_stat43p_t" */
#define NETBSD32_SYS_compat_43_netbsd32_fstat43 62
/* syscall: "compat_43_netbsd32_ogetkerninfo" ret: "int" args: "int" "netbsd32_charp" "netbsd32_intp" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_ogetkerninfo 63
/* syscall: "compat_43_ogetpagesize" ret: "int" args: */
#define NETBSD32_SYS_compat_43_ogetpagesize 64
/* syscall: "compat_12_netbsd32_msync" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_compat_12_netbsd32_msync 65
/* syscall: "vfork" ret: "int" args: */
#define NETBSD32_SYS_vfork 66
/* 67 is obsolete vread */
/* 68 is obsolete vwrite */
/* 69 is obsolete sbrk */
/* 70 is obsolete sstk */
/* syscall: "compat_43_netbsd32_ommap" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "int" "int" "int" "netbsd32_long" */
#define NETBSD32_SYS_compat_43_netbsd32_ommap 71
/* syscall: "vadvise" ret: "int" args: "int" */
#define NETBSD32_SYS_vadvise 72
/* syscall: "netbsd32_munmap" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_munmap 73
/* syscall: "netbsd32_mprotect" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_mprotect 74
/* syscall: "netbsd32_madvise" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_madvise 75
/* 76 is obsolete vhangup */
/* 77 is obsolete vlimit */
/* syscall: "netbsd32_mincore" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_mincore 78
/* syscall: "netbsd32_getgroups" ret: "int" args: "int" "netbsd32_gid_tp" */
#define NETBSD32_SYS_netbsd32_getgroups 79
/* syscall: "netbsd32_setgroups" ret: "int" args: "int" "netbsd32_gid_tp" */
#define NETBSD32_SYS_netbsd32_setgroups 80
/* syscall: "getpgrp" ret: "int" args: */
#define NETBSD32_SYS_getpgrp 81
/* syscall: "netbsd32_setpgid" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_setpgid 82
/* syscall: "compat_50_netbsd32_setitimer" ret: "int" args: "int" "netbsd32_itimerval50p_t" "netbsd32_itimerval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_setitimer 83
/* syscall: "compat_43_owait" ret: "int" args: */
#define NETBSD32_SYS_compat_43_owait 84
/* syscall: "compat_12_netbsd32_oswapon" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_compat_12_netbsd32_oswapon 85
/* syscall: "compat_50_netbsd32_getitimer" ret: "int" args: "int" "netbsd32_itimerval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_getitimer 86
/* syscall: "compat_43_netbsd32_ogethostname" ret: "int" args: "netbsd32_charp" "u_int" */
#define NETBSD32_SYS_compat_43_netbsd32_ogethostname 87
/* syscall: "compat_43_netbsd32_osethostname" ret: "int" args: "netbsd32_charp" "u_int" */
#define NETBSD32_SYS_compat_43_netbsd32_osethostname 88
/* syscall: "compat_43_ogetdtablesize" ret: "int" args: */
#define NETBSD32_SYS_compat_43_ogetdtablesize 89
/* syscall: "netbsd32_dup2" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_dup2 90
/* syscall: "netbsd32_getrandom" ret: "netbsd32_ssize_t" args: "netbsd32_voidp" "netbsd32_size_t" "unsigned int" */
#define NETBSD32_SYS_netbsd32_getrandom 91
/* syscall: "netbsd32_fcntl" ret: "int" args: "int" "int" "..." */
#define NETBSD32_SYS_netbsd32_fcntl 92
/* syscall: "compat_50_netbsd32_select" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timeval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_select 93
/* syscall: "netbsd32_fsync" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_fsync 95
/* syscall: "netbsd32_setpriority" ret: "int" args: "int" "int" "int" */
#define NETBSD32_SYS_netbsd32_setpriority 96
/* syscall: "compat_30_netbsd32_socket" ret: "int" args: "int" "int" "int" */
#define NETBSD32_SYS_compat_30_netbsd32_socket 97
/* syscall: "netbsd32_connect" ret: "int" args: "int" "netbsd32_sockaddrp_t" "int" */
#define NETBSD32_SYS_netbsd32_connect 98
/* syscall: "compat_43_netbsd32_oaccept" ret: "int" args: "int" "netbsd32_voidp" "netbsd32_intp" */
#define NETBSD32_SYS_compat_43_netbsd32_oaccept 99
/* syscall: "netbsd32_getpriority" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_getpriority 100
/* syscall: "compat_43_netbsd32_osend" ret: "int" args: "int" "netbsd32_voidp" "int" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_osend 101
/* syscall: "compat_43_netbsd32_orecv" ret: "int" args: "int" "netbsd32_voidp" "int" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_orecv 102
/* syscall: "compat_13_sigreturn13" ret: "int" args: "netbsd32_sigcontextp_t" */
#define NETBSD32_SYS_compat_13_sigreturn13 103
/* syscall: "netbsd32_bind" ret: "int" args: "int" "netbsd32_sockaddrp_t" "int" */
#define NETBSD32_SYS_netbsd32_bind 104
/* syscall: "netbsd32_setsockopt" ret: "int" args: "int" "int" "int" "netbsd32_voidp" "int" */
#define NETBSD32_SYS_netbsd32_setsockopt 105
/* syscall: "netbsd32_listen" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_listen 106
/* 107 is obsolete vtimes */
/* syscall: "compat_43_netbsd32_osigvec" ret: "int" args: "int" "netbsd32_sigvecp_t" "netbsd32_sigvecp_t" */
#define NETBSD32_SYS_compat_43_netbsd32_osigvec 108
/* syscall: "compat_43_netbsd32_sigblock" ret: "int" args: "int" */
#define NETBSD32_SYS_compat_43_netbsd32_sigblock 109
/* syscall: "compat_43_netbsd32_sigsetmask" ret: "int" args: "int" */
#define NETBSD32_SYS_compat_43_netbsd32_sigsetmask 110
/* syscall: "compat_13_sigsuspend13" ret: "int" args: "int" */
#define NETBSD32_SYS_compat_13_sigsuspend13 111
/* syscall: "compat_43_netbsd32_osigstack" ret: "int" args: "netbsd32_sigstackp_t" "netbsd32_sigstackp_t" */
#define NETBSD32_SYS_compat_43_netbsd32_osigstack 112
/* syscall: "compat_43_netbsd32_orecvmsg" ret: "int" args: "int" "netbsd32_omsghdrp_t" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_orecvmsg 113
/* syscall: "compat_43_netbsd32_osendmsg" ret: "int" args: "int" "netbsd32_voidp" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_osendmsg 114
/* 115 is obsolete vtrace */
/* syscall: "compat_50_netbsd32_gettimeofday" ret: "int" args: "netbsd32_timeval50p_t" "netbsd32_timezonep_t" */
#define NETBSD32_SYS_compat_50_netbsd32_gettimeofday 116
/* syscall: "compat_50_netbsd32_getrusage" ret: "int" args: "int" "netbsd32_rusage50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_getrusage 117
/* syscall: "netbsd32_getsockopt" ret: "int" args: "int" "int" "int" "netbsd32_voidp" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_getsockopt 118
/* 119 is obsolete resuba */
/* syscall: "netbsd32_readv" ret: "netbsd32_ssize_t" args: "int" "netbsd32_iovecp_t" "int" */
#define NETBSD32_SYS_netbsd32_readv 120
/* syscall: "netbsd32_writev" ret: "netbsd32_ssize_t" args: "int" "netbsd32_iovecp_t" "int" */
#define NETBSD32_SYS_netbsd32_writev 121
/* syscall: "compat_50_netbsd32_settimeofday" ret: "int" args: "netbsd32_timeval50p_t" "netbsd32_timezonep_t" */
#define NETBSD32_SYS_compat_50_netbsd32_settimeofday 122
/* syscall: "netbsd32_fchown" ret: "int" args: "int" "uid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32_fchown 123
/* syscall: "netbsd32_fchmod" ret: "int" args: "int" "mode_t" */
#define NETBSD32_SYS_netbsd32_fchmod 124
/* syscall: "compat_43_netbsd32_orecvfrom" ret: "int" args: "int" "netbsd32_voidp" "netbsd32_size_t" "int" "netbsd32_voidp" "netbsd32_intp" */
#define NETBSD32_SYS_compat_43_netbsd32_orecvfrom 125
/* syscall: "netbsd32_setreuid" ret: "int" args: "uid_t" "uid_t" */
#define NETBSD32_SYS_netbsd32_setreuid 126
/* syscall: "netbsd32_setregid" ret: "int" args: "gid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32_setregid 127
/* syscall: "netbsd32_rename" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_rename 128
/* syscall: "compat_43_netbsd32_otruncate" ret: "int" args: "netbsd32_charp" "netbsd32_long" */
#define NETBSD32_SYS_compat_43_netbsd32_otruncate 129
/* syscall: "compat_43_netbsd32_oftruncate" ret: "int" args: "int" "netbsd32_long" */
#define NETBSD32_SYS_compat_43_netbsd32_oftruncate 130
/* syscall: "netbsd32_flock" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_flock 131
/* syscall: "netbsd32_mkfifo" ret: "int" args: "netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_netbsd32_mkfifo 132
/* syscall: "netbsd32_sendto" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" "int" "netbsd32_sockaddrp_t" "int" */
#define NETBSD32_SYS_netbsd32_sendto 133
/* syscall: "netbsd32_shutdown" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_shutdown 134
/* syscall: "netbsd32_socketpair" ret: "int" args: "int" "int" "int" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_socketpair 135
/* syscall: "netbsd32_mkdir" ret: "int" args: "netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_netbsd32_mkdir 136
/* syscall: "netbsd32_rmdir" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_rmdir 137
/* syscall: "compat_50_netbsd32_utimes" ret: "int" args: "netbsd32_charp" "netbsd32_timeval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_utimes 138
/* 139 is obsolete 4.2 sigreturn */
/* syscall: "compat_50_netbsd32_adjtime" ret: "int" args: "netbsd32_timeval50p_t" "netbsd32_timeval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_adjtime 140
/* syscall: "compat_43_netbsd32_ogetpeername" ret: "int" args: "int" "netbsd32_voidp" "netbsd32_intp" */
#define NETBSD32_SYS_compat_43_netbsd32_ogetpeername 141
/* syscall: "compat_43_ogethostid" ret: "int32_t" args: */
#define NETBSD32_SYS_compat_43_ogethostid 142
/* syscall: "compat_43_netbsd32_sethostid" ret: "int" args: "int32_t" */
#define NETBSD32_SYS_compat_43_netbsd32_sethostid 143
/* syscall: "compat_43_netbsd32_ogetrlimit" ret: "int" args: "int" "netbsd32_orlimitp_t" */
#define NETBSD32_SYS_compat_43_netbsd32_ogetrlimit 144
/* syscall: "compat_43_netbsd32_osetrlimit" ret: "int" args: "int" "netbsd32_orlimitp_t" */
#define NETBSD32_SYS_compat_43_netbsd32_osetrlimit 145
/* syscall: "compat_43_netbsd32_killpg" ret: "int" args: "int" "int" */
#define NETBSD32_SYS_compat_43_netbsd32_killpg 146
/* syscall: "setsid" ret: "int" args: */
#define NETBSD32_SYS_setsid 147
/* syscall: "compat_50_netbsd32_quotactl" ret: "int" args: "netbsd32_charp" "int" "int" "netbsd32_voidp" */
#define NETBSD32_SYS_compat_50_netbsd32_quotactl 148
/* 149 is excluded compat_netbsd32_quota */
/* syscall: "compat_43_netbsd32_ogetsockname" ret: "int" args: "int" "netbsd32_voidp" "netbsd32_intp" */
#define NETBSD32_SYS_compat_43_netbsd32_ogetsockname 150
/* syscall: "netbsd32_nfssvc" ret: "int" args: "int" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32_nfssvc 155
/* syscall: "compat_43_netbsd32_ogetdirentries" ret: "int" args: "int" "netbsd32_charp" "u_int" "netbsd32_longp" */
#define NETBSD32_SYS_compat_43_netbsd32_ogetdirentries 156
/* syscall: "compat_20_netbsd32_statfs" ret: "int" args: "netbsd32_charp" "netbsd32_statfsp_t" */
#define NETBSD32_SYS_compat_20_netbsd32_statfs 157
/* syscall: "compat_20_netbsd32_fstatfs" ret: "int" args: "int" "netbsd32_statfsp_t" */
#define NETBSD32_SYS_compat_20_netbsd32_fstatfs 158
/* syscall: "compat_30_netbsd32_getfh" ret: "int" args: "netbsd32_charp" "netbsd32_compat_30_fhandlep_t" */
#define NETBSD32_SYS_compat_30_netbsd32_getfh 161
/* syscall: "compat_09_netbsd32_ogetdomainname" ret: "int" args: "netbsd32_charp" "int" */
#define NETBSD32_SYS_compat_09_netbsd32_ogetdomainname 162
/* syscall: "compat_09_netbsd32_osetdomainname" ret: "int" args: "netbsd32_charp" "int" */
#define NETBSD32_SYS_compat_09_netbsd32_osetdomainname 163
/* syscall: "compat_09_netbsd32_uname" ret: "int" args: "netbsd32_outsnamep_t" */
#define NETBSD32_SYS_compat_09_netbsd32_uname 164
/* syscall: "netbsd32_sysarch" ret: "int" args: "int" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32_sysarch 165
/* syscall: "netbsd32___futex" ret: "int" args: "netbsd32_intp" "int" "int" "const netbsd32_timespecp_t" "netbsd32_intp" "int" "int" */
#define NETBSD32_SYS_netbsd32___futex 166
/* syscall: "netbsd32___futex_set_robust_list" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32___futex_set_robust_list 167
/* syscall: "netbsd32___futex_get_robust_list" ret: "int" args: "lwpid_t" "netbsd32_voidp" "netbsd32_size_tp" */
#define NETBSD32_SYS_netbsd32___futex_get_robust_list 168
/* syscall: "compat_10_osemsys" ret: "int" args: "int" "int" "int" "int" "int" */
#define NETBSD32_SYS_compat_10_osemsys 169
/* syscall: "compat_10_omsgsys" ret: "int" args: "int" "int" "int" "int" "int" "int" */
#define NETBSD32_SYS_compat_10_omsgsys 170
/* syscall: "compat_10_oshmsys" ret: "int" args: "int" "int" "int" "int" */
#define NETBSD32_SYS_compat_10_oshmsys 171
/* syscall: "netbsd32_pread" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" "int" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_pread 173
/* syscall: "netbsd32_pwrite" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" "int" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_pwrite 174
/* syscall: "compat_30_netbsd32_ntp_gettime" ret: "int" args: "netbsd32_ntptimeval50p_t" */
#define NETBSD32_SYS_compat_30_netbsd32_ntp_gettime 175
#if defined(NTP) || !defined(_KERNEL_OPT)
/* syscall: "netbsd32_ntp_adjtime" ret: "int" args: "netbsd32_timexp_t" */
#define NETBSD32_SYS_netbsd32_ntp_adjtime 176
#else
/* 176 is excluded ntp_adjtime */
#endif
/* syscall: "netbsd32_timerfd_create" ret: "int" args: "netbsd32_clockid_t" "int" */
#define NETBSD32_SYS_netbsd32_timerfd_create 177
/* syscall: "netbsd32_timerfd_settime" ret: "int" args: "int" "int" "const netbsd32_itimerspecp_t" "netbsd32_itimerspecp_t" */
#define NETBSD32_SYS_netbsd32_timerfd_settime 178
/* syscall: "netbsd32_timerfd_gettime" ret: "int" args: "int" "netbsd32_itimerspecp_t" */
#define NETBSD32_SYS_netbsd32_timerfd_gettime 179
/* syscall: "netbsd32_setgid" ret: "int" args: "gid_t" */
#define NETBSD32_SYS_netbsd32_setgid 181
/* syscall: "netbsd32_setegid" ret: "int" args: "gid_t" */
#define NETBSD32_SYS_netbsd32_setegid 182
/* syscall: "netbsd32_seteuid" ret: "int" args: "uid_t" */
#define NETBSD32_SYS_netbsd32_seteuid 183
/* 184 is excluded netbsd32_lfs_bmapv */
/* 185 is excluded netbsd32_lfs_markv */
/* 186 is excluded netbsd32_lfs_segclean */
/* 187 is excluded netbsd32_lfs_segwait */
/* syscall: "compat_12_netbsd32_stat12" ret: "int" args: "netbsd32_charp" "netbsd32_stat12p_t" */
#define NETBSD32_SYS_compat_12_netbsd32_stat12 188
/* syscall: "compat_12_netbsd32_fstat12" ret: "int" args: "int" "netbsd32_stat12p_t" */
#define NETBSD32_SYS_compat_12_netbsd32_fstat12 189
/* syscall: "compat_12_netbsd32_lstat12" ret: "int" args: "netbsd32_charp" "netbsd32_stat12p_t" */
#define NETBSD32_SYS_compat_12_netbsd32_lstat12 190
/* syscall: "netbsd32_pathconf" ret: "netbsd32_long" args: "netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_pathconf 191
/* syscall: "netbsd32_fpathconf" ret: "netbsd32_long" args: "int" "int" */
#define NETBSD32_SYS_netbsd32_fpathconf 192
/* syscall: "netbsd32_getsockopt2" ret: "int" args: "int" "int" "int" "netbsd32_voidp" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32_getsockopt2 193
/* syscall: "netbsd32_getrlimit" ret: "int" args: "int" "netbsd32_rlimitp_t" */
#define NETBSD32_SYS_netbsd32_getrlimit 194
/* syscall: "netbsd32_setrlimit" ret: "int" args: "int" "netbsd32_rlimitp_t" */
#define NETBSD32_SYS_netbsd32_setrlimit 195
/* syscall: "compat_12_netbsd32_getdirentries" ret: "int" args: "int" "netbsd32_charp" "u_int" "netbsd32_longp" */
#define NETBSD32_SYS_compat_12_netbsd32_getdirentries 196
/* syscall: "netbsd32_mmap" ret: "netbsd32_voidp" args: "netbsd32_voidp" "netbsd32_size_t" "int" "int" "int" "netbsd32_long" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_mmap 197
/* syscall: "netbsd32____syscall" ret: "quad_t" args: "quad_t" "..." */
#define NETBSD32_SYS_netbsd32____syscall 198
/* syscall: "netbsd32_lseek" ret: "netbsd32_off_t" args: "int" "int" "netbsd32_off_t" "int" */
#define NETBSD32_SYS_netbsd32_lseek 199
/* syscall: "netbsd32_truncate" ret: "int" args: "netbsd32_charp" "int" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_truncate 200
/* syscall: "netbsd32_ftruncate" ret: "int" args: "int" "int" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_ftruncate 201
/* syscall: "netbsd32___sysctl" ret: "int" args: "netbsd32_intp" "u_int" "netbsd32_voidp" "netbsd32_size_tp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32___sysctl 202
/* syscall: "netbsd32_mlock" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_mlock 203
/* syscall: "netbsd32_munlock" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_munlock 204
/* syscall: "netbsd32_undelete" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_undelete 205
/* syscall: "compat_50_netbsd32_futimes" ret: "int" args: "int" "netbsd32_timeval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_futimes 206
/* syscall: "netbsd32_getpgid" ret: "int" args: "pid_t" */
#define NETBSD32_SYS_netbsd32_getpgid 207
/* syscall: "netbsd32_reboot" ret: "int" args: "int" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_reboot 208
/* syscall: "netbsd32_poll" ret: "int" args: "netbsd32_pollfdp_t" "u_int" "int" */
#define NETBSD32_SYS_netbsd32_poll 209
/* syscall: "compat_14_netbsd32___semctl" ret: "int" args: "int" "int" "int" "netbsd32_semunu_t" */
#define NETBSD32_SYS_compat_14_netbsd32___semctl 220
/* syscall: "netbsd32_semget" ret: "int" args: "netbsd32_key_t" "int" "int" */
#define NETBSD32_SYS_netbsd32_semget 221
/* syscall: "netbsd32_semop" ret: "int" args: "int" "netbsd32_sembufp_t" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_semop 222
/* syscall: "netbsd32_semconfig" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_semconfig 223
/* syscall: "compat_14_netbsd32_msgctl" ret: "int" args: "int" "int" "netbsd32_msqid_ds14p_t" */
#define NETBSD32_SYS_compat_14_netbsd32_msgctl 224
/* syscall: "netbsd32_msgget" ret: "int" args: "netbsd32_key_t" "int" */
#define NETBSD32_SYS_netbsd32_msgget 225
/* syscall: "netbsd32_msgsnd" ret: "int" args: "int" "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_msgsnd 226
/* syscall: "netbsd32_msgrcv" ret: "netbsd32_ssize_t" args: "int" "netbsd32_voidp" "netbsd32_size_t" "netbsd32_long" "int" */
#define NETBSD32_SYS_netbsd32_msgrcv 227
/* syscall: "netbsd32_shmat" ret: "netbsd32_voidp" args: "int" "netbsd32_voidp" "int" */
#define NETBSD32_SYS_netbsd32_shmat 228
/* syscall: "compat_14_netbsd32_shmctl" ret: "int" args: "int" "int" "netbsd32_shmid_dsp_t" */
#define NETBSD32_SYS_compat_14_netbsd32_shmctl 229
/* syscall: "netbsd32_shmdt" ret: "int" args: "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32_shmdt 230
/* syscall: "netbsd32_shmget" ret: "int" args: "netbsd32_key_t" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_shmget 231
/* syscall: "compat_50_netbsd32_clock_gettime" ret: "int" args: "netbsd32_clockid_t" "netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_clock_gettime 232
/* syscall: "compat_50_netbsd32_clock_settime" ret: "int" args: "netbsd32_clockid_t" "netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_clock_settime 233
/* syscall: "compat_50_netbsd32_clock_getres" ret: "int" args: "netbsd32_clockid_t" "netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_clock_getres 234
/* syscall: "netbsd32_timer_create" ret: "int" args: "netbsd32_clockid_t" "netbsd32_sigeventp_t" "netbsd32_timerp_t" */
#define NETBSD32_SYS_netbsd32_timer_create 235
/* syscall: "netbsd32_timer_delete" ret: "int" args: "netbsd32_timer_t" */
#define NETBSD32_SYS_netbsd32_timer_delete 236
/* syscall: "compat_50_netbsd32_timer_settime" ret: "int" args: "netbsd32_timer_t" "int" "netbsd32_itimerspec50p_t" "netbsd32_itimerspec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_timer_settime 237
/* syscall: "compat_50_netbsd32_timer_gettime" ret: "int" args: "netbsd32_timer_t" "netbsd32_itimerspec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_timer_gettime 238
/* syscall: "netbsd32_timer_getoverrun" ret: "int" args: "netbsd32_timer_t" */
#define NETBSD32_SYS_netbsd32_timer_getoverrun 239
/* syscall: "compat_50_netbsd32_nanosleep" ret: "int" args: "netbsd32_timespec50p_t" "netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_nanosleep 240
/* syscall: "netbsd32_fdatasync" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_fdatasync 241
/* syscall: "netbsd32_mlockall" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_mlockall 242
/* syscall: "munlockall" ret: "int" args: */
#define NETBSD32_SYS_munlockall 243
/* syscall: "compat_50_netbsd32___sigtimedwait" ret: "int" args: "netbsd32_sigsetp_t" "netbsd32_siginfop_t" "netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___sigtimedwait 244
/* syscall: "netbsd32_sigqueueinfo" ret: "int" args: "pid_t" "const netbsd32_siginfop_t" */
#define NETBSD32_SYS_netbsd32_sigqueueinfo 245
/* syscall: "netbsd32_modctl" ret: "int" args: "int" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32_modctl 246
/* syscall: "netbsd32__ksem_init" ret: "int" args: "unsigned int" "netbsd32_semidp_t" */
#define NETBSD32_SYS_netbsd32__ksem_init 247
/* syscall: "netbsd32__ksem_open" ret: "int" args: "netbsd32_charp" "int" "mode_t" "unsigned int" "netbsd32_semidp_t" */
#define NETBSD32_SYS_netbsd32__ksem_open 248
/* syscall: "netbsd32__ksem_unlink" ret: "int" args: "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32__ksem_unlink 249
/* syscall: "netbsd32__ksem_close" ret: "int" args: "netbsd32_intptr_t" */
#define NETBSD32_SYS_netbsd32__ksem_close 250
/* syscall: "netbsd32__ksem_post" ret: "int" args: "netbsd32_intptr_t" */
#define NETBSD32_SYS_netbsd32__ksem_post 251
/* syscall: "netbsd32__ksem_wait" ret: "int" args: "netbsd32_intptr_t" */
#define NETBSD32_SYS_netbsd32__ksem_wait 252
/* syscall: "netbsd32__ksem_trywait" ret: "int" args: "netbsd32_intptr_t" */
#define NETBSD32_SYS_netbsd32__ksem_trywait 253
/* syscall: "netbsd32__ksem_getvalue" ret: "int" args: "netbsd32_intptr_t" "netbsd32_intp" */
#define NETBSD32_SYS_netbsd32__ksem_getvalue 254
/* syscall: "netbsd32__ksem_destroy" ret: "int" args: "netbsd32_intptr_t" */
#define NETBSD32_SYS_netbsd32__ksem_destroy 255
/* syscall: "netbsd32__ksem_timedwait" ret: "int" args: "intptr_t" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32__ksem_timedwait 256
/* syscall: "netbsd32_mq_open" ret: "mqd_t" args: "const netbsd32_charp" "int" "mode_t" "netbsd32_mq_attrp_t" */
#define NETBSD32_SYS_netbsd32_mq_open 257
/* syscall: "netbsd32_mq_close" ret: "int" args: "mqd_t" */
#define NETBSD32_SYS_netbsd32_mq_close 258
/* syscall: "netbsd32_mq_unlink" ret: "int" args: "const netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_mq_unlink 259
/* syscall: "netbsd32_mq_getattr" ret: "int" args: "mqd_t" "netbsd32_mq_attrp_t" */
#define NETBSD32_SYS_netbsd32_mq_getattr 260
/* syscall: "netbsd32_mq_setattr" ret: "int" args: "mqd_t" "const netbsd32_mq_attrp_t" "netbsd32_mq_attrp_t" */
#define NETBSD32_SYS_netbsd32_mq_setattr 261
/* syscall: "netbsd32_mq_notify" ret: "int" args: "mqd_t" "const netbsd32_sigeventp_t" */
#define NETBSD32_SYS_netbsd32_mq_notify 262
/* syscall: "netbsd32_mq_send" ret: "int" args: "mqd_t" "const netbsd32_charp" "netbsd32_size_t" "unsigned" */
#define NETBSD32_SYS_netbsd32_mq_send 263
/* syscall: "netbsd32_mq_receive" ret: "netbsd32_ssize_t" args: "mqd_t" "netbsd32_charp" "netbsd32_size_t" "netbsd32_uintp" */
#define NETBSD32_SYS_netbsd32_mq_receive 264
/* syscall: "compat_50_netbsd32_mq_timedsend" ret: "int" args: "mqd_t" "const netbsd32_charp" "netbsd32_size_t" "unsigned" "const netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_mq_timedsend 265
/* syscall: "compat_50_netbsd32_mq_timedreceive" ret: "netbsd32_ssize_t" args: "mqd_t" "netbsd32_charp" "netbsd32_size_t" "netbsd32_uintp" "const netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_mq_timedreceive 266
/* syscall: "netbsd32_eventfd" ret: "int" args: "unsigned int" "int" */
#define NETBSD32_SYS_netbsd32_eventfd 267
/* syscall: "netbsd32___posix_rename" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32___posix_rename 270
/* syscall: "netbsd32_swapctl" ret: "int" args: "int" "netbsd32_voidp" "int" */
#define NETBSD32_SYS_netbsd32_swapctl 271
/* syscall: "compat_30_netbsd32_getdents" ret: "int" args: "int" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_compat_30_netbsd32_getdents 272
/* syscall: "netbsd32_minherit" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_minherit 273
/* syscall: "netbsd32_lchmod" ret: "int" args: "netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_netbsd32_lchmod 274
/* syscall: "netbsd32_lchown" ret: "int" args: "netbsd32_charp" "uid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32_lchown 275
/* syscall: "compat_50_netbsd32_lutimes" ret: "int" args: "netbsd32_charp" "netbsd32_timeval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_lutimes 276
/* syscall: "netbsd32___msync13" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32___msync13 277
/* syscall: "compat_30_netbsd32___stat13" ret: "int" args: "netbsd32_charp" "netbsd32_stat13p_t" */
#define NETBSD32_SYS_compat_30_netbsd32___stat13 278
/* syscall: "compat_30_netbsd32___fstat13" ret: "int" args: "int" "netbsd32_stat13p_t" */
#define NETBSD32_SYS_compat_30_netbsd32___fstat13 279
/* syscall: "compat_30_netbsd32___lstat13" ret: "int" args: "netbsd32_charp" "netbsd32_stat13p_t" */
#define NETBSD32_SYS_compat_30_netbsd32___lstat13 280
/* syscall: "netbsd32___sigaltstack14" ret: "int" args: "netbsd32_sigaltstackp_t" "netbsd32_sigaltstackp_t" */
#define NETBSD32_SYS_netbsd32___sigaltstack14 281
/* syscall: "__vfork14" ret: "int" args: */
#define NETBSD32_SYS___vfork14 282
/* syscall: "netbsd32___posix_chown" ret: "int" args: "netbsd32_charp" "uid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32___posix_chown 283
/* syscall: "netbsd32___posix_fchown" ret: "int" args: "int" "uid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32___posix_fchown 284
/* syscall: "netbsd32___posix_lchown" ret: "int" args: "netbsd32_charp" "uid_t" "gid_t" */
#define NETBSD32_SYS_netbsd32___posix_lchown 285
/* syscall: "netbsd32_getsid" ret: "pid_t" args: "pid_t" */
#define NETBSD32_SYS_netbsd32_getsid 286
/* syscall: "netbsd32___clone" ret: "int" args: "int" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32___clone 287
/* syscall: "netbsd32_fktrace" ret: "int" args: "int" "int" "int" "int" */
#define NETBSD32_SYS_netbsd32_fktrace 288
/* syscall: "netbsd32_preadv" ret: "netbsd32_ssize_t" args: "int" "netbsd32_iovecp_t" "int" "int" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_preadv 289
/* syscall: "netbsd32_pwritev" ret: "netbsd32_ssize_t" args: "int" "netbsd32_iovecp_t" "int" "int" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_pwritev 290
/* syscall: "netbsd32___sigaction14" ret: "int" args: "int" "netbsd32_sigactionp_t" "netbsd32_sigactionp_t" */
#define NETBSD32_SYS_netbsd32___sigaction14 291
/* syscall: "netbsd32___sigpending14" ret: "int" args: "netbsd32_sigsetp_t" */
#define NETBSD32_SYS_netbsd32___sigpending14 292
/* syscall: "netbsd32___sigprocmask14" ret: "int" args: "int" "netbsd32_sigsetp_t" "netbsd32_sigsetp_t" */
#define NETBSD32_SYS_netbsd32___sigprocmask14 293
/* syscall: "netbsd32___sigsuspend14" ret: "int" args: "netbsd32_sigsetp_t" */
#define NETBSD32_SYS_netbsd32___sigsuspend14 294
/* syscall: "compat_16_netbsd32___sigreturn14" ret: "int" args: "netbsd32_sigcontextp_t" */
#define NETBSD32_SYS_compat_16_netbsd32___sigreturn14 295
/* syscall: "netbsd32___getcwd" ret: "int" args: "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32___getcwd 296
/* syscall: "netbsd32_fchroot" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_fchroot 297
/* syscall: "compat_30_netbsd32_fhopen" ret: "int" args: "netbsd32_fhandlep_t" "int" */
#define NETBSD32_SYS_compat_30_netbsd32_fhopen 298
/* syscall: "compat_30_netbsd32_fhstat" ret: "int" args: "netbsd32_fhandlep_t" "netbsd32_stat13p_t" */
#define NETBSD32_SYS_compat_30_netbsd32_fhstat 299
/* syscall: "compat_20_netbsd32_fhstatfs" ret: "int" args: "netbsd32_fhandlep_t" "netbsd32_stat50p_t" */
#define NETBSD32_SYS_compat_20_netbsd32_fhstatfs 300
/* syscall: "compat_50_netbsd32___semctl14" ret: "int" args: "int" "int" "int" "..." */
#define NETBSD32_SYS_compat_50_netbsd32___semctl14 301
/* syscall: "compat_50_netbsd32___msgctl13" ret: "int" args: "int" "int" "netbsd32_msqid_ds50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___msgctl13 302
/* syscall: "compat_50_netbsd32___shmctl13" ret: "int" args: "int" "int" "netbsd32_shmid_ds50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___shmctl13 303
/* syscall: "netbsd32_lchflags" ret: "int" args: "netbsd32_charp" "netbsd32_u_long" */
#define NETBSD32_SYS_netbsd32_lchflags 304
/* syscall: "issetugid" ret: "int" args: */
#define NETBSD32_SYS_issetugid 305
/* syscall: "netbsd32_utrace" ret: "int" args: "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_utrace 306
/* syscall: "netbsd32_getcontext" ret: "int" args: "netbsd32_ucontextp" */
#define NETBSD32_SYS_netbsd32_getcontext 307
/* syscall: "netbsd32_setcontext" ret: "int" args: "netbsd32_ucontextp" */
#define NETBSD32_SYS_netbsd32_setcontext 308
/* syscall: "netbsd32__lwp_create" ret: "int" args: "netbsd32_ucontextp" "netbsd32_u_long" "netbsd32_lwpidp" */
#define NETBSD32_SYS_netbsd32__lwp_create 309
/* syscall: "_lwp_exit" ret: "int" args: */
#define NETBSD32_SYS__lwp_exit 310
/* syscall: "_lwp_self" ret: "lwpid_t" args: */
#define NETBSD32_SYS__lwp_self 311
/* syscall: "netbsd32__lwp_wait" ret: "int" args: "lwpid_t" "netbsd32_lwpidp" */
#define NETBSD32_SYS_netbsd32__lwp_wait 312
/* syscall: "netbsd32__lwp_suspend" ret: "int" args: "lwpid_t" */
#define NETBSD32_SYS_netbsd32__lwp_suspend 313
/* syscall: "netbsd32__lwp_continue" ret: "int" args: "lwpid_t" */
#define NETBSD32_SYS_netbsd32__lwp_continue 314
/* syscall: "netbsd32__lwp_wakeup" ret: "int" args: "lwpid_t" */
#define NETBSD32_SYS_netbsd32__lwp_wakeup 315
/* syscall: "_lwp_getprivate" ret: "netbsd32_voidp" args: */
#define NETBSD32_SYS__lwp_getprivate 316
/* syscall: "netbsd32__lwp_setprivate" ret: "void" args: "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32__lwp_setprivate 317
/* syscall: "netbsd32__lwp_kill" ret: "int" args: "lwpid_t" "int" */
#define NETBSD32_SYS_netbsd32__lwp_kill 318
/* syscall: "netbsd32__lwp_detach" ret: "int" args: "lwpid_t" */
#define NETBSD32_SYS_netbsd32__lwp_detach 319
/* syscall: "compat_50_netbsd32__lwp_park" ret: "int" args: "netbsd32_timespec50p_t" "lwpid_t" "netbsd32_voidp" "netbsd32_voidp" */
#define NETBSD32_SYS_compat_50_netbsd32__lwp_park 320
/* syscall: "netbsd32__lwp_unpark" ret: "int" args: "lwpid_t" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32__lwp_unpark 321
/* syscall: "netbsd32__lwp_unpark_all" ret: "netbsd32_size_t" args: "netbsd32_lwpidp" "netbsd32_size_t" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32__lwp_unpark_all 322
/* syscall: "netbsd32__lwp_setname" ret: "int" args: "lwpid_t" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32__lwp_setname 323
/* syscall: "netbsd32__lwp_getname" ret: "int" args: "lwpid_t" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32__lwp_getname 324
/* syscall: "netbsd32__lwp_ctl" ret: "int" args: "int" "netbsd32_pointer_t" */
#define NETBSD32_SYS_netbsd32__lwp_ctl 325
/* 330 is obsolete netbsd32_sa_register */
/* 331 is obsolete netbsd32_sa_stacks */
/* 332 is obsolete sa_enable */
/* 333 is obsolete netbsd32_sa_setconcurrency */
/* 334 is obsolete sa_yield */
/* 335 is obsolete netbsd32_sa_preempt */
/* 336 is obsolete sys_sa_unblockyield */
/* syscall: "netbsd32___sigaction_sigtramp" ret: "int" args: "int" "netbsd32_sigactionp_t" "netbsd32_sigactionp_t" "netbsd32_voidp" "int" */
#define NETBSD32_SYS_netbsd32___sigaction_sigtramp 340
/* 341 is obsolete netbsd32_pmc_get_info */
/* 342 is obsolete netbsd32_pmc_control */
/* syscall: "netbsd32_rasctl" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_rasctl 343
/* syscall: "kqueue" ret: "int" args: */
#define NETBSD32_SYS_kqueue 344
/* syscall: "compat_50_netbsd32_kevent" ret: "int" args: "int" "netbsd32_keventp_t" "netbsd32_size_t" "netbsd32_keventp_t" "netbsd32_size_t" "netbsd32_timespec50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_kevent 345
/* syscall: "netbsd32__sched_setparam" ret: "int" args: "pid_t" "lwpid_t" "int" "const netbsd32_sched_paramp_t" */
#define NETBSD32_SYS_netbsd32__sched_setparam 346
/* syscall: "netbsd32__sched_getparam" ret: "int" args: "pid_t" "lwpid_t" "netbsd32_intp" "netbsd32_sched_paramp_t" */
#define NETBSD32_SYS_netbsd32__sched_getparam 347
/* syscall: "netbsd32__sched_setaffinity" ret: "int" args: "pid_t" "lwpid_t" "netbsd32_size_t" "const netbsd32_cpusetp_t" */
#define NETBSD32_SYS_netbsd32__sched_setaffinity 348
/* syscall: "netbsd32__sched_getaffinity" ret: "int" args: "pid_t" "lwpid_t" "netbsd32_size_t" "netbsd32_cpusetp_t" */
#define NETBSD32_SYS_netbsd32__sched_getaffinity 349
/* syscall: "sched_yield" ret: "int" args: */
#define NETBSD32_SYS_sched_yield 350
/* syscall: "netbsd32__sched_protect" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32__sched_protect 351
/* syscall: "netbsd32_fsync_range" ret: "int" args: "int" "int" "netbsd32_off_t" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_fsync_range 354
/* syscall: "netbsd32_uuidgen" ret: "int" args: "netbsd32_uuidp_t" "int" */
#define NETBSD32_SYS_netbsd32_uuidgen 355
/* syscall: "compat_90_netbsd32_getvfsstat" ret: "int" args: "netbsd32_statvfs90p_t" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_compat_90_netbsd32_getvfsstat 356
/* syscall: "compat_90_netbsd32_statvfs1" ret: "int" args: "netbsd32_charp" "netbsd32_statvfs90p_t" "int" */
#define NETBSD32_SYS_compat_90_netbsd32_statvfs1 357
/* syscall: "compat_90_netbsd32_fstatvfs1" ret: "int" args: "int" "netbsd32_statvfs90p_t" "int" */
#define NETBSD32_SYS_compat_90_netbsd32_fstatvfs1 358
/* syscall: "compat_30_netbsd32_fhstatvfs1" ret: "int" args: "netbsd32_fhandlep_t" "netbsd32_statvfs90p_t" "int" */
#define NETBSD32_SYS_compat_30_netbsd32_fhstatvfs1 359
/* syscall: "netbsd32_extattrctl" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" "int" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_extattrctl 360
/* syscall: "netbsd32_extattr_set_file" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_set_file 361
/* syscall: "netbsd32_extattr_get_file" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_get_file 362
/* syscall: "netbsd32_extattr_delete_file" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_extattr_delete_file 363
/* syscall: "netbsd32_extattr_set_fd" ret: "int" args: "int" "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_set_fd 364
/* syscall: "netbsd32_extattr_get_fd" ret: "int" args: "int" "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_get_fd 365
/* syscall: "netbsd32_extattr_delete_fd" ret: "int" args: "int" "int" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_extattr_delete_fd 366
/* syscall: "netbsd32_extattr_set_link" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_set_link 367
/* syscall: "netbsd32_extattr_get_link" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_get_link 368
/* syscall: "netbsd32_extattr_delete_link" ret: "int" args: "netbsd32_charp" "int" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_extattr_delete_link 369
/* syscall: "netbsd32_extattr_list_fd" ret: "int" args: "int" "int" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_list_fd 370
/* syscall: "netbsd32_extattr_list_file" ret: "int" args: "netbsd32_charp" "int" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_list_file 371
/* syscall: "netbsd32_extattr_list_link" ret: "int" args: "netbsd32_charp" "int" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_extattr_list_link 372
/* syscall: "compat_50_netbsd32_pselect" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timespec50p_t" "netbsd32_sigsetp_t" */
#define NETBSD32_SYS_compat_50_netbsd32_pselect 373
/* syscall: "compat_50_netbsd32_pollts" ret: "int" args: "netbsd32_pollfdp_t" "u_int" "netbsd32_timespec50p_t" "netbsd32_sigsetp_t" */
#define NETBSD32_SYS_compat_50_netbsd32_pollts 374
/* syscall: "netbsd32_setxattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_setxattr 375
/* syscall: "netbsd32_lsetxattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_lsetxattr 376
/* syscall: "netbsd32_fsetxattr" ret: "int" args: "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_fsetxattr 377
/* syscall: "netbsd32_getxattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_getxattr 378
/* syscall: "netbsd32_lgetxattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_lgetxattr 379
/* syscall: "netbsd32_fgetxattr" ret: "int" args: "int" "netbsd32_charp" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_fgetxattr 380
/* syscall: "netbsd32_listxattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_listxattr 381
/* syscall: "netbsd32_llistxattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_llistxattr 382
/* syscall: "netbsd32_flistxattr" ret: "int" args: "int" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_flistxattr 383
/* syscall: "netbsd32_removexattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_removexattr 384
/* syscall: "netbsd32_lremovexattr" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_lremovexattr 385
/* syscall: "netbsd32_fremovexattr" ret: "int" args: "int" "netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_fremovexattr 386
/* syscall: "compat_50_netbsd32___stat30" ret: "int" args: "netbsd32_charp" "netbsd32_stat50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___stat30 387
/* syscall: "compat_50_netbsd32___fstat30" ret: "int" args: "int" "netbsd32_stat50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___fstat30 388
/* syscall: "compat_50_netbsd32___lstat30" ret: "int" args: "netbsd32_charp" "netbsd32_stat50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___lstat30 389
/* syscall: "netbsd32___getdents30" ret: "int" args: "int" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32___getdents30 390
/* 391 is ignored old posix fadvise */
/* syscall: "compat_30_netbsd32___fhstat30" ret: "int" args: "netbsd32_fhandlep_t" "netbsd32_stat50p_t" */
#define NETBSD32_SYS_compat_30_netbsd32___fhstat30 392
/* syscall: "compat_50_netbsd32_ntp_gettime" ret: "int" args: "netbsd32_ntptimeval50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32_ntp_gettime 393
/* syscall: "netbsd32___socket30" ret: "int" args: "int" "int" "int" */
#define NETBSD32_SYS_netbsd32___socket30 394
/* syscall: "netbsd32___getfh30" ret: "int" args: "netbsd32_charp" "netbsd32_pointer_t" "netbsd32_size_tp" */
#define NETBSD32_SYS_netbsd32___getfh30 395
/* syscall: "netbsd32___fhopen40" ret: "int" args: "netbsd32_pointer_t" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32___fhopen40 396
/* syscall: "compat_90_netbsd32_fhstatvfs1" ret: "int" args: "netbsd32_pointer_t" "netbsd32_size_t" "netbsd32_statvfs90p_t" "int" */
#define NETBSD32_SYS_compat_90_netbsd32_fhstatvfs1 397
/* syscall: "compat_50_netbsd32___fhstat40" ret: "int" args: "netbsd32_pointer_t" "netbsd32_size_t" "netbsd32_stat50p_t" */
#define NETBSD32_SYS_compat_50_netbsd32___fhstat40 398
/* syscall: "netbsd32___mount50" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "int" "netbsd32_voidp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32___mount50 410
/* syscall: "netbsd32_mremap" ret: "netbsd32_voidp" args: "netbsd32_voidp" "netbsd32_size_t" "netbsd32_voidp" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32_mremap 411
/* syscall: "netbsd32_pset_create" ret: "int" args: "netbsd32_psetidp_t" */
#define NETBSD32_SYS_netbsd32_pset_create 412
/* syscall: "netbsd32_pset_destroy" ret: "int" args: "psetid_t" */
#define NETBSD32_SYS_netbsd32_pset_destroy 413
/* syscall: "netbsd32_pset_assign" ret: "int" args: "psetid_t" "cpuid_t" "netbsd32_psetidp_t" */
#define NETBSD32_SYS_netbsd32_pset_assign 414
/* syscall: "netbsd32__pset_bind" ret: "int" args: "idtype_t" "id_t" "id_t" "psetid_t" "netbsd32_psetidp_t" */
#define NETBSD32_SYS_netbsd32__pset_bind 415
/* syscall: "netbsd32___posix_fadvise50" ret: "int" args: "int" "int" "netbsd32_off_t" "netbsd32_off_t" "int" */
#define NETBSD32_SYS_netbsd32___posix_fadvise50 416
/* syscall: "netbsd32___select50" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_timevalp_t" */
#define NETBSD32_SYS_netbsd32___select50 417
/* syscall: "netbsd32___gettimeofday50" ret: "int" args: "netbsd32_timevalp_t" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32___gettimeofday50 418
/* syscall: "netbsd32___settimeofday50" ret: "int" args: "const netbsd32_timevalp_t" "const netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32___settimeofday50 419
/* syscall: "netbsd32___utimes50" ret: "int" args: "const netbsd32_charp" "const netbsd32_timevalp_t" */
#define NETBSD32_SYS_netbsd32___utimes50 420
/* syscall: "netbsd32___adjtime50" ret: "int" args: "const netbsd32_timevalp_t" "netbsd32_timevalp_t" */
#define NETBSD32_SYS_netbsd32___adjtime50 421
/* 422 is excluded __lfs_segwait50 */
/* syscall: "netbsd32___futimes50" ret: "int" args: "int" "const netbsd32_timevalp_t" */
#define NETBSD32_SYS_netbsd32___futimes50 423
/* syscall: "netbsd32___lutimes50" ret: "int" args: "const netbsd32_charp" "const netbsd32_timevalp_t" */
#define NETBSD32_SYS_netbsd32___lutimes50 424
/* syscall: "netbsd32___setitimer50" ret: "int" args: "int" "const netbsd32_itimervalp_t" "netbsd32_itimervalp_t" */
#define NETBSD32_SYS_netbsd32___setitimer50 425
/* syscall: "netbsd32___getitimer50" ret: "int" args: "int" "netbsd32_itimervalp_t" */
#define NETBSD32_SYS_netbsd32___getitimer50 426
/* syscall: "netbsd32___clock_gettime50" ret: "int" args: "clockid_t" "netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___clock_gettime50 427
/* syscall: "netbsd32___clock_settime50" ret: "int" args: "clockid_t" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___clock_settime50 428
/* syscall: "netbsd32___clock_getres50" ret: "int" args: "clockid_t" "netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___clock_getres50 429
/* syscall: "netbsd32___nanosleep50" ret: "int" args: "const netbsd32_timespecp_t" "netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___nanosleep50 430
/* syscall: "netbsd32_____sigtimedwait50" ret: "int" args: "const netbsd32_sigsetp_t" "netbsd32_siginfop_t" "netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32_____sigtimedwait50 431
/* syscall: "netbsd32___mq_timedsend50" ret: "int" args: "mqd_t" "const netbsd32_charp" "netbsd32_size_t" "unsigned" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___mq_timedsend50 432
/* syscall: "netbsd32___mq_timedreceive50" ret: "netbsd32_ssize_t" args: "mqd_t" "netbsd32_charp" "netbsd32_size_t" "netbsd32_uintp" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___mq_timedreceive50 433
/* syscall: "compat_60_netbsd32__lwp_park" ret: "int" args: "const netbsd32_timespecp_t" "lwpid_t" "const netbsd32_voidp" "const netbsd32_voidp" */
#define NETBSD32_SYS_compat_60_netbsd32__lwp_park 434
/* syscall: "netbsd32___kevent50" ret: "int" args: "int" "const netbsd32_keventp_t" "netbsd32_size_t" "netbsd32_keventp_t" "netbsd32_size_t" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32___kevent50 435
/* syscall: "netbsd32___pselect50" ret: "int" args: "int" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "netbsd32_fd_setp_t" "const netbsd32_timespecp_t" "const netbsd32_sigsetp_t" */
#define NETBSD32_SYS_netbsd32___pselect50 436
/* syscall: "netbsd32___pollts50" ret: "int" args: "netbsd32_pollfdp_t" "u_int" "const netbsd32_timespecp_t" "const netbsd32_sigsetp_t" */
#define NETBSD32_SYS_netbsd32___pollts50 437
/* syscall: "netbsd32___stat50" ret: "int" args: "const netbsd32_charp" "netbsd32_statp_t" */
#define NETBSD32_SYS_netbsd32___stat50 439
/* syscall: "netbsd32___fstat50" ret: "int" args: "int" "netbsd32_statp_t" */
#define NETBSD32_SYS_netbsd32___fstat50 440
/* syscall: "netbsd32___lstat50" ret: "int" args: "const netbsd32_charp" "netbsd32_statp_t" */
#define NETBSD32_SYS_netbsd32___lstat50 441
/* syscall: "netbsd32_____semctl50" ret: "int" args: "int" "int" "int" "..." */
#define NETBSD32_SYS_netbsd32_____semctl50 442
/* syscall: "netbsd32___shmctl50" ret: "int" args: "int" "int" "netbsd32_shmid_dsp_t" */
#define NETBSD32_SYS_netbsd32___shmctl50 443
/* syscall: "netbsd32___msgctl50" ret: "int" args: "int" "int" "netbsd32_msqid_dsp_t" */
#define NETBSD32_SYS_netbsd32___msgctl50 444
/* syscall: "netbsd32___getrusage50" ret: "int" args: "int" "netbsd32_rusagep_t" */
#define NETBSD32_SYS_netbsd32___getrusage50 445
/* syscall: "netbsd32___timer_settime50" ret: "int" args: "timer_t" "int" "const netbsd32_itimerspecp_t" "netbsd32_itimerspecp_t" */
#define NETBSD32_SYS_netbsd32___timer_settime50 446
/* syscall: "netbsd32___timer_gettime50" ret: "int" args: "timer_t" "netbsd32_itimerspecp_t" */
#define NETBSD32_SYS_netbsd32___timer_gettime50 447
#if defined(NTP) || !defined(_KERNEL_OPT)
/* syscall: "netbsd32___ntp_gettime50" ret: "int" args: "netbsd32_ntptimevalp_t" */
#define NETBSD32_SYS_netbsd32___ntp_gettime50 448
#else
/* 448 is excluded ___ntp_gettime50 */
#endif
/* syscall: "netbsd32___wait450" ret: "int" args: "int" "netbsd32_intp" "int" "netbsd32_rusagep_t" */
#define NETBSD32_SYS_netbsd32___wait450 449
/* syscall: "netbsd32___mknod50" ret: "int" args: "const netbsd32_charp" "mode_t" "netbsd32_dev_t" */
#define NETBSD32_SYS_netbsd32___mknod50 450
/* syscall: "netbsd32___fhstat50" ret: "int" args: "const netbsd32_voidp" "netbsd32_size_t" "netbsd32_statp_t" */
#define NETBSD32_SYS_netbsd32___fhstat50 451
/* 452 is obsolete 5.99 quotactl */
/* syscall: "netbsd32_pipe2" ret: "int" args: "netbsd32_intp" "int" */
#define NETBSD32_SYS_netbsd32_pipe2 453
/* syscall: "netbsd32_dup3" ret: "int" args: "int" "int" "int" */
#define NETBSD32_SYS_netbsd32_dup3 454
/* syscall: "netbsd32_kqueue1" ret: "int" args: "int" */
#define NETBSD32_SYS_netbsd32_kqueue1 455
/* syscall: "netbsd32_paccept" ret: "int" args: "int" "netbsd32_sockaddrp_t" "netbsd32_socklenp_t" "const netbsd32_sigsetp_t" "int" */
#define NETBSD32_SYS_netbsd32_paccept 456
/* syscall: "netbsd32_linkat" ret: "int" args: "int" "const netbsd32_charp" "int" "const netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_linkat 457
/* syscall: "netbsd32_renameat" ret: "int" args: "int" "const netbsd32_charp" "int" "const netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_renameat 458
/* syscall: "netbsd32_mkfifoat" ret: "int" args: "int" "const netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_netbsd32_mkfifoat 459
/* syscall: "netbsd32_mknodat" ret: "int" args: "int" "const netbsd32_charp" "mode_t" "int" "netbsd32_dev_t" */
#define NETBSD32_SYS_netbsd32_mknodat 460
/* syscall: "netbsd32_mkdirat" ret: "int" args: "int" "const netbsd32_charp" "mode_t" */
#define NETBSD32_SYS_netbsd32_mkdirat 461
/* syscall: "netbsd32_faccessat" ret: "int" args: "int" "const netbsd32_charp" "int" "int" */
#define NETBSD32_SYS_netbsd32_faccessat 462
/* syscall: "netbsd32_fchmodat" ret: "int" args: "int" "const netbsd32_charp" "mode_t" "int" */
#define NETBSD32_SYS_netbsd32_fchmodat 463
/* syscall: "netbsd32_fchownat" ret: "int" args: "int" "const netbsd32_charp" "uid_t" "gid_t" "int" */
#define NETBSD32_SYS_netbsd32_fchownat 464
/* syscall: "netbsd32_fexecve" ret: "int" args: "int" "netbsd32_charpp" "netbsd32_charpp" */
#define NETBSD32_SYS_netbsd32_fexecve 465
/* syscall: "netbsd32_fstatat" ret: "int" args: "int" "const netbsd32_charp" "netbsd32_statp_t" "int" */
#define NETBSD32_SYS_netbsd32_fstatat 466
/* syscall: "netbsd32_utimensat" ret: "int" args: "int" "const netbsd32_charp" "const netbsd32_timespecp_t" "int" */
#define NETBSD32_SYS_netbsd32_utimensat 467
/* syscall: "netbsd32_openat" ret: "int" args: "int" "const netbsd32_charp" "int" "..." */
#define NETBSD32_SYS_netbsd32_openat 468
/* syscall: "netbsd32_readlinkat" ret: "netbsd32_ssize_t" args: "int" "const netbsd32_charp" "netbsd32_charp" "netbsd32_size_t" */
#define NETBSD32_SYS_netbsd32_readlinkat 469
/* syscall: "netbsd32_symlinkat" ret: "int" args: "const netbsd32_charp" "int" "const netbsd32_charp" */
#define NETBSD32_SYS_netbsd32_symlinkat 470
/* syscall: "netbsd32_unlinkat" ret: "int" args: "int" "const netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_unlinkat 471
/* syscall: "netbsd32_futimens" ret: "int" args: "int" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32_futimens 472
/* syscall: "netbsd32___quotactl" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32___quotactl 473
/* syscall: "netbsd32_posix_spawn" ret: "int" args: "netbsd32_pid_tp" "const netbsd32_charp" "const netbsd32_posix_spawn_file_actionsp" "const netbsd32_posix_spawnattrp" "netbsd32_charpp" "netbsd32_charpp" */
#define NETBSD32_SYS_netbsd32_posix_spawn 474
/* syscall: "netbsd32_recvmmsg" ret: "int" args: "int" "netbsd32_mmsghdrp_t" "unsigned int" "unsigned int" "netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32_recvmmsg 475
/* syscall: "netbsd32_sendmmsg" ret: "int" args: "int" "netbsd32_mmsghdrp_t" "unsigned int" "unsigned int" */
#define NETBSD32_SYS_netbsd32_sendmmsg 476
/* syscall: "netbsd32_clock_nanosleep" ret: "int" args: "netbsd32_clockid_t" "int" "const netbsd32_timespecp_t" "netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32_clock_nanosleep 477
/* syscall: "netbsd32____lwp_park60" ret: "int" args: "netbsd32_clockid_t" "int" "netbsd32_timespecp_t" "lwpid_t" "netbsd32_voidp" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32____lwp_park60 478
/* syscall: "netbsd32_posix_fallocate" ret: "int" args: "int" "int" "netbsd32_off_t" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_posix_fallocate 479
/* syscall: "netbsd32_fdiscard" ret: "int" args: "int" "int" "netbsd32_off_t" "netbsd32_off_t" */
#define NETBSD32_SYS_netbsd32_fdiscard 480
/* syscall: "netbsd32_wait6" ret: "int" args: "idtype_t" "id_t" "netbsd32_intp" "int" "netbsd32_wrusagep_t" "netbsd32_siginfop_t" */
#define NETBSD32_SYS_netbsd32_wait6 481
/* syscall: "netbsd32_clock_getcpuclockid2" ret: "int" args: "idtype_t" "id_t" "netbsd32_clockidp_t" */
#define NETBSD32_SYS_netbsd32_clock_getcpuclockid2 482
/* syscall: "netbsd32___getvfsstat90" ret: "int" args: "netbsd32_statvfsp_t" "netbsd32_size_t" "int" */
#define NETBSD32_SYS_netbsd32___getvfsstat90 483
/* syscall: "netbsd32___statvfs190" ret: "int" args: "netbsd32_charp" "netbsd32_statvfsp_t" "int" */
#define NETBSD32_SYS_netbsd32___statvfs190 484
/* syscall: "netbsd32___fstatvfs190" ret: "int" args: "int" "netbsd32_statvfsp_t" "int" */
#define NETBSD32_SYS_netbsd32___fstatvfs190 485
/* syscall: "netbsd32___fhstatvfs190" ret: "int" args: "netbsd32_voidp" "netbsd32_size_t" "netbsd32_statvfsp_t" "int" */
#define NETBSD32_SYS_netbsd32___fhstatvfs190 486
/* syscall: "netbsd32___acl_get_link" ret: "int" args: "const netbsd32_charp" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_get_link 487
/* syscall: "netbsd32___acl_set_link" ret: "int" args: "const netbsd32_charp" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_set_link 488
/* syscall: "netbsd32___acl_delete_link" ret: "int" args: "const netbsd32_charp" "acl_type_t" */
#define NETBSD32_SYS_netbsd32___acl_delete_link 489
/* syscall: "netbsd32___acl_aclcheck_link" ret: "int" args: "const netbsd32_charp" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_aclcheck_link 490
/* syscall: "netbsd32___acl_get_file" ret: "int" args: "const netbsd32_charp" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_get_file 491
/* syscall: "netbsd32___acl_set_file" ret: "int" args: "const netbsd32_charp" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_set_file 492
/* syscall: "netbsd32___acl_get_fd" ret: "int" args: "int" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_get_fd 493
/* syscall: "netbsd32___acl_set_fd" ret: "int" args: "int" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_set_fd 494
/* syscall: "netbsd32___acl_delete_file" ret: "int" args: "const netbsd32_charp" "acl_type_t" */
#define NETBSD32_SYS_netbsd32___acl_delete_file 495
/* syscall: "netbsd32___acl_delete_fd" ret: "int" args: "int" "acl_type_t" */
#define NETBSD32_SYS_netbsd32___acl_delete_fd 496
/* syscall: "netbsd32___acl_aclcheck_file" ret: "int" args: "const netbsd32_charp" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_aclcheck_file 497
/* syscall: "netbsd32___acl_aclcheck_fd" ret: "int" args: "int" "acl_type_t" "netbsd32_aclp_t" */
#define NETBSD32_SYS_netbsd32___acl_aclcheck_fd 498
/* syscall: "netbsd32_lpathconf" ret: "long" args: "const netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_lpathconf 499
#define NETBSD32_SYS_MAXSYSCALL 500
#define NETBSD32_SYS_NSYSENT 512
#endif /* _NETBSD32_SYS_SYSCALL_H_ */
|