linux-support 0.0.25

Comprehensive Linux support for namespaces, cgroups, processes, scheduling, parsing /proc, parsing /sys, signals, hyper threads, CPUS, NUMA nodes, unusual file descriptors, PCI devices and much, much more
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
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
// This file is part of linux-support. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/linux-support/master/COPYRIGHT. No part of linux-support, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2020 The developers of linux-support. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/linux-support/master/COPYRIGHT.


/// System calls wrapper.
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[derive(EnumIter)]
#[derive(Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
#[repr(usize)]
pub enum SYS
{
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] _llseek = 140,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] _newselect = 5022,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] _newselect = 142,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] _sysctl = 5152,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] _sysctl = 149,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] _sysctl = 149,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] _sysctl = 156,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] accept = 202,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] accept = 5042,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] accept = 330,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] accept = 202,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] accept = 43,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] accept4 = 242,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] accept4 = 5293,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] accept4 = 344,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] accept4 = 242,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] accept4 = 364,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] accept4 = 288,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] access = 5020,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] access = 33,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] access = 33,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] access = 21,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] acct = 89,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] acct = 5158,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] acct = 51,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] acct = 89,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] acct = 51,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] acct = 163,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] add_key = 217,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] add_key = 5239,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] add_key = 269,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] add_key = 217,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] add_key = 278,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] add_key = 248,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] adjtimex = 171,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] adjtimex = 5154,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] adjtimex = 124,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] adjtimex = 171,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] adjtimex = 124,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] adjtimex = 159,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] afs_syscall = 5176,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] afs_syscall = 137,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] afs_syscall = 137,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] afs_syscall = 183,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] alarm = 5037,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] alarm = 27,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] alarm = 27,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] alarm = 37,

	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] arch_prctl = 158,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] bdflush = 134,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] bdflush = 134,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] bind = 200,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] bind = 5048,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] bind = 327,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] bind = 200,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] bind = 361,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] bind = 49,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] bpf = 280,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] bpf = 5315,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] bpf = 361,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] bpf = 280,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] bpf = 351,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] bpf = 321,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] break_ = 17,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] brk = 214,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] brk = 5012,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] brk = 45,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] brk = 214,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] brk = 45,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] brk = 12,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] cachectl = 5198,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] cacheflush = 5197,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] capget = 90,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] capget = 5123,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] capget = 183,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] capget = 90,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] capget = 184,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] capget = 125,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] capset = 91,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] capset = 5124,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] capset = 184,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] capset = 91,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] capset = 185,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] capset = 126,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] chdir = 49,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] chdir = 5078,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] chdir = 12,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] chdir = 49,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] chdir = 12,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] chdir = 80,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] chmod = 5088,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] chmod = 15,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] chmod = 15,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] chmod = 90,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] chown = 5090,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] chown = 181,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] chown = 212,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] chown = 92,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] chroot = 51,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] chroot = 5156,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] chroot = 61,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] chroot = 51,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] chroot = 61,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] chroot = 161,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clock_adjtime = 266,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clock_adjtime = 5300,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clock_adjtime = 347,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clock_adjtime = 266,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clock_adjtime = 337,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clock_adjtime = 305,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clock_getres = 114,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clock_getres = 5223,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clock_getres = 247,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clock_getres = 114,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clock_getres = 261,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clock_getres = 229,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clock_gettime = 113,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clock_gettime = 5222,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clock_gettime = 246,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clock_gettime = 113,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clock_gettime = 260,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clock_gettime = 228,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clock_nanosleep = 115,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clock_nanosleep = 5224,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clock_nanosleep = 248,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clock_nanosleep = 115,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clock_nanosleep = 262,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clock_nanosleep = 230,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clock_settime = 112,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clock_settime = 5221,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clock_settime = 245,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clock_settime = 112,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clock_settime = 259,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clock_settime = 227,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clone = 220,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clone = 5055,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clone = 120,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clone = 220,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clone = 120,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clone = 56,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] clone3 = 435,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] clone3 = 5435,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] clone3 = 435,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] clone3 = 435,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] clone3 = 435,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] clone3 = 435,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] close = 57,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] close = 5003,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] close = 6,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] close = 57,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] close = 6,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] close = 3,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] connect = 203,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] connect = 5041,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] connect = 328,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] connect = 203,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] connect = 362,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] connect = 42,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] copy_file_range = 285,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] copy_file_range = 5320,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] copy_file_range = 379,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] copy_file_range = 285,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] copy_file_range = 375,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] copy_file_range = 326,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] creat = 5083,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] creat = 8,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] creat = 8,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] creat = 85,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] create_module = 5167,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] create_module = 127,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] create_module = 127,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] create_module = 174,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] delete_module = 106,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] delete_module = 5169,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] delete_module = 129,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] delete_module = 106,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] delete_module = 129,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] delete_module = 176,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] dup = 23,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] dup = 5031,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] dup = 41,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] dup = 23,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] dup = 41,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] dup = 32,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] dup2 = 5032,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] dup2 = 63,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] dup2 = 63,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] dup2 = 33,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] dup3 = 24,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] dup3 = 5286,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] dup3 = 316,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] dup3 = 24,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] dup3 = 326,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] dup3 = 292,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] epoll_create = 5207,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] epoll_create = 236,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] epoll_create = 249,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_create = 213,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] epoll_create1 = 20,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] epoll_create1 = 5285,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] epoll_create1 = 315,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] epoll_create1 = 20,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] epoll_create1 = 327,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_create1 = 291,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] epoll_ctl = 21,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] epoll_ctl = 5208,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] epoll_ctl = 237,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] epoll_ctl = 21,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] epoll_ctl = 250,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_ctl = 233,

	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_ctl_old = 214,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] epoll_pwait = 22,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] epoll_pwait = 5272,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] epoll_pwait = 303,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] epoll_pwait = 22,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] epoll_pwait = 312,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_pwait = 281,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] epoll_wait = 5209,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] epoll_wait = 238,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] epoll_wait = 251,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_wait = 232,

	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] epoll_wait_old = 215,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] eventfd = 5278,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] eventfd = 307,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] eventfd = 318,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] eventfd = 284,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] eventfd2 = 19,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] eventfd2 = 5284,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] eventfd2 = 314,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] eventfd2 = 19,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] eventfd2 = 323,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] eventfd2 = 290,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] execve = 221,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] execve = 5057,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] execve = 11,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] execve = 221,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] execve = 11,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] execve = 59,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] execveat = 281,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] execveat = 5316,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] execveat = 362,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] execveat = 281,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] execveat = 354,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] execveat = 322,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] exit = 93,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] exit = 5058,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] exit = 1,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] exit = 93,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] exit = 1,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] exit = 60,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] exit_group = 94,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] exit_group = 5205,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] exit_group = 234,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] exit_group = 94,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] exit_group = 248,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] exit_group = 231,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] faccessat = 48,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] faccessat = 5259,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] faccessat = 298,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] faccessat = 48,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] faccessat = 300,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] faccessat = 269,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fadvise64 = 223,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fadvise64 = 5215,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fadvise64 = 233,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fadvise64 = 223,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fadvise64 = 253,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fadvise64 = 221,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fallocate = 47,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fallocate = 5279,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fallocate = 309,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fallocate = 47,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fallocate = 314,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fallocate = 285,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fanotify_init = 262,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fanotify_init = 5295,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fanotify_init = 323,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fanotify_init = 262,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fanotify_init = 332,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fanotify_init = 300,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fanotify_mark = 263,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fanotify_mark = 5296,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fanotify_mark = 324,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fanotify_mark = 263,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fanotify_mark = 333,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fanotify_mark = 301,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fchdir = 50,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fchdir = 5079,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fchdir = 133,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fchdir = 50,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fchdir = 133,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fchdir = 81,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fchmod = 52,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fchmod = 5089,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fchmod = 94,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fchmod = 52,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fchmod = 94,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fchmod = 91,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fchmodat = 53,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fchmodat = 5258,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fchmodat = 297,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fchmodat = 53,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fchmodat = 299,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fchmodat = 268,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fchown = 55,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fchown = 5091,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fchown = 95,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fchown = 55,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fchown = 207,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fchown = 93,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fchownat = 54,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fchownat = 5250,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fchownat = 289,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fchownat = 54,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fchownat = 291,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fchownat = 260,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fcntl = 25,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fcntl = 5070,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fcntl = 55,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fcntl = 25,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fcntl = 55,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fcntl = 72,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fdatasync = 83,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fdatasync = 5073,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fdatasync = 148,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fdatasync = 83,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fdatasync = 148,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fdatasync = 75,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fgetxattr = 10,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fgetxattr = 5185,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fgetxattr = 214,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fgetxattr = 10,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fgetxattr = 229,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fgetxattr = 193,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] finit_module = 273,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] finit_module = 5307,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] finit_module = 353,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] finit_module = 273,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] finit_module = 344,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] finit_module = 313,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] flistxattr = 13,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] flistxattr = 5188,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] flistxattr = 217,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] flistxattr = 13,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] flistxattr = 232,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] flistxattr = 196,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] flock = 32,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] flock = 5071,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] flock = 143,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] flock = 32,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] flock = 143,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] flock = 73,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fork = 5056,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fork = 2,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fork = 2,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fork = 57,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fremovexattr = 16,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fremovexattr = 5191,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fremovexattr = 220,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fremovexattr = 16,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fremovexattr = 235,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fremovexattr = 199,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fsconfig = 431,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fsconfig = 5431,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fsconfig = 431,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fsconfig = 431,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fsconfig = 431,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fsconfig = 431,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fsetxattr = 7,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fsetxattr = 5182,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fsetxattr = 211,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fsetxattr = 7,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fsetxattr = 226,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fsetxattr = 190,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fsmount = 432,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fsmount = 5432,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fsmount = 432,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fsmount = 432,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fsmount = 432,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fsmount = 432,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fsopen = 430,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fsopen = 5430,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fsopen = 430,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fsopen = 430,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fsopen = 430,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fsopen = 430,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fspick = 433,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fspick = 5433,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fspick = 433,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fspick = 433,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fspick = 433,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fspick = 433,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fstat = 80,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fstat = 5005,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fstat = 108,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fstat = 80,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fstat = 108,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fstat = 5,

	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fstatat = 79,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fstatfs = 44,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fstatfs = 5135,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fstatfs = 100,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fstatfs = 44,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fstatfs = 100,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fstatfs = 138,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fstatfs64 = 253,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fstatfs64 = 266,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] fsync = 82,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] fsync = 5072,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] fsync = 118,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] fsync = 82,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] fsync = 118,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] fsync = 74,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ftime = 35,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] ftruncate = 46,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ftruncate = 5075,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ftruncate = 93,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] ftruncate = 46,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ftruncate = 93,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ftruncate = 77,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] futex = 98,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] futex = 5194,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] futex = 221,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] futex = 98,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] futex = 238,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] futex = 202,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] futimesat = 5251,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] futimesat = 290,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] futimesat = 292,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] futimesat = 261,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] get_kernel_syms = 5170,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] get_kernel_syms = 130,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] get_kernel_syms = 130,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] get_kernel_syms = 177,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] get_mempolicy = 236,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] get_mempolicy = 5228,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] get_mempolicy = 260,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] get_mempolicy = 236,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] get_mempolicy = 269,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] get_mempolicy = 239,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] get_robust_list = 100,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] get_robust_list = 5269,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] get_robust_list = 299,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] get_robust_list = 100,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] get_robust_list = 305,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] get_robust_list = 274,

	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] get_thread_area = 211,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getcpu = 168,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getcpu = 5271,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getcpu = 302,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getcpu = 168,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getcpu = 311,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getcpu = 309,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getcwd = 17,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getcwd = 5077,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getcwd = 182,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getcwd = 17,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getcwd = 183,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getcwd = 79,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getdents = 5076,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getdents = 141,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getdents = 141,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getdents = 78,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getdents64 = 61,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getdents64 = 5308,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getdents64 = 202,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getdents64 = 61,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getdents64 = 220,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getdents64 = 217,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getegid = 177,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getegid = 5106,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getegid = 50,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getegid = 177,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getegid = 202,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getegid = 108,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] geteuid = 175,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] geteuid = 5105,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] geteuid = 49,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] geteuid = 175,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] geteuid = 201,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] geteuid = 107,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getgid = 176,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getgid = 5102,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getgid = 47,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getgid = 176,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getgid = 200,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getgid = 104,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getgroups = 158,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getgroups = 5113,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getgroups = 80,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getgroups = 158,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getgroups = 205,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getgroups = 115,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getitimer = 102,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getitimer = 5035,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getitimer = 105,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getitimer = 102,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getitimer = 105,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getitimer = 36,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getpeername = 205,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getpeername = 5051,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getpeername = 332,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getpeername = 205,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getpeername = 368,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getpeername = 52,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getpgid = 155,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getpgid = 5119,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getpgid = 132,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getpgid = 155,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getpgid = 132,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getpgid = 121,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getpgrp = 5109,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getpgrp = 65,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getpgrp = 65,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getpgrp = 111,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getpid = 172,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getpid = 5038,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getpid = 20,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getpid = 172,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getpid = 20,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getpid = 39,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getpmsg = 5174,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getpmsg = 187,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getpmsg = 188,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getpmsg = 181,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getppid = 173,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getppid = 5108,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getppid = 64,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getppid = 173,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getppid = 64,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getppid = 110,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getpriority = 141,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getpriority = 5137,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getpriority = 96,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getpriority = 141,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getpriority = 96,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getpriority = 140,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getrandom = 278,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getrandom = 5313,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getrandom = 359,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getrandom = 278,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getrandom = 349,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getrandom = 318,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getresgid = 150,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getresgid = 5118,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getresgid = 170,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getresgid = 150,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getresgid = 211,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getresgid = 120,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getresuid = 148,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getresuid = 5116,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getresuid = 165,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getresuid = 148,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getresuid = 209,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getresuid = 118,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getrlimit = 163,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getrlimit = 5095,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getrlimit = 76,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getrlimit = 163,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getrlimit = 191,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getrlimit = 97,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getrusage = 165,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getrusage = 5096,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getrusage = 77,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getrusage = 165,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getrusage = 77,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getrusage = 98,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getsid = 156,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getsid = 5122,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getsid = 147,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getsid = 156,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getsid = 147,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getsid = 124,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getsockname = 204,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getsockname = 5050,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getsockname = 331,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getsockname = 204,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getsockname = 367,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getsockname = 51,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getsockopt = 209,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getsockopt = 5054,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getsockopt = 340,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getsockopt = 209,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getsockopt = 365,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getsockopt = 55,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] gettid = 178,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] gettid = 5178,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] gettid = 207,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] gettid = 178,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] gettid = 236,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] gettid = 186,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] gettimeofday = 169,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] gettimeofday = 5094,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] gettimeofday = 78,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] gettimeofday = 169,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] gettimeofday = 78,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] gettimeofday = 96,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getuid = 174,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getuid = 5100,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getuid = 24,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getuid = 174,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getuid = 199,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getuid = 102,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] getxattr = 8,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] getxattr = 5183,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] getxattr = 212,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] getxattr = 8,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] getxattr = 227,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] getxattr = 191,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] gtty = 32,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] idle = 112,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] idle = 112,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] init_module = 105,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] init_module = 5168,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] init_module = 128,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] init_module = 105,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] init_module = 128,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] init_module = 175,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] inotify_add_watch = 27,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] inotify_add_watch = 5244,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] inotify_add_watch = 276,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] inotify_add_watch = 27,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] inotify_add_watch = 285,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] inotify_add_watch = 254,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] inotify_init = 5243,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] inotify_init = 275,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] inotify_init = 284,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] inotify_init = 253,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] inotify_init1 = 26,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] inotify_init1 = 5288,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] inotify_init1 = 318,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] inotify_init1 = 26,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] inotify_init1 = 324,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] inotify_init1 = 294,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] inotify_rm_watch = 28,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] inotify_rm_watch = 5245,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] inotify_rm_watch = 277,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] inotify_rm_watch = 28,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] inotify_rm_watch = 286,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] inotify_rm_watch = 255,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_cancel = 3,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_cancel = 5204,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_cancel = 231,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_cancel = 3,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_cancel = 247,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_cancel = 210,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_destroy = 1,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_destroy = 5201,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_destroy = 228,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_destroy = 1,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_destroy = 244,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_destroy = 207,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_getevents = 4,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_getevents = 5202,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_getevents = 229,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_getevents = 4,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_getevents = 245,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_getevents = 208,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_pgetevents = 292,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_pgetevents = 5328,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_pgetevents = 388,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_pgetevents = 292,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_pgetevents = 382,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_pgetevents = 333,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_setup = 0,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_setup = 5200,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_setup = 227,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_setup = 0,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_setup = 243,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_setup = 206,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_submit = 2,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_submit = 5203,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_submit = 230,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_submit = 2,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_submit = 246,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_submit = 209,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_uring_enter = 426,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_uring_enter = 5426,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_uring_enter = 426,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_uring_enter = 426,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_uring_enter = 426,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_uring_enter = 426,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_uring_register = 427,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_uring_register = 5427,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_uring_register = 427,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_uring_register = 427,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_uring_register = 427,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_uring_register = 427,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] io_uring_setup = 425,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] io_uring_setup = 5425,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] io_uring_setup = 425,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] io_uring_setup = 425,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] io_uring_setup = 425,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] io_uring_setup = 425,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] ioctl = 29,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ioctl = 5015,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ioctl = 54,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] ioctl = 29,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ioctl = 54,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ioctl = 16,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ioperm = 101,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ioperm = 173,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] iopl = 110,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] iopl = 172,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] ioprio_get = 31,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ioprio_get = 5274,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ioprio_get = 274,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] ioprio_get = 31,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ioprio_get = 283,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ioprio_get = 252,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] ioprio_set = 30,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ioprio_set = 5273,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ioprio_set = 273,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] ioprio_set = 30,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ioprio_set = 282,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ioprio_set = 251,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ipc = 117,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ipc = 117,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] kcmp = 272,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] kcmp = 5306,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] kcmp = 354,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] kcmp = 272,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] kcmp = 343,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] kcmp = 312,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] kexec_file_load = 294,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] kexec_file_load = 382,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] kexec_file_load = 294,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] kexec_file_load = 381,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] kexec_file_load = 320,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] kexec_load = 104,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] kexec_load = 5270,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] kexec_load = 268,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] kexec_load = 104,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] kexec_load = 277,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] kexec_load = 246,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] keyctl = 219,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] keyctl = 5241,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] keyctl = 271,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] keyctl = 219,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] keyctl = 280,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] keyctl = 250,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] kill = 129,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] kill = 5060,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] kill = 37,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] kill = 129,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] kill = 37,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] kill = 62,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lchown = 5092,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lchown = 16,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lchown = 198,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lchown = 94,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] lgetxattr = 9,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lgetxattr = 5184,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lgetxattr = 213,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] lgetxattr = 9,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lgetxattr = 228,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lgetxattr = 192,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] link = 5084,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] link = 9,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] link = 9,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] link = 86,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] linkat = 37,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] linkat = 5255,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] linkat = 294,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] linkat = 37,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] linkat = 296,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] linkat = 265,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] listen = 201,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] listen = 5049,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] listen = 329,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] listen = 201,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] listen = 363,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] listen = 50,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] listxattr = 11,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] listxattr = 5186,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] listxattr = 215,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] listxattr = 11,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] listxattr = 230,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] listxattr = 194,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] llistxattr = 12,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] llistxattr = 5187,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] llistxattr = 216,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] llistxattr = 12,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] llistxattr = 231,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] llistxattr = 195,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lock = 53,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] lookup_dcookie = 18,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lookup_dcookie = 5206,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lookup_dcookie = 235,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] lookup_dcookie = 18,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lookup_dcookie = 110,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lookup_dcookie = 212,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] lremovexattr = 15,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lremovexattr = 5190,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lremovexattr = 219,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] lremovexattr = 15,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lremovexattr = 234,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lremovexattr = 198,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] lseek = 62,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lseek = 5008,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lseek = 19,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] lseek = 62,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lseek = 19,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lseek = 8,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] lsetxattr = 6,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lsetxattr = 5181,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lsetxattr = 210,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] lsetxattr = 6,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lsetxattr = 225,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lsetxattr = 189,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] lstat = 5006,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] lstat = 107,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] lstat = 107,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] lstat = 6,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] madvise = 233,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] madvise = 5027,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] madvise = 205,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] madvise = 233,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] madvise = 219,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] madvise = 28,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mbind = 235,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mbind = 5227,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mbind = 259,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mbind = 235,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mbind = 268,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mbind = 237,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] membarrier = 283,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] membarrier = 5318,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] membarrier = 365,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] membarrier = 283,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] membarrier = 356,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] membarrier = 324,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] memfd_create = 279,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] memfd_create = 5314,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] memfd_create = 360,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] memfd_create = 279,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] memfd_create = 350,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] memfd_create = 319,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] migrate_pages = 238,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] migrate_pages = 5246,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] migrate_pages = 258,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] migrate_pages = 238,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] migrate_pages = 287,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] migrate_pages = 256,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mincore = 232,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mincore = 5026,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mincore = 206,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mincore = 232,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mincore = 218,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mincore = 27,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mkdir = 5081,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mkdir = 39,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mkdir = 39,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mkdir = 83,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mkdirat = 34,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mkdirat = 5248,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mkdirat = 287,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mkdirat = 34,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mkdirat = 289,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mkdirat = 258,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mknod = 5131,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mknod = 14,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mknod = 14,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mknod = 133,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mknodat = 33,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mknodat = 5249,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mknodat = 288,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mknodat = 33,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mknodat = 290,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mknodat = 259,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mlock = 228,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mlock = 5146,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mlock = 150,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mlock = 228,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mlock = 150,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mlock = 149,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mlock2 = 284,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mlock2 = 5319,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mlock2 = 378,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mlock2 = 284,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mlock2 = 374,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mlock2 = 325,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mlockall = 230,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mlockall = 5148,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mlockall = 152,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mlockall = 230,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mlockall = 152,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mlockall = 151,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mmap = 222,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mmap = 5009,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mmap = 90,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mmap = 222,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mmap = 90,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mmap = 9,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] modify_ldt = 123,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] modify_ldt = 154,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mount = 40,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mount = 5160,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mount = 21,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mount = 40,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mount = 21,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mount = 165,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] move_mount = 429,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] move_mount = 5429,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] move_mount = 429,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] move_mount = 429,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] move_mount = 429,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] move_mount = 429,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] move_pages = 239,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] move_pages = 5267,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] move_pages = 301,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] move_pages = 239,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] move_pages = 310,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] move_pages = 279,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mprotect = 226,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mprotect = 5010,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mprotect = 125,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mprotect = 226,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mprotect = 125,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mprotect = 10,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mpx = 56,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mq_getsetattr = 185,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mq_getsetattr = 5235,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mq_getsetattr = 267,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mq_getsetattr = 185,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mq_getsetattr = 276,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mq_getsetattr = 245,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mq_notify = 184,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mq_notify = 5234,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mq_notify = 266,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mq_notify = 184,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mq_notify = 275,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mq_notify = 244,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mq_open = 180,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mq_open = 5230,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mq_open = 262,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mq_open = 180,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mq_open = 271,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mq_open = 240,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mq_timedreceive = 183,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mq_timedreceive = 5233,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mq_timedreceive = 265,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mq_timedreceive = 183,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mq_timedreceive = 274,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mq_timedreceive = 243,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mq_timedsend = 182,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mq_timedsend = 5232,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mq_timedsend = 264,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mq_timedsend = 182,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mq_timedsend = 273,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mq_timedsend = 242,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mq_unlink = 181,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mq_unlink = 5231,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mq_unlink = 263,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mq_unlink = 181,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mq_unlink = 272,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mq_unlink = 241,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] mremap = 216,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] mremap = 5024,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] mremap = 163,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] mremap = 216,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] mremap = 163,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] mremap = 25,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] msgctl = 187,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] msgctl = 5069,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] msgctl = 402,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] msgctl = 187,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] msgctl = 402,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] msgctl = 71,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] msgget = 186,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] msgget = 5066,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] msgget = 399,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] msgget = 186,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] msgget = 399,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] msgget = 68,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] msgrcv = 188,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] msgrcv = 5068,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] msgrcv = 401,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] msgrcv = 188,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] msgrcv = 401,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] msgrcv = 70,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] msgsnd = 189,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] msgsnd = 5067,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] msgsnd = 400,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] msgsnd = 189,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] msgsnd = 400,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] msgsnd = 69,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] msync = 227,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] msync = 5025,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] msync = 144,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] msync = 227,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] msync = 144,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] msync = 26,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] multiplexer = 201,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] munlock = 229,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] munlock = 5147,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] munlock = 151,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] munlock = 229,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] munlock = 151,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] munlock = 150,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] munlockall = 231,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] munlockall = 5149,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] munlockall = 153,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] munlockall = 231,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] munlockall = 153,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] munlockall = 152,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] munmap = 215,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] munmap = 5011,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] munmap = 91,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] munmap = 215,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] munmap = 91,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] munmap = 11,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] name_to_handle_at = 264,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] name_to_handle_at = 5298,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] name_to_handle_at = 345,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] name_to_handle_at = 264,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] name_to_handle_at = 335,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] name_to_handle_at = 303,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] nanosleep = 101,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] nanosleep = 5034,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] nanosleep = 162,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] nanosleep = 101,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] nanosleep = 162,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] nanosleep = 35,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] newfstatat = 79,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] newfstatat = 5252,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] newfstatat = 291,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] newfstatat = 293,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] newfstatat = 262,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] nfsservctl = 42,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] nfsservctl = 5173,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] nfsservctl = 168,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] nfsservctl = 42,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] nfsservctl = 169,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] nfsservctl = 180,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] nice = 34,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] nice = 34,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] oldfstat = 28,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] oldlstat = 84,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] oldolduname = 59,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] oldstat = 18,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] olduname = 109,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] open = 5002,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] open = 5,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] open = 5,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] open = 2,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] open_by_handle_at = 265,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] open_by_handle_at = 5299,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] open_by_handle_at = 346,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] open_by_handle_at = 265,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] open_by_handle_at = 336,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] open_by_handle_at = 304,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] open_tree = 428,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] open_tree = 5428,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] open_tree = 428,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] open_tree = 428,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] open_tree = 428,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] open_tree = 428,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] openat = 56,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] openat = 5247,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] openat = 286,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] openat = 56,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] openat = 288,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] openat = 257,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] openat2 = 437,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] openat2 = 5437,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] openat2 = 437,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] openat2 = 437,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] openat2 = 437,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] openat2 = 437,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pause = 5033,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pause = 29,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pause = 29,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pause = 34,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pciconfig_iobase = 200,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pciconfig_read = 198,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pciconfig_write = 199,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] perf_event_open = 241,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] perf_event_open = 5292,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] perf_event_open = 319,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] perf_event_open = 241,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] perf_event_open = 331,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] perf_event_open = 298,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] personality = 92,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] personality = 5132,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] personality = 136,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] personality = 92,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] personality = 136,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] personality = 135,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pidfd_open = 434,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pidfd_open = 5434,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pidfd_open = 434,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pidfd_open = 434,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pidfd_open = 434,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pidfd_open = 434,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pidfd_getfd = 438,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pidfd_getfd = 5438,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pidfd_getfd = 438,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pidfd_getfd = 438,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pidfd_getfd = 438,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pidfd_getfd = 438,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pidfd_send_signal = 424,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pidfd_send_signal = 5424,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pidfd_send_signal = 424,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pidfd_send_signal = 424,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pidfd_send_signal = 424,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pidfd_send_signal = 424,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pipe = 5021,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pipe = 42,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pipe = 42,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pipe = 22,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pipe2 = 59,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pipe2 = 5287,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pipe2 = 317,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pipe2 = 59,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pipe2 = 325,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pipe2 = 293,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pivot_root = 41,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pivot_root = 5151,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pivot_root = 203,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pivot_root = 41,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pivot_root = 217,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pivot_root = 155,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pkey_alloc = 289,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pkey_alloc = 5324,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pkey_alloc = 384,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pkey_alloc = 289,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pkey_alloc = 385,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pkey_alloc = 330,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pkey_free = 290,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pkey_free = 5325,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pkey_free = 385,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pkey_free = 290,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pkey_free = 386,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pkey_free = 331,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pkey_mprotect = 288,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pkey_mprotect = 5323,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pkey_mprotect = 386,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pkey_mprotect = 288,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pkey_mprotect = 384,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pkey_mprotect = 329,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] poll = 5007,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] poll = 167,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] poll = 168,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] poll = 7,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] ppoll = 73,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ppoll = 5261,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ppoll = 281,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] ppoll = 73,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ppoll = 302,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ppoll = 271,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] prctl = 167,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] prctl = 5153,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] prctl = 171,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] prctl = 167,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] prctl = 172,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] prctl = 157,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pread64 = 67,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pread64 = 5016,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pread64 = 179,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pread64 = 67,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pread64 = 180,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pread64 = 17,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] preadv = 69,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] preadv = 5289,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] preadv = 320,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] preadv = 69,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] preadv = 328,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] preadv = 295,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] preadv2 = 286,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] preadv2 = 5321,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] preadv2 = 380,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] preadv2 = 286,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] preadv2 = 376,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] preadv2 = 327,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] prlimit64 = 261,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] prlimit64 = 5297,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] prlimit64 = 325,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] prlimit64 = 261,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] prlimit64 = 334,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] prlimit64 = 302,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] process_vm_readv = 270,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] process_vm_readv = 5304,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] process_vm_readv = 351,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] process_vm_readv = 270,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] process_vm_readv = 340,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] process_vm_readv = 310,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] process_vm_writev = 271,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] process_vm_writev = 5305,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] process_vm_writev = 352,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] process_vm_writev = 271,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] process_vm_writev = 341,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] process_vm_writev = 311,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] prof = 44,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] profil = 98,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pselect6 = 72,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pselect6 = 5260,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pselect6 = 280,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pselect6 = 72,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pselect6 = 301,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pselect6 = 270,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] ptrace = 117,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ptrace = 5099,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ptrace = 26,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] ptrace = 117,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ptrace = 26,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ptrace = 101,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] putpmsg = 5175,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] putpmsg = 188,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] putpmsg = 189,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] putpmsg = 182,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pwrite64 = 68,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pwrite64 = 5017,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pwrite64 = 180,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pwrite64 = 68,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pwrite64 = 181,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pwrite64 = 18,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pwritev = 70,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pwritev = 5290,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pwritev = 321,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pwritev = 70,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pwritev = 329,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pwritev = 296,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pwritev2 = 287,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pwritev2 = 5322,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pwritev2 = 381,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pwritev2 = 287,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pwritev2 = 377,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pwritev2 = 328,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] query_module = 5171,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] query_module = 166,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] query_module = 167,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] query_module = 178,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] quotactl = 60,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] quotactl = 5172,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] quotactl = 131,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] quotactl = 60,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] quotactl = 131,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] quotactl = 179,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] read = 63,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] read = 5000,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] read = 3,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] read = 63,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] read = 3,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] read = 0,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] readahead = 213,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] readahead = 5179,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] readahead = 191,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] readahead = 213,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] readahead = 222,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] readahead = 187,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] readdir = 89,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] readdir = 89,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] readlink = 5087,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] readlink = 85,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] readlink = 85,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] readlink = 89,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] readlinkat = 78,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] readlinkat = 5257,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] readlinkat = 296,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] readlinkat = 78,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] readlinkat = 298,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] readlinkat = 267,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] readv = 65,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] readv = 5018,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] readv = 145,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] readv = 65,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] readv = 145,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] readv = 19,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] reboot = 142,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] reboot = 5164,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] reboot = 88,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] reboot = 142,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] reboot = 88,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] reboot = 169,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] recv = 336,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] recvfrom = 207,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] recvfrom = 5044,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] recvfrom = 337,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] recvfrom = 207,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] recvfrom = 371,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] recvfrom = 45,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] recvmmsg = 243,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] recvmmsg = 5294,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] recvmmsg = 343,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] recvmmsg = 243,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] recvmmsg = 357,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] recvmmsg = 299,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] recvmsg = 212,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] recvmsg = 5046,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] recvmsg = 342,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] recvmsg = 212,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] recvmsg = 372,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] recvmsg = 47,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] remap_file_pages = 234,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] remap_file_pages = 5210,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] remap_file_pages = 239,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] remap_file_pages = 234,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] remap_file_pages = 267,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] remap_file_pages = 216,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] removexattr = 14,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] removexattr = 5189,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] removexattr = 218,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] removexattr = 14,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] removexattr = 233,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] removexattr = 197,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rename = 5080,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rename = 38,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rename = 38,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rename = 82,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] renameat = 38,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] renameat = 5254,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] renameat = 293,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] renameat = 295,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] renameat = 264,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] renameat2 = 276,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] renameat2 = 5311,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] renameat2 = 357,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] renameat2 = 276,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] renameat2 = 347,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] renameat2 = 316,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] request_key = 218,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] request_key = 5240,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] request_key = 270,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] request_key = 218,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] request_key = 279,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] request_key = 249,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] reserved177 = 5177,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] reserved193 = 5193,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] restart_syscall = 128,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] restart_syscall = 5213,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] restart_syscall = 0,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] restart_syscall = 128,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] restart_syscall = 7,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] restart_syscall = 219,

	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] riscv_flush_icache = 244 + 15,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rmdir = 5082,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rmdir = 40,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rmdir = 40,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rmdir = 84,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rseq = 293,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rseq = 5327,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rseq = 387,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rseq = 293,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rseq = 383,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rseq = 334,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigaction = 134,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigaction = 5013,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigaction = 173,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigaction = 134,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigaction = 174,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigaction = 13,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigpending = 136,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigpending = 5125,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigpending = 175,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigpending = 136,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigpending = 176,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigpending = 127,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigprocmask = 135,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigprocmask = 5014,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigprocmask = 174,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigprocmask = 135,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigprocmask = 175,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigprocmask = 14,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigqueueinfo = 138,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigqueueinfo = 5127,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigqueueinfo = 177,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigqueueinfo = 138,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigqueueinfo = 178,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigqueueinfo = 129,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigreturn = 139,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigreturn = 5211,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigreturn = 172,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigreturn = 139,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigreturn = 173,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigreturn = 15,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigsuspend = 133,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigsuspend = 5128,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigsuspend = 178,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigsuspend = 133,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigsuspend = 179,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigsuspend = 130,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_sigtimedwait = 137,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_sigtimedwait = 5126,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_sigtimedwait = 176,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_sigtimedwait = 137,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_sigtimedwait = 177,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_sigtimedwait = 128,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] rt_tgsigqueueinfo = 240,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] rt_tgsigqueueinfo = 5291,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rt_tgsigqueueinfo = 322,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] rt_tgsigqueueinfo = 240,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] rt_tgsigqueueinfo = 330,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] rt_tgsigqueueinfo = 297,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] rtas = 255,

	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] s390_guarded_storage = 378,

	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] s390_pci_mmio_read = 353,

	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] s390_pci_mmio_write = 352,

	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] s390_runtime_instr = 342,

	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] s390_sthyi = 380,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_get_priority_max = 125,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_get_priority_max = 5143,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_get_priority_max = 159,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_get_priority_max = 125,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_get_priority_max = 159,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_get_priority_max = 146,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_get_priority_min = 126,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_get_priority_min = 5144,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_get_priority_min = 160,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_get_priority_min = 126,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_get_priority_min = 160,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_get_priority_min = 147,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_getaffinity = 123,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_getaffinity = 5196,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_getaffinity = 223,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_getaffinity = 123,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_getaffinity = 240,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_getaffinity = 204,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_getattr = 275,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_getattr = 5310,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_getattr = 356,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_getattr = 275,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_getattr = 346,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_getattr = 315,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_getparam = 121,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_getparam = 5140,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_getparam = 155,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_getparam = 121,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_getparam = 155,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_getparam = 143,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_getscheduler = 120,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_getscheduler = 5142,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_getscheduler = 157,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_getscheduler = 120,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_getscheduler = 157,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_getscheduler = 145,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_rr_get_interval = 127,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_rr_get_interval = 5145,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_rr_get_interval = 161,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_rr_get_interval = 127,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_rr_get_interval = 161,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_rr_get_interval = 148,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_setaffinity = 122,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_setaffinity = 5195,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_setaffinity = 222,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_setaffinity = 122,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_setaffinity = 239,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_setaffinity = 203,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_setattr = 274,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_setattr = 5309,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_setattr = 355,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_setattr = 274,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_setattr = 345,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_setattr = 314,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_setparam = 118,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_setparam = 5139,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_setparam = 154,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_setparam = 118,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_setparam = 154,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_setparam = 142,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_setscheduler = 119,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_setscheduler = 5141,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_setscheduler = 156,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_setscheduler = 119,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_setscheduler = 156,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_setscheduler = 144,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sched_yield = 124,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sched_yield = 5023,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sched_yield = 158,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sched_yield = 124,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sched_yield = 158,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sched_yield = 24,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] seccomp = 277,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] seccomp = 5312,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] seccomp = 358,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] seccomp = 277,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] seccomp = 348,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] seccomp = 317,

	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] security = 185,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] select = 82,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] select = 142,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] select = 23,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] semctl = 191,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] semctl = 5064,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] semctl = 394,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] semctl = 191,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] semctl = 394,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] semctl = 66,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] semget = 190,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] semget = 5062,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] semget = 393,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] semget = 190,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] semget = 393,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] semget = 64,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] semop = 193,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] semop = 5063,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] semop = 193,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] semop = 65,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] semtimedop = 192,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] semtimedop = 5214,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] semtimedop = 392,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] semtimedop = 192,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] semtimedop = 392,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] semtimedop = 220,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] send = 334,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sendfile = 71,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sendfile = 5039,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sendfile = 186,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sendfile = 71,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sendfile = 187,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sendfile = 40,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sendmmsg = 269,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sendmmsg = 5302,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sendmmsg = 349,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sendmmsg = 269,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sendmmsg = 358,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sendmmsg = 307,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sendmsg = 211,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sendmsg = 5045,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sendmsg = 341,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sendmsg = 211,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sendmsg = 370,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sendmsg = 46,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sendto = 206,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sendto = 5043,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sendto = 335,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sendto = 206,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sendto = 369,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sendto = 44,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] set_mempolicy = 237,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] set_mempolicy = 5229,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] set_mempolicy = 261,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] set_mempolicy = 237,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] set_mempolicy = 270,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] set_mempolicy = 238,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] set_robust_list = 99,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] set_robust_list = 5268,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] set_robust_list = 300,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] set_robust_list = 99,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] set_robust_list = 304,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] set_robust_list = 273,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] set_thread_area = 5242,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] set_thread_area = 205,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] set_tid_address = 96,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] set_tid_address = 5212,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] set_tid_address = 232,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] set_tid_address = 96,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] set_tid_address = 252,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] set_tid_address = 218,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setdomainname = 162,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setdomainname = 5166,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setdomainname = 121,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setdomainname = 162,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setdomainname = 121,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setdomainname = 171,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setfsgid = 152,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setfsgid = 5121,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setfsgid = 139,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setfsgid = 152,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setfsgid = 216,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setfsgid = 123,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setfsuid = 151,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setfsuid = 5120,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setfsuid = 138,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setfsuid = 151,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setfsuid = 215,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setfsuid = 122,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setgid = 144,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setgid = 5104,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setgid = 46,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setgid = 144,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setgid = 214,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setgid = 106,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setgroups = 159,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setgroups = 5114,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setgroups = 81,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setgroups = 159,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setgroups = 206,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setgroups = 116,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sethostname = 161,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sethostname = 5165,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sethostname = 74,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sethostname = 161,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sethostname = 74,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sethostname = 170,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setitimer = 103,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setitimer = 5036,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setitimer = 104,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setitimer = 103,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setitimer = 104,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setitimer = 38,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setns = 268,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setns = 5303,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setns = 350,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setns = 268,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setns = 339,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setns = 308,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setpgid = 154,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setpgid = 5107,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setpgid = 57,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setpgid = 154,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setpgid = 57,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setpgid = 109,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setpriority = 140,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setpriority = 5138,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setpriority = 97,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setpriority = 140,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setpriority = 97,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setpriority = 141,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setregid = 143,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setregid = 5112,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setregid = 71,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setregid = 143,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setregid = 204,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setregid = 114,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setresgid = 149,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setresgid = 5117,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setresgid = 169,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setresgid = 149,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setresgid = 210,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setresgid = 119,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setresuid = 147,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setresuid = 5115,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setresuid = 164,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setresuid = 147,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setresuid = 208,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setresuid = 117,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setreuid = 145,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setreuid = 5111,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setreuid = 70,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setreuid = 145,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setreuid = 203,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setreuid = 113,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setrlimit = 164,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setrlimit = 5155,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setrlimit = 75,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setrlimit = 164,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setrlimit = 75,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setrlimit = 160,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setsid = 157,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setsid = 5110,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setsid = 66,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setsid = 157,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setsid = 66,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setsid = 112,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setsockopt = 208,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setsockopt = 5053,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setsockopt = 339,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setsockopt = 208,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setsockopt = 366,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setsockopt = 54,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] settimeofday = 170,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] settimeofday = 5159,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] settimeofday = 79,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] settimeofday = 170,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] settimeofday = 79,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] settimeofday = 164,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setuid = 146,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setuid = 5103,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setuid = 23,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setuid = 146,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setuid = 213,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setuid = 105,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] setxattr = 5,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] setxattr = 5180,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] setxattr = 209,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] setxattr = 5,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] setxattr = 224,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] setxattr = 188,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sgetmask = 68,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] shmat = 196,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] shmat = 5029,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] shmat = 397,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] shmat = 196,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] shmat = 397,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] shmat = 30,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] shmctl = 195,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] shmctl = 5030,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] shmctl = 396,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] shmctl = 195,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] shmctl = 396,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] shmctl = 31,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] shmdt = 197,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] shmdt = 5065,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] shmdt = 398,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] shmdt = 197,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] shmdt = 398,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] shmdt = 67,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] shmget = 194,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] shmget = 5028,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] shmget = 395,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] shmget = 194,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] shmget = 395,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] shmget = 29,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] shutdown = 210,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] shutdown = 5047,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] shutdown = 338,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] shutdown = 210,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] shutdown = 373,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] shutdown = 48,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sigaction = 67,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sigaction = 67,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sigaltstack = 132,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sigaltstack = 5129,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sigaltstack = 185,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sigaltstack = 132,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sigaltstack = 186,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sigaltstack = 131,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] signal = 48,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] signal = 48,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] signalfd = 5276,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] signalfd = 305,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] signalfd = 316,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] signalfd = 282,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] signalfd4 = 74,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] signalfd4 = 5283,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] signalfd4 = 313,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] signalfd4 = 74,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] signalfd4 = 322,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] signalfd4 = 289,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sigpending = 73,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sigpending = 73,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sigprocmask = 126,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sigprocmask = 126,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sigreturn = 119,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sigreturn = 119,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sigsuspend = 72,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sigsuspend = 72,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] socket = 198,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] socket = 5040,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] socket = 326,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] socket = 198,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] socket = 359,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] socket = 41,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] socketcall = 102,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] socketcall = 102,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] socketpair = 199,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] socketpair = 5052,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] socketpair = 333,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] socketpair = 199,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] socketpair = 360,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] socketpair = 53,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] splice = 76,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] splice = 5263,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] splice = 283,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] splice = 76,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] splice = 306,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] splice = 275,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] spu_create = 279,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] spu_run = 278,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ssetmask = 69,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] stat = 5004,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] stat = 106,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] stat = 106,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] stat = 4,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] statfs = 43,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] statfs = 5134,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] statfs = 99,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] statfs = 43,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] statfs = 99,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] statfs = 137,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] statfs64 = 252,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] statfs64 = 265,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] statx = 291,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] statx = 5326,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] statx = 383,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] statx = 291,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] statx = 379,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] statx = 332,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] stime = 25,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] stty = 31,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] subpage_prot = 310,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] swapcontext = 249,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] swapoff = 225,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] swapoff = 5163,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] swapoff = 115,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] swapoff = 225,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] swapoff = 115,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] swapoff = 168,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] swapon = 224,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] swapon = 5162,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] swapon = 87,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] swapon = 224,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] swapon = 87,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] swapon = 167,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] switch_endian = 363,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] symlink = 5086,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] symlink = 83,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] symlink = 83,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] symlink = 88,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] symlinkat = 36,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] symlinkat = 5256,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] symlinkat = 295,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] symlinkat = 36,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] symlinkat = 297,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] symlinkat = 266,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sync = 81,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sync = 5157,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sync = 36,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sync = 81,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sync = 36,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sync = 162,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sync_file_range = 84,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sync_file_range = 5264,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sync_file_range = 84,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sync_file_range = 307,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sync_file_range = 277,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sync_file_range2 = 308,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] syncfs = 267,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] syncfs = 5301,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] syncfs = 348,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] syncfs = 267,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] syncfs = 338,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] syncfs = 306,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sys_debug_setcontext = 256,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sysfs = 5136,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sysfs = 135,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sysfs = 135,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sysfs = 139,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] sysinfo = 179,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sysinfo = 5097,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] sysinfo = 116,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sysinfo = 179,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] sysinfo = 116,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] sysinfo = 99,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] syslog = 116,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] syslog = 5101,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] syslog = 103,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] syslog = 116,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] syslog = 103,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] syslog = 103,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] sysmips = 5199,

	/// Also known as __NR_arch_specific_syscall.
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] sysriscv = 244,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] tee = 77,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] tee = 5265,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] tee = 284,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] tee = 77,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] tee = 308,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] tee = 276,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] tgkill = 131,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] tgkill = 5225,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] tgkill = 250,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] tgkill = 131,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] tgkill = 241,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] tgkill = 234,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] time = 13,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] time = 201,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timer_create = 107,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timer_create = 5216,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timer_create = 240,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timer_create = 107,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timer_create = 254,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timer_create = 222,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timer_delete = 111,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timer_delete = 5220,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timer_delete = 244,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timer_delete = 111,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timer_delete = 258,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timer_delete = 226,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timer_getoverrun = 109,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timer_getoverrun = 5219,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timer_getoverrun = 243,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timer_getoverrun = 109,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timer_getoverrun = 257,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timer_getoverrun = 225,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timer_gettime = 108,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timer_gettime = 5218,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timer_gettime = 242,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timer_gettime = 108,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timer_gettime = 256,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timer_gettime = 224,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timer_settime = 110,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timer_settime = 5217,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timer_settime = 241,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timer_settime = 110,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timer_settime = 255,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timer_settime = 223,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timerfd = 5277,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timerfd = 317,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timerfd_create = 85,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timerfd_create = 5280,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timerfd_create = 306,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timerfd_create = 85,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timerfd_create = 319,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timerfd_create = 283,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timerfd_gettime = 87,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timerfd_gettime = 5281,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timerfd_gettime = 312,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timerfd_gettime = 87,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timerfd_gettime = 321,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timerfd_gettime = 287,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] timerfd_settime = 86,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] timerfd_settime = 5282,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] timerfd_settime = 311,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] timerfd_settime = 86,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] timerfd_settime = 320,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] timerfd_settime = 286,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] times = 153,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] times = 5098,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] times = 43,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] times = 153,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] times = 43,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] times = 100,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] tkill = 130,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] tkill = 5192,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] tkill = 208,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] tkill = 130,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] tkill = 237,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] tkill = 200,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] truncate = 45,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] truncate = 5074,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] truncate = 92,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] truncate = 45,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] truncate = 92,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] truncate = 76,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] tuxcall = 225,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] tuxcall = 184,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ugetrlimit = 190,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ulimit = 58,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] umask = 166,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] umask = 5093,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] umask = 60,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] umask = 166,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] umask = 60,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] umask = 95,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] umount = 22,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] umount = 22,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] umount2 = 39,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] umount2 = 5161,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] umount2 = 52,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] umount2 = 39,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] umount2 = 52,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] umount2 = 166,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] uname = 160,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] uname = 5061,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] uname = 122,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] uname = 160,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] uname = 122,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] uname = 63,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] unlink = 5085,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] unlink = 10,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] unlink = 10,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] unlink = 87,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] unlinkat = 35,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] unlinkat = 5253,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] unlinkat = 292,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] unlinkat = 35,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] unlinkat = 294,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] unlinkat = 263,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] unshare = 97,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] unshare = 5262,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] unshare = 282,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] unshare = 97,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] unshare = 303,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] unshare = 272,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] uselib = 86,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] uselib = 86,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] uselib = 134,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] userfaultfd = 282,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] userfaultfd = 5317,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] userfaultfd = 364,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] userfaultfd = 282,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] userfaultfd = 355,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] userfaultfd = 323,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] ustat = 5133,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] ustat = 62,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] ustat = 62,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] ustat = 136,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] utime = 5130,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] utime = 30,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] utime = 30,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] utime = 132,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] utimensat = 88,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] utimensat = 5275,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] utimensat = 304,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] utimensat = 88,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] utimensat = 315,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] utimensat = 280,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] utimes = 5226,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] utimes = 251,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] utimes = 313,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] utimes = 235,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] vfork = 189,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] vfork = 190,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] vfork = 58,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] vhangup = 58,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] vhangup = 5150,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] vhangup = 111,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] vhangup = 58,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] vhangup = 111,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] vhangup = 153,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] vm86 = 113,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] vmsplice = 75,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] vmsplice = 5266,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] vmsplice = 285,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] vmsplice = 75,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] vmsplice = 309,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] vmsplice = 278,

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] vserver = 5236,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] vserver = 236,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] wait4 = 260,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] wait4 = 5059,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] wait4 = 114,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] wait4 = 260,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] wait4 = 114,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] wait4 = 61,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] waitid = 95,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] waitid = 5237,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] waitid = 272,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] waitid = 95,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] waitid = 281,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] waitid = 247,

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] waitpid = 7,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] write = 64,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] write = 5001,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] write = 4,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] write = 64,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] write = 4,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] write = 1,

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] writev = 66,
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] writev = 5019,
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] writev = 146,
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] writev = 66,
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] writev = 146,
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] writev = 20,
}

