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
|
from pwnlib.constants.constant import Constant
__NR_Linux = Constant('__NR_Linux',4000)
__NR_syscall = Constant('__NR_syscall',(4000 + 0))
__NR_exit = Constant('__NR_exit',(4000 + 1))
__NR_fork = Constant('__NR_fork',(4000 + 2))
__NR_read = Constant('__NR_read',(4000 + 3))
__NR_write = Constant('__NR_write',(4000 + 4))
__NR_open = Constant('__NR_open',(4000 + 5))
__NR_close = Constant('__NR_close',(4000 + 6))
__NR_waitpid = Constant('__NR_waitpid',(4000 + 7))
__NR_creat = Constant('__NR_creat',(4000 + 8))
__NR_link = Constant('__NR_link',(4000 + 9))
__NR_unlink = Constant('__NR_unlink',(4000 + 10))
__NR_execve = Constant('__NR_execve',(4000 + 11))
__NR_chdir = Constant('__NR_chdir',(4000 + 12))
__NR_time = Constant('__NR_time',(4000 + 13))
__NR_mknod = Constant('__NR_mknod',(4000 + 14))
__NR_chmod = Constant('__NR_chmod',(4000 + 15))
__NR_lchown = Constant('__NR_lchown',(4000 + 16))
__NR_break = Constant('__NR_break',(4000 + 17))
__NR_unused18 = Constant('__NR_unused18',(4000 + 18))
__NR_lseek = Constant('__NR_lseek',(4000 + 19))
__NR_getpid = Constant('__NR_getpid',(4000 + 20))
__NR_mount = Constant('__NR_mount',(4000 + 21))
__NR_umount = Constant('__NR_umount',(4000 + 22))
__NR_setuid = Constant('__NR_setuid',(4000 + 23))
__NR_getuid = Constant('__NR_getuid',(4000 + 24))
__NR_stime = Constant('__NR_stime',(4000 + 25))
__NR_ptrace = Constant('__NR_ptrace',(4000 + 26))
__NR_alarm = Constant('__NR_alarm',(4000 + 27))
__NR_unused28 = Constant('__NR_unused28',(4000 + 28))
__NR_pause = Constant('__NR_pause',(4000 + 29))
__NR_utime = Constant('__NR_utime',(4000 + 30))
__NR_stty = Constant('__NR_stty',(4000 + 31))
__NR_gtty = Constant('__NR_gtty',(4000 + 32))
__NR_access = Constant('__NR_access',(4000 + 33))
__NR_nice = Constant('__NR_nice',(4000 + 34))
__NR_ftime = Constant('__NR_ftime',(4000 + 35))
__NR_sync = Constant('__NR_sync',(4000 + 36))
__NR_kill = Constant('__NR_kill',(4000 + 37))
__NR_rename = Constant('__NR_rename',(4000 + 38))
__NR_mkdir = Constant('__NR_mkdir',(4000 + 39))
__NR_rmdir = Constant('__NR_rmdir',(4000 + 40))
__NR_dup = Constant('__NR_dup',(4000 + 41))
__NR_pipe = Constant('__NR_pipe',(4000 + 42))
__NR_times = Constant('__NR_times',(4000 + 43))
__NR_prof = Constant('__NR_prof',(4000 + 44))
__NR_brk = Constant('__NR_brk',(4000 + 45))
__NR_setgid = Constant('__NR_setgid',(4000 + 46))
__NR_getgid = Constant('__NR_getgid',(4000 + 47))
__NR_signal = Constant('__NR_signal',(4000 + 48))
__NR_geteuid = Constant('__NR_geteuid',(4000 + 49))
__NR_getegid = Constant('__NR_getegid',(4000 + 50))
__NR_acct = Constant('__NR_acct',(4000 + 51))
__NR_umount2 = Constant('__NR_umount2',(4000 + 52))
__NR_lock = Constant('__NR_lock',(4000 + 53))
__NR_ioctl = Constant('__NR_ioctl',(4000 + 54))
__NR_fcntl = Constant('__NR_fcntl',(4000 + 55))
__NR_mpx = Constant('__NR_mpx',(4000 + 56))
__NR_setpgid = Constant('__NR_setpgid',(4000 + 57))
__NR_ulimit = Constant('__NR_ulimit',(4000 + 58))
__NR_unused59 = Constant('__NR_unused59',(4000 + 59))
__NR_umask = Constant('__NR_umask',(4000 + 60))
__NR_chroot = Constant('__NR_chroot',(4000 + 61))
__NR_ustat = Constant('__NR_ustat',(4000 + 62))
__NR_dup2 = Constant('__NR_dup2',(4000 + 63))
__NR_getppid = Constant('__NR_getppid',(4000 + 64))
__NR_getpgrp = Constant('__NR_getpgrp',(4000 + 65))
__NR_setsid = Constant('__NR_setsid',(4000 + 66))
__NR_sigaction = Constant('__NR_sigaction',(4000 + 67))
__NR_sgetmask = Constant('__NR_sgetmask',(4000 + 68))
__NR_ssetmask = Constant('__NR_ssetmask',(4000 + 69))
__NR_setreuid = Constant('__NR_setreuid',(4000 + 70))
__NR_setregid = Constant('__NR_setregid',(4000 + 71))
__NR_sigsuspend = Constant('__NR_sigsuspend',(4000 + 72))
__NR_sigpending = Constant('__NR_sigpending',(4000 + 73))
__NR_sethostname = Constant('__NR_sethostname',(4000 + 74))
__NR_setrlimit = Constant('__NR_setrlimit',(4000 + 75))
__NR_getrlimit = Constant('__NR_getrlimit',(4000 + 76))
__NR_getrusage = Constant('__NR_getrusage',(4000 + 77))
__NR_gettimeofday = Constant('__NR_gettimeofday',(4000 + 78))
__NR_settimeofday = Constant('__NR_settimeofday',(4000 + 79))
__NR_getgroups = Constant('__NR_getgroups',(4000 + 80))
__NR_setgroups = Constant('__NR_setgroups',(4000 + 81))
__NR_reserved82 = Constant('__NR_reserved82',(4000 + 82))
__NR_symlink = Constant('__NR_symlink',(4000 + 83))
__NR_unused84 = Constant('__NR_unused84',(4000 + 84))
__NR_readlink = Constant('__NR_readlink',(4000 + 85))
__NR_uselib = Constant('__NR_uselib',(4000 + 86))
__NR_swapon = Constant('__NR_swapon',(4000 + 87))
__NR_reboot = Constant('__NR_reboot',(4000 + 88))
__NR_readdir = Constant('__NR_readdir',(4000 + 89))
__NR_mmap = Constant('__NR_mmap',(4000 + 90))
__NR_munmap = Constant('__NR_munmap',(4000 + 91))
__NR_truncate = Constant('__NR_truncate',(4000 + 92))
__NR_ftruncate = Constant('__NR_ftruncate',(4000 + 93))
__NR_fchmod = Constant('__NR_fchmod',(4000 + 94))
__NR_fchown = Constant('__NR_fchown',(4000 + 95))
__NR_getpriority = Constant('__NR_getpriority',(4000 + 96))
__NR_setpriority = Constant('__NR_setpriority',(4000 + 97))
__NR_profil = Constant('__NR_profil',(4000 + 98))
__NR_statfs = Constant('__NR_statfs',(4000 + 99))
__NR_fstatfs = Constant('__NR_fstatfs',(4000 + 100))
__NR_ioperm = Constant('__NR_ioperm',(4000 + 101))
__NR_socketcall = Constant('__NR_socketcall',(4000 + 102))
__NR_syslog = Constant('__NR_syslog',(4000 + 103))
__NR_setitimer = Constant('__NR_setitimer',(4000 + 104))
__NR_getitimer = Constant('__NR_getitimer',(4000 + 105))
__NR_stat = Constant('__NR_stat',(4000 + 106))
__NR_lstat = Constant('__NR_lstat',(4000 + 107))
__NR_fstat = Constant('__NR_fstat',(4000 + 108))
__NR_unused109 = Constant('__NR_unused109',(4000 + 109))
__NR_iopl = Constant('__NR_iopl',(4000 + 110))
__NR_vhangup = Constant('__NR_vhangup',(4000 + 111))
__NR_idle = Constant('__NR_idle',(4000 + 112))
__NR_vm86 = Constant('__NR_vm86',(4000 + 113))
__NR_wait4 = Constant('__NR_wait4',(4000 + 114))
__NR_swapoff = Constant('__NR_swapoff',(4000 + 115))
__NR_sysinfo = Constant('__NR_sysinfo',(4000 + 116))
__NR_ipc = Constant('__NR_ipc',(4000 + 117))
__NR_fsync = Constant('__NR_fsync',(4000 + 118))
__NR_sigreturn = Constant('__NR_sigreturn',(4000 + 119))
__NR_clone = Constant('__NR_clone',(4000 + 120))
__NR_setdomainname = Constant('__NR_setdomainname',(4000 + 121))
__NR_uname = Constant('__NR_uname',(4000 + 122))
__NR_modify_ldt = Constant('__NR_modify_ldt',(4000 + 123))
__NR_adjtimex = Constant('__NR_adjtimex',(4000 + 124))
__NR_mprotect = Constant('__NR_mprotect',(4000 + 125))
__NR_sigprocmask = Constant('__NR_sigprocmask',(4000 + 126))
__NR_create_module = Constant('__NR_create_module',(4000 + 127))
__NR_init_module = Constant('__NR_init_module',(4000 + 128))
__NR_delete_module = Constant('__NR_delete_module',(4000 + 129))
__NR_get_kernel_syms = Constant('__NR_get_kernel_syms',(4000 + 130))
__NR_quotactl = Constant('__NR_quotactl',(4000 + 131))
__NR_getpgid = Constant('__NR_getpgid',(4000 + 132))
__NR_fchdir = Constant('__NR_fchdir',(4000 + 133))
__NR_bdflush = Constant('__NR_bdflush',(4000 + 134))
__NR_sysfs = Constant('__NR_sysfs',(4000 + 135))
__NR_personality = Constant('__NR_personality',(4000 + 136))
__NR_afs_syscall = Constant('__NR_afs_syscall',(4000 + 137))
__NR_setfsuid = Constant('__NR_setfsuid',(4000 + 138))
__NR_setfsgid = Constant('__NR_setfsgid',(4000 + 139))
__NR__llseek = Constant('__NR__llseek',(4000 + 140))
__NR_getdents = Constant('__NR_getdents',(4000 + 141))
__NR__newselect = Constant('__NR__newselect',(4000 + 142))
__NR_flock = Constant('__NR_flock',(4000 + 143))
__NR_msync = Constant('__NR_msync',(4000 + 144))
__NR_readv = Constant('__NR_readv',(4000 + 145))
__NR_writev = Constant('__NR_writev',(4000 + 146))
__NR_cacheflush = Constant('__NR_cacheflush',(4000 + 147))
__NR_cachectl = Constant('__NR_cachectl',(4000 + 148))
__NR_sysmips = Constant('__NR_sysmips',(4000 + 149))
__NR_unused150 = Constant('__NR_unused150',(4000 + 150))
__NR_getsid = Constant('__NR_getsid',(4000 + 151))
__NR_fdatasync = Constant('__NR_fdatasync',(4000 + 152))
__NR__sysctl = Constant('__NR__sysctl',(4000 + 153))
__NR_mlock = Constant('__NR_mlock',(4000 + 154))
__NR_munlock = Constant('__NR_munlock',(4000 + 155))
__NR_mlockall = Constant('__NR_mlockall',(4000 + 156))
__NR_munlockall = Constant('__NR_munlockall',(4000 + 157))
__NR_sched_setparam = Constant('__NR_sched_setparam',(4000 + 158))
__NR_sched_getparam = Constant('__NR_sched_getparam',(4000 + 159))
__NR_sched_setscheduler = Constant('__NR_sched_setscheduler',(4000 + 160))
__NR_sched_getscheduler = Constant('__NR_sched_getscheduler',(4000 + 161))
__NR_sched_yield = Constant('__NR_sched_yield',(4000 + 162))
__NR_sched_get_priority_max = Constant('__NR_sched_get_priority_max',(4000 + 163))
__NR_sched_get_priority_min = Constant('__NR_sched_get_priority_min',(4000 + 164))
__NR_sched_rr_get_interval = Constant('__NR_sched_rr_get_interval',(4000 + 165))
__NR_nanosleep = Constant('__NR_nanosleep',(4000 + 166))
__NR_mremap = Constant('__NR_mremap',(4000 + 167))
__NR_accept = Constant('__NR_accept',(4000 + 168))
__NR_bind = Constant('__NR_bind',(4000 + 169))
__NR_connect = Constant('__NR_connect',(4000 + 170))
__NR_getpeername = Constant('__NR_getpeername',(4000 + 171))
__NR_getsockname = Constant('__NR_getsockname',(4000 + 172))
__NR_getsockopt = Constant('__NR_getsockopt',(4000 + 173))
__NR_listen = Constant('__NR_listen',(4000 + 174))
__NR_recv = Constant('__NR_recv',(4000 + 175))
__NR_recvfrom = Constant('__NR_recvfrom',(4000 + 176))
__NR_recvmsg = Constant('__NR_recvmsg',(4000 + 177))
__NR_send = Constant('__NR_send',(4000 + 178))
__NR_sendmsg = Constant('__NR_sendmsg',(4000 + 179))
__NR_sendto = Constant('__NR_sendto',(4000 + 180))
__NR_setsockopt = Constant('__NR_setsockopt',(4000 + 181))
__NR_shutdown = Constant('__NR_shutdown',(4000 + 182))
__NR_socket = Constant('__NR_socket',(4000 + 183))
__NR_socketpair = Constant('__NR_socketpair',(4000 + 184))
__NR_setresuid = Constant('__NR_setresuid',(4000 + 185))
__NR_getresuid = Constant('__NR_getresuid',(4000 + 186))
__NR_query_module = Constant('__NR_query_module',(4000 + 187))
__NR_poll = Constant('__NR_poll',(4000 + 188))
__NR_nfsservctl = Constant('__NR_nfsservctl',(4000 + 189))
__NR_setresgid = Constant('__NR_setresgid',(4000 + 190))
__NR_getresgid = Constant('__NR_getresgid',(4000 + 191))
__NR_prctl = Constant('__NR_prctl',(4000 + 192))
__NR_rt_sigreturn = Constant('__NR_rt_sigreturn',(4000 + 193))
__NR_rt_sigaction = Constant('__NR_rt_sigaction',(4000 + 194))
__NR_rt_sigprocmask = Constant('__NR_rt_sigprocmask',(4000 + 195))
__NR_rt_sigpending = Constant('__NR_rt_sigpending',(4000 + 196))
__NR_rt_sigtimedwait = Constant('__NR_rt_sigtimedwait',(4000 + 197))
__NR_rt_sigqueueinfo = Constant('__NR_rt_sigqueueinfo',(4000 + 198))
__NR_rt_sigsuspend = Constant('__NR_rt_sigsuspend',(4000 + 199))
__NR_pread64 = Constant('__NR_pread64',(4000 + 200))
__NR_pwrite64 = Constant('__NR_pwrite64',(4000 + 201))
__NR_chown = Constant('__NR_chown',(4000 + 202))
__NR_getcwd = Constant('__NR_getcwd',(4000 + 203))
__NR_capget = Constant('__NR_capget',(4000 + 204))
__NR_capset = Constant('__NR_capset',(4000 + 205))
__NR_sigaltstack = Constant('__NR_sigaltstack',(4000 + 206))
__NR_sendfile = Constant('__NR_sendfile',(4000 + 207))
__NR_getpmsg = Constant('__NR_getpmsg',(4000 + 208))
__NR_putpmsg = Constant('__NR_putpmsg',(4000 + 209))
__NR_mmap2 = Constant('__NR_mmap2',(4000 + 210))
__NR_truncate64 = Constant('__NR_truncate64',(4000 + 211))
__NR_ftruncate64 = Constant('__NR_ftruncate64',(4000 + 212))
__NR_stat64 = Constant('__NR_stat64',(4000 + 213))
__NR_lstat64 = Constant('__NR_lstat64',(4000 + 214))
__NR_fstat64 = Constant('__NR_fstat64',(4000 + 215))
__NR_pivot_root = Constant('__NR_pivot_root',(4000 + 216))
__NR_mincore = Constant('__NR_mincore',(4000 + 217))
__NR_madvise = Constant('__NR_madvise',(4000 + 218))
__NR_getdents64 = Constant('__NR_getdents64',(4000 + 219))
__NR_fcntl64 = Constant('__NR_fcntl64',(4000 + 220))
__NR_reserved221 = Constant('__NR_reserved221',(4000 + 221))
__NR_gettid = Constant('__NR_gettid',(4000 + 222))
__NR_readahead = Constant('__NR_readahead',(4000 + 223))
__NR_setxattr = Constant('__NR_setxattr',(4000 + 224))
__NR_lsetxattr = Constant('__NR_lsetxattr',(4000 + 225))
__NR_fsetxattr = Constant('__NR_fsetxattr',(4000 + 226))
__NR_getxattr = Constant('__NR_getxattr',(4000 + 227))
__NR_lgetxattr = Constant('__NR_lgetxattr',(4000 + 228))
__NR_fgetxattr = Constant('__NR_fgetxattr',(4000 + 229))
__NR_listxattr = Constant('__NR_listxattr',(4000 + 230))
__NR_llistxattr = Constant('__NR_llistxattr',(4000 + 231))
__NR_flistxattr = Constant('__NR_flistxattr',(4000 + 232))
__NR_removexattr = Constant('__NR_removexattr',(4000 + 233))
__NR_lremovexattr = Constant('__NR_lremovexattr',(4000 + 234))
__NR_fremovexattr = Constant('__NR_fremovexattr',(4000 + 235))
__NR_tkill = Constant('__NR_tkill',(4000 + 236))
__NR_sendfile64 = Constant('__NR_sendfile64',(4000 + 237))
__NR_futex = Constant('__NR_futex',(4000 + 238))
__NR_sched_setaffinity = Constant('__NR_sched_setaffinity',(4000 + 239))
__NR_sched_getaffinity = Constant('__NR_sched_getaffinity',(4000 + 240))
__NR_io_setup = Constant('__NR_io_setup',(4000 + 241))
__NR_io_destroy = Constant('__NR_io_destroy',(4000 + 242))
__NR_io_getevents = Constant('__NR_io_getevents',(4000 + 243))
__NR_io_submit = Constant('__NR_io_submit',(4000 + 244))
__NR_io_cancel = Constant('__NR_io_cancel',(4000 + 245))
__NR_exit_group = Constant('__NR_exit_group',(4000 + 246))
__NR_lookup_dcookie = Constant('__NR_lookup_dcookie',(4000 + 247))
__NR_epoll_create = Constant('__NR_epoll_create',(4000 + 248))
__NR_epoll_ctl = Constant('__NR_epoll_ctl',(4000 + 249))
__NR_epoll_wait = Constant('__NR_epoll_wait',(4000 + 250))
__NR_remap_file_pages = Constant('__NR_remap_file_pages',(4000 + 251))
__NR_set_tid_address = Constant('__NR_set_tid_address',(4000 + 252))
__NR_restart_syscall = Constant('__NR_restart_syscall',(4000 + 253))
__NR_fadvise64 = Constant('__NR_fadvise64',(4000 + 254))
__NR_statfs64 = Constant('__NR_statfs64',(4000 + 255))
__NR_fstatfs64 = Constant('__NR_fstatfs64',(4000 + 256))
__NR_timer_create = Constant('__NR_timer_create',(4000 + 257))
__NR_timer_settime = Constant('__NR_timer_settime',(4000 + 258))
__NR_timer_gettime = Constant('__NR_timer_gettime',(4000 + 259))
__NR_timer_getoverrun = Constant('__NR_timer_getoverrun',(4000 + 260))
__NR_timer_delete = Constant('__NR_timer_delete',(4000 + 261))
__NR_clock_settime = Constant('__NR_clock_settime',(4000 + 262))
__NR_clock_gettime = Constant('__NR_clock_gettime',(4000 + 263))
__NR_clock_getres = Constant('__NR_clock_getres',(4000 + 264))
__NR_clock_nanosleep = Constant('__NR_clock_nanosleep',(4000 + 265))
__NR_tgkill = Constant('__NR_tgkill',(4000 + 266))
__NR_utimes = Constant('__NR_utimes',(4000 + 267))
__NR_mbind = Constant('__NR_mbind',(4000 + 268))
__NR_get_mempolicy = Constant('__NR_get_mempolicy',(4000 + 269))
__NR_set_mempolicy = Constant('__NR_set_mempolicy',(4000 + 270))
__NR_mq_open = Constant('__NR_mq_open',(4000 + 271))
__NR_mq_unlink = Constant('__NR_mq_unlink',(4000 + 272))
__NR_mq_timedsend = Constant('__NR_mq_timedsend',(4000 + 273))
__NR_mq_timedreceive = Constant('__NR_mq_timedreceive',(4000 + 274))
__NR_mq_notify = Constant('__NR_mq_notify',(4000 + 275))
__NR_mq_getsetattr = Constant('__NR_mq_getsetattr',(4000 + 276))
__NR_vserver = Constant('__NR_vserver',(4000 + 277))
__NR_waitid = Constant('__NR_waitid',(4000 + 278))
__NR_add_key = Constant('__NR_add_key',(4000 + 280))
__NR_request_key = Constant('__NR_request_key',(4000 + 281))
__NR_keyctl = Constant('__NR_keyctl',(4000 + 282))
__NR_set_thread_area = Constant('__NR_set_thread_area',(4000 + 283))
__NR_inotify_init = Constant('__NR_inotify_init',(4000 + 284))
__NR_inotify_add_watch = Constant('__NR_inotify_add_watch',(4000 + 285))
__NR_inotify_rm_watch = Constant('__NR_inotify_rm_watch',(4000 + 286))
__NR_migrate_pages = Constant('__NR_migrate_pages',(4000 + 287))
__NR_openat = Constant('__NR_openat',(4000 + 288))
__NR_mkdirat = Constant('__NR_mkdirat',(4000 + 289))
__NR_mknodat = Constant('__NR_mknodat',(4000 + 290))
__NR_fchownat = Constant('__NR_fchownat',(4000 + 291))
__NR_futimesat = Constant('__NR_futimesat',(4000 + 292))
__NR_fstatat64 = Constant('__NR_fstatat64',(4000 + 293))
__NR_unlinkat = Constant('__NR_unlinkat',(4000 + 294))
__NR_renameat = Constant('__NR_renameat',(4000 + 295))
__NR_linkat = Constant('__NR_linkat',(4000 + 296))
__NR_symlinkat = Constant('__NR_symlinkat',(4000 + 297))
__NR_readlinkat = Constant('__NR_readlinkat',(4000 + 298))
__NR_fchmodat = Constant('__NR_fchmodat',(4000 + 299))
__NR_faccessat = Constant('__NR_faccessat',(4000 + 300))
__NR_pselect6 = Constant('__NR_pselect6',(4000 + 301))
__NR_ppoll = Constant('__NR_ppoll',(4000 + 302))
__NR_unshare = Constant('__NR_unshare',(4000 + 303))
__NR_splice = Constant('__NR_splice',(4000 + 304))
__NR_sync_file_range = Constant('__NR_sync_file_range',(4000 + 305))
__NR_tee = Constant('__NR_tee',(4000 + 306))
__NR_vmsplice = Constant('__NR_vmsplice',(4000 + 307))
__NR_move_pages = Constant('__NR_move_pages',(4000 + 308))
__NR_set_robust_list = Constant('__NR_set_robust_list',(4000 + 309))
__NR_get_robust_list = Constant('__NR_get_robust_list',(4000 + 310))
__NR_kexec_load = Constant('__NR_kexec_load',(4000 + 311))
__NR_getcpu = Constant('__NR_getcpu',(4000 + 312))
__NR_epoll_pwait = Constant('__NR_epoll_pwait',(4000 + 313))
__NR_ioprio_set = Constant('__NR_ioprio_set',(4000 + 314))
__NR_ioprio_get = Constant('__NR_ioprio_get',(4000 + 315))
__NR_utimensat = Constant('__NR_utimensat',(4000 + 316))
__NR_signalfd = Constant('__NR_signalfd',(4000 + 317))
__NR_timerfd = Constant('__NR_timerfd',(4000 + 318))
__NR_eventfd = Constant('__NR_eventfd',(4000 + 319))
__NR_fallocate = Constant('__NR_fallocate',(4000 + 320))
__NR_timerfd_create = Constant('__NR_timerfd_create',(4000 + 321))
__NR_timerfd_gettime = Constant('__NR_timerfd_gettime',(4000 + 322))
__NR_timerfd_settime = Constant('__NR_timerfd_settime',(4000 + 323))
__NR_signalfd4 = Constant('__NR_signalfd4',(4000 + 324))
__NR_eventfd2 = Constant('__NR_eventfd2',(4000 + 325))
__NR_epoll_create1 = Constant('__NR_epoll_create1',(4000 + 326))
__NR_dup3 = Constant('__NR_dup3',(4000 + 327))
__NR_pipe2 = Constant('__NR_pipe2',(4000 + 328))
__NR_inotify_init1 = Constant('__NR_inotify_init1',(4000 + 329))
__NR_preadv = Constant('__NR_preadv',(4000 + 330))
__NR_pwritev = Constant('__NR_pwritev',(4000 + 331))
__NR_rt_tgsigqueueinfo = Constant('__NR_rt_tgsigqueueinfo',(4000 + 332))
__NR_perf_event_open = Constant('__NR_perf_event_open',(4000 + 333))
__NR_accept4 = Constant('__NR_accept4',(4000 + 334))
__NR_recvmmsg = Constant('__NR_recvmmsg',(4000 + 335))
__NR_fanotify_init = Constant('__NR_fanotify_init',(4000 + 336))
__NR_fanotify_mark = Constant('__NR_fanotify_mark',(4000 + 337))
__NR_prlimit64 = Constant('__NR_prlimit64',(4000 + 338))
__NR_name_to_handle_at = Constant('__NR_name_to_handle_at',(4000 + 339))
__NR_open_by_handle_at = Constant('__NR_open_by_handle_at',(4000 + 340))
__NR_clock_adjtime = Constant('__NR_clock_adjtime',(4000 + 341))
__NR_syncfs = Constant('__NR_syncfs',(4000 + 342))
__NR_sendmmsg = Constant('__NR_sendmmsg',(4000 + 343))
__NR_setns = Constant('__NR_setns',(4000 + 344))
__NR_process_vm_readv = Constant('__NR_process_vm_readv',(4000 + 345))
__NR_process_vm_writev = Constant('__NR_process_vm_writev',(4000 + 346))
__NR_kcmp = Constant('__NR_kcmp',(4000 + 347))
__NR_finit_module = Constant('__NR_finit_module',(4000 + 348))
__NR_sched_setattr = Constant('__NR_sched_setattr',(4000 + 349))
__NR_sched_getattr = Constant('__NR_sched_getattr',(4000 + 350))
__NR_renameat2 = Constant('__NR_renameat2',(4000 + 351))
__NR_seccomp = Constant('__NR_seccomp',(4000 + 352))
__NR_getrandom = Constant('__NR_getrandom',(4000 + 353))
__NR_memfd_create = Constant('__NR_memfd_create',(4000 + 354))
__NR_bpf = Constant('__NR_bpf',(4000 + 355))
__NR_execveat = Constant('__NR_execveat',(4000 + 356))
__NR_userfaultfd = Constant('__NR_userfaultfd',(4000 + 357))
__NR_membarrier = Constant('__NR_membarrier',(4000 + 358))
__NR_mlock2 = Constant('__NR_mlock2',(4000 + 359))
__NR_copy_file_range = Constant('__NR_copy_file_range',(4000 + 360))
__NR_preadv2 = Constant('__NR_preadv2',(4000 + 361))
__NR_pwritev2 = Constant('__NR_pwritev2',(4000 + 362))
__NR_pkey_mprotect = Constant('__NR_pkey_mprotect',(4000 + 363))
__NR_pkey_alloc = Constant('__NR_pkey_alloc',(4000 + 364))
__NR_pkey_free = Constant('__NR_pkey_free',(4000 + 365))
__NR_statx = Constant('__NR_statx',(4000 + 366))
__NR_rseq = Constant('__NR_rseq',(4000 + 367))
__NR_io_pgetevents = Constant('__NR_io_pgetevents',(4000 + 368))
__NR_semget = Constant('__NR_semget',(4000 + 393))
__NR_semctl = Constant('__NR_semctl',(4000 + 394))
__NR_shmget = Constant('__NR_shmget',(4000 + 395))
__NR_shmctl = Constant('__NR_shmctl',(4000 + 396))
__NR_shmat = Constant('__NR_shmat',(4000 + 397))
__NR_shmdt = Constant('__NR_shmdt',(4000 + 398))
__NR_msgget = Constant('__NR_msgget',(4000 + 399))
__NR_msgsnd = Constant('__NR_msgsnd',(4000 + 400))
__NR_msgrcv = Constant('__NR_msgrcv',(4000 + 401))
__NR_msgctl = Constant('__NR_msgctl',(4000 + 402))
__NR_clock_gettime64 = Constant('__NR_clock_gettime64',(4000 + 403))
__NR_clock_settime64 = Constant('__NR_clock_settime64',(4000 + 404))
__NR_clock_adjtime64 = Constant('__NR_clock_adjtime64',(4000 + 405))
__NR_clock_getres_time64 = Constant('__NR_clock_getres_time64',(4000 + 406))
__NR_clock_nanosleep_time64 = Constant('__NR_clock_nanosleep_time64',(4000 + 407))
__NR_timer_gettime64 = Constant('__NR_timer_gettime64',(4000 + 408))
__NR_timer_settime64 = Constant('__NR_timer_settime64',(4000 + 409))
__NR_timerfd_gettime64 = Constant('__NR_timerfd_gettime64',(4000 + 410))
__NR_timerfd_settime64 = Constant('__NR_timerfd_settime64',(4000 + 411))
__NR_utimensat_time64 = Constant('__NR_utimensat_time64',(4000 + 412))
__NR_pselect6_time64 = Constant('__NR_pselect6_time64',(4000 + 413))
__NR_ppoll_time64 = Constant('__NR_ppoll_time64',(4000 + 414))
__NR_io_pgetevents_time64 = Constant('__NR_io_pgetevents_time64',(4000 + 416))
__NR_recvmmsg_time64 = Constant('__NR_recvmmsg_time64',(4000 + 417))
__NR_mq_timedsend_time64 = Constant('__NR_mq_timedsend_time64',(4000 + 418))
__NR_mq_timedreceive_time64 = Constant('__NR_mq_timedreceive_time64',(4000 + 419))
__NR_semtimedop_time64 = Constant('__NR_semtimedop_time64',(4000 + 420))
__NR_rt_sigtimedwait_time64 = Constant('__NR_rt_sigtimedwait_time64',(4000 + 421))
__NR_futex_time64 = Constant('__NR_futex_time64',(4000 + 422))
__NR_sched_rr_get_interval_time64 = Constant('__NR_sched_rr_get_interval_time64',(4000 + 423))
__NR_pidfd_send_signal = Constant('__NR_pidfd_send_signal',(4000 + 424))
__NR_io_uring_setup = Constant('__NR_io_uring_setup',(4000 + 425))
__NR_io_uring_enter = Constant('__NR_io_uring_enter',(4000 + 426))
__NR_io_uring_register = Constant('__NR_io_uring_register',(4000 + 427))
__NR_open_tree = Constant('__NR_open_tree',(4000 + 428))
__NR_move_mount = Constant('__NR_move_mount',(4000 + 429))
__NR_fsopen = Constant('__NR_fsopen',(4000 + 430))
__NR_fsconfig = Constant('__NR_fsconfig',(4000 + 431))
__NR_fsmount = Constant('__NR_fsmount',(4000 + 432))
__NR_fspick = Constant('__NR_fspick',(4000 + 433))
__NR_pidfd_open = Constant('__NR_pidfd_open',(4000 + 434))
__NR_clone3 = Constant('__NR_clone3',(4000 + 435))
__NR_openat2 = Constant('__NR_openat2',(4000 + 437))
__NR_pidfd_getfd = Constant('__NR_pidfd_getfd',(4000 + 438))
MAP_32BIT = Constant('MAP_32BIT',0x40)
INADDR_ANY = Constant('INADDR_ANY',0)
INADDR_BROADCAST = Constant('INADDR_BROADCAST',0xffffffff)
INADDR_NONE = Constant('INADDR_NONE',0xffffffff)
INADDR_LOOPBACK = Constant('INADDR_LOOPBACK',0x7f000001)
EPERM = Constant('EPERM',1)
ENOENT = Constant('ENOENT',2)
ESRCH = Constant('ESRCH',3)
EINTR = Constant('EINTR',4)
EIO = Constant('EIO',5)
ENXIO = Constant('ENXIO',6)
E2BIG = Constant('E2BIG',7)
ENOEXEC = Constant('ENOEXEC',8)
EBADF = Constant('EBADF',9)
ECHILD = Constant('ECHILD',10)
EAGAIN = Constant('EAGAIN',11)
ENOMEM = Constant('ENOMEM',12)
EACCES = Constant('EACCES',13)
EFAULT = Constant('EFAULT',14)
ENOTBLK = Constant('ENOTBLK',15)
EBUSY = Constant('EBUSY',16)
EEXIST = Constant('EEXIST',17)
EXDEV = Constant('EXDEV',18)
ENODEV = Constant('ENODEV',19)
ENOTDIR = Constant('ENOTDIR',20)
EISDIR = Constant('EISDIR',21)
EINVAL = Constant('EINVAL',22)
ENFILE = Constant('ENFILE',23)
EMFILE = Constant('EMFILE',24)
ENOTTY = Constant('ENOTTY',25)
ETXTBSY = Constant('ETXTBSY',26)
EFBIG = Constant('EFBIG',27)
ENOSPC = Constant('ENOSPC',28)
ESPIPE = Constant('ESPIPE',29)
EROFS = Constant('EROFS',30)
EMLINK = Constant('EMLINK',31)
EPIPE = Constant('EPIPE',32)
EDOM = Constant('EDOM',33)
ERANGE = Constant('ERANGE',34)
ENOMSG = Constant('ENOMSG',35)
EIDRM = Constant('EIDRM',36)
ECHRNG = Constant('ECHRNG',37)
EL2NSYNC = Constant('EL2NSYNC',38)
EL3HLT = Constant('EL3HLT',39)
EL3RST = Constant('EL3RST',40)
ELNRNG = Constant('ELNRNG',41)
EUNATCH = Constant('EUNATCH',42)
ENOCSI = Constant('ENOCSI',43)
EL2HLT = Constant('EL2HLT',44)
EDEADLK = Constant('EDEADLK',45)
ENOLCK = Constant('ENOLCK',46)
EBADE = Constant('EBADE',50)
EBADR = Constant('EBADR',51)
EXFULL = Constant('EXFULL',52)
ENOANO = Constant('ENOANO',53)
EBADRQC = Constant('EBADRQC',54)
EBADSLT = Constant('EBADSLT',55)
EDEADLOCK = Constant('EDEADLOCK',56)
EBFONT = Constant('EBFONT',59)
ENOSTR = Constant('ENOSTR',60)
ENODATA = Constant('ENODATA',61)
ETIME = Constant('ETIME',62)
ENOSR = Constant('ENOSR',63)
ENONET = Constant('ENONET',64)
ENOPKG = Constant('ENOPKG',65)
EREMOTE = Constant('EREMOTE',66)
ENOLINK = Constant('ENOLINK',67)
EADV = Constant('EADV',68)
ESRMNT = Constant('ESRMNT',69)
ECOMM = Constant('ECOMM',70)
EPROTO = Constant('EPROTO',71)
EDOTDOT = Constant('EDOTDOT',73)
EMULTIHOP = Constant('EMULTIHOP',74)
EBADMSG = Constant('EBADMSG',77)
ENAMETOOLONG = Constant('ENAMETOOLONG',78)
EOVERFLOW = Constant('EOVERFLOW',79)
ENOTUNIQ = Constant('ENOTUNIQ',80)
EBADFD = Constant('EBADFD',81)
EREMCHG = Constant('EREMCHG',82)
ELIBACC = Constant('ELIBACC',83)
ELIBBAD = Constant('ELIBBAD',84)
ELIBSCN = Constant('ELIBSCN',85)
ELIBMAX = Constant('ELIBMAX',86)
ELIBEXEC = Constant('ELIBEXEC',87)
EILSEQ = Constant('EILSEQ',88)
ENOSYS = Constant('ENOSYS',89)
ELOOP = Constant('ELOOP',90)
ERESTART = Constant('ERESTART',91)
ESTRPIPE = Constant('ESTRPIPE',92)
ENOTEMPTY = Constant('ENOTEMPTY',93)
EUSERS = Constant('EUSERS',94)
ENOTSOCK = Constant('ENOTSOCK',95)
EDESTADDRREQ = Constant('EDESTADDRREQ',96)
EMSGSIZE = Constant('EMSGSIZE',97)
EPROTOTYPE = Constant('EPROTOTYPE',98)
ENOPROTOOPT = Constant('ENOPROTOOPT',99)
EPROTONOSUPPORT = Constant('EPROTONOSUPPORT',120)
ESOCKTNOSUPPORT = Constant('ESOCKTNOSUPPORT',121)
EOPNOTSUPP = Constant('EOPNOTSUPP',122)
ENOTSUP = Constant('ENOTSUP',122)
EPFNOSUPPORT = Constant('EPFNOSUPPORT',123)
EAFNOSUPPORT = Constant('EAFNOSUPPORT',124)
EADDRINUSE = Constant('EADDRINUSE',125)
EADDRNOTAVAIL = Constant('EADDRNOTAVAIL',126)
ENETDOWN = Constant('ENETDOWN',127)
ENETUNREACH = Constant('ENETUNREACH',128)
ENETRESET = Constant('ENETRESET',129)
ECONNABORTED = Constant('ECONNABORTED',130)
ECONNRESET = Constant('ECONNRESET',131)
ENOBUFS = Constant('ENOBUFS',132)
EISCONN = Constant('EISCONN',133)
ENOTCONN = Constant('ENOTCONN',134)
EUCLEAN = Constant('EUCLEAN',135)
ENOTNAM = Constant('ENOTNAM',137)
ENAVAIL = Constant('ENAVAIL',138)
EISNAM = Constant('EISNAM',139)
EREMOTEIO = Constant('EREMOTEIO',140)
EINIT = Constant('EINIT',141)
EREMDEV = Constant('EREMDEV',142)
ESHUTDOWN = Constant('ESHUTDOWN',143)
ETOOMANYREFS = Constant('ETOOMANYREFS',144)
ETIMEDOUT = Constant('ETIMEDOUT',145)
ECONNREFUSED = Constant('ECONNREFUSED',146)
EHOSTDOWN = Constant('EHOSTDOWN',147)
EHOSTUNREACH = Constant('EHOSTUNREACH',148)
EWOULDBLOCK = Constant('EWOULDBLOCK',11)
EALREADY = Constant('EALREADY',149)
EINPROGRESS = Constant('EINPROGRESS',150)
ESTALE = Constant('ESTALE',151)
ECANCELED = Constant('ECANCELED',158)
ENOMEDIUM = Constant('ENOMEDIUM',159)
EMEDIUMTYPE = Constant('EMEDIUMTYPE',160)
ENOKEY = Constant('ENOKEY',161)
EKEYEXPIRED = Constant('EKEYEXPIRED',162)
EKEYREVOKED = Constant('EKEYREVOKED',163)
EKEYREJECTED = Constant('EKEYREJECTED',164)
EOWNERDEAD = Constant('EOWNERDEAD',165)
ENOTRECOVERABLE = Constant('ENOTRECOVERABLE',166)
ERFKILL = Constant('ERFKILL',167)
EHWPOISON = Constant('EHWPOISON',168)
EDQUOT = Constant('EDQUOT',1133)
__SYS_NERR = Constant('__SYS_NERR',((168) + 1))
__LITTLE_ENDIAN = Constant('__LITTLE_ENDIAN',1234)
__BIG_ENDIAN = Constant('__BIG_ENDIAN',4321)
__BYTE_ORDER = Constant('__BYTE_ORDER',1234)
__FLOAT_WORD_ORDER = Constant('__FLOAT_WORD_ORDER',1234)
LITTLE_ENDIAN = Constant('LITTLE_ENDIAN',1234)
BIG_ENDIAN = Constant('BIG_ENDIAN',4321)
BYTE_ORDER = Constant('BYTE_ORDER',1234)
__WORDSIZE = Constant('__WORDSIZE',64)
INT8_MAX = Constant('INT8_MAX',(127))
INT16_MAX = Constant('INT16_MAX',(32767))
INT32_MAX = Constant('INT32_MAX',(2147483647))
INT64_MAX = Constant('INT64_MAX',(9223372036854775807))
INT8_MIN = Constant('INT8_MIN',(-1 - (127)))
INT16_MIN = Constant('INT16_MIN',(-1 - (32767)))
INT32_MIN = Constant('INT32_MIN',(-1 - (2147483647)))
INT64_MIN = Constant('INT64_MIN',(-1 - (9223372036854775807)))
INT_LEAST8_MAX = Constant('INT_LEAST8_MAX',(127))
INT_LEAST8_MIN = Constant('INT_LEAST8_MIN',(-1 - (127)))
INT_LEAST16_MAX = Constant('INT_LEAST16_MAX',(32767))
INT_LEAST16_MIN = Constant('INT_LEAST16_MIN',(-1 - (32767)))
INT_LEAST32_MAX = Constant('INT_LEAST32_MAX',(2147483647))
INT_LEAST32_MIN = Constant('INT_LEAST32_MIN',(-1 - (2147483647)))
INT_LEAST64_MAX = Constant('INT_LEAST64_MAX',(9223372036854775807))
INT_LEAST64_MIN = Constant('INT_LEAST64_MIN',(-1 - (9223372036854775807)))
UINT8_MAX = Constant('UINT8_MAX',0xff)
UINT16_MAX = Constant('UINT16_MAX',0xffff)
UINT32_MAX = Constant('UINT32_MAX',0xffffffff)
UINT64_MAX = Constant('UINT64_MAX',0xffffffffffffffff)
UINT_LEAST8_MAX = Constant('UINT_LEAST8_MAX',0xff)
UINT_LEAST16_MAX = Constant('UINT_LEAST16_MAX',0xffff)
UINT_LEAST32_MAX = Constant('UINT_LEAST32_MAX',0xffffffff)
UINT_LEAST64_MAX = Constant('UINT_LEAST64_MAX',0xffffffffffffffff)
INTPTR_MIN = Constant('INTPTR_MIN',(-1 - (9223372036854775807)))
INTPTR_MAX = Constant('INTPTR_MAX',(9223372036854775807))
UINTPTR_MAX = Constant('UINTPTR_MAX',0xffffffffffffffff)
SIZE_MAX = Constant('SIZE_MAX',0xffffffffffffffff)
PTRDIFF_MIN = Constant('PTRDIFF_MIN',(-1 - (9223372036854775807)))
PTRDIFF_MAX = Constant('PTRDIFF_MAX',(9223372036854775807))
INTMAX_MIN = Constant('INTMAX_MIN',(-1 - (9223372036854775807)))
INTMAX_MAX = Constant('INTMAX_MAX',(9223372036854775807))
UINTMAX_MAX = Constant('UINTMAX_MAX',0xffffffffffffffff)
INT_FAST8_MIN = Constant('INT_FAST8_MIN',(-1 - (127)))
INT_FAST8_MAX = Constant('INT_FAST8_MAX',(127))
INT_FAST64_MIN = Constant('INT_FAST64_MIN',(-1 - (9223372036854775807)))
INT_FAST64_MAX = Constant('INT_FAST64_MAX',(9223372036854775807))
UINT_FAST8_MAX = Constant('UINT_FAST8_MAX',0xff)
UINT_FAST64_MAX = Constant('UINT_FAST64_MAX',0xffffffffffffffff)
INT_FAST16_MIN = Constant('INT_FAST16_MIN',(-1 - (9223372036854775807)))
INT_FAST16_MAX = Constant('INT_FAST16_MAX',(9223372036854775807))
UINT_FAST16_MAX = Constant('UINT_FAST16_MAX',0xffffffffffffffff)
INT_FAST32_MIN = Constant('INT_FAST32_MIN',(-1 - (9223372036854775807)))
INT_FAST32_MAX = Constant('INT_FAST32_MAX',(9223372036854775807))
UINT_FAST32_MAX = Constant('UINT_FAST32_MAX',0xffffffffffffffff)
WINT_MIN = Constant('WINT_MIN',0)
__FSUID_H = Constant('__FSUID_H',1)
NSIG = Constant('NSIG',32)
_NSIG = Constant('_NSIG',128)
SIGHUP = Constant('SIGHUP',1)
SIGINT = Constant('SIGINT',2)
SIGQUIT = Constant('SIGQUIT',3)
SIGILL = Constant('SIGILL',4)
SIGTRAP = Constant('SIGTRAP',5)
SIGABRT = Constant('SIGABRT',6)
SIGIOT = Constant('SIGIOT',6)
SIGFPE = Constant('SIGFPE',8)
SIGKILL = Constant('SIGKILL',9)
SIGSEGV = Constant('SIGSEGV',11)
SIGPIPE = Constant('SIGPIPE',13)
SIGALRM = Constant('SIGALRM',14)
SIGTERM = Constant('SIGTERM',15)
SIGUNUSED = Constant('SIGUNUSED',31)
SIGEMT = Constant('SIGEMT',7)
SIGBUS = Constant('SIGBUS',10)
SIGSYS = Constant('SIGSYS',12)
SIGUSR1 = Constant('SIGUSR1',16)
SIGUSR2 = Constant('SIGUSR2',17)
SIGCHLD = Constant('SIGCHLD',18)
SIGPWR = Constant('SIGPWR',19)
SIGWINCH = Constant('SIGWINCH',20)
SIGURG = Constant('SIGURG',21)
SIGIO = Constant('SIGIO',22)
SIGSTOP = Constant('SIGSTOP',23)
SIGTSTP = Constant('SIGTSTP',24)
SIGCONT = Constant('SIGCONT',25)
SIGTTIN = Constant('SIGTTIN',26)
SIGTTOU = Constant('SIGTTOU',27)
SIGVTALRM = Constant('SIGVTALRM',28)
SIGPROF = Constant('SIGPROF',29)
SIGXCPU = Constant('SIGXCPU',30)
SIGXFSZ = Constant('SIGXFSZ',31)
SIGCLD = Constant('SIGCLD',18)
SIGPOLL = Constant('SIGPOLL',22)
SIGLOST = Constant('SIGLOST',19)
SIGRTMIN = Constant('SIGRTMIN',32)
SIGRTMAX = Constant('SIGRTMAX',(128-1))
SA_NOCLDSTOP = Constant('SA_NOCLDSTOP',0x00000001)
SA_SIGINFO = Constant('SA_SIGINFO',0x00000008)
SA_NOCLDWAIT = Constant('SA_NOCLDWAIT',0x00010000)
SA_RESTORER = Constant('SA_RESTORER',0x04000000)
SA_ONSTACK = Constant('SA_ONSTACK',0x08000000)
SA_RESTART = Constant('SA_RESTART',0x10000000)
SA_INTERRUPT = Constant('SA_INTERRUPT',0x20000000)
SA_NODEFER = Constant('SA_NODEFER',0x40000000)
SA_RESETHAND = Constant('SA_RESETHAND',0x80000000)
SA_NOMASK = Constant('SA_NOMASK',0x40000000)
SA_ONESHOT = Constant('SA_ONESHOT',0x80000000)
SS_ONSTACK = Constant('SS_ONSTACK',1)
SS_DISABLE = Constant('SS_DISABLE',2)
MINSIGSTKSZ = Constant('MINSIGSTKSZ',2048)
SIGSTKSZ = Constant('SIGSTKSZ',8192)
SIG_BLOCK = Constant('SIG_BLOCK',1)
SIG_UNBLOCK = Constant('SIG_UNBLOCK',2)
SIG_SETMASK = Constant('SIG_SETMASK',3)
SI_MAX_SIZE = Constant('SI_MAX_SIZE',128)
SIGEV_SIGNAL = Constant('SIGEV_SIGNAL',0)
SIGEV_NONE = Constant('SIGEV_NONE',1)
SIGEV_THREAD = Constant('SIGEV_THREAD',2)
SIGEV_THREAD_ID = Constant('SIGEV_THREAD_ID',4)
SIGEV_MAX_SIZE = Constant('SIGEV_MAX_SIZE',64)
_SYS_TIME_H = Constant('_SYS_TIME_H',1)
ITIMER_REAL = Constant('ITIMER_REAL',0)
ITIMER_VIRTUAL = Constant('ITIMER_VIRTUAL',1)
ITIMER_PROF = Constant('ITIMER_PROF',2)
FD_SETSIZE = Constant('FD_SETSIZE',1024)
R_OK = Constant('R_OK',4)
W_OK = Constant('W_OK',2)
X_OK = Constant('X_OK',1)
F_OK = Constant('F_OK',0)
SEEK_SET = Constant('SEEK_SET',0)
SEEK_CUR = Constant('SEEK_CUR',1)
SEEK_END = Constant('SEEK_END',2)
STDIN_FILENO = Constant('STDIN_FILENO',0)
STDOUT_FILENO = Constant('STDOUT_FILENO',1)
STDERR_FILENO = Constant('STDERR_FILENO',2)
_CS_PATH = Constant('_CS_PATH',1)
_SC_CLK_TCK = Constant('_SC_CLK_TCK',1)
_SC_ARG_MAX = Constant('_SC_ARG_MAX',2)
_SC_NGROUPS_MAX = Constant('_SC_NGROUPS_MAX',3)
_SC_OPEN_MAX = Constant('_SC_OPEN_MAX',4)
_SC_PAGESIZE = Constant('_SC_PAGESIZE',5)
_SC_NPROCESSORS_ONLN = Constant('_SC_NPROCESSORS_ONLN',6)
_SC_NPROCESSORS_CONF = Constant('_SC_NPROCESSORS_CONF',6)
_SC_PHYS_PAGES = Constant('_SC_PHYS_PAGES',7)
_SC_GETPW_R_SIZE_MAX = Constant('_SC_GETPW_R_SIZE_MAX',8)
_SC_GETGR_R_SIZE_MAX = Constant('_SC_GETGR_R_SIZE_MAX',9)
_PC_PATH_MAX = Constant('_PC_PATH_MAX',1)
_PC_VDISABLE = Constant('_PC_VDISABLE',2)
L_cuserid = Constant('L_cuserid',17)
_POSIX_VERSION = Constant('_POSIX_VERSION',199506)
F_ULOCK = Constant('F_ULOCK',0)
F_LOCK = Constant('F_LOCK',1)
F_TLOCK = Constant('F_TLOCK',2)
F_TEST = Constant('F_TEST',3)
_POSIX_MAPPED_FILES = Constant('_POSIX_MAPPED_FILES',200809)
S_IFMT = Constant('S_IFMT',0o0170000)
S_IFSOCK = Constant('S_IFSOCK',0o140000)
S_IFLNK = Constant('S_IFLNK',0o120000)
S_IFREG = Constant('S_IFREG',0o100000)
S_IFBLK = Constant('S_IFBLK',0o060000)
S_IFDIR = Constant('S_IFDIR',0o040000)
S_IFCHR = Constant('S_IFCHR',0o020000)
S_IFIFO = Constant('S_IFIFO',0o010000)
S_ISUID = Constant('S_ISUID',0o004000)
S_ISGID = Constant('S_ISGID',0o002000)
S_ISVTX = Constant('S_ISVTX',0o001000)
S_IRWXU = Constant('S_IRWXU',0o0700)
S_IRUSR = Constant('S_IRUSR',0o0400)
S_IWUSR = Constant('S_IWUSR',0o0200)
S_IXUSR = Constant('S_IXUSR',0o0100)
S_IRWXG = Constant('S_IRWXG',0o0070)
S_IRGRP = Constant('S_IRGRP',0o0040)
S_IWGRP = Constant('S_IWGRP',0o0020)
S_IXGRP = Constant('S_IXGRP',0o0010)
S_IRWXO = Constant('S_IRWXO',0o0007)
S_IROTH = Constant('S_IROTH',0o0004)
S_IWOTH = Constant('S_IWOTH',0o0002)
S_IXOTH = Constant('S_IXOTH',0o0001)
S_IREAD = Constant('S_IREAD',0o0400)
S_IWRITE = Constant('S_IWRITE',0o0200)
S_IEXEC = Constant('S_IEXEC',0o0100)
_SYS_UIO = Constant('_SYS_UIO',1)
SOL_SOCKET = Constant('SOL_SOCKET',0xffff)
SO_DEBUG = Constant('SO_DEBUG',0x0001)
SO_REUSEADDR = Constant('SO_REUSEADDR',0x0004)
SO_KEEPALIVE = Constant('SO_KEEPALIVE',0x0008)
SO_DONTROUTE = Constant('SO_DONTROUTE',0x0010)
SO_BROADCAST = Constant('SO_BROADCAST',0x0020)
SO_LINGER = Constant('SO_LINGER',0x0080)
SO_OOBINLINE = Constant('SO_OOBINLINE',0x0100)
SO_REUSEPORT = Constant('SO_REUSEPORT',0x0200)
SO_TYPE = Constant('SO_TYPE',0x1008)
SO_ERROR = Constant('SO_ERROR',0x1007)
SO_SNDBUF = Constant('SO_SNDBUF',0x1001)
SO_RCVBUF = Constant('SO_RCVBUF',0x1002)
SO_NO_CHECK = Constant('SO_NO_CHECK',11)
SO_PRIORITY = Constant('SO_PRIORITY',12)
SO_BSDCOMPAT = Constant('SO_BSDCOMPAT',14)
SO_PASSCRED = Constant('SO_PASSCRED',17)
SO_PEERCRED = Constant('SO_PEERCRED',18)
SO_SECURITY_AUTHENTICATION = Constant('SO_SECURITY_AUTHENTICATION',22)
SO_SECURITY_ENCRYPTION_TRANSPORT = Constant('SO_SECURITY_ENCRYPTION_TRANSPORT',23)
SO_SECURITY_ENCRYPTION_NETWORK = Constant('SO_SECURITY_ENCRYPTION_NETWORK',24)
SO_BINDTODEVICE = Constant('SO_BINDTODEVICE',25)
SO_ATTACH_FILTER = Constant('SO_ATTACH_FILTER',26)
SO_DETACH_FILTER = Constant('SO_DETACH_FILTER',27)
SO_GET_FILTER = Constant('SO_GET_FILTER',26)
SO_PEERNAME = Constant('SO_PEERNAME',28)
SO_TIMESTAMP = Constant('SO_TIMESTAMP',29)
SCM_TIMESTAMP = Constant('SCM_TIMESTAMP',29)
SO_PEERSEC = Constant('SO_PEERSEC',30)
SO_PASSSEC = Constant('SO_PASSSEC',34)
SO_TIMESTAMPNS = Constant('SO_TIMESTAMPNS',35)
SCM_TIMESTAMPNS = Constant('SCM_TIMESTAMPNS',35)
SO_MARK = Constant('SO_MARK',36)
SO_TIMESTAMPING = Constant('SO_TIMESTAMPING',37)
SCM_TIMESTAMPING = Constant('SCM_TIMESTAMPING',37)
SO_RXQ_OVFL = Constant('SO_RXQ_OVFL',40)
SO_WIFI_STATUS = Constant('SO_WIFI_STATUS',41)
SCM_WIFI_STATUS = Constant('SCM_WIFI_STATUS',41)
SO_PEEK_OFF = Constant('SO_PEEK_OFF',42)
SO_NOFCS = Constant('SO_NOFCS',43)
SO_LOCK_FILTER = Constant('SO_LOCK_FILTER',44)
SO_SELECT_ERR_QUEUE = Constant('SO_SELECT_ERR_QUEUE',45)
SO_BUSY_POLL = Constant('SO_BUSY_POLL',46)
SO_MAX_PACING_RATE = Constant('SO_MAX_PACING_RATE',47)
SO_BPF_EXTENSIONS = Constant('SO_BPF_EXTENSIONS',48)
SO_INCOMING_CPU = Constant('SO_INCOMING_CPU',49)
SO_ATTACH_BPF = Constant('SO_ATTACH_BPF',50)
SO_DETACH_BPF = Constant('SO_DETACH_BPF',27)
SO_ATTACH_REUSEPORT_CBPF = Constant('SO_ATTACH_REUSEPORT_CBPF',51)
SO_ATTACH_REUSEPORT_EBPF = Constant('SO_ATTACH_REUSEPORT_EBPF',52)
SO_CNX_ADVICE = Constant('SO_CNX_ADVICE',53)
SCM_TIMESTAMPING_OPT_STATS = Constant('SCM_TIMESTAMPING_OPT_STATS',54)
SO_MEMINFO = Constant('SO_MEMINFO',55)
SO_INCOMING_NAPI_ID = Constant('SO_INCOMING_NAPI_ID',56)
SO_COOKIE = Constant('SO_COOKIE',57)
SCM_TIMESTAMPING_PKTINFO = Constant('SCM_TIMESTAMPING_PKTINFO',58)
SO_PEERGROUPS = Constant('SO_PEERGROUPS',59)
SO_ZEROCOPY = Constant('SO_ZEROCOPY',60)
SO_SNDBUFFORCE = Constant('SO_SNDBUFFORCE',31)
SO_RCVBUFFORCE = Constant('SO_RCVBUFFORCE',33)
SO_RCVLOWAT = Constant('SO_RCVLOWAT',0x1004)
SO_SNDLOWAT = Constant('SO_SNDLOWAT',0x1003)
SO_RCVTIMEO = Constant('SO_RCVTIMEO',0x1006)
SO_SNDTIMEO = Constant('SO_SNDTIMEO',0x1005)
SO_ACCEPTCONN = Constant('SO_ACCEPTCONN',0x1009)
SO_PROTOCOL = Constant('SO_PROTOCOL',0x1028)
SO_DOMAIN = Constant('SO_DOMAIN',0x1029)
SO_STYLE = Constant('SO_STYLE',0x1008)
SOCK_DGRAM = Constant('SOCK_DGRAM',1)
SOCK_STREAM = Constant('SOCK_STREAM',2)
SOCK_RAW = Constant('SOCK_RAW',3)
SOCK_RDM = Constant('SOCK_RDM',4)
SOCK_SEQPACKET = Constant('SOCK_SEQPACKET',5)
SOCK_DCCP = Constant('SOCK_DCCP',6)
SOCK_PACKET = Constant('SOCK_PACKET',10)
UIO_FASTIOV = Constant('UIO_FASTIOV',8)
UIO_MAXIOV = Constant('UIO_MAXIOV',1024)
SCM_RIGHTS = Constant('SCM_RIGHTS',0x01)
SCM_CREDENTIALS = Constant('SCM_CREDENTIALS',0x02)
SCM_CONNECT = Constant('SCM_CONNECT',0x03)
AF_UNSPEC = Constant('AF_UNSPEC',0)
AF_UNIX = Constant('AF_UNIX',1)
AF_LOCAL = Constant('AF_LOCAL',1)
AF_INET = Constant('AF_INET',2)
AF_AX25 = Constant('AF_AX25',3)
AF_IPX = Constant('AF_IPX',4)
AF_APPLETALK = Constant('AF_APPLETALK',5)
AF_NETROM = Constant('AF_NETROM',6)
AF_BRIDGE = Constant('AF_BRIDGE',7)
AF_ATMPVC = Constant('AF_ATMPVC',8)
AF_X25 = Constant('AF_X25',9)
AF_INET6 = Constant('AF_INET6',10)
AF_ROSE = Constant('AF_ROSE',11)
AF_DECnet = Constant('AF_DECnet',12)
AF_NETBEUI = Constant('AF_NETBEUI',13)
AF_SECURITY = Constant('AF_SECURITY',14)
AF_KEY = Constant('AF_KEY',15)
AF_NETLINK = Constant('AF_NETLINK',16)
AF_ROUTE = Constant('AF_ROUTE',16)
AF_PACKET = Constant('AF_PACKET',17)
AF_ASH = Constant('AF_ASH',18)
AF_ECONET = Constant('AF_ECONET',19)
AF_ATMSVC = Constant('AF_ATMSVC',20)
AF_SNA = Constant('AF_SNA',22)
AF_IRDA = Constant('AF_IRDA',23)
AF_PPPOX = Constant('AF_PPPOX',24)
AF_WANPIPE = Constant('AF_WANPIPE',25)
AF_LLC = Constant('AF_LLC',26)
AF_IB = Constant('AF_IB',27)
AF_MPLS = Constant('AF_MPLS',28)
AF_CAN = Constant('AF_CAN',29)
AF_TIPC = Constant('AF_TIPC',30)
AF_BLUETOOTH = Constant('AF_BLUETOOTH',31)
AF_IUCV = Constant('AF_IUCV',32)
AF_RXRPC = Constant('AF_RXRPC',33)
AF_ISDN = Constant('AF_ISDN',34)
AF_PHONET = Constant('AF_PHONET',35)
AF_IEEE802154 = Constant('AF_IEEE802154',36)
AF_CAIF = Constant('AF_CAIF',37)
AF_ALG = Constant('AF_ALG',38)
AF_NFC = Constant('AF_NFC',39)
AF_VSOCK = Constant('AF_VSOCK',40)
AF_KCM = Constant('AF_KCM',41)
AF_QIPCRTR = Constant('AF_QIPCRTR',42)
AF_SMC = Constant('AF_SMC',43)
AF_MAX = Constant('AF_MAX',44)
PF_UNSPEC = Constant('PF_UNSPEC',0)
PF_UNIX = Constant('PF_UNIX',1)
PF_LOCAL = Constant('PF_LOCAL',1)
PF_INET = Constant('PF_INET',2)
PF_AX25 = Constant('PF_AX25',3)
PF_IPX = Constant('PF_IPX',4)
PF_APPLETALK = Constant('PF_APPLETALK',5)
PF_NETROM = Constant('PF_NETROM',6)
PF_BRIDGE = Constant('PF_BRIDGE',7)
PF_ATMPVC = Constant('PF_ATMPVC',8)
PF_X25 = Constant('PF_X25',9)
PF_INET6 = Constant('PF_INET6',10)
PF_ROSE = Constant('PF_ROSE',11)
PF_DECnet = Constant('PF_DECnet',12)
PF_NETBEUI = Constant('PF_NETBEUI',13)
PF_SECURITY = Constant('PF_SECURITY',14)
PF_KEY = Constant('PF_KEY',15)
PF_NETLINK = Constant('PF_NETLINK',16)
PF_ROUTE = Constant('PF_ROUTE',16)
PF_PACKET = Constant('PF_PACKET',17)
PF_ASH = Constant('PF_ASH',18)
PF_ECONET = Constant('PF_ECONET',19)
PF_ATMSVC = Constant('PF_ATMSVC',20)
PF_SNA = Constant('PF_SNA',22)
PF_IRDA = Constant('PF_IRDA',23)
PF_PPPOX = Constant('PF_PPPOX',24)
PF_WANPIPE = Constant('PF_WANPIPE',25)
PF_LLC = Constant('PF_LLC',26)
PF_IB = Constant('PF_IB',27)
PF_MPLS = Constant('PF_MPLS',28)
PF_CAN = Constant('PF_CAN',29)
PF_TIPC = Constant('PF_TIPC',30)
PF_BLUETOOTH = Constant('PF_BLUETOOTH',31)
PF_IUCV = Constant('PF_IUCV',32)
PF_RXRPC = Constant('PF_RXRPC',33)
PF_ISDN = Constant('PF_ISDN',34)
PF_PHONET = Constant('PF_PHONET',35)
PF_IEEE802154 = Constant('PF_IEEE802154',36)
PF_CAIF = Constant('PF_CAIF',37)
PF_ALG = Constant('PF_ALG',38)
PF_NFC = Constant('PF_NFC',39)
PF_VSOCK = Constant('PF_VSOCK',40)
PF_KCM = Constant('PF_KCM',41)
PF_QIPCRTR = Constant('PF_QIPCRTR',42)
PF_SMC = Constant('PF_SMC',43)
PF_MAX = Constant('PF_MAX',44)
SOMAXCONN = Constant('SOMAXCONN',128)
MSG_OOB = Constant('MSG_OOB',1)
MSG_PEEK = Constant('MSG_PEEK',2)
MSG_DONTROUTE = Constant('MSG_DONTROUTE',4)
MSG_TRYHARD = Constant('MSG_TRYHARD',4)
MSG_CTRUNC = Constant('MSG_CTRUNC',8)
MSG_PROBE = Constant('MSG_PROBE',0x10)
MSG_TRUNC = Constant('MSG_TRUNC',0x20)
MSG_DONTWAIT = Constant('MSG_DONTWAIT',0x40)
MSG_EOR = Constant('MSG_EOR',0x80)
MSG_WAITALL = Constant('MSG_WAITALL',0x100)
MSG_FIN = Constant('MSG_FIN',0x200)
MSG_SYN = Constant('MSG_SYN',0x400)
MSG_CONFIRM = Constant('MSG_CONFIRM',0x800)
MSG_RST = Constant('MSG_RST',0x1000)
MSG_ERRQUEUE = Constant('MSG_ERRQUEUE',0x2000)
MSG_NOSIGNAL = Constant('MSG_NOSIGNAL',0x4000)
MSG_MORE = Constant('MSG_MORE',0x8000)
MSG_WAITFORONE = Constant('MSG_WAITFORONE',0x10000)
MSG_SENDPAGE_NOTLAST = Constant('MSG_SENDPAGE_NOTLAST',0x20000)
MSG_BATCH = Constant('MSG_BATCH',0x40000)
MSG_EOF = Constant('MSG_EOF',0x200)
MSG_ZEROCOPY = Constant('MSG_ZEROCOPY',0x4000000)
MSG_FASTOPEN = Constant('MSG_FASTOPEN',0x20000000)
MSG_CMSG_CLOEXEC = Constant('MSG_CMSG_CLOEXEC',0x40000000)
SOL_IP = Constant('SOL_IP',0)
SOL_TCP = Constant('SOL_TCP',6)
SOL_UDP = Constant('SOL_UDP',17)
SOL_IPV6 = Constant('SOL_IPV6',41)
SOL_ICMPV6 = Constant('SOL_ICMPV6',58)
SOL_SCTP = Constant('SOL_SCTP',132)
SOL_UDPLITE = Constant('SOL_UDPLITE',136)
SOL_RAW = Constant('SOL_RAW',255)
SOL_IPX = Constant('SOL_IPX',256)
SOL_AX25 = Constant('SOL_AX25',257)
SOL_ATALK = Constant('SOL_ATALK',258)
SOL_NETROM = Constant('SOL_NETROM',259)
SOL_ROSE = Constant('SOL_ROSE',260)
SOL_DECNET = Constant('SOL_DECNET',261)
SOL_X25 = Constant('SOL_X25',262)
SOL_PACKET = Constant('SOL_PACKET',263)
SOL_ATM = Constant('SOL_ATM',264)
SOL_AAL = Constant('SOL_AAL',265)
SOL_IRDA = Constant('SOL_IRDA',266)
SOL_NETBEUI = Constant('SOL_NETBEUI',267)
SOL_LLC = Constant('SOL_LLC',268)
SOL_DCCP = Constant('SOL_DCCP',269)
SOL_NETLINK = Constant('SOL_NETLINK',270)
SOL_TIPC = Constant('SOL_TIPC',271)
SOL_RXRPC = Constant('SOL_RXRPC',272)
SOL_PPPOL2TP = Constant('SOL_PPPOL2TP',273)
SOL_BLUETOOTH = Constant('SOL_BLUETOOTH',274)
SOL_PNPIPE = Constant('SOL_PNPIPE',275)
SOL_RDS = Constant('SOL_RDS',276)
SOL_IUCV = Constant('SOL_IUCV',277)
SOL_CAIF = Constant('SOL_CAIF',278)
SOL_ALG = Constant('SOL_ALG',279)
SOL_NFC = Constant('SOL_NFC',280)
SOL_KCM = Constant('SOL_KCM',281)
SOL_TLS = Constant('SOL_TLS',282)
IPX_TYPE = Constant('IPX_TYPE',1)
SHUT_RD = Constant('SHUT_RD',0)
SHUT_WR = Constant('SHUT_WR',1)
SHUT_RDWR = Constant('SHUT_RDWR',2)
NI_NOFQDN = Constant('NI_NOFQDN',1)
NI_NUMERICHOST = Constant('NI_NUMERICHOST',2)
NI_NAMEREQD = Constant('NI_NAMEREQD',4)
NI_NUMERICSERV = Constant('NI_NUMERICSERV',8)
NI_DGRAM = Constant('NI_DGRAM',16)
EAI_FAMILY = Constant('EAI_FAMILY',-1)
EAI_SOCKTYPE = Constant('EAI_SOCKTYPE',-2)
EAI_BADFLAGS = Constant('EAI_BADFLAGS',-3)
EAI_NONAME = Constant('EAI_NONAME',-4)
EAI_SERVICE = Constant('EAI_SERVICE',-5)
EAI_ADDRFAMILY = Constant('EAI_ADDRFAMILY',-6)
EAI_NODATA = Constant('EAI_NODATA',-7)
EAI_MEMORY = Constant('EAI_MEMORY',-8)
EAI_FAIL = Constant('EAI_FAIL',-9)
EAI_AGAIN = Constant('EAI_AGAIN',-10)
EAI_SYSTEM = Constant('EAI_SYSTEM',-11)
AI_NUMERICHOST = Constant('AI_NUMERICHOST',1)
AI_CANONNAME = Constant('AI_CANONNAME',2)
AI_PASSIVE = Constant('AI_PASSIVE',4)
AI_NUMERICSERV = Constant('AI_NUMERICSERV',8)
AI_ADDRCONFIG = Constant('AI_ADDRCONFIG',16)
AI_V4MAPPED = Constant('AI_V4MAPPED',32)
AI_ALL = Constant('AI_ALL',64)
SIOCADDRT = Constant('SIOCADDRT',0x890B)
SIOCDELRT = Constant('SIOCDELRT',0x890C)
SIOCRTMSG = Constant('SIOCRTMSG',0x890D)
SIOCGIFNAME = Constant('SIOCGIFNAME',0x8910)
SIOCSIFLINK = Constant('SIOCSIFLINK',0x8911)
SIOCGIFCONF = Constant('SIOCGIFCONF',0x8912)
SIOCGIFFLAGS = Constant('SIOCGIFFLAGS',0x8913)
SIOCSIFFLAGS = Constant('SIOCSIFFLAGS',0x8914)
SIOCGIFADDR = Constant('SIOCGIFADDR',0x8915)
SIOCSIFADDR = Constant('SIOCSIFADDR',0x8916)
SIOCGIFDSTADDR = Constant('SIOCGIFDSTADDR',0x8917)
SIOCSIFDSTADDR = Constant('SIOCSIFDSTADDR',0x8918)
SIOCGIFBRDADDR = Constant('SIOCGIFBRDADDR',0x8919)
SIOCSIFBRDADDR = Constant('SIOCSIFBRDADDR',0x891a)
SIOCGIFNETMASK = Constant('SIOCGIFNETMASK',0x891b)
SIOCSIFNETMASK = Constant('SIOCSIFNETMASK',0x891c)
SIOCGIFMETRIC = Constant('SIOCGIFMETRIC',0x891d)
SIOCSIFMETRIC = Constant('SIOCSIFMETRIC',0x891e)
SIOCGIFMEM = Constant('SIOCGIFMEM',0x891f)
SIOCSIFMEM = Constant('SIOCSIFMEM',0x8920)
SIOCGIFMTU = Constant('SIOCGIFMTU',0x8921)
SIOCSIFMTU = Constant('SIOCSIFMTU',0x8922)
SIOCSIFNAME = Constant('SIOCSIFNAME',0x8923)
SIOCSIFHWADDR = Constant('SIOCSIFHWADDR',0x8924)
SIOCGIFENCAP = Constant('SIOCGIFENCAP',0x8925)
SIOCSIFENCAP = Constant('SIOCSIFENCAP',0x8926)
SIOCGIFHWADDR = Constant('SIOCGIFHWADDR',0x8927)
SIOCGIFSLAVE = Constant('SIOCGIFSLAVE',0x8929)
SIOCSIFSLAVE = Constant('SIOCSIFSLAVE',0x8930)
SIOCADDMULTI = Constant('SIOCADDMULTI',0x8931)
SIOCDELMULTI = Constant('SIOCDELMULTI',0x8932)
SIOCGIFINDEX = Constant('SIOCGIFINDEX',0x8933)
SIOGIFINDEX = Constant('SIOGIFINDEX',0x8933)
SIOCSIFPFLAGS = Constant('SIOCSIFPFLAGS',0x8934)
SIOCGIFPFLAGS = Constant('SIOCGIFPFLAGS',0x8935)
SIOCDIFADDR = Constant('SIOCDIFADDR',0x8936)
SIOCSIFHWBROADCAST = Constant('SIOCSIFHWBROADCAST',0x8937)
SIOCGIFCOUNT = Constant('SIOCGIFCOUNT',0x8938)
SIOCGIFBR = Constant('SIOCGIFBR',0x8940)
SIOCSIFBR = Constant('SIOCSIFBR',0x8941)
SIOCGIFTXQLEN = Constant('SIOCGIFTXQLEN',0x8942)
SIOCSIFTXQLEN = Constant('SIOCSIFTXQLEN',0x8943)
SIOCGIFDIVERT = Constant('SIOCGIFDIVERT',0x8944)
SIOCSIFDIVERT = Constant('SIOCSIFDIVERT',0x8945)
SIOCETHTOOL = Constant('SIOCETHTOOL',0x8946)
SIOCDARP = Constant('SIOCDARP',0x8953)
SIOCGARP = Constant('SIOCGARP',0x8954)
SIOCSARP = Constant('SIOCSARP',0x8955)
SIOCDRARP = Constant('SIOCDRARP',0x8960)
SIOCGRARP = Constant('SIOCGRARP',0x8961)
SIOCSRARP = Constant('SIOCSRARP',0x8962)
SIOCGIFMAP = Constant('SIOCGIFMAP',0x8970)
SIOCSIFMAP = Constant('SIOCSIFMAP',0x8971)
SIOCADDDLCI = Constant('SIOCADDDLCI',0x8980)
SIOCDELDLCI = Constant('SIOCDELDLCI',0x8981)
SIOCDEVPRIVATE = Constant('SIOCDEVPRIVATE',0x89F0)
F_LINUX_SPECIFIC_BASE = Constant('F_LINUX_SPECIFIC_BASE',1024)
O_ACCMODE = Constant('O_ACCMODE',0x0003)
O_RDONLY = Constant('O_RDONLY',0x0000)
O_WRONLY = Constant('O_WRONLY',0x0001)
O_RDWR = Constant('O_RDWR',0x0002)
O_APPEND = Constant('O_APPEND',0x0008)
O_DSYNC = Constant('O_DSYNC',0x0010)
O_NONBLOCK = Constant('O_NONBLOCK',0x0080)
O_CREAT = Constant('O_CREAT',0x0100)
O_TRUNC = Constant('O_TRUNC',0x0200)
O_EXCL = Constant('O_EXCL',0x0400)
O_NOCTTY = Constant('O_NOCTTY',0x0800)
FASYNC = Constant('FASYNC',0x1000)
O_LARGEFILE = Constant('O_LARGEFILE',0)
O_SYNC = Constant('O_SYNC',(0x4000|0x0010))
O_DIRECT = Constant('O_DIRECT',0x8000)
O_DIRECTORY = Constant('O_DIRECTORY',0x10000)
O_NOFOLLOW = Constant('O_NOFOLLOW',0x20000)
O_NOATIME = Constant('O_NOATIME',0x40000)
O_CLOEXEC = Constant('O_CLOEXEC',0x80000)
O_PATH = Constant('O_PATH',0o10000000)
__O_TMPFILE = Constant('__O_TMPFILE',0o20000000)
O_NDELAY = Constant('O_NDELAY',0x0080)
F_DUPFD = Constant('F_DUPFD',0)
F_GETFD = Constant('F_GETFD',1)
F_SETFD = Constant('F_SETFD',2)
F_GETFL = Constant('F_GETFL',3)
F_SETFL = Constant('F_SETFL',4)
F_GETLK = Constant('F_GETLK',14)
F_SETLK = Constant('F_SETLK',6)
F_SETLKW = Constant('F_SETLKW',7)
F_SETOWN = Constant('F_SETOWN',24)
F_GETOWN = Constant('F_GETOWN',23)
F_SETSIG = Constant('F_SETSIG',10)
F_GETSIG = Constant('F_GETSIG',11)
FD_CLOEXEC = Constant('FD_CLOEXEC',1)
F_RDLCK = Constant('F_RDLCK',0)
F_WRLCK = Constant('F_WRLCK',1)
F_UNLCK = Constant('F_UNLCK',2)
F_EXLCK = Constant('F_EXLCK',4)
F_SHLCK = Constant('F_SHLCK',8)
F_INPROGRESS = Constant('F_INPROGRESS',16)
LOCK_SH = Constant('LOCK_SH',1)
LOCK_EX = Constant('LOCK_EX',2)
LOCK_NB = Constant('LOCK_NB',4)
LOCK_UN = Constant('LOCK_UN',8)
LOCK_MAND = Constant('LOCK_MAND',32)
LOCK_READ = Constant('LOCK_READ',64)
LOCK_WRITE = Constant('LOCK_WRITE',128)
LOCK_RW = Constant('LOCK_RW',192)
O_TMPFILE = Constant('O_TMPFILE',(0o20000000 | 0x10000))
O_ASYNC = Constant('O_ASYNC',0x1000)
F_SETOWN_EX = Constant('F_SETOWN_EX',15)
F_GETOWN_EX = Constant('F_GETOWN_EX',16)
F_GETOWNER_UIDS = Constant('F_GETOWNER_UIDS',17)
F_OFD_GETLK = Constant('F_OFD_GETLK',36)
F_OFD_SETLK = Constant('F_OFD_SETLK',37)
F_OFD_SETLKW = Constant('F_OFD_SETLKW',38)
F_OWNER_TID = Constant('F_OWNER_TID',0)
F_OWNER_PID = Constant('F_OWNER_PID',1)
F_OWNER_PGRP = Constant('F_OWNER_PGRP',2)
AT_FDCWD = Constant('AT_FDCWD',-100)
AT_SYMLINK_NOFOLLOW = Constant('AT_SYMLINK_NOFOLLOW',0x100)
AT_REMOVEDIR = Constant('AT_REMOVEDIR',0x200)
AT_SYMLINK_FOLLOW = Constant('AT_SYMLINK_FOLLOW',0x400)
AT_NO_AUTOMOUNT = Constant('AT_NO_AUTOMOUNT',0x800)
AT_EMPTY_PATH = Constant('AT_EMPTY_PATH',0x1000)
AT_EACCESS = Constant('AT_EACCESS',0x200)
MREMAP_MAYMOVE = Constant('MREMAP_MAYMOVE',1)
MREMAP_FIXED = Constant('MREMAP_FIXED',2)
PROT_READ = Constant('PROT_READ',0x1)
PROT_WRITE = Constant('PROT_WRITE',0x2)
PROT_EXEC = Constant('PROT_EXEC',0x4)
PROT_SEM = Constant('PROT_SEM',0x8)
PROT_NONE = Constant('PROT_NONE',0x0)
PROT_GROWSDOWN = Constant('PROT_GROWSDOWN',0x01000000)
PROT_GROWSUP = Constant('PROT_GROWSUP',0x02000000)
MAP_SHARED = Constant('MAP_SHARED',0x01)
MAP_PRIVATE = Constant('MAP_PRIVATE',0x02)
MAP_TYPE = Constant('MAP_TYPE',0xf)
MADV_REMOVE = Constant('MADV_REMOVE',9)
MADV_DONTFORK = Constant('MADV_DONTFORK',10)
MADV_DOFORK = Constant('MADV_DOFORK',11)
MADV_MERGEABLE = Constant('MADV_MERGEABLE',12)
MADV_UNMERGEABLE = Constant('MADV_UNMERGEABLE',13)
MADV_HUGEPAGE = Constant('MADV_HUGEPAGE',14)
MADV_NOHUGEPAGE = Constant('MADV_NOHUGEPAGE',15)
MADV_DONTDUMP = Constant('MADV_DONTDUMP',16)
MADV_DODUMP = Constant('MADV_DODUMP',17)
MADV_HWPOISON = Constant('MADV_HWPOISON',100)
MADV_SOFT_OFFLINE = Constant('MADV_SOFT_OFFLINE',101)
MLOCK_ONFAULT = Constant('MLOCK_ONFAULT',1)
MAP_FIXED = Constant('MAP_FIXED',0x010)
MAP_NORESERVE = Constant('MAP_NORESERVE',0x0400)
MAP_ANONYMOUS = Constant('MAP_ANONYMOUS',0x0800)
MAP_GROWSDOWN = Constant('MAP_GROWSDOWN',0x1000)
MAP_DENYWRITE = Constant('MAP_DENYWRITE',0x2000)
MAP_EXECUTABLE = Constant('MAP_EXECUTABLE',0x4000)
MAP_LOCKED = Constant('MAP_LOCKED',0x8000)
MAP_POPULATE = Constant('MAP_POPULATE',0x10000)
MAP_NONBLOCK = Constant('MAP_NONBLOCK',0x20000)
MAP_STACK = Constant('MAP_STACK',0x40000)
MAP_HUGETLB = Constant('MAP_HUGETLB',0x80000)
MS_ASYNC = Constant('MS_ASYNC',0x0001)
MS_INVALIDATE = Constant('MS_INVALIDATE',0x0002)
MS_SYNC = Constant('MS_SYNC',0x0004)
MCL_CURRENT = Constant('MCL_CURRENT',1)
MCL_FUTURE = Constant('MCL_FUTURE',2)
MCL_ONFAULT = Constant('MCL_ONFAULT',4)
MADV_NORMAL = Constant('MADV_NORMAL',0x0)
MADV_RANDOM = Constant('MADV_RANDOM',0x1)
MADV_SEQUENTIAL = Constant('MADV_SEQUENTIAL',0x2)
MADV_WILLNEED = Constant('MADV_WILLNEED',0x3)
MADV_DONTNEED = Constant('MADV_DONTNEED',0x4)
MAP_ANON = Constant('MAP_ANON',0x0800)
MAP_FILE = Constant('MAP_FILE',0)
POSIX_MADV_NORMAL = Constant('POSIX_MADV_NORMAL',0x0)
POSIX_MADV_SEQUENTIAL = Constant('POSIX_MADV_SEQUENTIAL',0x2)
POSIX_MADV_RANDOM = Constant('POSIX_MADV_RANDOM',0x1)
POSIX_MADV_WILLNEED = Constant('POSIX_MADV_WILLNEED',0x3)
POSIX_MADV_DONTNEED = Constant('POSIX_MADV_DONTNEED',0x4)
PTRACE_TRACEME = Constant('PTRACE_TRACEME',0)
PTRACE_PEEKTEXT = Constant('PTRACE_PEEKTEXT',1)
PTRACE_PEEKDATA = Constant('PTRACE_PEEKDATA',2)
PTRACE_PEEKUSR = Constant('PTRACE_PEEKUSR',3)
PTRACE_PEEKUSER = Constant('PTRACE_PEEKUSER',3)
PTRACE_POKETEXT = Constant('PTRACE_POKETEXT',4)
PTRACE_POKEDATA = Constant('PTRACE_POKEDATA',5)
PTRACE_POKEUSR = Constant('PTRACE_POKEUSR',6)
PTRACE_POKEUSER = Constant('PTRACE_POKEUSER',6)
PTRACE_CONT = Constant('PTRACE_CONT',7)
PTRACE_KILL = Constant('PTRACE_KILL',8)
PTRACE_SINGLESTEP = Constant('PTRACE_SINGLESTEP',9)
PTRACE_ATTACH = Constant('PTRACE_ATTACH',0x10)
PTRACE_DETACH = Constant('PTRACE_DETACH',0x11)
PTRACE_SYSCALL = Constant('PTRACE_SYSCALL',24)
PTRACE_GETEVENTMSG = Constant('PTRACE_GETEVENTMSG',0x4201)
PTRACE_GETSIGINFO = Constant('PTRACE_GETSIGINFO',0x4202)
PTRACE_SETSIGINFO = Constant('PTRACE_SETSIGINFO',0x4203)
PTRACE_O_TRACESYSGOOD = Constant('PTRACE_O_TRACESYSGOOD',0x00000001)
PTRACE_O_TRACEFORK = Constant('PTRACE_O_TRACEFORK',0x00000002)
PTRACE_O_TRACEVFORK = Constant('PTRACE_O_TRACEVFORK',0x00000004)
PTRACE_O_TRACECLONE = Constant('PTRACE_O_TRACECLONE',0x00000008)
PTRACE_O_TRACEEXEC = Constant('PTRACE_O_TRACEEXEC',0x00000010)
PTRACE_O_TRACEVFORKDONE = Constant('PTRACE_O_TRACEVFORKDONE',0x00000020)
PTRACE_O_TRACEEXIT = Constant('PTRACE_O_TRACEEXIT',0x00000040)
PTRACE_O_MASK = Constant('PTRACE_O_MASK',0x0000007f)
PTRACE_EVENT_FORK = Constant('PTRACE_EVENT_FORK',1)
PTRACE_EVENT_VFORK = Constant('PTRACE_EVENT_VFORK',2)
PTRACE_EVENT_CLONE = Constant('PTRACE_EVENT_CLONE',3)
PTRACE_EVENT_EXEC = Constant('PTRACE_EVENT_EXEC',4)
PTRACE_EVENT_VFORK_DONE = Constant('PTRACE_EVENT_VFORK_DONE',5)
PTRACE_EVENT_EXIT = Constant('PTRACE_EVENT_EXIT',6)
PT_TRACE_ME = Constant('PT_TRACE_ME',0)
PT_READ_I = Constant('PT_READ_I',1)
PT_READ_D = Constant('PT_READ_D',2)
PT_READ_U = Constant('PT_READ_U',3)
PT_WRITE_I = Constant('PT_WRITE_I',4)
PT_WRITE_D = Constant('PT_WRITE_D',5)
PT_WRITE_U = Constant('PT_WRITE_U',6)
PT_CONTINUE = Constant('PT_CONTINUE',7)
PT_KILL = Constant('PT_KILL',8)
PT_STEP = Constant('PT_STEP',9)
PT_ATTACH = Constant('PT_ATTACH',0x10)
PT_DETACH = Constant('PT_DETACH',0x11)
FPR_BASE = Constant('FPR_BASE',32)
PC = Constant('PC',64)
CAUSE = Constant('CAUSE',65)
BADVADDR = Constant('BADVADDR',66)
MMHI = Constant('MMHI',67)
MMLO = Constant('MMLO',68)
FPC_CSR = Constant('FPC_CSR',69)
FPC_EIR = Constant('FPC_EIR',70)
DSP_BASE = Constant('DSP_BASE',71)
DSP_CONTROL = Constant('DSP_CONTROL',77)
ACX = Constant('ACX',78)
SYS_accept = Constant('SYS_accept',(4000 + 168))
SYS_accept4 = Constant('SYS_accept4',(4000 + 334))
SYS_access = Constant('SYS_access',(4000 + 33))
SYS_acct = Constant('SYS_acct',(4000 + 51))
SYS_add_key = Constant('SYS_add_key',(4000 + 280))
SYS_adjtimex = Constant('SYS_adjtimex',(4000 + 124))
SYS_afs_syscall = Constant('SYS_afs_syscall',(4000 + 137))
SYS_alarm = Constant('SYS_alarm',(4000 + 27))
SYS_bdflush = Constant('SYS_bdflush',(4000 + 134))
SYS_bind = Constant('SYS_bind',(4000 + 169))
SYS_bpf = Constant('SYS_bpf',(4000 + 355))
SYS_break = Constant('SYS_break',(4000 + 17))
SYS_brk = Constant('SYS_brk',(4000 + 45))
SYS_cachectl = Constant('SYS_cachectl',(4000 + 148))
SYS_cacheflush = Constant('SYS_cacheflush',(4000 + 147))
SYS_capget = Constant('SYS_capget',(4000 + 204))
SYS_capset = Constant('SYS_capset',(4000 + 205))
SYS_chdir = Constant('SYS_chdir',(4000 + 12))
SYS_chmod = Constant('SYS_chmod',(4000 + 15))
SYS_chown = Constant('SYS_chown',(4000 + 202))
SYS_chroot = Constant('SYS_chroot',(4000 + 61))
SYS_clock_adjtime = Constant('SYS_clock_adjtime',(4000 + 341))
SYS_clock_adjtime64 = Constant('SYS_clock_adjtime64',(4000 + 405))
SYS_clock_getres = Constant('SYS_clock_getres',(4000 + 264))
SYS_clock_getres_time64 = Constant('SYS_clock_getres_time64',(4000 + 406))
SYS_clock_gettime = Constant('SYS_clock_gettime',(4000 + 263))
SYS_clock_gettime64 = Constant('SYS_clock_gettime64',(4000 + 403))
SYS_clock_nanosleep = Constant('SYS_clock_nanosleep',(4000 + 265))
SYS_clock_nanosleep_time64 = Constant('SYS_clock_nanosleep_time64',(4000 + 407))
SYS_clock_settime = Constant('SYS_clock_settime',(4000 + 262))
SYS_clock_settime64 = Constant('SYS_clock_settime64',(4000 + 404))
SYS_clone = Constant('SYS_clone',(4000 + 120))
SYS_clone3 = Constant('SYS_clone3',(4000 + 435))
SYS_close = Constant('SYS_close',(4000 + 6))
SYS_connect = Constant('SYS_connect',(4000 + 170))
SYS_copy_file_range = Constant('SYS_copy_file_range',(4000 + 360))
SYS_creat = Constant('SYS_creat',(4000 + 8))
SYS_create_module = Constant('SYS_create_module',(4000 + 127))
SYS_delete_module = Constant('SYS_delete_module',(4000 + 129))
SYS_dup = Constant('SYS_dup',(4000 + 41))
SYS_dup2 = Constant('SYS_dup2',(4000 + 63))
SYS_dup3 = Constant('SYS_dup3',(4000 + 327))
SYS_epoll_create = Constant('SYS_epoll_create',(4000 + 248))
SYS_epoll_create1 = Constant('SYS_epoll_create1',(4000 + 326))
SYS_epoll_ctl = Constant('SYS_epoll_ctl',(4000 + 249))
SYS_epoll_pwait = Constant('SYS_epoll_pwait',(4000 + 313))
SYS_epoll_wait = Constant('SYS_epoll_wait',(4000 + 250))
SYS_eventfd = Constant('SYS_eventfd',(4000 + 319))
SYS_eventfd2 = Constant('SYS_eventfd2',(4000 + 325))
SYS_execve = Constant('SYS_execve',(4000 + 11))
SYS_execveat = Constant('SYS_execveat',(4000 + 356))
SYS_exit = Constant('SYS_exit',(4000 + 1))
SYS_exit_group = Constant('SYS_exit_group',(4000 + 246))
SYS_faccessat = Constant('SYS_faccessat',(4000 + 300))
SYS_fadvise64 = Constant('SYS_fadvise64',(4000 + 254))
SYS_fallocate = Constant('SYS_fallocate',(4000 + 320))
SYS_fanotify_init = Constant('SYS_fanotify_init',(4000 + 336))
SYS_fanotify_mark = Constant('SYS_fanotify_mark',(4000 + 337))
SYS_fchdir = Constant('SYS_fchdir',(4000 + 133))
SYS_fchmod = Constant('SYS_fchmod',(4000 + 94))
SYS_fchmodat = Constant('SYS_fchmodat',(4000 + 299))
SYS_fchown = Constant('SYS_fchown',(4000 + 95))
SYS_fchownat = Constant('SYS_fchownat',(4000 + 291))
SYS_fcntl = Constant('SYS_fcntl',(4000 + 55))
SYS_fcntl64 = Constant('SYS_fcntl64',(4000 + 220))
SYS_fdatasync = Constant('SYS_fdatasync',(4000 + 152))
SYS_fgetxattr = Constant('SYS_fgetxattr',(4000 + 229))
SYS_finit_module = Constant('SYS_finit_module',(4000 + 348))
SYS_flistxattr = Constant('SYS_flistxattr',(4000 + 232))
SYS_flock = Constant('SYS_flock',(4000 + 143))
SYS_fork = Constant('SYS_fork',(4000 + 2))
SYS_fremovexattr = Constant('SYS_fremovexattr',(4000 + 235))
SYS_fsconfig = Constant('SYS_fsconfig',(4000 + 431))
SYS_fsetxattr = Constant('SYS_fsetxattr',(4000 + 226))
SYS_fsmount = Constant('SYS_fsmount',(4000 + 432))
SYS_fsopen = Constant('SYS_fsopen',(4000 + 430))
SYS_fspick = Constant('SYS_fspick',(4000 + 433))
SYS_fstat = Constant('SYS_fstat',(4000 + 108))
SYS_fstat64 = Constant('SYS_fstat64',(4000 + 215))
SYS_fstatat64 = Constant('SYS_fstatat64',(4000 + 293))
SYS_fstatfs = Constant('SYS_fstatfs',(4000 + 100))
SYS_fstatfs64 = Constant('SYS_fstatfs64',(4000 + 256))
SYS_fsync = Constant('SYS_fsync',(4000 + 118))
SYS_ftime = Constant('SYS_ftime',(4000 + 35))
SYS_ftruncate = Constant('SYS_ftruncate',(4000 + 93))
SYS_ftruncate64 = Constant('SYS_ftruncate64',(4000 + 212))
SYS_futex = Constant('SYS_futex',(4000 + 238))
SYS_futex_time64 = Constant('SYS_futex_time64',(4000 + 422))
SYS_futimesat = Constant('SYS_futimesat',(4000 + 292))
SYS_getcpu = Constant('SYS_getcpu',(4000 + 312))
SYS_getcwd = Constant('SYS_getcwd',(4000 + 203))
SYS_getdents = Constant('SYS_getdents',(4000 + 141))
SYS_getdents64 = Constant('SYS_getdents64',(4000 + 219))
SYS_getegid = Constant('SYS_getegid',(4000 + 50))
SYS_geteuid = Constant('SYS_geteuid',(4000 + 49))
SYS_getgid = Constant('SYS_getgid',(4000 + 47))
SYS_getgroups = Constant('SYS_getgroups',(4000 + 80))
SYS_getitimer = Constant('SYS_getitimer',(4000 + 105))
SYS_get_kernel_syms = Constant('SYS_get_kernel_syms',(4000 + 130))
SYS_get_mempolicy = Constant('SYS_get_mempolicy',(4000 + 269))
SYS_getpeername = Constant('SYS_getpeername',(4000 + 171))
SYS_getpgid = Constant('SYS_getpgid',(4000 + 132))
SYS_getpgrp = Constant('SYS_getpgrp',(4000 + 65))
SYS_getpid = Constant('SYS_getpid',(4000 + 20))
SYS_getpmsg = Constant('SYS_getpmsg',(4000 + 208))
SYS_getppid = Constant('SYS_getppid',(4000 + 64))
SYS_getpriority = Constant('SYS_getpriority',(4000 + 96))
SYS_getrandom = Constant('SYS_getrandom',(4000 + 353))
SYS_getresgid = Constant('SYS_getresgid',(4000 + 191))
SYS_getresuid = Constant('SYS_getresuid',(4000 + 186))
SYS_getrlimit = Constant('SYS_getrlimit',(4000 + 76))
SYS_get_robust_list = Constant('SYS_get_robust_list',(4000 + 310))
SYS_getrusage = Constant('SYS_getrusage',(4000 + 77))
SYS_getsid = Constant('SYS_getsid',(4000 + 151))
SYS_getsockname = Constant('SYS_getsockname',(4000 + 172))
SYS_getsockopt = Constant('SYS_getsockopt',(4000 + 173))
SYS_gettid = Constant('SYS_gettid',(4000 + 222))
SYS_gettimeofday = Constant('SYS_gettimeofday',(4000 + 78))
SYS_getuid = Constant('SYS_getuid',(4000 + 24))
SYS_getxattr = Constant('SYS_getxattr',(4000 + 227))
SYS_gtty = Constant('SYS_gtty',(4000 + 32))
SYS_idle = Constant('SYS_idle',(4000 + 112))
SYS_init_module = Constant('SYS_init_module',(4000 + 128))
SYS_inotify_add_watch = Constant('SYS_inotify_add_watch',(4000 + 285))
SYS_inotify_init = Constant('SYS_inotify_init',(4000 + 284))
SYS_inotify_init1 = Constant('SYS_inotify_init1',(4000 + 329))
SYS_inotify_rm_watch = Constant('SYS_inotify_rm_watch',(4000 + 286))
SYS_io_cancel = Constant('SYS_io_cancel',(4000 + 245))
SYS_ioctl = Constant('SYS_ioctl',(4000 + 54))
SYS_io_destroy = Constant('SYS_io_destroy',(4000 + 242))
SYS_io_getevents = Constant('SYS_io_getevents',(4000 + 243))
SYS_ioperm = Constant('SYS_ioperm',(4000 + 101))
SYS_io_pgetevents = Constant('SYS_io_pgetevents',(4000 + 368))
SYS_io_pgetevents_time64 = Constant('SYS_io_pgetevents_time64',(4000 + 416))
SYS_iopl = Constant('SYS_iopl',(4000 + 110))
SYS_ioprio_get = Constant('SYS_ioprio_get',(4000 + 315))
SYS_ioprio_set = Constant('SYS_ioprio_set',(4000 + 314))
SYS_io_setup = Constant('SYS_io_setup',(4000 + 241))
SYS_io_submit = Constant('SYS_io_submit',(4000 + 244))
SYS_io_uring_enter = Constant('SYS_io_uring_enter',(4000 + 426))
SYS_io_uring_register = Constant('SYS_io_uring_register',(4000 + 427))
SYS_io_uring_setup = Constant('SYS_io_uring_setup',(4000 + 425))
SYS_ipc = Constant('SYS_ipc',(4000 + 117))
SYS_kcmp = Constant('SYS_kcmp',(4000 + 347))
SYS_kexec_load = Constant('SYS_kexec_load',(4000 + 311))
SYS_keyctl = Constant('SYS_keyctl',(4000 + 282))
SYS_kill = Constant('SYS_kill',(4000 + 37))
SYS_lchown = Constant('SYS_lchown',(4000 + 16))
SYS_lgetxattr = Constant('SYS_lgetxattr',(4000 + 228))
SYS_link = Constant('SYS_link',(4000 + 9))
SYS_linkat = Constant('SYS_linkat',(4000 + 296))
SYS_Linux = Constant('SYS_Linux',4000)
SYS_listen = Constant('SYS_listen',(4000 + 174))
SYS_listxattr = Constant('SYS_listxattr',(4000 + 230))
SYS_llistxattr = Constant('SYS_llistxattr',(4000 + 231))
SYS__llseek = Constant('SYS__llseek',(4000 + 140))
SYS_lock = Constant('SYS_lock',(4000 + 53))
SYS_lookup_dcookie = Constant('SYS_lookup_dcookie',(4000 + 247))
SYS_lremovexattr = Constant('SYS_lremovexattr',(4000 + 234))
SYS_lseek = Constant('SYS_lseek',(4000 + 19))
SYS_lsetxattr = Constant('SYS_lsetxattr',(4000 + 225))
SYS_lstat = Constant('SYS_lstat',(4000 + 107))
SYS_lstat64 = Constant('SYS_lstat64',(4000 + 214))
SYS_madvise = Constant('SYS_madvise',(4000 + 218))
SYS_mbind = Constant('SYS_mbind',(4000 + 268))
SYS_membarrier = Constant('SYS_membarrier',(4000 + 358))
SYS_memfd_create = Constant('SYS_memfd_create',(4000 + 354))
SYS_migrate_pages = Constant('SYS_migrate_pages',(4000 + 287))
SYS_mincore = Constant('SYS_mincore',(4000 + 217))
SYS_mkdir = Constant('SYS_mkdir',(4000 + 39))
SYS_mkdirat = Constant('SYS_mkdirat',(4000 + 289))
SYS_mknod = Constant('SYS_mknod',(4000 + 14))
SYS_mknodat = Constant('SYS_mknodat',(4000 + 290))
SYS_mlock = Constant('SYS_mlock',(4000 + 154))
SYS_mlock2 = Constant('SYS_mlock2',(4000 + 359))
SYS_mlockall = Constant('SYS_mlockall',(4000 + 156))
SYS_mmap = Constant('SYS_mmap',(4000 + 90))
SYS_mmap2 = Constant('SYS_mmap2',(4000 + 210))
SYS_modify_ldt = Constant('SYS_modify_ldt',(4000 + 123))
SYS_mount = Constant('SYS_mount',(4000 + 21))
SYS_move_mount = Constant('SYS_move_mount',(4000 + 429))
SYS_move_pages = Constant('SYS_move_pages',(4000 + 308))
SYS_mprotect = Constant('SYS_mprotect',(4000 + 125))
SYS_mpx = Constant('SYS_mpx',(4000 + 56))
SYS_mq_getsetattr = Constant('SYS_mq_getsetattr',(4000 + 276))
SYS_mq_notify = Constant('SYS_mq_notify',(4000 + 275))
SYS_mq_open = Constant('SYS_mq_open',(4000 + 271))
SYS_mq_timedreceive = Constant('SYS_mq_timedreceive',(4000 + 274))
SYS_mq_timedreceive_time64 = Constant('SYS_mq_timedreceive_time64',(4000 + 419))
SYS_mq_timedsend = Constant('SYS_mq_timedsend',(4000 + 273))
SYS_mq_timedsend_time64 = Constant('SYS_mq_timedsend_time64',(4000 + 418))
SYS_mq_unlink = Constant('SYS_mq_unlink',(4000 + 272))
SYS_mremap = Constant('SYS_mremap',(4000 + 167))
SYS_msgctl = Constant('SYS_msgctl',(4000 + 402))
SYS_msgget = Constant('SYS_msgget',(4000 + 399))
SYS_msgrcv = Constant('SYS_msgrcv',(4000 + 401))
SYS_msgsnd = Constant('SYS_msgsnd',(4000 + 400))
SYS_msync = Constant('SYS_msync',(4000 + 144))
SYS_munlock = Constant('SYS_munlock',(4000 + 155))
SYS_munlockall = Constant('SYS_munlockall',(4000 + 157))
SYS_munmap = Constant('SYS_munmap',(4000 + 91))
SYS_name_to_handle_at = Constant('SYS_name_to_handle_at',(4000 + 339))
SYS_nanosleep = Constant('SYS_nanosleep',(4000 + 166))
SYS__newselect = Constant('SYS__newselect',(4000 + 142))
SYS_nfsservctl = Constant('SYS_nfsservctl',(4000 + 189))
SYS_nice = Constant('SYS_nice',(4000 + 34))
SYS_open = Constant('SYS_open',(4000 + 5))
SYS_openat = Constant('SYS_openat',(4000 + 288))
SYS_openat2 = Constant('SYS_openat2',(4000 + 437))
SYS_open_by_handle_at = Constant('SYS_open_by_handle_at',(4000 + 340))
SYS_open_tree = Constant('SYS_open_tree',(4000 + 428))
SYS_pause = Constant('SYS_pause',(4000 + 29))
SYS_perf_event_open = Constant('SYS_perf_event_open',(4000 + 333))
SYS_personality = Constant('SYS_personality',(4000 + 136))
SYS_pidfd_getfd = Constant('SYS_pidfd_getfd',(4000 + 438))
SYS_pidfd_open = Constant('SYS_pidfd_open',(4000 + 434))
SYS_pidfd_send_signal = Constant('SYS_pidfd_send_signal',(4000 + 424))
SYS_pipe = Constant('SYS_pipe',(4000 + 42))
SYS_pipe2 = Constant('SYS_pipe2',(4000 + 328))
SYS_pivot_root = Constant('SYS_pivot_root',(4000 + 216))
SYS_pkey_alloc = Constant('SYS_pkey_alloc',(4000 + 364))
SYS_pkey_free = Constant('SYS_pkey_free',(4000 + 365))
SYS_pkey_mprotect = Constant('SYS_pkey_mprotect',(4000 + 363))
SYS_poll = Constant('SYS_poll',(4000 + 188))
SYS_ppoll = Constant('SYS_ppoll',(4000 + 302))
SYS_ppoll_time64 = Constant('SYS_ppoll_time64',(4000 + 414))
SYS_prctl = Constant('SYS_prctl',(4000 + 192))
SYS_pread64 = Constant('SYS_pread64',(4000 + 200))
SYS_preadv = Constant('SYS_preadv',(4000 + 330))
SYS_preadv2 = Constant('SYS_preadv2',(4000 + 361))
SYS_prlimit64 = Constant('SYS_prlimit64',(4000 + 338))
SYS_process_vm_readv = Constant('SYS_process_vm_readv',(4000 + 345))
SYS_process_vm_writev = Constant('SYS_process_vm_writev',(4000 + 346))
SYS_prof = Constant('SYS_prof',(4000 + 44))
SYS_profil = Constant('SYS_profil',(4000 + 98))
SYS_pselect6 = Constant('SYS_pselect6',(4000 + 301))
SYS_pselect6_time64 = Constant('SYS_pselect6_time64',(4000 + 413))
SYS_ptrace = Constant('SYS_ptrace',(4000 + 26))
SYS_putpmsg = Constant('SYS_putpmsg',(4000 + 209))
SYS_pwrite64 = Constant('SYS_pwrite64',(4000 + 201))
SYS_pwritev = Constant('SYS_pwritev',(4000 + 331))
SYS_pwritev2 = Constant('SYS_pwritev2',(4000 + 362))
SYS_query_module = Constant('SYS_query_module',(4000 + 187))
SYS_quotactl = Constant('SYS_quotactl',(4000 + 131))
SYS_read = Constant('SYS_read',(4000 + 3))
SYS_readahead = Constant('SYS_readahead',(4000 + 223))
SYS_readdir = Constant('SYS_readdir',(4000 + 89))
SYS_readlink = Constant('SYS_readlink',(4000 + 85))
SYS_readlinkat = Constant('SYS_readlinkat',(4000 + 298))
SYS_readv = Constant('SYS_readv',(4000 + 145))
SYS_reboot = Constant('SYS_reboot',(4000 + 88))
SYS_recv = Constant('SYS_recv',(4000 + 175))
SYS_recvfrom = Constant('SYS_recvfrom',(4000 + 176))
SYS_recvmmsg = Constant('SYS_recvmmsg',(4000 + 335))
SYS_recvmmsg_time64 = Constant('SYS_recvmmsg_time64',(4000 + 417))
SYS_recvmsg = Constant('SYS_recvmsg',(4000 + 177))
SYS_remap_file_pages = Constant('SYS_remap_file_pages',(4000 + 251))
SYS_removexattr = Constant('SYS_removexattr',(4000 + 233))
SYS_rename = Constant('SYS_rename',(4000 + 38))
SYS_renameat = Constant('SYS_renameat',(4000 + 295))
SYS_renameat2 = Constant('SYS_renameat2',(4000 + 351))
SYS_request_key = Constant('SYS_request_key',(4000 + 281))
SYS_reserved221 = Constant('SYS_reserved221',(4000 + 221))
SYS_reserved82 = Constant('SYS_reserved82',(4000 + 82))
SYS_restart_syscall = Constant('SYS_restart_syscall',(4000 + 253))
SYS_rmdir = Constant('SYS_rmdir',(4000 + 40))
SYS_rseq = Constant('SYS_rseq',(4000 + 367))
SYS_rt_sigaction = Constant('SYS_rt_sigaction',(4000 + 194))
SYS_rt_sigpending = Constant('SYS_rt_sigpending',(4000 + 196))
SYS_rt_sigprocmask = Constant('SYS_rt_sigprocmask',(4000 + 195))
SYS_rt_sigqueueinfo = Constant('SYS_rt_sigqueueinfo',(4000 + 198))
SYS_rt_sigreturn = Constant('SYS_rt_sigreturn',(4000 + 193))
SYS_rt_sigsuspend = Constant('SYS_rt_sigsuspend',(4000 + 199))
SYS_rt_sigtimedwait = Constant('SYS_rt_sigtimedwait',(4000 + 197))
SYS_rt_sigtimedwait_time64 = Constant('SYS_rt_sigtimedwait_time64',(4000 + 421))
SYS_rt_tgsigqueueinfo = Constant('SYS_rt_tgsigqueueinfo',(4000 + 332))
SYS_sched_getaffinity = Constant('SYS_sched_getaffinity',(4000 + 240))
SYS_sched_getattr = Constant('SYS_sched_getattr',(4000 + 350))
SYS_sched_getparam = Constant('SYS_sched_getparam',(4000 + 159))
SYS_sched_get_priority_max = Constant('SYS_sched_get_priority_max',(4000 + 163))
SYS_sched_get_priority_min = Constant('SYS_sched_get_priority_min',(4000 + 164))
SYS_sched_getscheduler = Constant('SYS_sched_getscheduler',(4000 + 161))
SYS_sched_rr_get_interval = Constant('SYS_sched_rr_get_interval',(4000 + 165))
SYS_sched_rr_get_interval_time64 = Constant('SYS_sched_rr_get_interval_time64',(4000 + 423))
SYS_sched_setaffinity = Constant('SYS_sched_setaffinity',(4000 + 239))
SYS_sched_setattr = Constant('SYS_sched_setattr',(4000 + 349))
SYS_sched_setparam = Constant('SYS_sched_setparam',(4000 + 158))
SYS_sched_setscheduler = Constant('SYS_sched_setscheduler',(4000 + 160))
SYS_sched_yield = Constant('SYS_sched_yield',(4000 + 162))
SYS_seccomp = Constant('SYS_seccomp',(4000 + 352))
SYS_semctl = Constant('SYS_semctl',(4000 + 394))
SYS_semget = Constant('SYS_semget',(4000 + 393))
SYS_semtimedop_time64 = Constant('SYS_semtimedop_time64',(4000 + 420))
SYS_send = Constant('SYS_send',(4000 + 178))
SYS_sendfile = Constant('SYS_sendfile',(4000 + 207))
SYS_sendfile64 = Constant('SYS_sendfile64',(4000 + 237))
SYS_sendmmsg = Constant('SYS_sendmmsg',(4000 + 343))
SYS_sendmsg = Constant('SYS_sendmsg',(4000 + 179))
SYS_sendto = Constant('SYS_sendto',(4000 + 180))
SYS_setdomainname = Constant('SYS_setdomainname',(4000 + 121))
SYS_setfsgid = Constant('SYS_setfsgid',(4000 + 139))
SYS_setfsuid = Constant('SYS_setfsuid',(4000 + 138))
SYS_setgid = Constant('SYS_setgid',(4000 + 46))
SYS_setgroups = Constant('SYS_setgroups',(4000 + 81))
SYS_sethostname = Constant('SYS_sethostname',(4000 + 74))
SYS_setitimer = Constant('SYS_setitimer',(4000 + 104))
SYS_set_mempolicy = Constant('SYS_set_mempolicy',(4000 + 270))
SYS_setns = Constant('SYS_setns',(4000 + 344))
SYS_setpgid = Constant('SYS_setpgid',(4000 + 57))
SYS_setpriority = Constant('SYS_setpriority',(4000 + 97))
SYS_setregid = Constant('SYS_setregid',(4000 + 71))
SYS_setresgid = Constant('SYS_setresgid',(4000 + 190))
SYS_setresuid = Constant('SYS_setresuid',(4000 + 185))
SYS_setreuid = Constant('SYS_setreuid',(4000 + 70))
SYS_setrlimit = Constant('SYS_setrlimit',(4000 + 75))
SYS_set_robust_list = Constant('SYS_set_robust_list',(4000 + 309))
SYS_setsid = Constant('SYS_setsid',(4000 + 66))
SYS_setsockopt = Constant('SYS_setsockopt',(4000 + 181))
SYS_set_thread_area = Constant('SYS_set_thread_area',(4000 + 283))
SYS_set_tid_address = Constant('SYS_set_tid_address',(4000 + 252))
SYS_settimeofday = Constant('SYS_settimeofday',(4000 + 79))
SYS_setuid = Constant('SYS_setuid',(4000 + 23))
SYS_setxattr = Constant('SYS_setxattr',(4000 + 224))
SYS_sgetmask = Constant('SYS_sgetmask',(4000 + 68))
SYS_shmat = Constant('SYS_shmat',(4000 + 397))
SYS_shmctl = Constant('SYS_shmctl',(4000 + 396))
SYS_shmdt = Constant('SYS_shmdt',(4000 + 398))
SYS_shmget = Constant('SYS_shmget',(4000 + 395))
SYS_shutdown = Constant('SYS_shutdown',(4000 + 182))
SYS_sigaction = Constant('SYS_sigaction',(4000 + 67))
SYS_sigaltstack = Constant('SYS_sigaltstack',(4000 + 206))
SYS_signal = Constant('SYS_signal',(4000 + 48))
SYS_signalfd = Constant('SYS_signalfd',(4000 + 317))
SYS_signalfd4 = Constant('SYS_signalfd4',(4000 + 324))
SYS_sigpending = Constant('SYS_sigpending',(4000 + 73))
SYS_sigprocmask = Constant('SYS_sigprocmask',(4000 + 126))
SYS_sigreturn = Constant('SYS_sigreturn',(4000 + 119))
SYS_sigsuspend = Constant('SYS_sigsuspend',(4000 + 72))
SYS_socket = Constant('SYS_socket',(4000 + 183))
SYS_socketcall = Constant('SYS_socketcall',(4000 + 102))
SYS_socketpair = Constant('SYS_socketpair',(4000 + 184))
SYS_splice = Constant('SYS_splice',(4000 + 304))
SYS_ssetmask = Constant('SYS_ssetmask',(4000 + 69))
SYS_stat = Constant('SYS_stat',(4000 + 106))
SYS_stat64 = Constant('SYS_stat64',(4000 + 213))
SYS_statfs = Constant('SYS_statfs',(4000 + 99))
SYS_statfs64 = Constant('SYS_statfs64',(4000 + 255))
SYS_statx = Constant('SYS_statx',(4000 + 366))
SYS_stime = Constant('SYS_stime',(4000 + 25))
SYS_stty = Constant('SYS_stty',(4000 + 31))
SYS_swapoff = Constant('SYS_swapoff',(4000 + 115))
SYS_swapon = Constant('SYS_swapon',(4000 + 87))
SYS_symlink = Constant('SYS_symlink',(4000 + 83))
SYS_symlinkat = Constant('SYS_symlinkat',(4000 + 297))
SYS_sync = Constant('SYS_sync',(4000 + 36))
SYS_sync_file_range = Constant('SYS_sync_file_range',(4000 + 305))
SYS_syncfs = Constant('SYS_syncfs',(4000 + 342))
SYS_syscall = Constant('SYS_syscall',(4000 + 0))
SYS__sysctl = Constant('SYS__sysctl',(4000 + 153))
SYS_sysfs = Constant('SYS_sysfs',(4000 + 135))
SYS_sysinfo = Constant('SYS_sysinfo',(4000 + 116))
SYS_syslog = Constant('SYS_syslog',(4000 + 103))
SYS_sysmips = Constant('SYS_sysmips',(4000 + 149))
SYS_tee = Constant('SYS_tee',(4000 + 306))
SYS_tgkill = Constant('SYS_tgkill',(4000 + 266))
SYS_time = Constant('SYS_time',(4000 + 13))
SYS_timer_create = Constant('SYS_timer_create',(4000 + 257))
SYS_timer_delete = Constant('SYS_timer_delete',(4000 + 261))
SYS_timerfd = Constant('SYS_timerfd',(4000 + 318))
SYS_timerfd_create = Constant('SYS_timerfd_create',(4000 + 321))
SYS_timerfd_gettime = Constant('SYS_timerfd_gettime',(4000 + 322))
SYS_timerfd_gettime64 = Constant('SYS_timerfd_gettime64',(4000 + 410))
SYS_timerfd_settime = Constant('SYS_timerfd_settime',(4000 + 323))
SYS_timerfd_settime64 = Constant('SYS_timerfd_settime64',(4000 + 411))
SYS_timer_getoverrun = Constant('SYS_timer_getoverrun',(4000 + 260))
SYS_timer_gettime = Constant('SYS_timer_gettime',(4000 + 259))
SYS_timer_gettime64 = Constant('SYS_timer_gettime64',(4000 + 408))
SYS_timer_settime = Constant('SYS_timer_settime',(4000 + 258))
SYS_timer_settime64 = Constant('SYS_timer_settime64',(4000 + 409))
SYS_times = Constant('SYS_times',(4000 + 43))
SYS_tkill = Constant('SYS_tkill',(4000 + 236))
SYS_truncate = Constant('SYS_truncate',(4000 + 92))
SYS_truncate64 = Constant('SYS_truncate64',(4000 + 211))
SYS_ulimit = Constant('SYS_ulimit',(4000 + 58))
SYS_umask = Constant('SYS_umask',(4000 + 60))
SYS_umount = Constant('SYS_umount',(4000 + 22))
SYS_umount2 = Constant('SYS_umount2',(4000 + 52))
SYS_uname = Constant('SYS_uname',(4000 + 122))
SYS_unlink = Constant('SYS_unlink',(4000 + 10))
SYS_unlinkat = Constant('SYS_unlinkat',(4000 + 294))
SYS_unshare = Constant('SYS_unshare',(4000 + 303))
SYS_unused109 = Constant('SYS_unused109',(4000 + 109))
SYS_unused150 = Constant('SYS_unused150',(4000 + 150))
SYS_unused18 = Constant('SYS_unused18',(4000 + 18))
SYS_unused28 = Constant('SYS_unused28',(4000 + 28))
SYS_unused59 = Constant('SYS_unused59',(4000 + 59))
SYS_unused84 = Constant('SYS_unused84',(4000 + 84))
SYS_uselib = Constant('SYS_uselib',(4000 + 86))
SYS_userfaultfd = Constant('SYS_userfaultfd',(4000 + 357))
SYS_ustat = Constant('SYS_ustat',(4000 + 62))
SYS_utime = Constant('SYS_utime',(4000 + 30))
SYS_utimensat = Constant('SYS_utimensat',(4000 + 316))
SYS_utimensat_time64 = Constant('SYS_utimensat_time64',(4000 + 412))
SYS_utimes = Constant('SYS_utimes',(4000 + 267))
SYS_vhangup = Constant('SYS_vhangup',(4000 + 111))
SYS_vm86 = Constant('SYS_vm86',(4000 + 113))
SYS_vmsplice = Constant('SYS_vmsplice',(4000 + 307))
SYS_vserver = Constant('SYS_vserver',(4000 + 277))
SYS_wait4 = Constant('SYS_wait4',(4000 + 114))
SYS_waitid = Constant('SYS_waitid',(4000 + 278))
SYS_waitpid = Constant('SYS_waitpid',(4000 + 7))
SYS_write = Constant('SYS_write',(4000 + 4))
SYS_writev = Constant('SYS_writev',(4000 + 146))
|