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 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760
|
/**
* THIS FILE IS AUTO-GENERATED from the following files:
* typenames.witx, wasi_snapshot_preview1.witx
*
* @file
* This file describes the [WASI] interface, consisting of functions, types,
* and defined values (macros).
*
* The interface described here is greatly inspired by [CloudABI]'s clean,
* thoughtfully-designed, capability-oriented, POSIX-style API.
*
* [CloudABI]: https://github.com/NuxiNL/cloudlibc
* [WASI]: https://github.com/WebAssembly/WASI/
*/
/*
* File origin:
* https://github.com/WebAssembly/wasi-libc/blob/main/libc-bottom-half/headers/public/wasi/api.h
* Revision:
* 2c2fc9a2fddd0927a66f1c142e65c8dab6f5c5d7
* License:
* CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
* https://creativecommons.org/publicdomain/zero/1.0/
*/
#ifndef __wasi_api_h
#define __wasi_api_h
#include <stddef.h>
#include <stdint.h>
#pragma push_macro("_Static_assert")
#undef _Static_assert
#define _Static_assert(X, Y)
_Static_assert(_Alignof(int8_t) == 1, "non-wasi data layout");
_Static_assert(_Alignof(uint8_t) == 1, "non-wasi data layout");
_Static_assert(_Alignof(int16_t) == 2, "non-wasi data layout");
_Static_assert(_Alignof(uint16_t) == 2, "non-wasi data layout");
_Static_assert(_Alignof(int32_t) == 4, "non-wasi data layout");
_Static_assert(_Alignof(uint32_t) == 4, "non-wasi data layout");
_Static_assert(_Alignof(int64_t) == 8, "non-wasi data layout");
_Static_assert(_Alignof(uint64_t) == 8, "non-wasi data layout");
_Static_assert(_Alignof(void*) == 4, "non-wasi data layout");
#ifdef __cplusplus
extern "C" {
#endif
// TODO: Encoding this in witx.
#define __WASI_DIRCOOKIE_START (UINT64_C(0))
typedef __SIZE_TYPE__ __wasi_size_t;
_Static_assert(sizeof(__wasi_size_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_size_t) == 4, "witx calculated align");
/**
* Non-negative file size or length of a region within a file.
*/
typedef uint64_t __wasi_filesize_t;
_Static_assert(sizeof(__wasi_filesize_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_filesize_t) == 8, "witx calculated align");
/**
* Timestamp in nanoseconds.
*/
typedef uint64_t __wasi_timestamp_t;
_Static_assert(sizeof(__wasi_timestamp_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_timestamp_t) == 8, "witx calculated align");
/**
* Identifiers for clocks.
*/
typedef uint32_t __wasi_clockid_t;
/**
* The clock measuring real time. Time value zero corresponds with
* 1970-01-01T00:00:00Z.
*/
#define __WASI_CLOCKID_REALTIME (UINT32_C(0))
/**
* The store-wide monotonic clock, which is defined as a clock measuring
* real time, whose value cannot be adjusted and which cannot have negative
* clock jumps. The epoch of this clock is undefined. The absolute time
* value of this clock therefore has no meaning.
*/
#define __WASI_CLOCKID_MONOTONIC (UINT32_C(1))
/**
* The CPU-time clock associated with the current process.
*/
#define __WASI_CLOCKID_PROCESS_CPUTIME_ID (UINT32_C(2))
/**
* The CPU-time clock associated with the current thread.
*/
#define __WASI_CLOCKID_THREAD_CPUTIME_ID (UINT32_C(3))
_Static_assert(sizeof(__wasi_clockid_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_clockid_t) == 4, "witx calculated align");
/**
* Error codes returned by functions.
* Not all of these error codes are returned by the functions provided by this
* API; some are used in higher-level library layers, and others are provided
* merely for alignment with POSIX.
*/
typedef uint16_t __wasi_errno_t;
/**
* No error occurred. System call completed successfully.
*/
#define __WASI_ERRNO_SUCCESS (UINT16_C(0))
/**
* Argument list too long.
*/
#define __WASI_ERRNO_2BIG (UINT16_C(1))
/**
* Permission denied.
*/
#define __WASI_ERRNO_ACCES (UINT16_C(2))
/**
* Address in use.
*/
#define __WASI_ERRNO_ADDRINUSE (UINT16_C(3))
/**
* Address not available.
*/
#define __WASI_ERRNO_ADDRNOTAVAIL (UINT16_C(4))
/**
* Address family not supported.
*/
#define __WASI_ERRNO_AFNOSUPPORT (UINT16_C(5))
/**
* Resource unavailable, or operation would block.
*/
#define __WASI_ERRNO_AGAIN (UINT16_C(6))
/**
* Connection already in progress.
*/
#define __WASI_ERRNO_ALREADY (UINT16_C(7))
/**
* Bad file descriptor.
*/
#define __WASI_ERRNO_BADF (UINT16_C(8))
/**
* Bad message.
*/
#define __WASI_ERRNO_BADMSG (UINT16_C(9))
/**
* Device or resource busy.
*/
#define __WASI_ERRNO_BUSY (UINT16_C(10))
/**
* Operation canceled.
*/
#define __WASI_ERRNO_CANCELED (UINT16_C(11))
/**
* No child processes.
*/
#define __WASI_ERRNO_CHILD (UINT16_C(12))
/**
* Connection aborted.
*/
#define __WASI_ERRNO_CONNABORTED (UINT16_C(13))
/**
* Connection refused.
*/
#define __WASI_ERRNO_CONNREFUSED (UINT16_C(14))
/**
* Connection reset.
*/
#define __WASI_ERRNO_CONNRESET (UINT16_C(15))
/**
* Resource deadlock would occur.
*/
#define __WASI_ERRNO_DEADLK (UINT16_C(16))
/**
* Destination address required.
*/
#define __WASI_ERRNO_DESTADDRREQ (UINT16_C(17))
/**
* Mathematics argument out of domain of function.
*/
#define __WASI_ERRNO_DOM (UINT16_C(18))
/**
* Reserved.
*/
#define __WASI_ERRNO_DQUOT (UINT16_C(19))
/**
* File exists.
*/
#define __WASI_ERRNO_EXIST (UINT16_C(20))
/**
* Bad address.
*/
#define __WASI_ERRNO_FAULT (UINT16_C(21))
/**
* File too large.
*/
#define __WASI_ERRNO_FBIG (UINT16_C(22))
/**
* Host is unreachable.
*/
#define __WASI_ERRNO_HOSTUNREACH (UINT16_C(23))
/**
* Identifier removed.
*/
#define __WASI_ERRNO_IDRM (UINT16_C(24))
/**
* Illegal byte sequence.
*/
#define __WASI_ERRNO_ILSEQ (UINT16_C(25))
/**
* Operation in progress.
*/
#define __WASI_ERRNO_INPROGRESS (UINT16_C(26))
/**
* Interrupted function.
*/
#define __WASI_ERRNO_INTR (UINT16_C(27))
/**
* Invalid argument.
*/
#define __WASI_ERRNO_INVAL (UINT16_C(28))
/**
* I/O error.
*/
#define __WASI_ERRNO_IO (UINT16_C(29))
/**
* Socket is connected.
*/
#define __WASI_ERRNO_ISCONN (UINT16_C(30))
/**
* Is a directory.
*/
#define __WASI_ERRNO_ISDIR (UINT16_C(31))
/**
* Too many levels of symbolic links.
*/
#define __WASI_ERRNO_LOOP (UINT16_C(32))
/**
* File descriptor value too large.
*/
#define __WASI_ERRNO_MFILE (UINT16_C(33))
/**
* Too many links.
*/
#define __WASI_ERRNO_MLINK (UINT16_C(34))
/**
* Message too large.
*/
#define __WASI_ERRNO_MSGSIZE (UINT16_C(35))
/**
* Reserved.
*/
#define __WASI_ERRNO_MULTIHOP (UINT16_C(36))
/**
* Filename too long.
*/
#define __WASI_ERRNO_NAMETOOLONG (UINT16_C(37))
/**
* Network is down.
*/
#define __WASI_ERRNO_NETDOWN (UINT16_C(38))
/**
* Connection aborted by network.
*/
#define __WASI_ERRNO_NETRESET (UINT16_C(39))
/**
* Network unreachable.
*/
#define __WASI_ERRNO_NETUNREACH (UINT16_C(40))
/**
* Too many files open in system.
*/
#define __WASI_ERRNO_NFILE (UINT16_C(41))
/**
* No buffer space available.
*/
#define __WASI_ERRNO_NOBUFS (UINT16_C(42))
/**
* No such device.
*/
#define __WASI_ERRNO_NODEV (UINT16_C(43))
/**
* No such file or directory.
*/
#define __WASI_ERRNO_NOENT (UINT16_C(44))
/**
* Executable file format error.
*/
#define __WASI_ERRNO_NOEXEC (UINT16_C(45))
/**
* No locks available.
*/
#define __WASI_ERRNO_NOLCK (UINT16_C(46))
/**
* Reserved.
*/
#define __WASI_ERRNO_NOLINK (UINT16_C(47))
/**
* Not enough space.
*/
#define __WASI_ERRNO_NOMEM (UINT16_C(48))
/**
* No message of the desired type.
*/
#define __WASI_ERRNO_NOMSG (UINT16_C(49))
/**
* Protocol not available.
*/
#define __WASI_ERRNO_NOPROTOOPT (UINT16_C(50))
/**
* No space left on device.
*/
#define __WASI_ERRNO_NOSPC (UINT16_C(51))
/**
* Function not supported.
*/
#define __WASI_ERRNO_NOSYS (UINT16_C(52))
/**
* The socket is not connected.
*/
#define __WASI_ERRNO_NOTCONN (UINT16_C(53))
/**
* Not a directory or a symbolic link to a directory.
*/
#define __WASI_ERRNO_NOTDIR (UINT16_C(54))
/**
* Directory not empty.
*/
#define __WASI_ERRNO_NOTEMPTY (UINT16_C(55))
/**
* State not recoverable.
*/
#define __WASI_ERRNO_NOTRECOVERABLE (UINT16_C(56))
/**
* Not a socket.
*/
#define __WASI_ERRNO_NOTSOCK (UINT16_C(57))
/**
* Not supported, or operation not supported on socket.
*/
#define __WASI_ERRNO_NOTSUP (UINT16_C(58))
/**
* Inappropriate I/O control operation.
*/
#define __WASI_ERRNO_NOTTY (UINT16_C(59))
/**
* No such device or address.
*/
#define __WASI_ERRNO_NXIO (UINT16_C(60))
/**
* Value too large to be stored in data type.
*/
#define __WASI_ERRNO_OVERFLOW (UINT16_C(61))
/**
* Previous owner died.
*/
#define __WASI_ERRNO_OWNERDEAD (UINT16_C(62))
/**
* Operation not permitted.
*/
#define __WASI_ERRNO_PERM (UINT16_C(63))
/**
* Broken pipe.
*/
#define __WASI_ERRNO_PIPE (UINT16_C(64))
/**
* Protocol error.
*/
#define __WASI_ERRNO_PROTO (UINT16_C(65))
/**
* Protocol not supported.
*/
#define __WASI_ERRNO_PROTONOSUPPORT (UINT16_C(66))
/**
* Protocol wrong type for socket.
*/
#define __WASI_ERRNO_PROTOTYPE (UINT16_C(67))
/**
* Result too large.
*/
#define __WASI_ERRNO_RANGE (UINT16_C(68))
/**
* Read-only file system.
*/
#define __WASI_ERRNO_ROFS (UINT16_C(69))
/**
* Invalid seek.
*/
#define __WASI_ERRNO_SPIPE (UINT16_C(70))
/**
* No such process.
*/
#define __WASI_ERRNO_SRCH (UINT16_C(71))
/**
* Reserved.
*/
#define __WASI_ERRNO_STALE (UINT16_C(72))
/**
* Connection timed out.
*/
#define __WASI_ERRNO_TIMEDOUT (UINT16_C(73))
/**
* Text file busy.
*/
#define __WASI_ERRNO_TXTBSY (UINT16_C(74))
/**
* Cross-device link.
*/
#define __WASI_ERRNO_XDEV (UINT16_C(75))
/**
* Extension: Capabilities insufficient.
*/
#define __WASI_ERRNO_NOTCAPABLE (UINT16_C(76))
_Static_assert(sizeof(__wasi_errno_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_errno_t) == 2, "witx calculated align");
/**
* File descriptor rights, determining which actions may be performed.
*/
typedef uint64_t __wasi_rights_t;
/**
* The right to invoke `fd_datasync`.
* If `path_open` is set, includes the right to invoke
* `path_open` with `fdflags::dsync`.
*/
#define __WASI_RIGHTS_FD_DATASYNC (UINT64_C(1))
/**
* The right to invoke `fd_read` and `sock_recv`.
* If `rights::fd_seek` is set, includes the right to invoke `fd_pread`.
*/
#define __WASI_RIGHTS_FD_READ (UINT64_C(2))
/**
* The right to invoke `fd_seek`. This flag implies `rights::fd_tell`.
*/
#define __WASI_RIGHTS_FD_SEEK (UINT64_C(4))
/**
* The right to invoke `fd_fdstat_set_flags`.
*/
#define __WASI_RIGHTS_FD_FDSTAT_SET_FLAGS (UINT64_C(8))
/**
* The right to invoke `fd_sync`.
* If `path_open` is set, includes the right to invoke
* `path_open` with `fdflags::rsync` and `fdflags::dsync`.
*/
#define __WASI_RIGHTS_FD_SYNC (UINT64_C(16))
/**
* The right to invoke `fd_seek` in such a way that the file offset
* remains unaltered (i.e., `whence::cur` with offset zero), or to
* invoke `fd_tell`.
*/
#define __WASI_RIGHTS_FD_TELL (UINT64_C(32))
/**
* The right to invoke `fd_write` and `sock_send`.
* If `rights::fd_seek` is set, includes the right to invoke `fd_pwrite`.
*/
#define __WASI_RIGHTS_FD_WRITE (UINT64_C(64))
/**
* The right to invoke `fd_advise`.
*/
#define __WASI_RIGHTS_FD_ADVISE (UINT64_C(128))
/**
* The right to invoke `fd_allocate`.
*/
#define __WASI_RIGHTS_FD_ALLOCATE (UINT64_C(256))
/**
* The right to invoke `path_create_directory`.
*/
#define __WASI_RIGHTS_PATH_CREATE_DIRECTORY (UINT64_C(512))
/**
* If `path_open` is set, the right to invoke `path_open` with `oflags::creat`.
*/
#define __WASI_RIGHTS_PATH_CREATE_FILE (UINT64_C(1024))
/**
* The right to invoke `path_link` with the file descriptor as the
* source directory.
*/
#define __WASI_RIGHTS_PATH_LINK_SOURCE (UINT64_C(2048))
/**
* The right to invoke `path_link` with the file descriptor as the
* target directory.
*/
#define __WASI_RIGHTS_PATH_LINK_TARGET (UINT64_C(4096))
/**
* The right to invoke `path_open`.
*/
#define __WASI_RIGHTS_PATH_OPEN (UINT64_C(8192))
/**
* The right to invoke `fd_readdir`.
*/
#define __WASI_RIGHTS_FD_READDIR (UINT64_C(16384))
/**
* The right to invoke `path_readlink`.
*/
#define __WASI_RIGHTS_PATH_READLINK (UINT64_C(32768))
/**
* The right to invoke `path_rename` with the file descriptor as the source directory.
*/
#define __WASI_RIGHTS_PATH_RENAME_SOURCE (UINT64_C(65536))
/**
* The right to invoke `path_rename` with the file descriptor as the target directory.
*/
#define __WASI_RIGHTS_PATH_RENAME_TARGET (UINT64_C(131072))
/**
* The right to invoke `path_filestat_get`.
*/
#define __WASI_RIGHTS_PATH_FILESTAT_GET (UINT64_C(262144))
/**
* The right to change a file's size (there is no `path_filestat_set_size`).
* If `path_open` is set, includes the right to invoke `path_open` with `oflags::trunc`.
*/
#define __WASI_RIGHTS_PATH_FILESTAT_SET_SIZE (UINT64_C(524288))
/**
* The right to invoke `path_filestat_set_times`.
*/
#define __WASI_RIGHTS_PATH_FILESTAT_SET_TIMES (UINT64_C(1048576))
/**
* The right to invoke `fd_filestat_get`.
*/
#define __WASI_RIGHTS_FD_FILESTAT_GET (UINT64_C(2097152))
/**
* The right to invoke `fd_filestat_set_size`.
*/
#define __WASI_RIGHTS_FD_FILESTAT_SET_SIZE (UINT64_C(4194304))
/**
* The right to invoke `fd_filestat_set_times`.
*/
#define __WASI_RIGHTS_FD_FILESTAT_SET_TIMES (UINT64_C(8388608))
/**
* The right to invoke `path_symlink`.
*/
#define __WASI_RIGHTS_PATH_SYMLINK (UINT64_C(16777216))
/**
* The right to invoke `path_remove_directory`.
*/
#define __WASI_RIGHTS_PATH_REMOVE_DIRECTORY (UINT64_C(33554432))
/**
* The right to invoke `path_unlink_file`.
*/
#define __WASI_RIGHTS_PATH_UNLINK_FILE (UINT64_C(67108864))
/**
* If `rights::fd_read` is set, includes the right to invoke `poll_oneoff` to subscribe to `eventtype::fd_read`.
* If `rights::fd_write` is set, includes the right to invoke `poll_oneoff` to subscribe to `eventtype::fd_write`.
*/
#define __WASI_RIGHTS_POLL_FD_READWRITE (UINT64_C(134217728))
/**
* The right to invoke `sock_shutdown`.
*/
#define __WASI_RIGHTS_SOCK_SHUTDOWN (UINT64_C(268435456))
_Static_assert(sizeof(__wasi_rights_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_rights_t) == 8, "witx calculated align");
/**
* A file descriptor index.
*/
typedef uint32_t __wasi_fd_t;
_Static_assert(sizeof(__wasi_fd_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_fd_t) == 4, "witx calculated align");
/**
* A region of memory for scatter/gather reads.
*/
typedef struct __wasi_iovec_t {
/**
* The address of the buffer to be filled.
*/
uint8_t * buf;
/**
* The length of the buffer to be filled.
*/
__wasi_size_t buf_len;
} __wasi_iovec_t;
_Static_assert(sizeof(__wasi_iovec_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_iovec_t) == 4, "witx calculated align");
_Static_assert(offsetof(__wasi_iovec_t, buf) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_iovec_t, buf_len) == 4, "witx calculated offset");
/**
* A region of memory for scatter/gather writes.
*/
typedef struct __wasi_ciovec_t {
/**
* The address of the buffer to be written.
*/
const uint8_t * buf;
/**
* The length of the buffer to be written.
*/
__wasi_size_t buf_len;
} __wasi_ciovec_t;
_Static_assert(sizeof(__wasi_ciovec_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_ciovec_t) == 4, "witx calculated align");
_Static_assert(offsetof(__wasi_ciovec_t, buf) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_ciovec_t, buf_len) == 4, "witx calculated offset");
/**
* Relative offset within a file.
*/
typedef int64_t __wasi_filedelta_t;
_Static_assert(sizeof(__wasi_filedelta_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_filedelta_t) == 8, "witx calculated align");
/**
* The position relative to which to set the offset of the file descriptor.
*/
typedef uint8_t __wasi_whence_t;
/**
* Seek relative to start-of-file.
*/
#define __WASI_WHENCE_SET (UINT8_C(0))
/**
* Seek relative to current position.
*/
#define __WASI_WHENCE_CUR (UINT8_C(1))
/**
* Seek relative to end-of-file.
*/
#define __WASI_WHENCE_END (UINT8_C(2))
_Static_assert(sizeof(__wasi_whence_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_whence_t) == 1, "witx calculated align");
/**
* A reference to the offset of a directory entry.
*
* The value 0 signifies the start of the directory.
*/
typedef uint64_t __wasi_dircookie_t;
_Static_assert(sizeof(__wasi_dircookie_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_dircookie_t) == 8, "witx calculated align");
/**
* The type for the $d_namlen field of $dirent.
*/
typedef uint32_t __wasi_dirnamlen_t;
_Static_assert(sizeof(__wasi_dirnamlen_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_dirnamlen_t) == 4, "witx calculated align");
/**
* File serial number that is unique within its file system.
*/
typedef uint64_t __wasi_inode_t;
_Static_assert(sizeof(__wasi_inode_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_inode_t) == 8, "witx calculated align");
/**
* The type of a file descriptor or file.
*/
typedef uint8_t __wasi_filetype_t;
/**
* The type of the file descriptor or file is unknown or is different from any of the other types specified.
*/
#define __WASI_FILETYPE_UNKNOWN (UINT8_C(0))
/**
* The file descriptor or file refers to a block device inode.
*/
#define __WASI_FILETYPE_BLOCK_DEVICE (UINT8_C(1))
/**
* The file descriptor or file refers to a character device inode.
*/
#define __WASI_FILETYPE_CHARACTER_DEVICE (UINT8_C(2))
/**
* The file descriptor or file refers to a directory inode.
*/
#define __WASI_FILETYPE_DIRECTORY (UINT8_C(3))
/**
* The file descriptor or file refers to a regular file inode.
*/
#define __WASI_FILETYPE_REGULAR_FILE (UINT8_C(4))
/**
* The file descriptor or file refers to a datagram socket.
*/
#define __WASI_FILETYPE_SOCKET_DGRAM (UINT8_C(5))
/**
* The file descriptor or file refers to a byte-stream socket.
*/
#define __WASI_FILETYPE_SOCKET_STREAM (UINT8_C(6))
/**
* The file refers to a symbolic link inode.
*/
#define __WASI_FILETYPE_SYMBOLIC_LINK (UINT8_C(7))
_Static_assert(sizeof(__wasi_filetype_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_filetype_t) == 1, "witx calculated align");
/**
* A directory entry.
*/
typedef struct __wasi_dirent_t {
/**
* The offset of the next directory entry stored in this directory.
*/
__wasi_dircookie_t d_next;
/**
* The serial number of the file referred to by this directory entry.
*/
__wasi_inode_t d_ino;
/**
* The length of the name of the directory entry.
*/
__wasi_dirnamlen_t d_namlen;
/**
* The type of the file referred to by this directory entry.
*/
__wasi_filetype_t d_type;
} __wasi_dirent_t;
_Static_assert(sizeof(__wasi_dirent_t) == 24, "witx calculated size");
_Static_assert(_Alignof(__wasi_dirent_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_dirent_t, d_next) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_dirent_t, d_ino) == 8, "witx calculated offset");
_Static_assert(offsetof(__wasi_dirent_t, d_namlen) == 16, "witx calculated offset");
_Static_assert(offsetof(__wasi_dirent_t, d_type) == 20, "witx calculated offset");
/**
* File or memory access pattern advisory information.
*/
typedef uint8_t __wasi_advice_t;
/**
* The application has no advice to give on its behavior with respect to the specified data.
*/
#define __WASI_ADVICE_NORMAL (UINT8_C(0))
/**
* The application expects to access the specified data sequentially from lower offsets to higher offsets.
*/
#define __WASI_ADVICE_SEQUENTIAL (UINT8_C(1))
/**
* The application expects to access the specified data in a random order.
*/
#define __WASI_ADVICE_RANDOM (UINT8_C(2))
/**
* The application expects to access the specified data in the near future.
*/
#define __WASI_ADVICE_WILLNEED (UINT8_C(3))
/**
* The application expects that it will not access the specified data in the near future.
*/
#define __WASI_ADVICE_DONTNEED (UINT8_C(4))
/**
* The application expects to access the specified data once and then not reuse it thereafter.
*/
#define __WASI_ADVICE_NOREUSE (UINT8_C(5))
_Static_assert(sizeof(__wasi_advice_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_advice_t) == 1, "witx calculated align");
/**
* File descriptor flags.
*/
typedef uint16_t __wasi_fdflags_t;
/**
* Append mode: Data written to the file is always appended to the file's end.
*/
#define __WASI_FDFLAGS_APPEND (UINT16_C(1))
/**
* Write according to synchronized I/O data integrity completion. Only the data stored in the file is synchronized.
*/
#define __WASI_FDFLAGS_DSYNC (UINT16_C(2))
/**
* Non-blocking mode.
*/
#define __WASI_FDFLAGS_NONBLOCK (UINT16_C(4))
/**
* Synchronized read I/O operations.
*/
#define __WASI_FDFLAGS_RSYNC (UINT16_C(8))
/**
* Write according to synchronized I/O file integrity completion. In
* addition to synchronizing the data stored in the file, the implementation
* may also synchronously update the file's metadata.
*/
#define __WASI_FDFLAGS_SYNC (UINT16_C(16))
_Static_assert(sizeof(__wasi_fdflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_fdflags_t) == 2, "witx calculated align");
/**
* File descriptor attributes.
*/
typedef struct __wasi_fdstat_t {
/**
* File type.
*/
__wasi_filetype_t fs_filetype;
/**
* File descriptor flags.
*/
__wasi_fdflags_t fs_flags;
/**
* Rights that apply to this file descriptor.
*/
__wasi_rights_t fs_rights_base;
/**
* Maximum set of rights that may be installed on new file descriptors that
* are created through this file descriptor, e.g., through `path_open`.
*/
__wasi_rights_t fs_rights_inheriting;
} __wasi_fdstat_t;
_Static_assert(sizeof(__wasi_fdstat_t) == 24, "witx calculated size");
_Static_assert(_Alignof(__wasi_fdstat_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_fdstat_t, fs_filetype) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_fdstat_t, fs_flags) == 2, "witx calculated offset");
_Static_assert(offsetof(__wasi_fdstat_t, fs_rights_base) == 8, "witx calculated offset");
_Static_assert(offsetof(__wasi_fdstat_t, fs_rights_inheriting) == 16, "witx calculated offset");
/**
* Identifier for a device containing a file system. Can be used in combination
* with `inode` to uniquely identify a file or directory in the filesystem.
*/
typedef uint64_t __wasi_device_t;
_Static_assert(sizeof(__wasi_device_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_device_t) == 8, "witx calculated align");
/**
* Which file time attributes to adjust.
*/
typedef uint16_t __wasi_fstflags_t;
/**
* Adjust the last data access timestamp to the value stored in `filestat::atim`.
*/
#define __WASI_FSTFLAGS_ATIM (UINT16_C(1))
/**
* Adjust the last data access timestamp to the time of clock `clockid::realtime`.
*/
#define __WASI_FSTFLAGS_ATIM_NOW (UINT16_C(2))
/**
* Adjust the last data modification timestamp to the value stored in `filestat::mtim`.
*/
#define __WASI_FSTFLAGS_MTIM (UINT16_C(4))
/**
* Adjust the last data modification timestamp to the time of clock `clockid::realtime`.
*/
#define __WASI_FSTFLAGS_MTIM_NOW (UINT16_C(8))
_Static_assert(sizeof(__wasi_fstflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_fstflags_t) == 2, "witx calculated align");
/**
* Flags determining the method of how paths are resolved.
*/
typedef uint32_t __wasi_lookupflags_t;
/**
* As long as the resolved path corresponds to a symbolic link, it is expanded.
*/
#define __WASI_LOOKUPFLAGS_SYMLINK_FOLLOW (UINT32_C(1))
_Static_assert(sizeof(__wasi_lookupflags_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_lookupflags_t) == 4, "witx calculated align");
/**
* Open flags used by `path_open`.
*/
typedef uint16_t __wasi_oflags_t;
/**
* Create file if it does not exist.
*/
#define __WASI_OFLAGS_CREAT (UINT16_C(1))
/**
* Fail if not a directory.
*/
#define __WASI_OFLAGS_DIRECTORY (UINT16_C(2))
/**
* Fail if file already exists.
*/
#define __WASI_OFLAGS_EXCL (UINT16_C(4))
/**
* Truncate file to size 0.
*/
#define __WASI_OFLAGS_TRUNC (UINT16_C(8))
_Static_assert(sizeof(__wasi_oflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_oflags_t) == 2, "witx calculated align");
/**
* Number of hard links to an inode.
*/
typedef uint64_t __wasi_linkcount_t;
_Static_assert(sizeof(__wasi_linkcount_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_linkcount_t) == 8, "witx calculated align");
/**
* File attributes.
*/
typedef struct __wasi_filestat_t {
/**
* Device ID of device containing the file.
*/
__wasi_device_t dev;
/**
* File serial number.
*/
__wasi_inode_t ino;
/**
* File type.
*/
__wasi_filetype_t filetype;
/**
* Number of hard links to the file.
*/
__wasi_linkcount_t nlink;
/**
* For regular files, the file size in bytes. For symbolic links, the length in bytes of the pathname contained in the symbolic link.
*/
__wasi_filesize_t size;
/**
* Last data access timestamp.
*/
__wasi_timestamp_t atim;
/**
* Last data modification timestamp.
*/
__wasi_timestamp_t mtim;
/**
* Last file status change timestamp.
*/
__wasi_timestamp_t ctim;
} __wasi_filestat_t;
_Static_assert(sizeof(__wasi_filestat_t) == 64, "witx calculated size");
_Static_assert(_Alignof(__wasi_filestat_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_filestat_t, dev) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, ino) == 8, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, filetype) == 16, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, nlink) == 24, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, size) == 32, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, atim) == 40, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, mtim) == 48, "witx calculated offset");
_Static_assert(offsetof(__wasi_filestat_t, ctim) == 56, "witx calculated offset");
/**
* User-provided value that may be attached to objects that is retained when
* extracted from the implementation.
*/
typedef uint64_t __wasi_userdata_t;
_Static_assert(sizeof(__wasi_userdata_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_userdata_t) == 8, "witx calculated align");
/**
* Type of a subscription to an event or its occurrence.
*/
typedef uint8_t __wasi_eventtype_t;
/**
* The time value of clock `subscription_clock::id` has
* reached timestamp `subscription_clock::timeout`.
*/
#define __WASI_EVENTTYPE_CLOCK (UINT8_C(0))
/**
* File descriptor `subscription_fd_readwrite::file_descriptor` has data
* available for reading. This event always triggers for regular files.
*/
#define __WASI_EVENTTYPE_FD_READ (UINT8_C(1))
/**
* File descriptor `subscription_fd_readwrite::file_descriptor` has capacity
* available for writing. This event always triggers for regular files.
*/
#define __WASI_EVENTTYPE_FD_WRITE (UINT8_C(2))
_Static_assert(sizeof(__wasi_eventtype_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_eventtype_t) == 1, "witx calculated align");
/**
* The state of the file descriptor subscribed to with
* `eventtype::fd_read` or `eventtype::fd_write`.
*/
typedef uint16_t __wasi_eventrwflags_t;
/**
* The peer of this socket has closed or disconnected.
*/
#define __WASI_EVENTRWFLAGS_FD_READWRITE_HANGUP (UINT16_C(1))
_Static_assert(sizeof(__wasi_eventrwflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_eventrwflags_t) == 2, "witx calculated align");
/**
* The contents of an $event when type is `eventtype::fd_read` or
* `eventtype::fd_write`.
*/
typedef struct __wasi_event_fd_readwrite_t {
/**
* The number of bytes available for reading or writing.
*/
__wasi_filesize_t nbytes;
/**
* The state of the file descriptor.
*/
__wasi_eventrwflags_t flags;
} __wasi_event_fd_readwrite_t;
_Static_assert(sizeof(__wasi_event_fd_readwrite_t) == 16, "witx calculated size");
_Static_assert(_Alignof(__wasi_event_fd_readwrite_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_event_fd_readwrite_t, nbytes) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_event_fd_readwrite_t, flags) == 8, "witx calculated offset");
/**
* The contents of an $event.
*/
typedef union __wasi_event_u_t {
/**
* When type is `eventtype::fd_read` or `eventtype::fd_write`:
*/
__wasi_event_fd_readwrite_t fd_readwrite;
} __wasi_event_u_t;
_Static_assert(sizeof(__wasi_event_u_t) == 16, "witx calculated size");
_Static_assert(_Alignof(__wasi_event_u_t) == 8, "witx calculated align");
/**
* An event that occurred.
*/
typedef struct __wasi_event_t {
/**
* User-provided value that got attached to `subscription::userdata`.
*/
__wasi_userdata_t userdata;
/**
* If non-zero, an error that occurred while processing the subscription request.
*/
__wasi_errno_t error;
/**
* The type of the event that occurred.
*/
__wasi_eventtype_t type;
/**
* The contents of the event.
*/
__wasi_event_u_t u;
} __wasi_event_t;
_Static_assert(sizeof(__wasi_event_t) == 32, "witx calculated size");
_Static_assert(_Alignof(__wasi_event_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_event_t, userdata) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_event_t, error) == 8, "witx calculated offset");
_Static_assert(offsetof(__wasi_event_t, type) == 10, "witx calculated offset");
_Static_assert(offsetof(__wasi_event_t, u) == 16, "witx calculated offset");
/**
* Flags determining how to interpret the timestamp provided in
* `subscription_clock::timeout`.
*/
typedef uint16_t __wasi_subclockflags_t;
/**
* If set, treat the timestamp provided in
* `subscription_clock::timeout` as an absolute timestamp of clock
* `subscription_clock::id`. If clear, treat the timestamp
* provided in `subscription_clock::timeout` relative to the
* current time value of clock `subscription_clock::id`.
*/
#define __WASI_SUBCLOCKFLAGS_SUBSCRIPTION_CLOCK_ABSTIME (UINT16_C(1))
_Static_assert(sizeof(__wasi_subclockflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_subclockflags_t) == 2, "witx calculated align");
/**
* The contents of a $subscription when type is `eventtype::clock`.
*/
typedef struct __wasi_subscription_clock_t {
/**
* The clock against which to compare the timestamp.
*/
__wasi_clockid_t id;
/**
* The absolute or relative timestamp.
*/
__wasi_timestamp_t timeout;
/**
* The amount of time that the implementation may wait additionally
* to coalesce with other events.
*/
__wasi_timestamp_t precision;
/**
* Flags specifying whether the timeout is absolute or relative
*/
__wasi_subclockflags_t flags;
} __wasi_subscription_clock_t;
_Static_assert(sizeof(__wasi_subscription_clock_t) == 32, "witx calculated size");
_Static_assert(_Alignof(__wasi_subscription_clock_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_subscription_clock_t, id) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_subscription_clock_t, timeout) == 8, "witx calculated offset");
_Static_assert(offsetof(__wasi_subscription_clock_t, precision) == 16, "witx calculated offset");
_Static_assert(offsetof(__wasi_subscription_clock_t, flags) == 24, "witx calculated offset");
/**
* The contents of a $subscription when type is type is
* `eventtype::fd_read` or `eventtype::fd_write`.
*/
typedef struct __wasi_subscription_fd_readwrite_t {
/**
* The file descriptor on which to wait for it to become ready for reading or writing.
*/
__wasi_fd_t file_descriptor;
} __wasi_subscription_fd_readwrite_t;
_Static_assert(sizeof(__wasi_subscription_fd_readwrite_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_subscription_fd_readwrite_t) == 4, "witx calculated align");
_Static_assert(offsetof(__wasi_subscription_fd_readwrite_t, file_descriptor) == 0, "witx calculated offset");
/**
* The contents of a $subscription.
*/
typedef union __wasi_subscription_u_t {
/**
* When type is `eventtype::clock`:
*/
__wasi_subscription_clock_t clock;
/**
* When type is `eventtype::fd_read` or `eventtype::fd_write`:
*/
__wasi_subscription_fd_readwrite_t fd_readwrite;
} __wasi_subscription_u_t;
_Static_assert(sizeof(__wasi_subscription_u_t) == 32, "witx calculated size");
_Static_assert(_Alignof(__wasi_subscription_u_t) == 8, "witx calculated align");
/**
* Subscription to an event.
*/
typedef struct __wasi_subscription_t {
/**
* User-provided value that is attached to the subscription in the
* implementation and returned through `event::userdata`.
*/
__wasi_userdata_t userdata;
/**
* The type of the event to which to subscribe.
*/
__wasi_eventtype_t type;
/**
* The contents of the subscription.
*/
__wasi_subscription_u_t u;
} __wasi_subscription_t;
_Static_assert(sizeof(__wasi_subscription_t) == 48, "witx calculated size");
_Static_assert(_Alignof(__wasi_subscription_t) == 8, "witx calculated align");
_Static_assert(offsetof(__wasi_subscription_t, userdata) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_subscription_t, type) == 8, "witx calculated offset");
_Static_assert(offsetof(__wasi_subscription_t, u) == 16, "witx calculated offset");
/**
* Exit code generated by a process when exiting.
*/
typedef uint32_t __wasi_exitcode_t;
_Static_assert(sizeof(__wasi_exitcode_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_exitcode_t) == 4, "witx calculated align");
/**
* Signal condition.
*/
typedef uint8_t __wasi_signal_t;
/**
* No signal. Note that POSIX has special semantics for `kill(pid, 0)`,
* so this value is reserved.
*/
#define __WASI_SIGNAL_NONE (UINT8_C(0))
/**
* Hangup.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_HUP (UINT8_C(1))
/**
* Terminate interrupt signal.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_INT (UINT8_C(2))
/**
* Terminal quit signal.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_QUIT (UINT8_C(3))
/**
* Illegal instruction.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_ILL (UINT8_C(4))
/**
* Trace/breakpoint trap.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_TRAP (UINT8_C(5))
/**
* Process abort signal.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_ABRT (UINT8_C(6))
/**
* Access to an undefined portion of a memory object.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_BUS (UINT8_C(7))
/**
* Erroneous arithmetic operation.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_FPE (UINT8_C(8))
/**
* Kill.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_KILL (UINT8_C(9))
/**
* User-defined signal 1.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_USR1 (UINT8_C(10))
/**
* Invalid memory reference.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_SEGV (UINT8_C(11))
/**
* User-defined signal 2.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_USR2 (UINT8_C(12))
/**
* Write on a pipe with no one to read it.
* Action: Ignored.
*/
#define __WASI_SIGNAL_PIPE (UINT8_C(13))
/**
* Alarm clock.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_ALRM (UINT8_C(14))
/**
* Termination signal.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_TERM (UINT8_C(15))
/**
* Child process terminated, stopped, or continued.
* Action: Ignored.
*/
#define __WASI_SIGNAL_CHLD (UINT8_C(16))
/**
* Continue executing, if stopped.
* Action: Continues executing, if stopped.
*/
#define __WASI_SIGNAL_CONT (UINT8_C(17))
/**
* Stop executing.
* Action: Stops executing.
*/
#define __WASI_SIGNAL_STOP (UINT8_C(18))
/**
* Terminal stop signal.
* Action: Stops executing.
*/
#define __WASI_SIGNAL_TSTP (UINT8_C(19))
/**
* Background process attempting read.
* Action: Stops executing.
*/
#define __WASI_SIGNAL_TTIN (UINT8_C(20))
/**
* Background process attempting write.
* Action: Stops executing.
*/
#define __WASI_SIGNAL_TTOU (UINT8_C(21))
/**
* High bandwidth data is available at a socket.
* Action: Ignored.
*/
#define __WASI_SIGNAL_URG (UINT8_C(22))
/**
* CPU time limit exceeded.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_XCPU (UINT8_C(23))
/**
* File size limit exceeded.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_XFSZ (UINT8_C(24))
/**
* Virtual timer expired.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_VTALRM (UINT8_C(25))
/**
* Profiling timer expired.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_PROF (UINT8_C(26))
/**
* Window changed.
* Action: Ignored.
*/
#define __WASI_SIGNAL_WINCH (UINT8_C(27))
/**
* I/O possible.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_POLL (UINT8_C(28))
/**
* Power failure.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_PWR (UINT8_C(29))
/**
* Bad system call.
* Action: Terminates the process.
*/
#define __WASI_SIGNAL_SYS (UINT8_C(30))
_Static_assert(sizeof(__wasi_signal_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_signal_t) == 1, "witx calculated align");
/**
* Flags provided to `sock_recv`.
*/
typedef uint16_t __wasi_riflags_t;
/**
* Returns the message without removing it from the socket's receive queue.
*/
#define __WASI_RIFLAGS_RECV_PEEK (UINT16_C(1))
/**
* On byte-stream sockets, block until the full amount of data can be returned.
*/
#define __WASI_RIFLAGS_RECV_WAITALL (UINT16_C(2))
_Static_assert(sizeof(__wasi_riflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_riflags_t) == 2, "witx calculated align");
/**
* Flags returned by `sock_recv`.
*/
typedef uint16_t __wasi_roflags_t;
/**
* Returned by `sock_recv`: Message data has been truncated.
*/
#define __WASI_ROFLAGS_RECV_DATA_TRUNCATED (UINT16_C(1))
_Static_assert(sizeof(__wasi_roflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_roflags_t) == 2, "witx calculated align");
/**
* Flags provided to `sock_send`. As there are currently no flags
* defined, it must be set to zero.
*/
typedef uint16_t __wasi_siflags_t;
_Static_assert(sizeof(__wasi_siflags_t) == 2, "witx calculated size");
_Static_assert(_Alignof(__wasi_siflags_t) == 2, "witx calculated align");
/**
* Which channels on a socket to shut down.
*/
typedef uint8_t __wasi_sdflags_t;
/**
* Disables further receive operations.
*/
#define __WASI_SDFLAGS_RD (UINT8_C(1))
/**
* Disables further send operations.
*/
#define __WASI_SDFLAGS_WR (UINT8_C(2))
_Static_assert(sizeof(__wasi_sdflags_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_sdflags_t) == 1, "witx calculated align");
/**
* Identifiers for preopened capabilities.
*/
typedef uint8_t __wasi_preopentype_t;
/**
* A pre-opened directory.
*/
#define __WASI_PREOPENTYPE_DIR (UINT8_C(0))
_Static_assert(sizeof(__wasi_preopentype_t) == 1, "witx calculated size");
_Static_assert(_Alignof(__wasi_preopentype_t) == 1, "witx calculated align");
/**
* The contents of a $prestat when type is `preopentype::dir`.
*/
typedef struct __wasi_prestat_dir_t {
/**
* The length of the directory name for use with `fd_prestat_dir_name`.
*/
__wasi_size_t pr_name_len;
} __wasi_prestat_dir_t;
_Static_assert(sizeof(__wasi_prestat_dir_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_prestat_dir_t) == 4, "witx calculated align");
_Static_assert(offsetof(__wasi_prestat_dir_t, pr_name_len) == 0, "witx calculated offset");
/**
* The contents of an $prestat.
*/
typedef union __wasi_prestat_u_t {
/**
* When type is `preopentype::dir`:
*/
__wasi_prestat_dir_t dir;
} __wasi_prestat_u_t;
_Static_assert(sizeof(__wasi_prestat_u_t) == 4, "witx calculated size");
_Static_assert(_Alignof(__wasi_prestat_u_t) == 4, "witx calculated align");
/**
* Information about a pre-opened capability.
*/
typedef struct __wasi_prestat_t {
/**
* The type of the pre-opened capability.
*/
__wasi_preopentype_t pr_type;
/**
* The contents of the information.
*/
__wasi_prestat_u_t u;
} __wasi_prestat_t;
_Static_assert(sizeof(__wasi_prestat_t) == 8, "witx calculated size");
_Static_assert(_Alignof(__wasi_prestat_t) == 4, "witx calculated align");
_Static_assert(offsetof(__wasi_prestat_t, pr_type) == 0, "witx calculated offset");
_Static_assert(offsetof(__wasi_prestat_t, u) == 4, "witx calculated offset");
/**
* @defgroup wasi_snapshot_preview1
* @{
*/
/**
* Read command-line argument data.
* The size of the array should match that returned by `args_sizes_get`
*/
__wasi_errno_t __wasi_args_get(
uint8_t * * argv,
uint8_t * argv_buf
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("args_get"),
__warn_unused_result__
));
/**
* Return command-line argument data sizes.
*/
__wasi_errno_t __wasi_args_sizes_get(
/**
* The number of arguments.
*/
__wasi_size_t *argc,
/**
* The size of the argument string data.
*/
__wasi_size_t *argv_buf_size
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("args_sizes_get"),
__warn_unused_result__
));
/**
* Read environment variable data.
* The sizes of the buffers should match that returned by `environ_sizes_get`.
*/
__wasi_errno_t __wasi_environ_get(
uint8_t * * environ,
uint8_t * environ_buf
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("environ_get"),
__warn_unused_result__
));
/**
* Return command-line argument data sizes.
*/
__wasi_errno_t __wasi_environ_sizes_get(
/**
* The number of arguments.
*/
__wasi_size_t *argc,
/**
* The size of the argument string data.
*/
__wasi_size_t *argv_buf_size
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("environ_sizes_get"),
__warn_unused_result__
));
/**
* Return the resolution of a clock.
* Implementations are required to provide a non-zero value for supported clocks. For unsupported clocks,
* return `errno::inval`.
* Note: This is similar to `clock_getres` in POSIX.
*/
__wasi_errno_t __wasi_clock_res_get(
/**
* The clock for which to return the resolution.
*/
__wasi_clockid_t id,
/**
* The resolution of the clock.
*/
__wasi_timestamp_t *resolution
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("clock_res_get"),
__warn_unused_result__
));
/**
* Return the time value of a clock.
* Note: This is similar to `clock_gettime` in POSIX.
*/
__wasi_errno_t __wasi_clock_time_get(
/**
* The clock for which to return the time.
*/
__wasi_clockid_t id,
/**
* The maximum lag (exclusive) that the returned time value may have, compared to its actual value.
*/
__wasi_timestamp_t precision,
/**
* The time value of the clock.
*/
__wasi_timestamp_t *time
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("clock_time_get"),
__warn_unused_result__
));
/**
* Provide file advisory information on a file descriptor.
* Note: This is similar to `posix_fadvise` in POSIX.
*/
__wasi_errno_t __wasi_fd_advise(
__wasi_fd_t fd,
/**
* The offset within the file to which the advisory applies.
*/
__wasi_filesize_t offset,
/**
* The length of the region to which the advisory applies.
*/
__wasi_filesize_t len,
/**
* The advice.
*/
__wasi_advice_t advice
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_advise"),
__warn_unused_result__
));
/**
* Force the allocation of space in a file.
* Note: This is similar to `posix_fallocate` in POSIX.
*/
__wasi_errno_t __wasi_fd_allocate(
__wasi_fd_t fd,
/**
* The offset at which to start the allocation.
*/
__wasi_filesize_t offset,
/**
* The length of the area that is allocated.
*/
__wasi_filesize_t len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_allocate"),
__warn_unused_result__
));
/**
* Close a file descriptor.
* Note: This is similar to `close` in POSIX.
*/
__wasi_errno_t __wasi_fd_close(
__wasi_fd_t fd
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_close"),
__warn_unused_result__
));
/**
* Synchronize the data of a file to disk.
* Note: This is similar to `fdatasync` in POSIX.
*/
__wasi_errno_t __wasi_fd_datasync(
__wasi_fd_t fd
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_datasync"),
__warn_unused_result__
));
/**
* Get the attributes of a file descriptor.
* Note: This returns similar flags to `fsync(fd, F_GETFL)` in POSIX, as well as additional fields.
*/
__wasi_errno_t __wasi_fd_fdstat_get(
__wasi_fd_t fd,
/**
* The buffer where the file descriptor's attributes are stored.
*/
__wasi_fdstat_t *stat
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_fdstat_get"),
__warn_unused_result__
));
/**
* Adjust the flags associated with a file descriptor.
* Note: This is similar to `fcntl(fd, F_SETFL, flags)` in POSIX.
*/
__wasi_errno_t __wasi_fd_fdstat_set_flags(
__wasi_fd_t fd,
/**
* The desired values of the file descriptor flags.
*/
__wasi_fdflags_t flags
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_fdstat_set_flags"),
__warn_unused_result__
));
/**
* Adjust the rights associated with a file descriptor.
* This can only be used to remove rights, and returns `errno::notcapable` if called in a way that would attempt to add rights
*/
__wasi_errno_t __wasi_fd_fdstat_set_rights(
__wasi_fd_t fd,
/**
* The desired rights of the file descriptor.
*/
__wasi_rights_t fs_rights_base,
__wasi_rights_t fs_rights_inheriting
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_fdstat_set_rights"),
__warn_unused_result__
));
/**
* Return the attributes of an open file.
*/
__wasi_errno_t __wasi_fd_filestat_get(
__wasi_fd_t fd,
/**
* The buffer where the file's attributes are stored.
*/
__wasi_filestat_t *buf
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_filestat_get"),
__warn_unused_result__
));
/**
* Adjust the size of an open file. If this increases the file's size, the extra bytes are filled with zeros.
* Note: This is similar to `ftruncate` in POSIX.
*/
__wasi_errno_t __wasi_fd_filestat_set_size(
__wasi_fd_t fd,
/**
* The desired file size.
*/
__wasi_filesize_t size
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_filestat_set_size"),
__warn_unused_result__
));
/**
* Adjust the timestamps of an open file or directory.
* Note: This is similar to `futimens` in POSIX.
*/
__wasi_errno_t __wasi_fd_filestat_set_times(
__wasi_fd_t fd,
/**
* The desired values of the data access timestamp.
*/
__wasi_timestamp_t atim,
/**
* The desired values of the data modification timestamp.
*/
__wasi_timestamp_t mtim,
/**
* A bitmask indicating which timestamps to adjust.
*/
__wasi_fstflags_t fst_flags
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_filestat_set_times"),
__warn_unused_result__
));
/**
* Read from a file descriptor, without using and updating the file descriptor's offset.
* Note: This is similar to `preadv` in POSIX.
*/
__wasi_errno_t __wasi_fd_pread(
__wasi_fd_t fd,
/**
* List of scatter/gather vectors in which to store data.
*/
const __wasi_iovec_t *iovs,
/**
* The length of the array pointed to by `iovs`.
*/
size_t iovs_len,
/**
* The offset within the file at which to read.
*/
__wasi_filesize_t offset,
/**
* The number of bytes read.
*/
__wasi_size_t *nread
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_pread"),
__warn_unused_result__
));
/**
* Return a description of the given preopened file descriptor.
*/
__wasi_errno_t __wasi_fd_prestat_get(
__wasi_fd_t fd,
/**
* The buffer where the description is stored.
*/
__wasi_prestat_t *buf
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_prestat_get"),
__warn_unused_result__
));
/**
* Return a description of the given preopened file descriptor.
*/
__wasi_errno_t __wasi_fd_prestat_dir_name(
__wasi_fd_t fd,
/**
* A buffer into which to write the preopened directory name.
*/
uint8_t * path,
__wasi_size_t path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_prestat_dir_name"),
__warn_unused_result__
));
/**
* Write to a file descriptor, without using and updating the file descriptor's offset.
* Note: This is similar to `pwritev` in POSIX.
*/
__wasi_errno_t __wasi_fd_pwrite(
__wasi_fd_t fd,
/**
* List of scatter/gather vectors from which to retrieve data.
*/
const __wasi_ciovec_t *iovs,
/**
* The length of the array pointed to by `iovs`.
*/
size_t iovs_len,
/**
* The offset within the file at which to write.
*/
__wasi_filesize_t offset,
/**
* The number of bytes written.
*/
__wasi_size_t *nwritten
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_pwrite"),
__warn_unused_result__
));
/**
* Read from a file descriptor.
* Note: This is similar to `readv` in POSIX.
*/
__wasi_errno_t __wasi_fd_read(
__wasi_fd_t fd,
/**
* List of scatter/gather vectors to which to store data.
*/
const __wasi_iovec_t *iovs,
/**
* The length of the array pointed to by `iovs`.
*/
size_t iovs_len,
/**
* The number of bytes read.
*/
__wasi_size_t *nread
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_read"),
__warn_unused_result__
));
/**
* Read directory entries from a directory.
* When successful, the contents of the output buffer consist of a sequence of
* directory entries. Each directory entry consists of a dirent_t object,
* followed by dirent_t::d_namlen bytes holding the name of the directory
* entry.
* This function fills the output buffer as much as possible, potentially
* truncating the last directory entry. This allows the caller to grow its
* read buffer size in case it's too small to fit a single large directory
* entry, or skip the oversized directory entry.
*/
__wasi_errno_t __wasi_fd_readdir(
__wasi_fd_t fd,
/**
* The buffer where directory entries are stored
*/
uint8_t * buf,
__wasi_size_t buf_len,
/**
* The location within the directory to start reading
*/
__wasi_dircookie_t cookie,
/**
* The number of bytes stored in the read buffer. If less than the size of the read buffer, the end of the directory has been reached.
*/
__wasi_size_t *bufused
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_readdir"),
__warn_unused_result__
));
/**
* Atomically replace a file descriptor by renumbering another file descriptor.
* Due to the strong focus on thread safety, this environment does not provide
* a mechanism to duplicate or renumber a file descriptor to an arbitrary
* number, like `dup2()`. This would be prone to race conditions, as an actual
* file descriptor with the same number could be allocated by a different
* thread at the same time.
* This function provides a way to atomically renumber file descriptors, which
* would disappear if `dup2()` were to be removed entirely.
*/
__wasi_errno_t __wasi_fd_renumber(
__wasi_fd_t fd,
/**
* The file descriptor to overwrite.
*/
__wasi_fd_t to
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_renumber"),
__warn_unused_result__
));
/**
* Move the offset of a file descriptor.
* Note: This is similar to `lseek` in POSIX.
*/
__wasi_errno_t __wasi_fd_seek(
__wasi_fd_t fd,
/**
* The number of bytes to move.
*/
__wasi_filedelta_t offset,
/**
* The base from which the offset is relative.
*/
__wasi_whence_t whence,
/**
* The new offset of the file descriptor, relative to the start of the file.
*/
__wasi_filesize_t *newoffset
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_seek"),
__warn_unused_result__
));
/**
* Synchronize the data and metadata of a file to disk.
* Note: This is similar to `fsync` in POSIX.
*/
__wasi_errno_t __wasi_fd_sync(
__wasi_fd_t fd
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_sync"),
__warn_unused_result__
));
/**
* Return the current offset of a file descriptor.
* Note: This is similar to `lseek(fd, 0, SEEK_CUR)` in POSIX.
*/
__wasi_errno_t __wasi_fd_tell(
__wasi_fd_t fd,
/**
* The current offset of the file descriptor, relative to the start of the file.
*/
__wasi_filesize_t *offset
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_tell"),
__warn_unused_result__
));
/**
* Write to a file descriptor.
* Note: This is similar to `writev` in POSIX.
*/
__wasi_errno_t __wasi_fd_write(
__wasi_fd_t fd,
/**
* List of scatter/gather vectors from which to retrieve data.
*/
const __wasi_ciovec_t *iovs,
/**
* The length of the array pointed to by `iovs`.
*/
size_t iovs_len,
/**
* The number of bytes written.
*/
__wasi_size_t *nwritten
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("fd_write"),
__warn_unused_result__
));
/**
* Create a directory.
* Note: This is similar to `mkdirat` in POSIX.
*/
__wasi_errno_t __wasi_path_create_directory(
__wasi_fd_t fd,
/**
* The path at which to create the directory.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_create_directory"),
__warn_unused_result__
));
/**
* Return the attributes of a file or directory.
* Note: This is similar to `stat` in POSIX.
*/
__wasi_errno_t __wasi_path_filestat_get(
__wasi_fd_t fd,
/**
* Flags determining the method of how the path is resolved.
*/
__wasi_lookupflags_t flags,
/**
* The path of the file or directory to inspect.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len,
/**
* The buffer where the file's attributes are stored.
*/
__wasi_filestat_t *buf
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_filestat_get"),
__warn_unused_result__
));
/**
* Adjust the timestamps of a file or directory.
* Note: This is similar to `utimensat` in POSIX.
*/
__wasi_errno_t __wasi_path_filestat_set_times(
__wasi_fd_t fd,
/**
* Flags determining the method of how the path is resolved.
*/
__wasi_lookupflags_t flags,
/**
* The path of the file or directory to operate on.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len,
/**
* The desired values of the data access timestamp.
*/
__wasi_timestamp_t atim,
/**
* The desired values of the data modification timestamp.
*/
__wasi_timestamp_t mtim,
/**
* A bitmask indicating which timestamps to adjust.
*/
__wasi_fstflags_t fst_flags
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_filestat_set_times"),
__warn_unused_result__
));
/**
* Create a hard link.
* Note: This is similar to `linkat` in POSIX.
*/
__wasi_errno_t __wasi_path_link(
__wasi_fd_t old_fd,
/**
* Flags determining the method of how the path is resolved.
*/
__wasi_lookupflags_t old_flags,
/**
* The source path from which to link.
*/
const char *old_path,
/**
* The length of the buffer pointed to by `old_path`.
*/
size_t old_path_len,
/**
* The working directory at which the resolution of the new path starts.
*/
__wasi_fd_t new_fd,
/**
* The destination path at which to create the hard link.
*/
const char *new_path,
/**
* The length of the buffer pointed to by `new_path`.
*/
size_t new_path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_link"),
__warn_unused_result__
));
/**
* Open a file or directory.
* The returned file descriptor is not guaranteed to be the lowest-numbered
* file descriptor not currently open; it is randomized to prevent
* applications from depending on making assumptions about indexes, since this
* is error-prone in multi-threaded contexts. The returned file descriptor is
* guaranteed to be less than 2**31.
* Note: This is similar to `openat` in POSIX.
*/
__wasi_errno_t __wasi_path_open(
__wasi_fd_t fd,
/**
* Flags determining the method of how the path is resolved.
*/
__wasi_lookupflags_t dirflags,
/**
* The relative path of the file or directory to open, relative to the
* `path_open::fd` directory.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len,
/**
* The method by which to open the file.
*/
__wasi_oflags_t oflags,
/**
* The initial rights of the newly created file descriptor. The
* implementation is allowed to return a file descriptor with fewer rights
* than specified, if and only if those rights do not apply to the type of
* file being opened.
* The *base* rights are rights that will apply to operations using the file
* descriptor itself, while the *inheriting* rights are rights that apply to
* file descriptors derived from it.
*/
__wasi_rights_t fs_rights_base,
__wasi_rights_t fs_rights_inherting,
__wasi_fdflags_t fdflags,
/**
* The file descriptor of the file that has been opened.
*/
__wasi_fd_t *opened_fd
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_open"),
__warn_unused_result__
));
/**
* Read the contents of a symbolic link.
* Note: This is similar to `readlinkat` in POSIX.
*/
__wasi_errno_t __wasi_path_readlink(
__wasi_fd_t fd,
/**
* The path of the symbolic link from which to read.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len,
/**
* The buffer to which to write the contents of the symbolic link.
*/
uint8_t * buf,
__wasi_size_t buf_len,
/**
* The number of bytes placed in the buffer.
*/
__wasi_size_t *bufused
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_readlink"),
__warn_unused_result__
));
/**
* Remove a directory.
* Return `errno::notempty` if the directory is not empty.
* Note: This is similar to `unlinkat(fd, path, AT_REMOVEDIR)` in POSIX.
*/
__wasi_errno_t __wasi_path_remove_directory(
__wasi_fd_t fd,
/**
* The path to a directory to remove.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_remove_directory"),
__warn_unused_result__
));
/**
* Rename a file or directory.
* Note: This is similar to `renameat` in POSIX.
*/
__wasi_errno_t __wasi_path_rename(
__wasi_fd_t fd,
/**
* The source path of the file or directory to rename.
*/
const char *old_path,
/**
* The length of the buffer pointed to by `old_path`.
*/
size_t old_path_len,
/**
* The working directory at which the resolution of the new path starts.
*/
__wasi_fd_t new_fd,
/**
* The destination path to which to rename the file or directory.
*/
const char *new_path,
/**
* The length of the buffer pointed to by `new_path`.
*/
size_t new_path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_rename"),
__warn_unused_result__
));
/**
* Create a symbolic link.
* Note: This is similar to `symlinkat` in POSIX.
*/
__wasi_errno_t __wasi_path_symlink(
/**
* The contents of the symbolic link.
*/
const char *old_path,
/**
* The length of the buffer pointed to by `old_path`.
*/
size_t old_path_len,
__wasi_fd_t fd,
/**
* The destination path at which to create the symbolic link.
*/
const char *new_path,
/**
* The length of the buffer pointed to by `new_path`.
*/
size_t new_path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_symlink"),
__warn_unused_result__
));
/**
* Unlink a file.
* Return `errno::isdir` if the path refers to a directory.
* Note: This is similar to `unlinkat(fd, path, 0)` in POSIX.
*/
__wasi_errno_t __wasi_path_unlink_file(
__wasi_fd_t fd,
/**
* The path to a file to unlink.
*/
const char *path,
/**
* The length of the buffer pointed to by `path`.
*/
size_t path_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("path_unlink_file"),
__warn_unused_result__
));
/**
* Concurrently poll for the occurrence of a set of events.
*/
__wasi_errno_t __wasi_poll_oneoff(
/**
* The events to which to subscribe.
*/
const __wasi_subscription_t * in,
/**
* The events that have occurred.
*/
__wasi_event_t * out,
/**
* Both the number of subscriptions and events.
*/
__wasi_size_t nsubscriptions,
/**
* The number of events stored.
*/
__wasi_size_t *nevents
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("poll_oneoff"),
__warn_unused_result__
));
/**
* Terminate the process normally. An exit code of 0 indicates successful
* termination of the program. The meanings of other values is dependent on
* the environment.
*/
_Noreturn void __wasi_proc_exit(
/**
* The exit code returned by the process.
*/
__wasi_exitcode_t rval
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("proc_exit")));
/**
* Send a signal to the process of the calling thread.
* Note: This is similar to `raise` in POSIX.
*/
__wasi_errno_t __wasi_proc_raise(
/**
* The signal condition to trigger.
*/
__wasi_signal_t sig
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("proc_raise"),
__warn_unused_result__
));
/**
* Temporarily yield execution of the calling thread.
* Note: This is similar to `sched_yield` in POSIX.
*/
__wasi_errno_t __wasi_sched_yield(
void
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("sched_yield"),
__warn_unused_result__
));
/**
* Write high-quality random data into a buffer.
* This function blocks when the implementation is unable to immediately
* provide sufficient high-quality random data.
* This function may execute slowly, so when large mounts of random data are
* required, it's advisable to use this function to seed a pseudo-random
* number generator, rather than to provide the random data directly.
*/
__wasi_errno_t __wasi_random_get(
/**
* The buffer to fill with random data.
*/
uint8_t * buf,
__wasi_size_t buf_len
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("random_get"),
__warn_unused_result__
));
/**
* Receive a message from a socket.
* Note: This is similar to `recv` in POSIX, though it also supports reading
* the data into multiple buffers in the manner of `readv`.
*/
__wasi_errno_t __wasi_sock_recv(
__wasi_fd_t fd,
/**
* List of scatter/gather vectors to which to store data.
*/
const __wasi_iovec_t *ri_data,
/**
* The length of the array pointed to by `ri_data`.
*/
size_t ri_data_len,
/**
* Message flags.
*/
__wasi_riflags_t ri_flags,
/**
* Number of bytes stored in ri_data.
*/
__wasi_size_t *ro_datalen,
/**
* Message flags.
*/
__wasi_roflags_t *ro_flags
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("sock_recv"),
__warn_unused_result__
));
/**
* Send a message on a socket.
* Note: This is similar to `send` in POSIX, though it also supports writing
* the data from multiple buffers in the manner of `writev`.
*/
__wasi_errno_t __wasi_sock_send(
__wasi_fd_t fd,
/**
* List of scatter/gather vectors to which to retrieve data
*/
const __wasi_ciovec_t *si_data,
/**
* The length of the array pointed to by `si_data`.
*/
size_t si_data_len,
/**
* Message flags.
*/
__wasi_siflags_t si_flags,
/**
* Number of bytes transmitted.
*/
__wasi_size_t *so_datalen
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("sock_send"),
__warn_unused_result__
));
/**
* Shut down socket send and receive channels.
* Note: This is similar to `shutdown` in POSIX.
*/
__wasi_errno_t __wasi_sock_shutdown(
__wasi_fd_t fd,
/**
* Which channels on the socket to shut down.
*/
__wasi_sdflags_t how
) __attribute__((
__import_module__("wasi_snapshot_preview1"),
__import_name__("sock_shutdown"),
__warn_unused_result__
));
/** @} */
#ifdef __cplusplus
}
#endif
#pragma pop_macro("_Static_assert")
#endif
|