impl SYS
{
	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pub const InclusiveMinimum: Self = SYS::io_setup;
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pub const InclusiveMinimum: Self = SYS::read;
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pub const InclusiveMinimum: Self = SYS::restart_syscall;
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pub const InclusiveMinimum: Self = SYS::io_setup;
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pub const InclusiveMinimum: Self = SYS::exit;
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pub const InclusiveMinimum: Self = SYS::read;

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pub const InclusiveMaximum: Self = SYS::pidfd_getfd;
	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pub const InclusiveMaximum: Self = SYS::pidfd_getfd;
	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pub const InclusiveMaximum: Self = SYS::pidfd_getfd;
	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pub const InclusiveMaximum: Self = SYS::pidfd_getfd;
	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pub const InclusiveMaximum: Self = SYS::pidfd_getfd;
	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pub const InclusiveMaximum: Self = SYS::pidfd_getfd;

	#[cfg(target_arch = "aarch64")] #[allow(missing_docs)] pub const Undefined: [Range<u32>; 3] =
	[
		244 .. 260,
		295 .. 424,
		436 .. 437,
	];

	#[cfg(target_arch = "mips64")] #[allow(missing_docs)] pub const Undefined: [Range<u32>; 3] =
	[
		5238 .. 5239,
		5329 .. 5424,
		5436 .. 5437,
	];

