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 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741
|
#define PERL_EXT_POSIX
#define PERL_EXT
#if defined(_WIN32) && defined(__GNUC__) /* mingw compiler */
#define _POSIX_
#endif
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#define PERLIO_NOT_STDIO 1
#include "perl.h"
#include "XSUB.h"
static int not_here(const char *s);
#if defined(__MINGW32__) && !defined(USE_QUADMATH)
/* If nvtype is long double, the bessel functions still
* operate at "double precision" only - as in the past.
* Mingw's math.h makes no provision for j0l, y0l, etc.
*
* Unfortunately the mingw64 supplied headers cannot be
* convinced to declare these functions with -std=c99.
*/
double __cdecl _hypot(double x, double y);
double __cdecl _j0(double d);
double __cdecl _j1(double d);
double __cdecl _jn(int n, double d);
double __cdecl _y0(double d);
double __cdecl _y1(double d);
double __cdecl _yn(int n, double d);
#endif
#if defined(PERL_IMPLICIT_SYS)
# undef signal
# undef open
# undef setmode
# define open PerlLIO_open3
#endif
#include <ctype.h>
#ifdef I_DIRENT /* XXX maybe better to just rely on perl.h? */
#include <dirent.h>
#endif
#include <errno.h>
#ifdef WIN32
#include <sys/errno2.h>
#endif
#include <float.h>
#ifdef I_FENV
#if !(defined(__vax__) && defined(__NetBSD__))
#include <fenv.h>
#endif
#endif
#include <limits.h>
#include <locale.h>
#include <math.h>
#ifdef I_PWD
#include <pwd.h>
#endif
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>
#ifdef I_UNISTD
#include <unistd.h>
#endif
#ifdef I_SYS_TIME
# include <sys/time.h>
#endif
#ifdef I_SYS_RESOURCE
# include <sys/resource.h>
#endif
/* Cygwin's stdio.h doesn't make cuserid() visible with -D_GNU_SOURCE,
unlike Linux.
*/
#ifdef __CYGWIN__
# undef HAS_CUSERID
#endif
#if defined(USE_QUADMATH) && defined(I_QUADMATH)
# undef M_E
# undef M_LOG2E
# undef M_LOG10E
# undef M_LN2
# undef M_LN10
# undef M_PI
# undef M_PI_2
# undef M_PI_4
# undef M_1_PI
# undef M_2_PI
# undef M_2_SQRTPI
# undef M_SQRT2
# undef M_SQRT1_2
# define M_E M_Eq
# define M_LOG2E M_LOG2Eq
# define M_LOG10E M_LOG10Eq
# define M_LN2 M_LN2q
# define M_LN10 M_LN10q
# define M_PI M_PIq
# define M_PI_2 M_PI_2q
# define M_PI_4 M_PI_4q
# define M_1_PI M_1_PIq
# define M_2_PI M_2_PIq
# define M_2_SQRTPI M_2_SQRTPIq
# define M_SQRT2 M_SQRT2q
# define M_SQRT1_2 M_SQRT1_2q
#else
# ifdef USE_LONG_DOUBLE
# undef M_E
# undef M_LOG2E
# undef M_LOG10E
# undef M_LN2
# undef M_LN10
# undef M_PI
# undef M_PI_2
# undef M_PI_4
# undef M_1_PI
# undef M_2_PI
# undef M_2_SQRTPI
# undef M_SQRT2
# undef M_SQRT1_2
# define FLOAT_C(c) CAT2(c,L)
# else
# define FLOAT_C(c) (c)
# endif
# ifndef M_E
# define M_E FLOAT_C(2.71828182845904523536028747135266250)
# endif
# ifndef M_LOG2E
# define M_LOG2E FLOAT_C(1.44269504088896340735992468100189214)
# endif
# ifndef M_LOG10E
# define M_LOG10E FLOAT_C(0.434294481903251827651128918916605082)
# endif
# ifndef M_LN2
# define M_LN2 FLOAT_C(0.693147180559945309417232121458176568)
# endif
# ifndef M_LN10
# define M_LN10 FLOAT_C(2.30258509299404568401799145468436421)
# endif
# ifndef M_PI
# define M_PI FLOAT_C(3.14159265358979323846264338327950288)
# endif
# ifndef M_PI_2
# define M_PI_2 FLOAT_C(1.57079632679489661923132169163975144)
# endif
# ifndef M_PI_4
# define M_PI_4 FLOAT_C(0.785398163397448309615660845819875721)
# endif
# ifndef M_1_PI
# define M_1_PI FLOAT_C(0.318309886183790671537767526745028724)
# endif
# ifndef M_2_PI
# define M_2_PI FLOAT_C(0.636619772367581343075535053490057448)
# endif
# ifndef M_2_SQRTPI
# define M_2_SQRTPI FLOAT_C(1.12837916709551257389615890312154517)
# endif
# ifndef M_SQRT2
# define M_SQRT2 FLOAT_C(1.41421356237309504880168872420969808)
# endif
# ifndef M_SQRT1_2
# define M_SQRT1_2 FLOAT_C(0.707106781186547524400844362104849039)
# endif
#endif
#if !defined(INFINITY) && defined(NV_INF)
# define INFINITY NV_INF
#endif
#if !defined(NAN) && defined(NV_NAN)
# define NAN NV_NAN
#endif
#if !defined(Inf) && defined(NV_INF)
# define Inf NV_INF
#endif
#if !defined(NaN) && defined(NV_NAN)
# define NaN NV_NAN
#endif
/* We will have an emulation. */
#ifndef FP_INFINITE
# define FP_INFINITE 0
# define FP_NAN 1
# define FP_NORMAL 2
# define FP_SUBNORMAL 3
# define FP_ZERO 4
#endif
/* We will have an emulation. */
#ifndef FE_TONEAREST
# define FE_TOWARDZERO 0
# define FE_TONEAREST 1
# define FE_UPWARD 2
# define FE_DOWNWARD 3
#endif
/* C89 math.h:
acos asin atan atan2 ceil cos cosh exp fabs floor fmod frexp ldexp
log log10 modf pow sin sinh sqrt tan tanh
* Implemented in core:
atan2 cos exp log pow sin sqrt
* C99 math.h added:
acosh asinh atanh cbrt copysign erf erfc exp2 expm1 fdim fma fmax
fmin fpclassify hypot ilogb isfinite isgreater isgreaterequal isinf
isless islessequal islessgreater isnan isnormal isunordered lgamma
log1p log2 logb lrint lround nan nearbyint nextafter nexttoward remainder
remquo rint round scalbn signbit tgamma trunc
See:
http://pubs.opengroup.org/onlinepubs/009695399/basedefs/math.h.html
* Berkeley/SVID extensions:
j0 j1 jn y0 y1 yn
* Configure already (5.21.5) scans for:
copysign*l* fpclassify isfinite isinf isnan isnan*l* ilogb*l* signbit scalbn*l*
* For floating-point round mode (which matters for e.g. lrint and rint)
fegetround fesetround
*/
/* XXX Constant FP_FAST_FMA (if true, FMA is faster) */
/* XXX Add ldiv(), lldiv()? It's C99, but from stdlib.h, not math.h */
/* XXX Beware old gamma() -- one cannot know whether that is the
* gamma or the log of gamma, that's why the new tgamma and lgamma.
* Though also remember lgamma_r. */
/* Certain AIX releases have the C99 math, but not in long double.
* The <math.h> has them, e.g. __expl128, but no library has them!
*
* Also see the comments in hints/aix.sh about long doubles. */
#if defined(USE_QUADMATH) && defined(I_QUADMATH)
# define c99_acosh acoshq
# define c99_asinh asinhq
# define c99_atanh atanhq
# define c99_cbrt cbrtq
# define c99_copysign copysignq
# define c99_erf erfq
# define c99_erfc erfcq
/* no exp2q */
# define c99_expm1 expm1q
# define c99_fdim fdimq
# define c99_fma fmaq
# define c99_fmax fmaxq
# define c99_fmin fminq
# define c99_hypot hypotq
# define c99_ilogb ilogbq
# define c99_lgamma lgammaq
# define c99_log1p log1pq
# define c99_log2 log2q
/* no logbq */
# if defined(USE_64_BIT_INT) && QUADKIND == QUAD_IS_LONG_LONG
# define c99_lrint llrintq
# define c99_lround llroundq
# else
# define c99_lrint lrintq
# define c99_lround lroundq
# endif
# define c99_nan nanq
# define c99_nearbyint nearbyintq
# define c99_nextafter nextafterq
/* no nexttowardq */
# define c99_remainder remainderq
# define c99_remquo remquoq
# define c99_rint rintq
# define c99_round roundq
# define c99_scalbn scalbnq
/* We already define Perl_signbit to signbitq in perl.h. */
# define c99_tgamma tgammaq
# define c99_trunc truncq
# define bessel_j0 j0q
# define bessel_j1 j1q
# define bessel_jn jnq
# define bessel_y0 y0q
# define bessel_y1 y1q
# define bessel_yn ynq
#elif defined(USE_LONG_DOUBLE) && \
(defined(HAS_FREXPL) || defined(HAS_ILOGBL)) && defined(HAS_SQRTL)
/* Use some of the Configure scans for long double math functions
* as the canary for all the C99 *l variants being defined. */
# define c99_acosh acoshl
# define c99_asinh asinhl
# define c99_atanh atanhl
# define c99_cbrt cbrtl
# define c99_copysign copysignl
# define c99_erf erfl
# define c99_erfc erfcl
# define c99_exp2 exp2l
# define c99_expm1 expm1l
# define c99_fdim fdiml
# define c99_fma fmal
# define c99_fmax fmaxl
# define c99_fmin fminl
# define c99_hypot hypotl
# define c99_ilogb ilogbl
# define c99_lgamma lgammal
# define c99_log1p log1pl
# define c99_log2 log2l
# define c99_logb logbl
# if defined(USE_64_BIT_INT) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LLRINTL)
# define c99_lrint llrintl
# elif defined(HAS_LRINTL)
# define c99_lrint lrintl
# endif
# if defined(USE_64_BIT_INT) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LLROUNDL)
# define c99_lround llroundl
# elif defined(HAS_LROUNDL)
# define c99_lround lroundl
# endif
# define c99_nan nanl
# define c99_nearbyint nearbyintl
# define c99_nextafter nextafterl
# define c99_nexttoward nexttowardl
# define c99_remainder remainderl
# define c99_remquo remquol
# define c99_rint rintl
# define c99_round roundl
# define c99_scalbn scalbnl
/* We already define Perl_signbit in perl.h. */
# define c99_tgamma tgammal
# define c99_trunc truncl
#else
# define c99_acosh acosh
# define c99_asinh asinh
# define c99_atanh atanh
# define c99_cbrt cbrt
# define c99_copysign copysign
# define c99_erf erf
# define c99_erfc erfc
# define c99_exp2 exp2
# define c99_expm1 expm1
# define c99_fdim fdim
# define c99_fma fma
# define c99_fmax fmax
# define c99_fmin fmin
# define c99_hypot hypot
# define c99_ilogb ilogb
# define c99_lgamma lgamma
# define c99_log1p log1p
# define c99_log2 log2
# define c99_logb logb
# if defined(USE_64_BIT_INT) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LLRINT)
# define c99_lrint llrint
# else
# define c99_lrint lrint
# endif
# if defined(USE_64_BIT_INT) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LLROUND)
# define c99_lround llround
# else
# define c99_lround lround
# endif
# define c99_nan nan
# define c99_nearbyint nearbyint
# define c99_nextafter nextafter
# define c99_nexttoward nexttoward
# define c99_remainder remainder
# define c99_remquo remquo
# define c99_rint rint
# define c99_round round
# define c99_scalbn scalbn
/* We already define Perl_signbit in perl.h. */
# define c99_tgamma tgamma
# define c99_trunc trunc
#endif
/* AIX xlc (__IBMC__) really doesn't have the following long double
* math interfaces (no __acoshl128 aka acoshl, etc.), see
* hints/aix.sh. These are in the -lc128 but fail to be found
* during dynamic linking/loading.
*
* XXX1 Better Configure scans
* XXX2 Is this xlc version dependent? */
#if defined(USE_LONG_DOUBLE) && defined(__IBMC__)
# undef c99_acosh
# undef c99_asinh
# undef c99_atanh
# undef c99_cbrt
# undef c99_copysign
# undef c99_exp2
# undef c99_expm1
# undef c99_fdim
# undef c99_fma
# undef c99_fmax
# undef c99_fmin
# undef c99_hypot
# undef c99_ilogb
# undef c99_lrint
# undef c99_lround
# undef c99_log1p
# undef c99_log2
# undef c99_logb
# undef c99_nan
# undef c99_nearbyint
# undef c99_nextafter
# undef c99_nexttoward
# undef c99_remainder
# undef c99_remquo
# undef c99_rint
# undef c99_round
# undef c99_scalbn
# undef c99_tgamma
# undef c99_trunc
#endif
/* The cc with NetBSD 8.0 and 9.0 claims to be a C11 hosted compiler,
* but doesn't define several functions required by C99, let alone C11.
* http://gnats.netbsd.org/53234
*/
#if defined(USE_LONG_DOUBLE) && defined(__NetBSD__) \
&& !defined(NETBSD_HAVE_FIXED_LONG_DOUBLE_MATH)
# undef c99_expm1
# undef c99_lgamma
# undef c99_log1p
# undef c99_log2
# undef c99_nexttoward
# undef c99_remainder
# undef c99_remquo
# undef c99_tgamma
#endif
#ifndef isunordered
# ifdef Perl_isnan
# define isunordered(x, y) (Perl_isnan(x) || Perl_isnan(y))
# elif defined(HAS_UNORDERED)
# define isunordered(x, y) unordered(x, y)
# endif
#endif
/* XXX these isgreater/isnormal/isunordered macros definitions should
* be moved further in the file to be part of the emulations, so that
* platforms can e.g. #undef c99_isunordered and have it work like
* it does for the other interfaces. */
#if !defined(isgreater) && defined(isunordered)
# define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
# define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
# define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
# define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
# define islessgreater(x, y) (!isunordered((x), (y)) && \
((x) > (y) || (y) > (x)))
#endif
/* Check both the Configure symbol and the macro-ness (like C99 promises). */
#if defined(HAS_FPCLASSIFY) && defined(fpclassify)
# define c99_fpclassify fpclassify
#endif
/* Like isnormal(), the isfinite(), isinf(), and isnan() are also C99
and also (sizeof-arg-aware) macros, but they are already well taken
care of by Configure et al, and defined in perl.h as
Perl_isfinite(), Perl_isinf(), and Perl_isnan(). */
#ifdef isnormal
# define c99_isnormal isnormal
#endif
#ifdef isgreater /* canary for all the C99 is*<cmp>* macros. */
# define c99_isgreater isgreater
# define c99_isgreaterequal isgreaterequal
# define c99_isless isless
# define c99_islessequal islessequal
# define c99_islessgreater islessgreater
# define c99_isunordered isunordered
#endif
/* The Great Wall of Undef where according to the definedness of HAS_FOO symbols
* the corresponding c99_foo wrappers are undefined. This list doesn't include
* the isfoo() interfaces because they are either type-aware macros, or dealt
* separately, already in perl.h */
#ifndef HAS_ACOSH
# undef c99_acosh
#endif
#ifndef HAS_ASINH
# undef c99_asinh
#endif
#ifndef HAS_ATANH
# undef c99_atanh
#endif
#ifndef HAS_CBRT
# undef c99_cbrt
#endif
#ifndef HAS_COPYSIGN
# undef c99_copysign
#endif
#ifndef HAS_ERF
# undef c99_erf
#endif
#ifndef HAS_ERFC
# undef c99_erfc
#endif
#ifndef HAS_EXP2
# undef c99_exp2
#endif
#ifndef HAS_EXPM1
# undef c99_expm1
#endif
#ifndef HAS_FDIM
# undef c99_fdim
#endif
#ifndef HAS_FMA
# undef c99_fma
#endif
#ifndef HAS_FMAX
# undef c99_fmax
#endif
#ifndef HAS_FMIN
# undef c99_fmin
#endif
#ifndef HAS_FPCLASSIFY
# undef c99_fpclassify
#endif
#ifndef HAS_HYPOT
# undef c99_hypot
#endif
#ifndef HAS_ILOGB
# undef c99_ilogb
#endif
#ifndef HAS_LGAMMA
# undef c99_lgamma
#endif
#ifndef HAS_LOG1P
# undef c99_log1p
#endif
#ifndef HAS_LOG2
# undef c99_log2
#endif
#ifndef HAS_LOGB
# undef c99_logb
#endif
#ifndef HAS_LRINT
# undef c99_lrint
#endif
#ifndef HAS_LROUND
# undef c99_lround
#endif
#ifndef HAS_NAN
# undef c99_nan
#endif
#ifndef HAS_NEARBYINT
# undef c99_nearbyint
#endif
#ifndef HAS_NEXTAFTER
# undef c99_nextafter
#endif
#ifndef HAS_NEXTTOWARD
# undef c99_nexttoward
#endif
#ifndef HAS_REMAINDER
# undef c99_remainder
#endif
#ifndef HAS_REMQUO
# undef c99_remquo
#endif
#ifndef HAS_RINT
# undef c99_rint
#endif
#ifndef HAS_ROUND
# undef c99_round
#endif
#ifndef HAS_SCALBN
# undef c99_scalbn
#endif
#ifndef HAS_TGAMMA
# undef c99_tgamma
#endif
#ifndef HAS_TRUNC
# undef c99_trunc
#endif
#if defined(_MSC_VER) || (defined(__MINGW32__) && !defined(USE_QUADMATH))
/* Some APIs exist under Win32 with "underbar" names. */
# undef c99_hypot
# undef c99_logb
# undef c99_nextafter
# define c99_hypot _hypot
# define c99_logb _logb
# define c99_nextafter _nextafter
# define bessel_j0 _j0
# define bessel_j1 _j1
# define bessel_jn _jn
# define bessel_y0 _y0
# define bessel_y1 _y1
# define bessel_yn _yn
#endif
/* The Bessel functions: BSD, SVID, XPG4, and POSIX. But not C99. */
#if defined(HAS_J0) && !defined(bessel_j0)
# if defined(USE_LONG_DOUBLE) && defined(HAS_J0L)
# define bessel_j0 j0l
# define bessel_j1 j1l
# define bessel_jn jnl
# define bessel_y0 y0l
# define bessel_y1 y1l
# define bessel_yn ynl
# else
# define bessel_j0 j0
# define bessel_j1 j1
# define bessel_jn jn
# define bessel_y0 y0
# define bessel_y1 y1
# define bessel_yn yn
# endif
#endif
/* Emulations for missing math APIs.
*
* Keep in mind that the point of many of these functions is that
* they, if available, are supposed to give more precise/more
* numerically stable results.
*
* See e.g. http://www.johndcook.com/math_h.html
*/
#ifndef c99_acosh
static NV my_acosh(NV x)
{
return Perl_log(x + Perl_sqrt(x * x - 1));
}
# define c99_acosh my_acosh
#endif
#ifndef c99_asinh
static NV my_asinh(NV x)
{
return Perl_log(x + Perl_sqrt(x * x + 1));
}
# define c99_asinh my_asinh
#endif
#ifndef c99_atanh
static NV my_atanh(NV x)
{
return (Perl_log(1 + x) - Perl_log(1 - x)) / 2;
}
# define c99_atanh my_atanh
#endif
#ifndef c99_cbrt
static NV my_cbrt(NV x)
{
static const NV one_third = (NV)1.0/3;
return x >= 0.0 ? Perl_pow(x, one_third) : -Perl_pow(-x, one_third);
}
# define c99_cbrt my_cbrt
#endif
#ifndef c99_copysign
static NV my_copysign(NV x, NV y)
{
return y >= 0 ? (x < 0 ? -x : x) : (x < 0 ? x : -x);
}
# define c99_copysign my_copysign
#endif
/* XXX cosh (though c89) */
#ifndef c99_erf
static NV my_erf(NV x)
{
/* http://www.johndcook.com/cpp_erf.html -- public domain */
NV a1 = 0.254829592;
NV a2 = -0.284496736;
NV a3 = 1.421413741;
NV a4 = -1.453152027;
NV a5 = 1.061405429;
NV p = 0.3275911;
NV t, y;
int sign = x < 0 ? -1 : 1; /* Save the sign. */
x = PERL_ABS(x);
/* Abramowitz and Stegun formula 7.1.26 */
t = 1.0 / (1.0 + p * x);
y = 1.0 - (((((a5*t + a4)*t) + a3)*t + a2)*t + a1) * t * Perl_exp(-x*x);
return sign * y;
}
# define c99_erf my_erf
#endif
#ifndef c99_erfc
static NV my_erfc(NV x) {
/* This is not necessarily numerically stable, but better than nothing. */
return 1.0 - c99_erf(x);
}
# define c99_erfc my_erfc
#endif
#ifndef c99_exp2
static NV my_exp2(NV x)
{
return Perl_pow((NV)2.0, x);
}
# define c99_exp2 my_exp2
#endif
#ifndef c99_expm1
static NV my_expm1(NV x)
{
if (PERL_ABS(x) < 1e-5)
/* http://www.johndcook.com/cpp_expm1.html -- public domain.
* Taylor series, the first four terms (the last term quartic). */
/* Probably not enough for long doubles. */
return x * (1.0 + x * (1/2.0 + x * (1/6.0 + x/24.0)));
else
return Perl_exp(x) - 1;
}
# define c99_expm1 my_expm1
#endif
#ifndef c99_fdim
static NV my_fdim(NV x, NV y)
{
#ifdef NV_NAN
return (Perl_isnan(x) || Perl_isnan(y)) ? NV_NAN : (x > y ? x - y : 0);
#else
return (x > y ? x - y : 0);
#endif
}
# define c99_fdim my_fdim
#endif
#ifndef c99_fma
static NV my_fma(NV x, NV y, NV z)
{
return (x * y) + z;
}
# define c99_fma my_fma
#endif
#ifndef c99_fmax
static NV my_fmax(NV x, NV y)
{
#ifdef NV_NAN
if (Perl_isnan(x)) {
return Perl_isnan(y) ? NV_NAN : y;
} else if (Perl_isnan(y)) {
return x;
}
#endif
return x > y ? x : y;
}
# define c99_fmax my_fmax
#endif
#ifndef c99_fmin
static NV my_fmin(NV x, NV y)
{
#ifdef NV_NAN
if (Perl_isnan(x)) {
return Perl_isnan(y) ? NV_NAN : y;
} else if (Perl_isnan(y)) {
return x;
}
#endif
return x < y ? x : y;
}
# define c99_fmin my_fmin
#endif
#ifndef c99_fpclassify
static IV my_fpclassify(NV x)
{
#ifdef Perl_fp_class_inf
if (Perl_fp_class_inf(x)) return FP_INFINITE;
if (Perl_fp_class_nan(x)) return FP_NAN;
if (Perl_fp_class_norm(x)) return FP_NORMAL;
if (Perl_fp_class_denorm(x)) return FP_SUBNORMAL;
if (Perl_fp_class_zero(x)) return FP_ZERO;
# define c99_fpclassify my_fpclassify
#endif
return -1;
}
#endif
#ifndef c99_hypot
static NV my_hypot(NV x, NV y)
{
/* http://en.wikipedia.org/wiki/Hypot */
NV t;
x = PERL_ABS(x); /* Take absolute values. */
if (y == 0)
return x;
#ifdef NV_INF
if (Perl_isnan(y))
return NV_INF;
#endif
y = PERL_ABS(y);
if (x < y) { /* Swap so that y is less. */
t = x;
x = y;
y = t;
}
t = y / x;
return x * Perl_sqrt(1.0 + t * t);
}
# define c99_hypot my_hypot
#endif
#ifndef c99_ilogb
static IV my_ilogb(NV x)
{
return (IV)(Perl_log(x) * M_LOG2E);
}
# define c99_ilogb my_ilogb
#endif
/* tgamma and lgamma emulations based on
* http://www.johndcook.com/cpp_gamma.html,
* code placed in public domain.
*
* Note that these implementations (neither the johndcook originals
* nor these) do NOT set the global signgam variable. This is not
* necessarily a bad thing. */
/* Note that the tgamma() and lgamma() implementations
* here depend on each other. */
#if !defined(HAS_TGAMMA) || !defined(c99_tgamma)
static NV my_tgamma(NV x);
# define c99_tgamma my_tgamma
# define USE_MY_TGAMMA
#endif
#if !defined(HAS_LGAMMA) || !defined(c99_lgamma)
static NV my_lgamma(NV x);
# define c99_lgamma my_lgamma
# define USE_MY_LGAMMA
#endif
#ifdef USE_MY_TGAMMA
static NV my_tgamma(NV x)
{
const NV gamma = 0.577215664901532860606512090; /* Euler's gamma constant. */
#ifdef NV_NAN
if (Perl_isnan(x) || x < 0.0)
return NV_NAN;
#endif
#ifdef NV_INF
if (x == 0.0 || x == NV_INF)
#ifdef DOUBLE_IS_IEEE_FORMAT
return x == -0.0 ? -NV_INF : NV_INF;
#else
return NV_INF;
#endif
#endif
/* The function domain is split into three intervals:
* (0, 0.001), [0.001, 12), and (12, infinity) */
/* First interval: (0, 0.001)
* For small values, 1/tgamma(x) has power series x + gamma x^2,
* so in this range, 1/tgamma(x) = x + gamma x^2 with error on the order of x^3.
* The relative error over this interval is less than 6e-7. */
if (x < 0.001)
return 1.0 / (x * (1.0 + gamma * x));
/* Second interval: [0.001, 12) */
if (x < 12.0) {
double y = x; /* Working copy. */
int n = 0;
/* Numerator coefficients for approximation over the interval (1,2) */
static const NV p[] = {
-1.71618513886549492533811E+0,
2.47656508055759199108314E+1,
-3.79804256470945635097577E+2,
6.29331155312818442661052E+2,
8.66966202790413211295064E+2,
-3.14512729688483675254357E+4,
-3.61444134186911729807069E+4,
6.64561438202405440627855E+4
};
/* Denominator coefficients for approximation over the interval (1, 2) */
static const NV q[] = {
-3.08402300119738975254353E+1,
3.15350626979604161529144E+2,
-1.01515636749021914166146E+3,
-3.10777167157231109440444E+3,
2.25381184209801510330112E+4,
4.75584627752788110767815E+3,
-1.34659959864969306392456E+5,
-1.15132259675553483497211E+5
};
NV num = 0.0;
NV den = 1.0;
NV z;
NV result;
int i;
if (x < 1.0)
y += 1.0;
else {
n = (int)Perl_floor(y) - 1;
y -= n;
}
z = y - 1;
for (i = 0; i < 8; i++) {
num = (num + p[i]) * z;
den = den * z + q[i];
}
result = num / den + 1.0;
if (x < 1.0) {
/* Use the identity tgamma(z) = tgamma(z+1)/z
* The variable "result" now holds tgamma of the original y + 1
* Thus we use y - 1 to get back the original y. */
result /= (y - 1.0);
}
else {
/* Use the identity tgamma(z+n) = z*(z+1)* ... *(z+n-1)*tgamma(z) */
for (i = 0; i < n; i++)
result *= y++;
}
return result;
}
#ifdef NV_INF
/* Third interval: [12, +Inf) */
#if LDBL_MANT_DIG == 113 /* IEEE quad prec */
if (x > 1755.548) {
return NV_INF;
}
#else
if (x > 171.624) {
return NV_INF;
}
#endif
#endif
return Perl_exp(c99_lgamma(x));
}
#endif
#ifdef USE_MY_LGAMMA
static NV my_lgamma(NV x)
{
#ifdef NV_NAN
if (Perl_isnan(x))
return NV_NAN;
#endif
#ifdef NV_INF
if (x <= 0 || x == NV_INF)
return NV_INF;
#endif
if (x == 1.0 || x == 2.0)
return 0;
if (x < 12.0)
return Perl_log(PERL_ABS(c99_tgamma(x)));
/* Abramowitz and Stegun 6.1.41
* Asymptotic series should be good to at least 11 or 12 figures
* For error analysis, see Whittiker and Watson
* A Course in Modern Analysis (1927), page 252 */
{
static const NV c[8] = {
1.0/12.0,
-1.0/360.0,
1.0/1260.0,
-1.0/1680.0,
1.0/1188.0,
-691.0/360360.0,
1.0/156.0,
-3617.0/122400.0
};
NV z = 1.0 / (x * x);
NV sum = c[7];
static const NV half_log_of_two_pi =
0.91893853320467274178032973640562;
NV series;
int i;
for (i = 6; i >= 0; i--) {
sum *= z;
sum += c[i];
}
series = sum / x;
return (x - 0.5) * Perl_log(x) - x + half_log_of_two_pi + series;
}
}
#endif
#ifndef c99_log1p
static NV my_log1p(NV x)
{
/* http://www.johndcook.com/cpp_log_one_plus_x.html -- public domain.
* Taylor series, the first four terms (the last term quartic). */
#ifdef NV_NAN
if (x < -1.0)
return NV_NAN;
#endif
#ifdef NV_INF
if (x == -1.0)
return -NV_INF;
#endif
if (PERL_ABS(x) > 1e-4)
return Perl_log(1.0 + x);
else
/* Probably not enough for long doubles. */
return x * (1.0 + x * (-1/2.0 + x * (1/3.0 - x/4.0)));
}
# define c99_log1p my_log1p
#endif
#ifndef c99_log2
static NV my_log2(NV x)
{
return Perl_log(x) * M_LOG2E;
}
# define c99_log2 my_log2
#endif
/* XXX nextafter */
/* XXX nexttoward */
/* GCC's FLT_ROUNDS is (wrongly) hardcoded to 1 (at least up to 11.x) */
#if defined(PERL_IS_GCC) /* && __GNUC__ < XXX */ || (defined(__clang__) && defined(__s390x__))
# define BROKEN_FLT_ROUNDS
#endif
static int my_fegetround()
{
#ifdef HAS_FEGETROUND
return fegetround();
#elif defined(HAS_FPGETROUND)
switch (fpgetround()) {
case FP_RN: return FE_TONEAREST;
case FP_RZ: return FE_TOWARDZERO;
case FP_RM: return FE_DOWNWARD;
case FP_RP: return FE_UPWARD;
default: return -1;
}
#elif defined(FLT_ROUNDS)
switch (FLT_ROUNDS) {
case 0: return FE_TOWARDZERO;
case 1: return FE_TONEAREST;
case 2: return FE_UPWARD;
case 3: return FE_DOWNWARD;
default: return -1;
}
#elif defined(__osf__) /* Tru64 */
switch (read_rnd()) {
case FP_RND_RN: return FE_TONEAREST;
case FP_RND_RZ: return FE_TOWARDZERO;
case FP_RND_RM: return FE_DOWNWARD;
case FP_RND_RP: return FE_UPWARD;
default: return -1;
}
#else
return -1;
#endif
}
/* Toward closest integer. */
#define MY_ROUND_NEAREST(x) ((NV)((IV)((x) >= 0.0 ? (x) + 0.5 : (x) - 0.5)))
/* Toward zero. */
#define MY_ROUND_TRUNC(x) ((NV)((IV)(x)))
/* Toward minus infinity. */
#define MY_ROUND_DOWN(x) ((NV)((IV)((x) >= 0.0 ? (x) : (x) - 0.5)))
/* Toward plus infinity. */
#define MY_ROUND_UP(x) ((NV)((IV)((x) >= 0.0 ? (x) + 0.5 : (x))))
#if (!defined(c99_nearbyint) || !defined(c99_lrint)) && defined(FE_TONEAREST)
static NV my_rint(NV x)
{
#ifdef FE_TONEAREST
switch (my_fegetround()) {
case FE_TONEAREST: return MY_ROUND_NEAREST(x);
case FE_TOWARDZERO: return MY_ROUND_TRUNC(x);
case FE_DOWNWARD: return MY_ROUND_DOWN(x);
case FE_UPWARD: return MY_ROUND_UP(x);
default: break;
}
#elif defined(HAS_FPGETROUND)
switch (fpgetround()) {
case FP_RN: return MY_ROUND_NEAREST(x);
case FP_RZ: return MY_ROUND_TRUNC(x);
case FP_RM: return MY_ROUND_DOWN(x);
case FE_RP: return MY_ROUND_UP(x);
default: break;
}
#endif
not_here("rint");
NOT_REACHED; /* NOTREACHED */
}
#endif
/* XXX nearbyint() and rint() are not really identical -- but the difference
* is messy: nearbyint is defined NOT to raise FE_INEXACT floating point
* exceptions, while rint() is defined to MAYBE raise them. At the moment
* Perl is blissfully unaware of such fine detail of floating point. */
#ifndef c99_nearbyint
# ifdef FE_TONEAREST
# define c99_nearbyrint my_rint
# endif
#endif
#ifndef c99_lrint
# ifdef FE_TONEAREST
static IV my_lrint(NV x)
{
return (IV)my_rint(x);
}
# define c99_lrint my_lrint
# endif
#endif
#ifndef c99_lround
static IV my_lround(NV x)
{
return (IV)MY_ROUND_NEAREST(x);
}
# define c99_lround my_lround
#endif
/* XXX remainder */
/* XXX remquo */
#ifndef c99_rint
# ifdef FE_TONEAREST
# define c99_rint my_rint
# endif
#endif
#ifndef c99_round
static NV my_round(NV x)
{
return MY_ROUND_NEAREST(x);
}
# define c99_round my_round
#endif
#ifndef c99_scalbn
# if defined(Perl_ldexp) && FLT_RADIX == 2
static NV my_scalbn(NV x, int y)
{
return Perl_ldexp(x, y);
}
# define c99_scalbn my_scalbn
# endif
#endif
/* XXX sinh (though c89) */
/* tgamma -- see lgamma */
/* XXX tanh (though c89) */
#ifndef c99_trunc
static NV my_trunc(NV x)
{
return MY_ROUND_TRUNC(x);
}
# define c99_trunc my_trunc
#endif
#ifdef NV_NAN
#undef NV_PAYLOAD_DEBUG
/* NOTE: the NaN payload API implementation is hand-rolled, since the
* APIs are only proposed ones as of June 2015, so very few, if any,
* platforms have implementations yet, so HAS_SETPAYLOAD and such are
* unlikely to be helpful.
*
* XXX - if the core numification wants to actually generate
* the nan payload in "nan(123)", and maybe "nans(456)", for
* signaling payload", this needs to be moved to e.g. numeric.c
* (look for grok_infnan)
*
* Conversely, if the core stringification wants the nan payload
* and/or the nan quiet/signaling distinction, S_getpayload()
* from this file needs to be moved, to e.g. sv.c (look for S_infnan_2pv),
* and the (trivial) functionality of issignaling() copied
* (for generating "NaNS", or maybe even "NaNQ") -- or maybe there
* are too many formatting parameters for simple stringification?
*/
/* While it might make sense for the payload to be UV or IV,
* to avoid conversion loss, the proposed ISO interfaces use
* a floating point input, which is then truncated to integer,
* and only the integer part being used. This is workable,
* except for: (1) the conversion loss (2) suboptimal for
* 32-bit integer platforms. A workaround API for (2) and
* in general for bit-honesty would be an array of integers
* as the payload... but the proposed C API does nothing of
* the kind. */
#if NVSIZE == UVSIZE
# define NV_PAYLOAD_TYPE UV
#else
# define NV_PAYLOAD_TYPE NV
#endif
#if defined(USE_LONG_DOUBLE) && defined(LONGDOUBLE_DOUBLEDOUBLE)
# define NV_PAYLOAD_SIZEOF_ASSERT(a) \
STATIC_ASSERT_STMT(sizeof(a) == NVSIZE / 2)
#else
# define NV_PAYLOAD_SIZEOF_ASSERT(a) \
STATIC_ASSERT_STMT(sizeof(a) == NVSIZE)
#endif
static void S_setpayload(NV* nvp, NV_PAYLOAD_TYPE payload, bool signaling)
{
dTHX;
static const U8 m[] = { NV_NAN_PAYLOAD_MASK };
static const U8 p[] = { NV_NAN_PAYLOAD_PERM };
UV a[(NVSIZE + UVSIZE - 1) / UVSIZE] = { 0 };
int i;
NV_PAYLOAD_SIZEOF_ASSERT(m);
NV_PAYLOAD_SIZEOF_ASSERT(p);
*nvp = NV_NAN;
/* Divide the input into the array in "base unsigned integer" in
* little-endian order. Note that the integer might be smaller than
* an NV (if UV is U32, for example). */
#if NVSIZE == UVSIZE
a[0] = payload; /* The trivial case. */
#else
{
NV t1 = c99_trunc(payload); /* towards zero (drop fractional) */
#ifdef NV_PAYLOAD_DEBUG
Perl_warn(aTHX_ "t1 = %" NVgf " (payload %" NVgf ")\n", t1, payload);
#endif
if (t1 <= UV_MAX) {
a[0] = (UV)t1; /* Fast path, also avoids rounding errors (right?) */
} else {
/* UVSIZE < NVSIZE or payload > UV_MAX.
*
* This may happen for example if:
* (1) UVSIZE == 32 and common 64-bit double NV
* (32-bit system not using -Duse64bitint)
* (2) UVSIZE == 64 and the x86-style 80-bit long double NV
* (note that here the room for payload is actually the 64 bits)
* (3) UVSIZE == 64 and the 128-bit IEEE 764 quadruple NV
* (112 bits in mantissa, 111 bits room for payload)
*
* NOTE: this is very sensitive to correctly functioning
* fmod()/fmodl(), and correct casting of big-unsigned-integer to NV.
* If these don't work right, especially the low order bits
* are in danger. For example Solaris and AIX seem to have issues
* here, especially if using 32-bit UVs. */
NV t2;
for (i = 0, t2 = t1; i < (int)C_ARRAY_LENGTH(a); i++) {
a[i] = (UV)Perl_fmod(t2, (NV)UV_MAX);
t2 = Perl_floor(t2 / (NV)UV_MAX);
}
}
}
#endif
#ifdef NV_PAYLOAD_DEBUG
for (i = 0; i < (int)C_ARRAY_LENGTH(a); i++) {
Perl_warn(aTHX_ "a[%d] = 0x%" UVxf "\n", i, a[i]);
}
#endif
for (i = 0; i < (int)sizeof(p); i++) {
if (m[i] && p[i] < sizeof(p)) {
U8 s = (p[i] % UVSIZE) << 3;
UV u = a[p[i] / UVSIZE] & ((UV)0xFF << s);
U8 b = (U8)((u >> s) & m[i]);
((U8 *)(nvp))[i] &= ~m[i]; /* For NaNs with non-zero payload bits. */
((U8 *)(nvp))[i] |= b;
#ifdef NV_PAYLOAD_DEBUG
Perl_warn(aTHX_
"set p[%2d] = %02x (i = %d, m = %02x, s = %2d, b = %02x, u = %08"
UVxf ")\n", i, ((U8 *)(nvp))[i], i, m[i], s, b, u);
#endif
a[p[i] / UVSIZE] &= ~u;
}
}
if (signaling) {
NV_NAN_SET_SIGNALING(nvp);
}
#ifdef USE_LONG_DOUBLE
# if LONG_DOUBLEKIND == 3 || LONG_DOUBLEKIND == 4
# if LONG_DOUBLESIZE > 10
memset((char *)nvp + 10, '\0', LONG_DOUBLESIZE - 10); /* x86 long double */
# endif
# endif
#endif
for (i = 0; i < (int)C_ARRAY_LENGTH(a); i++) {
if (a[i]) {
Perl_warn(aTHX_ "payload lost bits (%" UVxf ")", a[i]);
break;
}
}
#ifdef NV_PAYLOAD_DEBUG
for (i = 0; i < NVSIZE; i++) {
PerlIO_printf(Perl_debug_log, "%02x ", ((U8 *)(nvp))[i]);
}
PerlIO_printf(Perl_debug_log, "\n");
#endif
}
static NV_PAYLOAD_TYPE S_getpayload(NV nv)
{
dTHX;
static const U8 m[] = { NV_NAN_PAYLOAD_MASK };
static const U8 p[] = { NV_NAN_PAYLOAD_PERM };
UV a[(NVSIZE + UVSIZE - 1) / UVSIZE] = { 0 };
int i;
NV payload;
NV_PAYLOAD_SIZEOF_ASSERT(m);
NV_PAYLOAD_SIZEOF_ASSERT(p);
payload = 0;
for (i = 0; i < (int)sizeof(p); i++) {
if (m[i] && p[i] < NVSIZE) {
U8 s = (p[i] % UVSIZE) << 3;
a[p[i] / UVSIZE] |= (UV)(((U8 *)(&nv))[i] & m[i]) << s;
}
}
for (i = (int)C_ARRAY_LENGTH(a) - 1; i >= 0; i--) {
#ifdef NV_PAYLOAD_DEBUG
Perl_warn(aTHX_ "a[%d] = %" UVxf "\n", i, a[i]);
#endif
payload *= (NV) UV_MAX;
payload += a[i];
}
#ifdef NV_PAYLOAD_DEBUG
for (i = 0; i < NVSIZE; i++) {
PerlIO_printf(Perl_debug_log, "%02x ", ((U8 *)(&nv))[i]);
}
PerlIO_printf(Perl_debug_log, "\n");
#endif
return payload;
}
#endif /* #ifdef NV_NAN */
/* XXX This comment is just to make I_TERMIO and I_SGTTY visible to
metaconfig for future extension writers. We don't use them in POSIX.
(This is really sneaky :-) --AD
*/
#if defined(I_TERMIOS)
#include <termios.h>
#endif
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#ifdef I_UNISTD
#include <unistd.h>
#endif
#include <fcntl.h>
#ifdef HAS_TZNAME
# if !defined(WIN32) && !defined(__CYGWIN__)
extern char *tzname[];
# endif
#else
#if !defined(WIN32) || (defined(__MINGW32__) && !defined(tzname))
char *tzname[] = { "" , "" };
#endif
#endif
#if defined(__VMS) && !defined(__POSIX_SOURCE)
# include <utsname.h>
# undef mkfifo
# define mkfifo(a,b) (not_here("mkfifo"),-1)
/* The POSIX notion of ttyname() is better served by getname() under VMS */
static char ttnambuf[64];
# define ttyname(fd) (isatty(fd) > 0 ? getname(fd,ttnambuf,0) : NULL)
#else
#if defined (__CYGWIN__)
# define tzname _tzname
#endif
#if defined (WIN32)
# undef mkfifo
# define mkfifo(a,b) not_here("mkfifo")
# define ttyname(a) (not_here("ttyname"), (char *)NULL)
# define sigset_t long
# define pid_t long
# ifdef _MSC_VER
# define mode_t short
# endif
# ifdef __MINGW32__
# define mode_t short
# ifndef tzset
# define tzset() not_here("tzset")
# endif
# ifndef _POSIX_OPEN_MAX
# define _POSIX_OPEN_MAX FOPEN_MAX /* XXX bogus ? */
# endif
# endif
# define sigaction(a,b,c) not_here("sigaction")
# define sigpending(a) not_here("sigpending")
# define sigprocmask(a,b,c) not_here("sigprocmask")
# define sigsuspend(a) not_here("sigsuspend")
# define sigemptyset(a) not_here("sigemptyset")
# define sigaddset(a,b) not_here("sigaddset")
# define sigdelset(a,b) not_here("sigdelset")
# define sigfillset(a) not_here("sigfillset")
# define sigismember(a,b) not_here("sigismember")
# undef setuid
# undef setgid
# define setuid(a) not_here("setuid")
# define setgid(a) not_here("setgid")
#if !defined(USE_LONG_DOUBLE) && !defined(USE_QUADMATH)
# define strtold(s1,s2) not_here("strtold")
#endif /* !(USE_LONG_DOUBLE) && !(USE_QUADMATH) */
#else
# ifndef HAS_MKFIFO
# if defined(OS2) || defined(__amigaos4__)
# define mkfifo(a,b) not_here("mkfifo")
# else /* !( defined OS2 ) */
# ifndef mkfifo
# define mkfifo(path, mode) (mknod((path), (mode) | S_IFIFO, 0))
# endif
# endif
# endif /* !HAS_MKFIFO */
# ifdef I_GRP
# include <grp.h>
# endif
# include <sys/times.h>
# ifdef HAS_UNAME
# include <sys/utsname.h>
# endif
# ifndef __amigaos4__
# include <sys/wait.h>
# endif
# ifdef I_UTIME
# include <utime.h>
# endif
#endif /* WIN32 */
#endif /* __VMS */
typedef int SysRet;
typedef long SysRetLong;
typedef sigset_t* POSIX__SigSet;
typedef HV* POSIX__SigAction;
typedef int POSIX__SigNo;
typedef int POSIX__Fd;
typedef struct termios* POSIX__Termios;
#ifndef I_TERMIOS /* Define termios types to int, and call not_here for the functions.*/
#define speed_t int
#define tcflag_t int
#define cc_t int
#define cfgetispeed(x) not_here("cfgetispeed")
#define cfgetospeed(x) not_here("cfgetospeed")
#define tcdrain(x) not_here("tcdrain")
#define tcflush(x,y) not_here("tcflush")
#define tcsendbreak(x,y) not_here("tcsendbreak")
#define cfsetispeed(x,y) not_here("cfsetispeed")
#define cfsetospeed(x,y) not_here("cfsetospeed")
#define ctermid(x) (not_here("ctermid"), (char *)NULL)
#define tcflow(x,y) not_here("tcflow")
#define tcgetattr(x,y) not_here("tcgetattr")
#define tcsetattr(x,y,z) not_here("tcsetattr")
#endif
/* Possibly needed prototypes */
#ifndef WIN32
START_EXTERN_C
double strtod (const char *, char **);
long strtol (const char *, char **, int);
unsigned long strtoul (const char *, char **, int);
#ifdef HAS_STRTOLD
long double strtold (const char *, char **);
#endif
END_EXTERN_C
#endif
#ifndef HAS_DIFFTIME
#ifndef difftime
#define difftime(a,b) not_here("difftime")
#endif
#endif
#ifndef HAS_FPATHCONF
#define fpathconf(f,n) (SysRetLong) not_here("fpathconf")
#endif
#ifndef HAS_MKTIME
#define mktime(a) not_here("mktime")
#endif
#ifndef HAS_NICE
#define nice(a) not_here("nice")
#endif
#ifndef HAS_PATHCONF
#define pathconf(f,n) (SysRetLong) not_here("pathconf")
#endif
#ifndef HAS_SYSCONF
#define sysconf(n) (SysRetLong) not_here("sysconf")
#endif
#ifndef HAS_READLINK
#define readlink(a,b,c) not_here("readlink")
#endif
#ifndef HAS_SETPGID
#define setpgid(a,b) not_here("setpgid")
#endif
#ifndef HAS_SETSID
#define setsid() not_here("setsid")
#endif
#ifndef HAS_STRCOLL
#define strcoll(s1,s2) not_here("strcoll")
#endif
#ifndef HAS_STRTOD
#define strtod(s1,s2) not_here("strtod")
#endif
#ifndef HAS_STRTOLD
#define strtold(s1,s2) not_here("strtold")
#endif
#ifndef HAS_STRTOL
#define strtol(s1,s2,b) not_here("strtol")
#endif
#ifndef HAS_STRTOUL
#define strtoul(s1,s2,b) not_here("strtoul")
#endif
#ifndef HAS_STRXFRM
#define strxfrm(s1,s2,n) not_here("strxfrm")
#endif
#ifndef HAS_TCGETPGRP
#define tcgetpgrp(a) not_here("tcgetpgrp")
#endif
#ifndef HAS_TCSETPGRP
#define tcsetpgrp(a,b) not_here("tcsetpgrp")
#endif
#ifndef HAS_TIMES
#define times(a) not_here("times")
#endif
#ifndef HAS_UNAME
#define uname(a) not_here("uname")
#endif
#ifndef HAS_WAITPID
#define waitpid(a,b,c) not_here("waitpid")
#endif
#if ! defined(HAS_MBLEN) && ! defined(HAS_MBRLEN)
# define mblen(a,b) not_here("mblen")
#endif
#if ! defined(HAS_MBTOWC) && ! defined(HAS_MBRTOWC)
# define mbtowc(pwc, s, n) not_here("mbtowc")
#endif
#if ! defined(HAS_WCTOMB) && ! defined(HAS_WCRTOMB)
# define wctomb(s, wchar) not_here("wctomb")
#endif
#if !defined(HAS_MBLEN) && !defined(HAS_MBSTOWCS) && !defined(HAS_MBTOWC) && !defined(HAS_WCSTOMBS) && !defined(HAS_WCTOMB)
/* If we don't have these functions, then we wouldn't have gotten a typedef
for wchar_t, the wide character type. Defining wchar_t allows the
functions referencing it to compile. Its actual type is then meaningless,
since without the above functions, all sections using it end up calling
not_here() and croak. --Kaveh Ghazi (ghazi@noc.rutgers.edu) 9/18/94. */
#ifndef wchar_t
#define wchar_t char
#endif
#endif
#ifdef HAS_LONG_DOUBLE
# if LONG_DOUBLESIZE > NVSIZE
# undef HAS_LONG_DOUBLE /* XXX until we figure out how to use them */
# endif
#endif
#ifndef HAS_LONG_DOUBLE
#ifdef LDBL_MAX
#undef LDBL_MAX
#endif
#ifdef LDBL_MIN
#undef LDBL_MIN
#endif
#ifdef LDBL_EPSILON
#undef LDBL_EPSILON
#endif
#endif
/* Background: in most systems the low byte of the wait status
* is the signal (the lowest 7 bits) and the coredump flag is
* the eight bit, and the second lowest byte is the exit status.
* BeOS bucks the trend and has the bytes in different order.
* See beos/beos.c for how the reality is bent even in BeOS
* to follow the traditional. However, to make the POSIX
* wait W*() macros to work in BeOS, we need to unbend the
* reality back in place. --jhi */
/* In actual fact the code below is to blame here. Perl has an internal
* representation of the exit status ($?), which it re-composes from the
* OS's representation using the W*() POSIX macros. The code below
* incorrectly uses the W*() macros on the internal representation,
* which fails for OSs that have a different representation (namely BeOS
* and Haiku). WMUNGE() is a hack that converts the internal
* representation into the OS specific one, so that the W*() macros work
* as expected. The better solution would be not to use the W*() macros
* in the first place, though. -- Ingo Weinhold
*/
#if defined(__HAIKU__)
# define WMUNGE(x) (((x) & 0xFF00) >> 8 | (((U8) (x)) << 8))
#else
# define WMUNGE(x) (x)
#endif
static int
not_here(const char *s)
{
croak("POSIX::%s not implemented on this architecture", s);
return -1;
}
#include "const-c.inc"
static void
restore_sigmask(pTHX_ SV *osset_sv)
{
/* Fortunately, restoring the signal mask can't fail, because
* there's nothing we can do about it if it does -- we're not
* supposed to return -1 from sigaction unless the disposition
* was unaffected.
*/
#if !(defined(__amigaos4__) && defined(__NEWLIB__))
sigset_t *ossetp = (sigset_t *) SvPV_nolen( osset_sv );
(void)sigprocmask(SIG_SETMASK, ossetp, (sigset_t *)0);
#endif
}
static void *
allocate_struct(pTHX_ SV *rv, const STRLEN size, const char *packname) {
SV *const t = newSVrv(rv, packname);
void *const p = sv_grow(t, size + 1);
/* Ensure at least one use of not_here() to avoid "defined but not
* used" warning. This is not at all related to allocate_struct(); I
* just needed somewhere to dump it - DAPM */
if (0) { not_here(""); }
SvCUR_set(t, size);
SvPOK_on(t);
return p;
}
#ifdef WIN32
/*
* (1) The CRT maintains its own copy of the environment, separate from
* the Win32API copy.
*
* (2) CRT getenv() retrieves from this copy. CRT putenv() updates this
* copy, and then calls SetEnvironmentVariableA() to update the Win32API
* copy.
*
* (3) win32_getenv() and win32_putenv() call GetEnvironmentVariableA() and
* SetEnvironmentVariableA() directly, bypassing the CRT copy of the
* environment.
*
* (4) The CRT strftime() "%Z" implementation calls __tzset(). That
* calls CRT tzset(), but only the first time it is called, and in turn
* that uses CRT getenv("TZ") to retrieve the timezone info from the CRT
* local copy of the environment and hence gets the original setting as
* perl never updates the CRT copy when assigning to $ENV{TZ}.
*
* Therefore, we need to retrieve the value of $ENV{TZ} and call CRT
* putenv() to update the CRT copy of the environment (if it is different)
* whenever we're about to call tzset().
*
* In addition to all that, when perl is built with PERL_IMPLICIT_SYS
* defined:
*
* (a) Each interpreter has its own copy of the environment inside the
* perlhost structure. That allows applications that host multiple
* independent Perl interpreters to isolate environment changes from
* each other. (This is similar to how the perlhost mechanism keeps a
* separate working directory for each Perl interpreter, so that calling
* chdir() will not affect other interpreters.)
*
* (b) Only the first Perl interpreter instantiated within a process will
* "write through" environment changes to the process environment.
*
* (c) Even the primary Perl interpreter won't update the CRT copy of the
* environment, only the Win32API copy (it calls win32_putenv()).
*
* As with CPerlHost::Getenv() and CPerlHost::Putenv() themselves, it makes
* sense to only update the process environment when inside the main
* interpreter, but we don't have access to CPerlHost's m_bTopLevel member
* from here so we'll just have to check PL_curinterp instead.
*
* Therefore, we can simply #undef getenv() and putenv() so that those names
* always refer to the CRT functions, and explicitly call win32_getenv() to
* access perl's %ENV.
*
* We also #undef malloc() and free() to be sure we are using the CRT
* functions otherwise under PERL_IMPLICIT_SYS they are redefined to calls
* into VMem::Malloc() and VMem::Free() and all allocations will be freed
* when the Perl interpreter is being destroyed so we'd end up with a pointer
* into deallocated memory in environ[] if a program embedding a Perl
* interpreter continues to operate even after the main Perl interpreter has
* been destroyed.
*
* Note that we don't free() the malloc()ed memory unless and until we call
* malloc() again ourselves because the CRT putenv() function simply puts its
* pointer argument into the environ[] array (it doesn't make a copy of it)
* so this memory must otherwise be leaked.
*/
#undef getenv
#undef putenv
#undef malloc
#undef free
static void
fix_win32_tzenv(void)
{
static char* oldenv = NULL;
char* newenv;
const char* perl_tz_env = win32_getenv("TZ");
const char* crt_tz_env = getenv("TZ");
if (perl_tz_env == NULL)
perl_tz_env = "";
if (crt_tz_env == NULL)
crt_tz_env = "";
if (strNE(perl_tz_env, crt_tz_env)) {
newenv = (char*)malloc((strlen(perl_tz_env) + 4) * sizeof(char));
if (newenv != NULL) {
sprintf(newenv, "TZ=%s", perl_tz_env);
_putenv(newenv);
if (oldenv != NULL)
free(oldenv);
oldenv = newenv;
}
}
}
#endif
/*
* my_tzset - wrapper to tzset() with a fix to make it work (better) on Win32.
* This code is duplicated in the Time-Piece module, so any changes made here
* should be made there too.
*/
static void
my_tzset(pTHX)
{
#ifdef WIN32
#if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
if (PL_curinterp == aTHX)
#endif
fix_win32_tzenv();
#endif
TZSET_LOCK;
tzset();
TZSET_UNLOCK;
/* After the unlock, another thread could change things, but this is a
* problem with the Posix API generally, not Perl; and the result will be
* self-consistent */
}
MODULE = SigSet PACKAGE = POSIX::SigSet PREFIX = sig
void
new(packname = "POSIX::SigSet", ...)
const char * packname
CODE:
{
int i;
sigset_t *const s
= (sigset_t *) allocate_struct(aTHX_ (ST(0) = sv_newmortal()),
sizeof(sigset_t),
packname);
sigemptyset(s);
for (i = 1; i < items; i++) {
IV sig = SvIV(ST(i));
if (sigaddset(s, sig) < 0)
croak("POSIX::Sigset->new: failed to add signal %" IVdf, sig);
}
XSRETURN(1);
}
SysRet
addset(sigset, sig)
POSIX::SigSet sigset
POSIX::SigNo sig
ALIAS:
delset = 1
CODE:
RETVAL = ix ? sigdelset(sigset, sig) : sigaddset(sigset, sig);
OUTPUT:
RETVAL
SysRet
emptyset(sigset)
POSIX::SigSet sigset
ALIAS:
fillset = 1
CODE:
RETVAL = ix ? sigfillset(sigset) : sigemptyset(sigset);
OUTPUT:
RETVAL
int
sigismember(sigset, sig)
POSIX::SigSet sigset
POSIX::SigNo sig
MODULE = Termios PACKAGE = POSIX::Termios PREFIX = cf
void
new(packname = "POSIX::Termios", ...)
const char * packname
CODE:
{
#ifdef I_TERMIOS
void *const p = allocate_struct(aTHX_ (ST(0) = sv_newmortal()),
sizeof(struct termios), packname);
/* The previous implementation stored a pointer to an uninitialised
struct termios. Seems safer to initialise it, particularly as
this implementation exposes the struct to prying from perl-space.
*/
memset(p, 0, 1 + sizeof(struct termios));
XSRETURN(1);
#else
not_here("termios");
#endif
}
SysRet
getattr(termios_ref, fd = 0)
POSIX::Termios termios_ref
POSIX::Fd fd
CODE:
RETVAL = tcgetattr(fd, termios_ref);
OUTPUT:
RETVAL
# If we define TCSANOW here then both a found and not found constant sub
# are created causing a Constant subroutine TCSANOW redefined warning
#ifndef TCSANOW
# define DEF_SETATTR_ACTION 0
#else
# define DEF_SETATTR_ACTION TCSANOW
#endif
SysRet
setattr(termios_ref, fd = 0, optional_actions = DEF_SETATTR_ACTION)
POSIX::Termios termios_ref
POSIX::Fd fd
int optional_actions
CODE:
/* The second argument to the call is mandatory, but we'd like to give
it a useful default. 0 isn't valid on all operating systems - on
Solaris (at least) TCSANOW, TCSADRAIN and TCSAFLUSH have the same
values as the equivalent ioctls, TCSETS, TCSETSW and TCSETSF. */
if (optional_actions < 0) {
SETERRNO(EINVAL, LIB_INVARG);
RETVAL = -1;
} else {
RETVAL = tcsetattr(fd, optional_actions, termios_ref);
}
OUTPUT:
RETVAL
speed_t
getispeed(termios_ref)
POSIX::Termios termios_ref
ALIAS:
getospeed = 1
CODE:
RETVAL = ix ? cfgetospeed(termios_ref) : cfgetispeed(termios_ref);
OUTPUT:
RETVAL
tcflag_t
getiflag(termios_ref)
POSIX::Termios termios_ref
ALIAS:
getoflag = 1
getcflag = 2
getlflag = 3
CODE:
#ifdef I_TERMIOS /* References a termios structure member so ifdef it out. */
switch(ix) {
case 0:
RETVAL = termios_ref->c_iflag;
break;
case 1:
RETVAL = termios_ref->c_oflag;
break;
case 2:
RETVAL = termios_ref->c_cflag;
break;
case 3:
RETVAL = termios_ref->c_lflag;
break;
default:
RETVAL = 0; /* silence compiler warning */
}
#else
not_here(GvNAME(CvGV(cv)));
RETVAL = 0;
#endif
OUTPUT:
RETVAL
cc_t
getcc(termios_ref, ccix)
POSIX::Termios termios_ref
unsigned int ccix
CODE:
#ifdef I_TERMIOS /* References a termios structure member so ifdef it out. */
if (ccix >= NCCS)
croak("Bad getcc subscript");
RETVAL = termios_ref->c_cc[ccix];
#else
not_here("getcc");
RETVAL = 0;
#endif
OUTPUT:
RETVAL
SysRet
setispeed(termios_ref, speed)
POSIX::Termios termios_ref
speed_t speed
ALIAS:
setospeed = 1
CODE:
RETVAL = ix
? cfsetospeed(termios_ref, speed) : cfsetispeed(termios_ref, speed);
OUTPUT:
RETVAL
void
setiflag(termios_ref, flag)
POSIX::Termios termios_ref
tcflag_t flag
ALIAS:
setoflag = 1
setcflag = 2
setlflag = 3
CODE:
#ifdef I_TERMIOS /* References a termios structure member so ifdef it out. */
switch(ix) {
case 0:
termios_ref->c_iflag = flag;
break;
case 1:
termios_ref->c_oflag = flag;
break;
case 2:
termios_ref->c_cflag = flag;
break;
case 3:
termios_ref->c_lflag = flag;
break;
}
#else
not_here(GvNAME(CvGV(cv)));
#endif
void
setcc(termios_ref, ccix, cc)
POSIX::Termios termios_ref
unsigned int ccix
cc_t cc
CODE:
#ifdef I_TERMIOS /* References a termios structure member so ifdef it out. */
if (ccix >= NCCS)
croak("Bad setcc subscript");
termios_ref->c_cc[ccix] = cc;
#else
not_here("setcc");
#endif
MODULE = POSIX PACKAGE = POSIX
INCLUDE: const-xs.inc
int
WEXITSTATUS(status)
int status
ALIAS:
POSIX::WIFEXITED = 1
POSIX::WIFSIGNALED = 2
POSIX::WIFSTOPPED = 3
POSIX::WSTOPSIG = 4
POSIX::WTERMSIG = 5
CODE:
#if !defined(WEXITSTATUS) || !defined(WIFEXITED) || !defined(WIFSIGNALED) \
|| !defined(WIFSTOPPED) || !defined(WSTOPSIG) || !defined(WTERMSIG)
RETVAL = 0; /* Silence compilers that notice this, but don't realise
that not_here() can't return. */
#endif
switch(ix) {
case 0:
#ifdef WEXITSTATUS
RETVAL = WEXITSTATUS(WMUNGE(status));
#else
not_here("WEXITSTATUS");
#endif
break;
case 1:
#ifdef WIFEXITED
RETVAL = WIFEXITED(WMUNGE(status));
#else
not_here("WIFEXITED");
#endif
break;
case 2:
#ifdef WIFSIGNALED
RETVAL = WIFSIGNALED(WMUNGE(status));
#else
not_here("WIFSIGNALED");
#endif
break;
case 3:
#ifdef WIFSTOPPED
RETVAL = WIFSTOPPED(WMUNGE(status));
#else
not_here("WIFSTOPPED");
#endif
break;
case 4:
#ifdef WSTOPSIG
RETVAL = WSTOPSIG(WMUNGE(status));
#else
not_here("WSTOPSIG");
#endif
break;
case 5:
#ifdef WTERMSIG
RETVAL = WTERMSIG(WMUNGE(status));
#else
not_here("WTERMSIG");
#endif
break;
default:
croak("Illegal alias %d for POSIX::W*", (int)ix);
}
OUTPUT:
RETVAL
SysRet
open(filename, flags = O_RDONLY, mode = 0666)
char * filename
int flags
Mode_t mode
CODE:
if (flags & (O_APPEND|O_CREAT|O_TRUNC|O_RDWR|O_WRONLY|O_EXCL))
TAINT_PROPER("open");
RETVAL = open(filename, flags, mode);
OUTPUT:
RETVAL
HV *
localeconv()
CODE:
RETVAL = Perl_localeconv(aTHX);
OUTPUT:
RETVAL
char *
setlocale(category, locale = 0)
int category
const char * locale
PREINIT:
char * retval;
CODE:
retval = (char *) Perl_setlocale(category, locale);
if (! retval) {
XSRETURN_UNDEF;
}
RETVAL = retval;
OUTPUT:
RETVAL
NV
acos(x)
NV x
ALIAS:
acosh = 1
asin = 2
asinh = 3
atan = 4
atanh = 5
cbrt = 6
ceil = 7
cosh = 8
erf = 9
erfc = 10
exp2 = 11
expm1 = 12
floor = 13
j0 = 14
j1 = 15
lgamma = 16
log10 = 17
log1p = 18
log2 = 19
logb = 20
nearbyint = 21
rint = 22
round = 23
sinh = 24
tan = 25
tanh = 26
tgamma = 27
trunc = 28
y0 = 29
y1 = 30
CODE:
PERL_UNUSED_VAR(x);
#ifdef NV_NAN
RETVAL = NV_NAN;
#else
RETVAL = 0;
#endif
switch (ix) {
case 0:
RETVAL = Perl_acos(x); /* C89 math */
break;
case 1:
#ifdef c99_acosh
RETVAL = c99_acosh(x);
#else
not_here("acosh");
#endif
break;
case 2:
RETVAL = Perl_asin(x); /* C89 math */
break;
case 3:
#ifdef c99_asinh
RETVAL = c99_asinh(x);
#else
not_here("asinh");
#endif
break;
case 4:
RETVAL = Perl_atan(x); /* C89 math */
break;
case 5:
#ifdef c99_atanh
RETVAL = c99_atanh(x);
#else
not_here("atanh");
#endif
break;
case 6:
#ifdef c99_cbrt
RETVAL = c99_cbrt(x);
#else
not_here("cbrt");
#endif
break;
case 7:
RETVAL = Perl_ceil(x); /* C89 math */
break;
case 8:
RETVAL = Perl_cosh(x); /* C89 math */
break;
case 9:
#ifdef c99_erf
RETVAL = c99_erf(x);
#else
not_here("erf");
#endif
break;
case 10:
#ifdef c99_erfc
RETVAL = c99_erfc(x);
#else
not_here("erfc");
#endif
break;
case 11:
#ifdef c99_exp2
RETVAL = c99_exp2(x);
#else
not_here("exp2");
#endif
break;
case 12:
#ifdef c99_expm1
RETVAL = c99_expm1(x);
#else
not_here("expm1");
#endif
break;
case 13:
RETVAL = Perl_floor(x); /* C89 math */
break;
case 14:
#ifdef bessel_j0
RETVAL = bessel_j0(x);
#else
not_here("j0");
#endif
break;
case 15:
#ifdef bessel_j1
RETVAL = bessel_j1(x);
#else
not_here("j1");
#endif
break;
case 16:
/* XXX Note: the lgamma modifies a global variable (signgam),
* which is evil. Some platforms have lgamma_r, which has
* extra output parameter instead of the global variable. */
#ifdef c99_lgamma
RETVAL = c99_lgamma(x);
#else
not_here("lgamma");
#endif
break;
case 17:
RETVAL = Perl_log10(x); /* C89 math */
break;
case 18:
#ifdef c99_log1p
RETVAL = c99_log1p(x);
#else
not_here("log1p");
#endif
break;
case 19:
#ifdef c99_log2
RETVAL = c99_log2(x);
#else
not_here("log2");
#endif
break;
case 20:
#ifdef c99_logb
RETVAL = c99_logb(x);
#elif defined(c99_log2) && FLT_RADIX == 2
RETVAL = Perl_floor(c99_log2(PERL_ABS(x)));
#else
not_here("logb");
#endif
break;
case 21:
#ifdef c99_nearbyint
RETVAL = c99_nearbyint(x);
#else
not_here("nearbyint");
#endif
break;
case 22:
#ifdef c99_rint
RETVAL = c99_rint(x);
#else
not_here("rint");
#endif
break;
case 23:
#ifdef c99_round
RETVAL = c99_round(x);
#else
not_here("round");
#endif
break;
case 24:
RETVAL = Perl_sinh(x); /* C89 math */
break;
case 25:
RETVAL = Perl_tan(x); /* C89 math */
break;
case 26:
RETVAL = Perl_tanh(x); /* C89 math */
break;
case 27:
#ifdef c99_tgamma
RETVAL = c99_tgamma(x);
#else
not_here("tgamma");
#endif
break;
case 28:
#ifdef c99_trunc
RETVAL = c99_trunc(x);
#else
not_here("trunc");
#endif
break;
case 29:
#ifdef bessel_y0
RETVAL = bessel_y0(x);
#else
not_here("y0");
#endif
break;
case 30:
default:
#ifdef bessel_y1
RETVAL = bessel_y1(x);
#else
not_here("y1");
#endif
}
OUTPUT:
RETVAL
IV
fegetround()
PROTOTYPE:
ALIAS:
FLT_ROUNDS = 1
CODE:
switch (ix) {
case 0:
default:
#ifdef HAS_FEGETROUND
RETVAL = my_fegetround();
#else
RETVAL = -1;
not_here("fegetround");
#endif
break;
case 1:
#if defined(FLT_ROUNDS) && !defined(BROKEN_FLT_ROUNDS)
RETVAL = FLT_ROUNDS;
#elif defined(HAS_FEGETROUND) || defined(HAS_FPGETROUND) || defined(__osf__)
switch (my_fegetround()) {
/* C standard seems to say that each of the FE_* macros is
defined if and only if the implementation supports it. */
# ifdef FE_TOWARDZERO
case FE_TOWARDZERO: RETVAL = 0; break;
# endif
# ifdef FE_TONEAREST
case FE_TONEAREST: RETVAL = 1; break;
# endif
# ifdef FE_UPWARD
case FE_UPWARD: RETVAL = 2; break;
# endif
# ifdef FE_DOWNWARD
case FE_DOWNWARD: RETVAL = 3; break;
# endif
default: RETVAL = -1; break;
}
#else
RETVAL = -1;
not_here("FLT_ROUNDS");
#endif
break;
}
OUTPUT:
RETVAL
IV
fesetround(x)
IV x
CODE:
#ifdef HAS_FEGETROUND /* canary for fesetround */
RETVAL = fesetround(x);
#elif defined(HAS_FPGETROUND) /* canary for fpsetround */
switch (x) {
case FE_TONEAREST: RETVAL = fpsetround(FP_RN); break;
case FE_TOWARDZERO: RETVAL = fpsetround(FP_RZ); break;
case FE_DOWNWARD: RETVAL = fpsetround(FP_RM); break;
case FE_UPWARD: RETVAL = fpsetround(FP_RP); break;
default: RETVAL = -1; break;
}
#elif defined(__osf__) /* Tru64 */
switch (x) {
case FE_TONEAREST: RETVAL = write_rnd(FP_RND_RN); break;
case FE_TOWARDZERO: RETVAL = write_rnd(FP_RND_RZ); break;
case FE_DOWNWARD: RETVAL = write_rnd(FP_RND_RM); break;
case FE_UPWARD: RETVAL = write_rnd(FP_RND_RP); break;
default: RETVAL = -1; break;
}
#else
PERL_UNUSED_VAR(x);
RETVAL = -1;
not_here("fesetround");
#endif
OUTPUT:
RETVAL
IV
fpclassify(x)
NV x
ALIAS:
ilogb = 1
isfinite = 2
isinf = 3
isnan = 4
isnormal = 5
lrint = 6
lround = 7
signbit = 8
CODE:
PERL_UNUSED_VAR(x);
RETVAL = -1;
switch (ix) {
case 0:
#ifdef c99_fpclassify
RETVAL = c99_fpclassify(x);
#else
not_here("fpclassify");
#endif
break;
case 1:
#ifdef c99_ilogb
RETVAL = c99_ilogb(x);
#else
not_here("ilogb");
#endif
break;
case 2:
RETVAL = Perl_isfinite(x);
break;
case 3:
RETVAL = Perl_isinf(x);
break;
case 4:
RETVAL = Perl_isnan(x);
break;
case 5:
#ifdef c99_isnormal
RETVAL = c99_isnormal(x);
#else
not_here("isnormal");
#endif
break;
case 6:
#ifdef c99_lrint
RETVAL = c99_lrint(x);
#else
not_here("lrint");
#endif
break;
case 7:
#ifdef c99_lround
RETVAL = c99_lround(x);
#else
not_here("lround");
#endif
break;
case 8:
default:
RETVAL = Perl_signbit(x);
break;
}
OUTPUT:
RETVAL
NV
getpayload(nv)
NV nv
CODE:
#ifdef DOUBLE_HAS_NAN
RETVAL = S_getpayload(nv);
#else
PERL_UNUSED_VAR(nv);
RETVAL = 0.0;
not_here("getpayload");
#endif
OUTPUT:
RETVAL
void
setpayload(nv, payload)
NV nv
NV payload
CODE:
#ifdef DOUBLE_HAS_NAN
S_setpayload(&nv, payload, FALSE);
#else
PERL_UNUSED_VAR(nv);
PERL_UNUSED_VAR(payload);
not_here("setpayload");
#endif
OUTPUT:
nv
void
setpayloadsig(nv, payload)
NV nv
NV payload
CODE:
#ifdef DOUBLE_HAS_NAN
nv = NV_NAN;
S_setpayload(&nv, payload, TRUE);
#else
PERL_UNUSED_VAR(nv);
PERL_UNUSED_VAR(payload);
not_here("setpayloadsig");
#endif
OUTPUT:
nv
int
issignaling(nv)
NV nv
CODE:
#ifdef DOUBLE_HAS_NAN
RETVAL = Perl_isnan(nv) && NV_NAN_IS_SIGNALING(&nv);
#else
PERL_UNUSED_VAR(nv);
RETVAL = 0.0;
not_here("issignaling");
#endif
OUTPUT:
RETVAL
NV
copysign(x,y)
NV x
NV y
ALIAS:
fdim = 1
fmax = 2
fmin = 3
fmod = 4
hypot = 5
isgreater = 6
isgreaterequal = 7
isless = 8
islessequal = 9
islessgreater = 10
isunordered = 11
nextafter = 12
nexttoward = 13
remainder = 14
CODE:
PERL_UNUSED_VAR(x);
PERL_UNUSED_VAR(y);
#ifdef NV_NAN
RETVAL = NV_NAN;
#else
RETVAL = 0;
#endif
switch (ix) {
case 0:
#ifdef c99_copysign
RETVAL = c99_copysign(x, y);
#else
not_here("copysign");
#endif
break;
case 1:
#ifdef c99_fdim
RETVAL = c99_fdim(x, y);
#else
not_here("fdim");
#endif
break;
case 2:
#ifdef c99_fmax
RETVAL = c99_fmax(x, y);
#else
not_here("fmax");
#endif
break;
case 3:
#ifdef c99_fmin
RETVAL = c99_fmin(x, y);
#else
not_here("fmin");
#endif
break;
case 4:
RETVAL = Perl_fmod(x, y); /* C89 math */
break;
case 5:
#ifdef c99_hypot
RETVAL = c99_hypot(x, y);
#else
not_here("hypot");
#endif
break;
case 6:
#ifdef c99_isgreater
RETVAL = c99_isgreater(x, y);
#else
not_here("isgreater");
#endif
break;
case 7:
#ifdef c99_isgreaterequal
RETVAL = c99_isgreaterequal(x, y);
#else
not_here("isgreaterequal");
#endif
break;
case 8:
#ifdef c99_isless
RETVAL = c99_isless(x, y);
#else
not_here("isless");
#endif
break;
case 9:
#ifdef c99_islessequal
RETVAL = c99_islessequal(x, y);
#else
not_here("islessequal");
#endif
break;
case 10:
#ifdef c99_islessgreater
RETVAL = c99_islessgreater(x, y);
#else
not_here("islessgreater");
#endif
break;
case 11:
#ifdef c99_isunordered
RETVAL = c99_isunordered(x, y);
#else
not_here("isunordered");
#endif
break;
case 12:
#ifdef c99_nextafter
RETVAL = c99_nextafter(x, y);
#else
not_here("nextafter");
#endif
break;
case 13:
#ifdef c99_nexttoward
RETVAL = c99_nexttoward(x, y);
#else
not_here("nexttoward");
#endif
break;
case 14:
default:
#ifdef c99_remainder
RETVAL = c99_remainder(x, y);
#else
not_here("remainder");
#endif
break;
}
OUTPUT:
RETVAL
void
frexp(x)
NV x
PPCODE:
int expvar;
/* (We already know stack is long enough.) */
PUSHs(sv_2mortal(newSVnv(Perl_frexp(x,&expvar)))); /* C89 math */
PUSHs(sv_2mortal(newSViv(expvar)));
NV
ldexp(x,exp)
NV x
int exp
CODE:
RETVAL = Perl_ldexp(x, exp);
OUTPUT:
RETVAL
void
modf(x)
NV x
PPCODE:
NV intvar;
/* (We already know stack is long enough.) */
PUSHs(sv_2mortal(newSVnv(Perl_modf(x,&intvar)))); /* C89 math */
PUSHs(sv_2mortal(newSVnv(intvar)));
void
remquo(x,y)
NV x
NV y
PPCODE:
#ifdef c99_remquo
int intvar;
PUSHs(sv_2mortal(newSVnv(c99_remquo(x,y,&intvar))));
PUSHs(sv_2mortal(newSVnv(intvar)));
#else
PERL_UNUSED_VAR(x);
PERL_UNUSED_VAR(y);
not_here("remquo");
#endif
NV
scalbn(x,y)
NV x
IV y
CODE:
#ifdef c99_scalbn
RETVAL = c99_scalbn(x, y);
#else
PERL_UNUSED_VAR(x);
PERL_UNUSED_VAR(y);
RETVAL = NV_NAN;
not_here("scalbn");
#endif
OUTPUT:
RETVAL
NV
fma(x,y,z)
NV x
NV y
NV z
CODE:
#ifdef c99_fma
RETVAL = c99_fma(x, y, z);
#else
PERL_UNUSED_VAR(x);
PERL_UNUSED_VAR(y);
PERL_UNUSED_VAR(z);
not_here("fma");
#endif
OUTPUT:
RETVAL
NV
nan(payload = 0)
NV payload
CODE:
#ifdef NV_NAN
/* If no payload given, just return the default NaN.
* This makes a difference in platforms where the default
* NaN is not all zeros. */
if (items == 0) {
RETVAL = NV_NAN;
} else {
S_setpayload(&RETVAL, payload, FALSE);
}
#elif defined(c99_nan)
{
STRLEN elen = my_snprintf(PL_efloatbuf, PL_efloatsize, "%g", payload);
if ((IV)elen == -1) {
#ifdef NV_NAN
RETVAL = NV_NAN;
#else
RETVAL = 0.0;
not_here("nan");
#endif
} else {
RETVAL = c99_nan(PL_efloatbuf);
}
}
#else
not_here("nan");
#endif
OUTPUT:
RETVAL
NV
jn(x,y)
IV x
NV y
ALIAS:
yn = 1
CODE:
#ifdef NV_NAN
RETVAL = NV_NAN;
#else
RETVAL = 0;
#endif
switch (ix) {
case 0:
#ifdef bessel_jn
RETVAL = bessel_jn(x, y);
#else
PERL_UNUSED_VAR(x);
PERL_UNUSED_VAR(y);
not_here("jn");
#endif
break;
case 1:
default:
#ifdef bessel_yn
RETVAL = bessel_yn(x, y);
#else
PERL_UNUSED_VAR(x);
PERL_UNUSED_VAR(y);
not_here("yn");
#endif
break;
}
OUTPUT:
RETVAL
SysRet
sigaction(sig, optaction, oldaction = 0)
int sig
SV * optaction
POSIX::SigAction oldaction
CODE:
#if defined(WIN32) || (defined(__amigaos4__) && defined(__NEWLIB__))
RETVAL = not_here("sigaction");
#else
# This code is really grody because we are trying to make the signal
# interface look beautiful, which is hard.
{
POSIX__SigAction action;
GV *siggv = gv_fetchpvs("SIG", GV_ADD, SVt_PVHV);
struct sigaction act;
struct sigaction oact;
sigset_t sset;
SV *osset_sv;
sigset_t osset;
POSIX__SigSet sigset;
SV** svp;
SV** sigsvp;
if (sig < 0) {
croak("Negative signals are not allowed");
}
if (sig == 0 && SvPOK(ST(0))) {
const char *s = SvPVX_const(ST(0));
int i = whichsig(s);
if (i < 0 && memBEGINs(s, SvCUR(ST(0)), "SIG"))
i = whichsig(s + 3);
if (i < 0) {
if (ckWARN(WARN_SIGNAL))
Perl_warner(aTHX_ packWARN(WARN_SIGNAL),
"No such signal: SIG%s", s);
XSRETURN_UNDEF;
}
else
sig = i;
}
#ifdef NSIG
if (sig > NSIG) { /* NSIG - 1 is still okay. */
Perl_warner(aTHX_ packWARN(WARN_SIGNAL),
"No such signal: %d", sig);
XSRETURN_UNDEF;
}
#endif
sigsvp = hv_fetch(GvHVn(siggv),
PL_sig_name[sig],
strlen(PL_sig_name[sig]),
TRUE);
/* Check optaction and set action */
if(SvTRUE(optaction)) {
if(sv_isa(optaction, "POSIX::SigAction"))
action = (HV*)SvRV(optaction);
else
croak("action is not of type POSIX::SigAction");
}
else {
action=0;
}
/* sigaction() is supposed to look atomic. In particular, any
* signal handler invoked during a sigaction() call should
* see either the old or the new disposition, and not something
* in between. We use sigprocmask() to make it so.
*/
sigfillset(&sset);
RETVAL=sigprocmask(SIG_BLOCK, &sset, &osset);
if(RETVAL == -1)
XSRETURN_UNDEF;
ENTER;
/* Restore signal mask no matter how we exit this block. */
osset_sv = newSVpvn((char *)(&osset), sizeof(sigset_t));
SAVEFREESV( osset_sv );
SAVEDESTRUCTOR_X(restore_sigmask, osset_sv);
RETVAL=-1; /* In case both oldaction and action are 0. */
/* Remember old disposition if desired. */
if (oldaction) {
int safe;
svp = hv_fetchs(oldaction, "HANDLER", TRUE);
if(!svp)
croak("Can't supply an oldaction without a HANDLER");
if(SvTRUE(*sigsvp)) { /* TBD: what if "0"? */
sv_setsv(*svp, *sigsvp);
}
else {
sv_setpvs(*svp, "DEFAULT");
}
RETVAL = sigaction(sig, (struct sigaction *)0, & oact);
if(RETVAL == -1) {
LEAVE;
XSRETURN_UNDEF;
}
/* Get back the mask. */
svp = hv_fetchs(oldaction, "MASK", TRUE);
if (sv_isa(*svp, "POSIX::SigSet")) {
sigset = (sigset_t *) SvPV_nolen(SvRV(*svp));
}
else {
sigset = (sigset_t *) allocate_struct(aTHX_ *svp,
sizeof(sigset_t),
"POSIX::SigSet");
}
*sigset = oact.sa_mask;
/* Get back the flags. */
svp = hv_fetchs(oldaction, "FLAGS", TRUE);
sv_setiv(*svp, oact.sa_flags);
/* Get back whether the old handler used safe signals;
* i.e. it used Perl_csighandler[13] rather than
* Perl_sighandler[13]
*/
safe =
#ifdef SA_SIGINFO
(oact.sa_flags & SA_SIGINFO)
? ( oact.sa_sigaction == PL_csighandler3p
#ifdef PERL_USE_3ARG_SIGHANDLER
|| oact.sa_sigaction == PL_csighandlerp
#endif
)
:
#endif
( oact.sa_handler == PL_csighandler1p
#ifndef PERL_USE_3ARG_SIGHANDLER
|| oact.sa_handler == PL_csighandlerp
#endif
);
svp = hv_fetchs(oldaction, "SAFE", TRUE);
sv_setiv(*svp, safe);
}
if (action) {
int safe;
/* Set up any desired flags. */
svp = hv_fetchs(action, "FLAGS", FALSE);
act.sa_flags = svp ? SvIV(*svp) : 0;
/* Safe signals use "csighandler", which vectors through the
PL_sighandlerp pointer when it's safe to do so.
(BTW, "csighandler" is very different from "sighandler".) */
svp = hv_fetchs(action, "SAFE", FALSE);
safe = *svp && SvTRUE(*svp);
#ifdef SA_SIGINFO
if (act.sa_flags & SA_SIGINFO) {
/* 3-arg handler */
act.sa_sigaction =
safe ? PL_csighandler3p : PL_sighandler3p;
}
else
#endif
{
/* 1-arg handler */
act.sa_handler =
safe ? PL_csighandler1p : PL_sighandler1p;
}
/* Vector new Perl handler through %SIG.
(The core signal handlers read %SIG to dispatch.) */
svp = hv_fetchs(action, "HANDLER", FALSE);
if (!svp)
croak("Can't supply an action without a HANDLER");
sv_setsv(*sigsvp, *svp);
/* This call actually calls sigaction() with almost the
right settings, including appropriate interpretation
of DEFAULT and IGNORE. However, why are we doing
this when we're about to do it again just below? XXX */
SvSETMAGIC(*sigsvp);
/* And here again we duplicate -- DEFAULT/IGNORE checking. */
if(SvPOK(*svp)) {
const char *s=SvPVX_const(*svp);
if(strEQ(s,"IGNORE")) {
act.sa_handler = SIG_IGN;
}
else if(strEQ(s,"DEFAULT")) {
act.sa_handler = SIG_DFL;
}
}
/* Set up any desired mask. */
svp = hv_fetchs(action, "MASK", FALSE);
if (svp && sv_isa(*svp, "POSIX::SigSet")) {
sigset = (sigset_t *) SvPV_nolen(SvRV(*svp));
act.sa_mask = *sigset;
}
else
sigemptyset(& act.sa_mask);
/* Don't worry about cleaning up *sigsvp if this fails,
* because that means we tried to disposition a
* nonblockable signal, in which case *sigsvp is
* essentially meaningless anyway.
*/
RETVAL = sigaction(sig, & act, (struct sigaction *)0);
if(RETVAL == -1) {
LEAVE;
XSRETURN_UNDEF;
}
}
LEAVE;
}
#endif
OUTPUT:
RETVAL
SysRet
sigpending(sigset)
POSIX::SigSet sigset
ALIAS:
sigsuspend = 1
CODE:
#ifdef __amigaos4__
RETVAL = not_here("sigpending");
#else
RETVAL = ix ? sigsuspend(sigset) : sigpending(sigset);
#endif
OUTPUT:
RETVAL
CLEANUP:
PERL_ASYNC_CHECK();
SysRet
sigprocmask(how, sigset, oldsigset = 0)
int how
POSIX::SigSet sigset = NO_INIT
POSIX::SigSet oldsigset = NO_INIT
INIT:
if (! SvOK(ST(1))) {
sigset = NULL;
} else if (sv_isa(ST(1), "POSIX::SigSet")) {
sigset = (sigset_t *) SvPV_nolen(SvRV(ST(1)));
} else {
croak("sigset is not of type POSIX::SigSet");
}
if (items < 3 || ! SvOK(ST(2))) {
oldsigset = NULL;
} else if (sv_isa(ST(2), "POSIX::SigSet")) {
oldsigset = (sigset_t *) SvPV_nolen(SvRV(ST(2)));
} else {
croak("oldsigset is not of type POSIX::SigSet");
}
void
_exit(status)
int status
SysRet
dup2(fd1, fd2)
int fd1
int fd2
CODE:
if (fd1 >= 0 && fd2 >= 0) {
#ifdef WIN32
/* RT #98912 - More Microsoft muppetry - failing to
actually implemented the well known documented POSIX
behaviour for a POSIX API.
http://msdn.microsoft.com/en-us/library/8syseb29.aspx */
RETVAL = dup2(fd1, fd2) == -1 ? -1 : fd2;
#else
RETVAL = dup2(fd1, fd2);
#endif
} else {
SETERRNO(EBADF,RMS_IFI);
RETVAL = -1;
}
OUTPUT:
RETVAL
SV *
lseek(fd, offset, whence)
POSIX::Fd fd
Off_t offset
int whence
CODE:
{
Off_t pos = PerlLIO_lseek(fd, offset, whence);
RETVAL = sizeof(Off_t) > sizeof(IV)
? newSVnv((NV)pos) : newSViv((IV)pos);
}
OUTPUT:
RETVAL
void
nice(incr)
int incr
PPCODE:
errno = 0;
if ((incr = nice(incr)) != -1 || errno == 0) {
if (incr == 0)
XPUSHs(newSVpvs_flags("0 but true", SVs_TEMP));
else
XPUSHs(sv_2mortal(newSViv(incr)));
}
void
pipe()
PPCODE:
int fds[2];
if (pipe(fds) != -1) {
EXTEND(SP,2);
PUSHs(sv_2mortal(newSViv(fds[0])));
PUSHs(sv_2mortal(newSViv(fds[1])));
}
SysRet
read(fd, buffer, nbytes)
PREINIT:
SV *sv_buffer = SvROK(ST(1)) ? SvRV(ST(1)) : ST(1);
INPUT:
POSIX::Fd fd
size_t nbytes
char * buffer = sv_grow( sv_buffer, nbytes+1 );
CLEANUP:
if (RETVAL >= 0) {
SvCUR_set(sv_buffer, RETVAL);
SvPOK_only(sv_buffer);
*SvEND(sv_buffer) = '\0';
SvTAINTED_on(sv_buffer);
}
SysRet
setpgid(pid, pgid)
pid_t pid
pid_t pgid
pid_t
setsid()
pid_t
tcgetpgrp(fd)
POSIX::Fd fd
SysRet
tcsetpgrp(fd, pgrp_id)
POSIX::Fd fd
pid_t pgrp_id
void
uname()
PPCODE:
#ifdef HAS_UNAME
struct utsname buf;
if (uname(&buf) >= 0) {
EXTEND(SP, 5);
PUSHs(newSVpvn_flags(buf.sysname, strlen(buf.sysname), SVs_TEMP));
PUSHs(newSVpvn_flags(buf.nodename, strlen(buf.nodename), SVs_TEMP));
PUSHs(newSVpvn_flags(buf.release, strlen(buf.release), SVs_TEMP));
PUSHs(newSVpvn_flags(buf.version, strlen(buf.version), SVs_TEMP));
PUSHs(newSVpvn_flags(buf.machine, strlen(buf.machine), SVs_TEMP));
}
#else
uname((char *) 0); /* A stub to call not_here(). */
#endif
SysRet
write(fd, buffer, nbytes)
POSIX::Fd fd
char * buffer
size_t nbytes
void
abort()
#if defined(HAS_MBRLEN) && (defined(USE_ITHREADS) || ! defined(HAS_MBLEN))
# define USE_MBRLEN
#else
# undef USE_MBRLEN
#endif
int
mblen(s, n = ~0)
SV * s
size_t n
CODE:
errno = 0;
CHECK_AND_WARN_PROBLEMATIC_LOCALE_;
SvGETMAGIC(s);
if (! SvOK(s)) {
#ifdef USE_MBRLEN
/* Initialize the shift state in PL_mbrlen_ps. The Standard says
* that should be all zeros. */
memzero(&PL_mbrlen_ps, sizeof(PL_mbrlen_ps));
RETVAL = 0;
#else
MBLEN_LOCK_;
RETVAL = mblen(NULL, 0);
MBLEN_UNLOCK_;
#endif
}
else { /* Not resetting state */
SV * byte_s = sv_2mortal(newSVsv_nomg(s));
if (! sv_utf8_downgrade_nomg(byte_s, TRUE)) {
SETERRNO(EINVAL, LIB_INVARG);
RETVAL = -1;
}
else {
size_t len;
char * string = SvPVbyte(byte_s, len);
if (n < len) len = n;
#ifdef USE_MBRLEN
MBRLEN_LOCK_;
RETVAL = (SSize_t) mbrlen(string, len, &PL_mbrlen_ps);
MBRLEN_UNLOCK_;
if (RETVAL < 0) RETVAL = -1; /* Use mblen() ret code for
transparency */
#else
/* Locking prevents races, but locales can be switched out
* without locking, so this isn't a cure all */
MBLEN_LOCK_;
RETVAL = mblen(string, len);
MBLEN_UNLOCK_;
#endif
}
}
OUTPUT:
RETVAL
int
mbtowc(pwc, s, n = ~0)
SV * pwc
SV * s
size_t n
CODE:
RETVAL = -1;
#if ! defined(HAS_MBTOWC) && ! defined(HAS_MBRTOWC)
PERL_UNUSED_ARG(pwc);
PERL_UNUSED_ARG(s);
PERL_UNUSED_ARG(n);
#else
errno = 0;
SvGETMAGIC(s);
if (! SvOK(s)) { /* Initialize state */
mbtowc_(NULL, NULL, 0);
}
else { /* Not resetting state */
wchar_t wc = 0;
SV * byte_s = sv_2mortal(newSVsv_nomg(s));
if (! sv_utf8_downgrade_nomg(byte_s, TRUE)) {
SETERRNO(EINVAL, LIB_INVARG);
RETVAL = -1;
}
else {
size_t len;
char * string = SvPVbyte(byte_s, len);
if (n < len) len = n;
RETVAL = mbtowc_(&wc, string, len);
if (RETVAL >= 0) {
sv_setiv_mg(pwc, wc);
}
else { /* Use mbtowc() ret code for transparency */
RETVAL = -1;
}
}
}
#endif
OUTPUT:
RETVAL
#if defined(HAS_WCRTOMB) && (defined(USE_ITHREADS) || ! defined(HAS_WCTOMB))
# define USE_WCRTOMB
#else
# undef USE_WCRTOMB
#endif
int
wctomb(s, wchar)
SV * s
wchar_t wchar
CODE:
errno = 0;
CHECK_AND_WARN_PROBLEMATIC_LOCALE_;
SvGETMAGIC(s);
if (s == &PL_sv_undef) {
#ifdef USE_WCRTOMB
/* The man pages khw looked at are in agreement that this works.
* But probably memzero would too */
WCRTOMB_LOCK_;
RETVAL = wcrtomb(NULL, L'\0', &PL_wcrtomb_ps);
WCRTOMB_UNLOCK_;
#else
WCTOMB_LOCK_;
RETVAL = wctomb(NULL, L'\0');
WCTOMB_UNLOCK_;
#endif
}
else { /* Not resetting state */
char buffer[MB_LEN_MAX];
#ifdef USE_WCRTOMB
WCRTOMB_LOCK_;
RETVAL = wcrtomb(buffer, wchar, &PL_wcrtomb_ps);
WCRTOMB_UNLOCK_;
#else
/* Locking prevents races, but locales can be switched out without
* locking, so this isn't a cure all */
WCTOMB_LOCK_;
RETVAL = wctomb(buffer, wchar);
WCTOMB_UNLOCK_;
#endif
if (RETVAL >= 0) {
sv_setpvn_mg(s, buffer, RETVAL);
}
}
OUTPUT:
RETVAL
int
strcoll(s1, s2)
char * s1
char * s2
CODE:
CHECK_AND_WARN_PROBLEMATIC_LOCALE_;
LC_COLLATE_LOCK;
RETVAL = strcoll(s1, s2);
LC_COLLATE_UNLOCK;
OUTPUT:
RETVAL
void
strtod(str)
char * str
PREINIT:
double num;
char *unparsed;
PPCODE:
DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
num = strtod(str, &unparsed);
RESTORE_LC_NUMERIC();
PUSHs(sv_2mortal(newSVnv(num)));
if (GIMME_V == G_LIST) {
EXTEND(SP, 1);
if (unparsed)
PUSHs(sv_2mortal(newSViv(strlen(unparsed))));
else
PUSHs(&PL_sv_undef);
}
#ifdef HAS_STRTOLD
void
strtold(str)
char * str
PREINIT:
long double num;
char *unparsed;
PPCODE:
DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
STORE_LC_NUMERIC_FORCE_TO_UNDERLYING();
num = strtold(str, &unparsed);
RESTORE_LC_NUMERIC();
PUSHs(sv_2mortal(newSVnv(num)));
if (GIMME_V == G_LIST) {
EXTEND(SP, 1);
if (unparsed)
PUSHs(sv_2mortal(newSViv(strlen(unparsed))));
else
PUSHs(&PL_sv_undef);
}
#endif
void
strtol(str, base = 0)
char * str
int base
PREINIT:
long num;
char *unparsed;
PPCODE:
CHECK_AND_WARN_PROBLEMATIC_LOCALE_;
if (base == 0 || inRANGE(base, 2, 36)) {
num = strtol(str, &unparsed, base);
#if IVSIZE < LONGSIZE
if (num < IV_MIN || num > IV_MAX)
PUSHs(sv_2mortal(newSVnv((NV)num)));
else
#endif
PUSHs(sv_2mortal(newSViv((IV)num)));
if (GIMME_V == G_LIST) {
EXTEND(SP, 1);
if (unparsed)
PUSHs(sv_2mortal(newSViv(strlen(unparsed))));
else
PUSHs(&PL_sv_undef);
}
} else {
SETERRNO(EINVAL, LIB_INVARG);
PUSHs(&PL_sv_undef);
if (GIMME_V == G_LIST) {
EXTEND(SP, 1);
PUSHs(&PL_sv_undef);
}
}
void
strtoul(str, base = 0)
const char * str
int base
PREINIT:
unsigned long num;
char *unparsed = NULL;
PPCODE:
PERL_UNUSED_VAR(str);
PERL_UNUSED_VAR(base);
CHECK_AND_WARN_PROBLEMATIC_LOCALE_;
if (base == 0 || inRANGE(base, 2, 36)) {
num = strtoul(str, &unparsed, base);
#if UVSIZE < LONGSIZE
if (num > UV_MAX)
PUSHs(sv_2mortal(newSVnv((NV)num)));
else
#endif
PUSHs(sv_2mortal(newSVuv((UV)num)));
if (GIMME_V == G_LIST) {
EXTEND(SP, 1);
if (unparsed)
PUSHs(sv_2mortal(newSViv(strlen(unparsed))));
else
PUSHs(&PL_sv_undef);
}
} else {
SETERRNO(EINVAL, LIB_INVARG);
PUSHs(&PL_sv_undef);
if (GIMME_V == G_LIST) {
EXTEND(SP, 1);
PUSHs(&PL_sv_undef);
}
}
void
strxfrm(src)
SV * src
CODE:
#ifdef USE_LOCALE_COLLATE
CHECK_AND_WARN_PROBLEMATIC_LOCALE_;
ST(0) = Perl_strxfrm(aTHX_ src);
#else
ST(0) = src;
#endif
SysRet
mkfifo(filename, mode)
char * filename
Mode_t mode
ALIAS:
access = 1
CODE:
if(ix) {
RETVAL = access(filename, mode);
} else {
TAINT_PROPER("mkfifo");
RETVAL = mkfifo(filename, mode);
}
OUTPUT:
RETVAL
SysRet
tcdrain(fd)
POSIX::Fd fd
ALIAS:
close = 1
dup = 2
CODE:
if (fd >= 0) {
RETVAL = ix == 1 ? close(fd)
: (ix < 1 ? tcdrain(fd) : dup(fd));
} else {
SETERRNO(EBADF,RMS_IFI);
RETVAL = -1;
}
OUTPUT:
RETVAL
SysRet
tcflow(fd, action)
POSIX::Fd fd
int action
ALIAS:
tcflush = 1
tcsendbreak = 2
CODE:
if (action >= 0) {
RETVAL = ix == 1 ? tcflush(fd, action)
: (ix < 1 ? tcflow(fd, action) : tcsendbreak(fd, action));
} else {
SETERRNO(EINVAL,LIB_INVARG);
RETVAL = -1;
}
OUTPUT:
RETVAL
void
asctime(sec, min, hour, mday, mon, year, wday = 0, yday = 0, isdst = -1)
int sec
int min
int hour
int mday
int mon
int year
int wday
int yday
int isdst
ALIAS:
mktime = 1
PPCODE:
{
dXSTARG;
struct tm mytm;
init_tm(&mytm); /* XXX workaround - see init_tm() in core util.c */
mytm.tm_sec = sec;
mytm.tm_min = min;
mytm.tm_hour = hour;
mytm.tm_mday = mday;
mytm.tm_mon = mon;
mytm.tm_year = year;
mytm.tm_wday = wday;
mytm.tm_yday = yday;
mytm.tm_isdst = isdst;
if (ix) {
time_t result;
MKTIME_LOCK;
result = mktime(&mytm);
MKTIME_UNLOCK;
if (result == (time_t)-1)
SvOK_off(TARG);
else if (result == 0)
sv_setpvs(TARG, "0 but true");
else if (sizeof (IV) < sizeof (time_t) && (result < IV_MIN || IV_MAX < result))
sv_setnv(TARG, result);
else
sv_setiv(TARG, (IV)result);
} else {
ASCTIME_LOCK;
sv_setpv(TARG, asctime(&mytm));
ASCTIME_UNLOCK;
}
ST(0) = TARG;
XSRETURN(1);
}
long
clock()
char *
ctime(time)
Time_t &time
void
times()
PPCODE:
struct tms tms;
clock_t realtime;
realtime = times( &tms );
EXTEND(SP,5);
PUSHs( sv_2mortal( newSViv( (IV) realtime ) ) );
PUSHs( sv_2mortal( newSViv( (IV) tms.tms_utime ) ) );
PUSHs( sv_2mortal( newSViv( (IV) tms.tms_stime ) ) );
PUSHs( sv_2mortal( newSViv( (IV) tms.tms_cutime ) ) );
PUSHs( sv_2mortal( newSViv( (IV) tms.tms_cstime ) ) );
double
difftime(time1, time2)
Time_t time1
Time_t time2
#XXX: if $xsubpp::WantOptimize is always the default
# sv_setpv(TARG, ...) could be used rather than
# ST(0) = sv_2mortal(newSVpv(...))
void
strftime(fmt, sec, min, hour, mday, mon, year, wday = -1, yday = -1, isdst = 0)
SV * fmt
int sec
int min
int hour
int mday
int mon
int year
int wday
int yday
int isdst
CODE:
{
PERL_UNUSED_ARG(wday);
PERL_UNUSED_ARG(yday);
/* -isdst triggers backwards compatibility mode for non-zero
* 'isdst' */
SV *sv = sv_strftime_ints(fmt, sec, min, hour, mday, mon, year,
-abs(isdst));
if (sv) {
sv = sv_2mortal(sv);
}
else {
/* strftime() doesn't distinguish between errors and just an
* empty return, so even though sv_strftime_ints() has figured
* out the difference, return an empty string in all cases to
* mimic strftime() behavior */
sv = newSV_type_mortal(SVt_PV);
SvPV_set(sv, (char *) "");
SvPOK_on(sv);
SvLEN_set(sv, 0); /* Won't attempt to free the string when sv
gets destroyed */
}
ST(0) = sv;
}
void
tzset()
PPCODE:
my_tzset(aTHX);
void
tzname()
PPCODE:
EXTEND(SP,2);
/* It is undefined behavior if another thread is changing this while
* its being read */
ENVr_LOCALEr_LOCK;
PUSHs(newSVpvn_flags(tzname[0], strlen(tzname[0]), SVs_TEMP));
PUSHs(newSVpvn_flags(tzname[1], strlen(tzname[1]), SVs_TEMP));
ENVr_LOCALEr_UNLOCK;
char *
ctermid(s = 0)
char * s = 0;
CODE:
#ifdef I_TERMIOS
/* On some systems L_ctermid is a #define; but not all; this code works
* for all cases (so far...) */
s = (char *) safemalloc((size_t) L_ctermid);
#endif
RETVAL = ctermid(s);
OUTPUT:
RETVAL
CLEANUP:
#ifdef I_TERMIOS
Safefree(s);
#endif
char *
cuserid(s = 0)
char * s = 0;
CODE:
#ifdef HAS_CUSERID
RETVAL = cuserid(s);
#else
PERL_UNUSED_VAR(s);
RETVAL = 0;
not_here("cuserid");
#endif
OUTPUT:
RETVAL
SysRetLong
fpathconf(fd, name)
POSIX::Fd fd
int name
SysRetLong
pathconf(filename, name)
char * filename
int name
SysRet
pause()
CLEANUP:
PERL_ASYNC_CHECK();
unsigned int
sleep(seconds)
unsigned int seconds
CODE:
RETVAL = PerlProc_sleep(seconds);
OUTPUT:
RETVAL
SysRet
setgid(gid)
Gid_t gid
SysRet
setuid(uid)
Uid_t uid
SysRetLong
sysconf(name)
int name
char *
ttyname(fd)
POSIX::Fd fd
void
getcwd()
PPCODE:
{
dXSTARG;
getcwd_sv(TARG);
XSprePUSH; PUSHTARG;
}
SysRet
lchown(uid, gid, path)
Uid_t uid
Gid_t gid
char * path
CODE:
#ifdef HAS_LCHOWN
/* yes, the order of arguments is different,
* but consistent with CORE::chown() */
RETVAL = lchown(path, uid, gid);
#else
PERL_UNUSED_VAR(uid);
PERL_UNUSED_VAR(gid);
PERL_UNUSED_VAR(path);
RETVAL = not_here("lchown");
#endif
OUTPUT:
RETVAL
|