	#[cfg(target_arch = "powerpc64")] #[allow(missing_docs)] pub const Undefined: [Range<u32>; 10] =
	[
		192 .. 198,
		204 .. 205,
		224 .. 225,
		226 .. 227,
		254 .. 255,
		257 .. 258,
		366 .. 378,
		389 .. 392,
		403 .. 424,
		436 .. 437,
	];

	#[cfg(target_arch = "riscv64")] #[allow(missing_docs)] pub const Undefined: [Range<u32>; 4] =
	[
		38 .. 39,
		245 .. 260,
		295 .. 424,
		436 .. 437,
	];

	#[cfg(target_arch = "s390x")] #[allow(missing_docs)] pub const Undefined: [Range<u32>; 34] =
	[
		13 .. 14,
		16 .. 19,
		23 .. 26,
		28 .. 29,
		31 .. 33,
		35 .. 36,
		44 .. 45,
		46 .. 48,
		49 .. 51,
		53 .. 54,
		56 .. 57,
		58 .. 60,
		68 .. 72,
		76 .. 77,
		80 .. 83,
		84 .. 85,
		95 .. 96,
		98 .. 99,
		101 .. 102,
		109 .. 110,
		113 .. 114,
		123 .. 124,
		138 .. 141,
		164 .. 167,
		170 .. 172,
		182 .. 183,
		192 .. 198,
		221 .. 222,
		223 .. 224,
		242 .. 243,
		263 .. 265,
		387 .. 392,
		403 .. 424,
		436 .. 437,
	];

	#[cfg(target_arch = "x86_64")] #[allow(missing_docs)] pub const Undefined: [Range<u32>; 2] =
	[
		335 .. 424,
		436 .. 437,
	];
}