This file is indexed.

/usr/share/doc/glibc-doc/html/libc_31.html is in glibc-doc 2.15-0ubuntu10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- This file documents the GNU C library.

This is Edition 0.13, last updated 2011-07-19,
of The GNU C Library Reference Manual, for version
2.14 (Ubuntu EGLIBC 2.15-0ubuntu10) .

Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
2003, 2007, 2008, 2010, 2011 Free Software Foundation, Inc.

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being "Free Software Needs Free Documentation"
and "GNU Lesser General Public License", the Front-Cover texts being
"A GNU Manual", and with the Back-Cover Texts as in (a) below.  A
copy of the license is included in the section entitled "GNU Free
Documentation License".

(a) The FSF's Back-Cover Text is: "You have the freedom to
copy and modify this GNU manual.  Buying copies from the FSF
supports it in developing GNU and promoting software freedom."
 -->
<!-- Created on April 20, 2012 by texi2html 1.82
texi2html was written by: 
            Lionel Cons <Lionel.Cons@cern.ch> (original author)
            Karl Berry  <karl@freefriends.org>
            Olaf Bachmann <obachman@mathematik.uni-kl.de>
            and many others.
Maintained by: Many creative people.
Send bugs and suggestions to <texi2html-bug@nongnu.org>
-->
<head>
<title>The GNU C Library: 31. System Configuration Parameters</title>

<meta name="description" content="The GNU C Library: 31. System Configuration Parameters">
<meta name="keywords" content="The GNU C Library: 31. System Configuration Parameters">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 1.82">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.roman {font-family:serif; font-weight:normal;}
span.sansserif {font-family:sans-serif; font-weight:normal;}
ul.toc {list-style: none}
-->
</style>


</head>

<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">

<a name="System-Configuration"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="libc_30.html#System-Parameters" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#General-Limits" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc_30.html#System-Management" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="System-Configuration-Parameters"></a>
<h1 class="chapter">31. System Configuration Parameters</h1>

<p>The functions and macros listed in this chapter give information about
configuration parameters of the operating system&mdash;for example, capacity
limits, presence of optional POSIX features, and the default path for
executable files (see section <a href="#String-Parameters">String-Valued Parameters</a>).
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#General-Limits">31.1 General Capacity Limits</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           Constants and functions that describe
				various process-related limits that have
				one uniform value for any given machine.
</td></tr>
<tr><td align="left" valign="top"><a href="#System-Options">31.2 Overall System Options</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           Optional POSIX features.
</td></tr>
<tr><td align="left" valign="top"><a href="#Version-Supported">31.3 Which Version of POSIX is Supported</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Version numbers of POSIX.1 and POSIX.2.
</td></tr>
<tr><td align="left" valign="top"><a href="#Sysconf">31.4 Using <code>sysconf</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                  Getting specific configuration values
                                of general limits and system options.
</td></tr>
<tr><td align="left" valign="top"><a href="#Minimums">31.5 Minimum Values for General Capacity Limits</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                 Minimum values for general limits.
</td></tr>
<tr><td align="left" valign="top"><a href="#Limits-for-Files">31.6 Limits on File System Capacity</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         Size limitations that pertain to individual files.
                                These can vary between file systems
                                or even from file to file.
</td></tr>
<tr><td align="left" valign="top"><a href="#Options-for-Files">31.7 Optional Features in File Support</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Optional features that some files may support.
</td></tr>
<tr><td align="left" valign="top"><a href="#File-Minimums">31.8 Minimum Values for File System Limits</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">            Minimum values for file limits.
</td></tr>
<tr><td align="left" valign="top"><a href="#Pathconf">31.9 Using <code>pathconf</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                 Getting the limit values for a particular file.
</td></tr>
<tr><td align="left" valign="top"><a href="#Utility-Limits">31.10 Utility Program Capacity Limits</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           Capacity limits of some POSIX.2 utility programs.
</td></tr>
<tr><td align="left" valign="top"><a href="#Utility-Minimums">31.11 Minimum Values for Utility Limits</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         Minimum allowable values of those limits.
</td></tr>
<tr><td align="left" valign="top"><a href="#String-Parameters">31.12 String-Valued Parameters</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Getting the default search path.
</td></tr>
</table>

<hr size="6">
<a name="General-Limits"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#System-Configuration" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Options" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="General-Capacity-Limits"></a>
<h2 class="section">31.1 General Capacity Limits</h2>
<a name="index-POSIX-capacity-limits"></a>
<a name="index-limits_002c-POSIX"></a>
<a name="index-capacity-limits_002c-POSIX"></a>

<p>The POSIX.1 and POSIX.2 standards specify a number of parameters that
describe capacity limitations of the system.  These limits can be fixed
constants for a given operating system, or they can vary from machine to
machine.  For example, some limit values may be configurable by the
system administrator, either at run time or by rebuilding the kernel,
and this should not require recompiling application programs.
</p>
<a name="index-limits_002eh-2"></a>
<p>Each of the following limit parameters has a macro that is defined in
&lsquo;<tt>limits.h</tt>&rsquo; only if the system has a fixed, uniform limit for the
parameter in question.  If the system allows different file systems or
files to have different limits, then the macro is undefined; use
<code>sysconf</code> to find out the limit that applies at a particular time
on a particular machine.  See section <a href="#Sysconf">Using <code>sysconf</code></a>.
</p>
<p>Each of these parameters also has another macro, with a name starting
with &lsquo;<samp>_POSIX</samp>&rsquo;, which gives the lowest value that the limit is
allowed to have on <em>any</em> POSIX system.  See section <a href="#Minimums">Minimum Values for General Capacity Limits</a>.
</p>
<a name="index-limits_002c-program-argument-size"></a>
<dl>
<dt><a name="index-ARG_005fMAX"></a><u>Macro:</u> int <b>ARG_MAX</b></dt>
<dd><p>If defined, the unvarying maximum combined length of the <var>argv</var> and
<var>environ</var> arguments that can be passed to the <code>exec</code> functions.
</p></dd></dl>

<a name="index-limits_002c-number-of-processes"></a>
<dl>
<dt><a name="index-CHILD_005fMAX"></a><u>Macro:</u> int <b>CHILD_MAX</b></dt>
<dd><p>If defined, the unvarying maximum number of processes that can exist
with the same real user ID at any one time.  In BSD and GNU, this is
controlled by the <code>RLIMIT_NPROC</code> resource limit; see section <a href="libc_22.html#Limits-on-Resources">Limiting Resource Usage</a>.
</p></dd></dl>

<a name="index-limits_002c-number-of-open-files"></a>
<dl>
<dt><a name="index-OPEN_005fMAX"></a><u>Macro:</u> int <b>OPEN_MAX</b></dt>
<dd><p>If defined, the unvarying maximum number of files that a single process
can have open simultaneously.  In BSD and GNU, this is controlled
by the <code>RLIMIT_NOFILE</code> resource limit; see section <a href="libc_22.html#Limits-on-Resources">Limiting Resource Usage</a>.
</p></dd></dl>

<dl>
<dt><a name="index-STREAM_005fMAX"></a><u>Macro:</u> int <b>STREAM_MAX</b></dt>
<dd><p>If defined, the unvarying maximum number of streams that a single
process can have open simultaneously.  See section <a href="libc_12.html#Opening-Streams">Opening Streams</a>.
</p></dd></dl>

<a name="index-limits_002c-time-zone-name-length"></a>
<dl>
<dt><a name="index-TZNAME_005fMAX"></a><u>Macro:</u> int <b>TZNAME_MAX</b></dt>
<dd><p>If defined, the unvarying maximum length of a time zone name.
See section <a href="libc_21.html#Time-Zone-Functions">Functions and Variables for Time Zones</a>.
</p></dd></dl>

<p>These limit macros are always defined in &lsquo;<tt>limits.h</tt>&rsquo;.
</p>
<a name="index-limits_002c-number-of-supplementary-group-IDs"></a>
<dl>
<dt><a name="index-NGROUPS_005fMAX"></a><u>Macro:</u> int <b>NGROUPS_MAX</b></dt>
<dd><p>The maximum number of supplementary group IDs that one process can have.
</p>
<p>The value of this macro is actually a lower bound for the maximum.  That
is, you can count on being able to have that many supplementary group
IDs, but a particular machine might let you have even more.  You can use
<code>sysconf</code> to see whether a particular machine will let you have
more (see section <a href="#Sysconf">Using <code>sysconf</code></a>).
</p></dd></dl>

<dl>
<dt><a name="index-SSIZE_005fMAX"></a><u>Macro:</u> int <b>SSIZE_MAX</b></dt>
<dd><p>The largest value that can fit in an object of type <code>ssize_t</code>.
Effectively, this is the limit on the number of bytes that can be read
or written in a single operation.
</p>
<p>This macro is defined in all POSIX systems because this limit is never
configurable.
</p></dd></dl>

<dl>
<dt><a name="index-RE_005fDUP_005fMAX"></a><u>Macro:</u> int <b>RE_DUP_MAX</b></dt>
<dd><p>The largest number of repetitions you are guaranteed is allowed in the
construct &lsquo;<samp>\{<var>min</var>,<var>max</var>\}</samp>&rsquo; in a regular expression.
</p>
<p>The value of this macro is actually a lower bound for the maximum.  That
is, you can count on being able to have that many repetitions, but a
particular machine might let you have even more.  You can use
<code>sysconf</code> to see whether a particular machine will let you have
more (see section <a href="#Sysconf">Using <code>sysconf</code></a>).  And even the value that <code>sysconf</code> tells
you is just a lower bound&mdash;larger values might work.
</p>
<p>This macro is defined in all POSIX.2 systems, because POSIX.2 says it
should always be defined even if there is no specific imposed limit.
</p></dd></dl>

<hr size="6">
<a name="System-Options"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#General-Limits" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Version-Supported" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Overall-System-Options"></a>
<h2 class="section">31.2 Overall System Options</h2>
<a name="index-POSIX-optional-features"></a>
<a name="index-optional-POSIX-features"></a>

<p>POSIX defines certain system-specific options that not all POSIX systems
support.  Since these options are provided in the kernel, not in the
library, simply using the GNU C library does not guarantee any of these
features is supported; it depends on the system you are using.
</p>
<a name="index-unistd_002eh-27"></a>
<p>You can test for the availability of a given option using the macros in
this section, together with the function <code>sysconf</code>.  The macros are
defined only if you include &lsquo;<tt>unistd.h</tt>&rsquo;.
</p>
<p>For the following macros, if the macro is defined in &lsquo;<tt>unistd.h</tt>&rsquo;,
then the option is supported.  Otherwise, the option may or may not be
supported; use <code>sysconf</code> to find out.  See section <a href="#Sysconf">Using <code>sysconf</code></a>.
</p>
<dl>
<dt><a name="index-_005fPOSIX_005fJOB_005fCONTROL"></a><u>Macro:</u> int <b>_POSIX_JOB_CONTROL</b></dt>
<dd><p>If this symbol is defined, it indicates that the system supports job
control.  Otherwise, the implementation behaves as if all processes
within a session belong to a single process group.  See section <a href="libc_27.html#Job-Control">Job Control</a>.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX_005fSAVED_005fIDS-1"></a><u>Macro:</u> int <b>_POSIX_SAVED_IDS</b></dt>
<dd><p>If this symbol is defined, it indicates that the system remembers the
effective user and group IDs of a process before it executes an
executable file with the set-user-ID or set-group-ID bits set, and that
explicitly changing the effective user or group IDs back to these values
is permitted.  If this option is not defined, then if a nonprivileged
process changes its effective user or group ID to the real user or group
ID of the process, it can&rsquo;t change it back again.  See section <a href="libc_29.html#Enable_002fDisable-Setuid">Enabling and Disabling Setuid Access</a>.
</p></dd></dl>

<p>For the following macros, if the macro is defined in &lsquo;<tt>unistd.h</tt>&rsquo;,
then its value indicates whether the option is supported.  A value of
<code>-1</code> means no, and any other value means yes.  If the macro is not
defined, then the option may or may not be supported; use <code>sysconf</code>
to find out.  See section <a href="#Sysconf">Using <code>sysconf</code></a>.
</p>
<dl>
<dt><a name="index-_005fPOSIX2_005fC_005fDEV"></a><u>Macro:</u> int <b>_POSIX2_C_DEV</b></dt>
<dd><p>If this symbol is defined, it indicates that the system has the POSIX.2
C compiler command, <code>c89</code>.  The GNU C library always defines this
as <code>1</code>, on the assumption that you would not have installed it if
you didn&rsquo;t have a C compiler.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX2_005fFORT_005fDEV"></a><u>Macro:</u> int <b>_POSIX2_FORT_DEV</b></dt>
<dd><p>If this symbol is defined, it indicates that the system has the POSIX.2
Fortran compiler command, <code>fort77</code>.  The GNU C library never
defines this, because we don&rsquo;t know what the system has.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX2_005fFORT_005fRUN"></a><u>Macro:</u> int <b>_POSIX2_FORT_RUN</b></dt>
<dd><p>If this symbol is defined, it indicates that the system has the POSIX.2
<code>asa</code> command to interpret Fortran carriage control.  The GNU C
library never defines this, because we don&rsquo;t know what the system has.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX2_005fLOCALEDEF"></a><u>Macro:</u> int <b>_POSIX2_LOCALEDEF</b></dt>
<dd><p>If this symbol is defined, it indicates that the system has the POSIX.2
<code>localedef</code> command.  The GNU C library never defines this, because
we don&rsquo;t know what the system has.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX2_005fSW_005fDEV"></a><u>Macro:</u> int <b>_POSIX2_SW_DEV</b></dt>
<dd><p>If this symbol is defined, it indicates that the system has the POSIX.2
commands <code>ar</code>, <code>make</code>, and <code>strip</code>.  The GNU C library
always defines this as <code>1</code>, on the assumption that you had to have
<code>ar</code> and <code>make</code> to install the library, and it&rsquo;s unlikely that
<code>strip</code> would be absent when those are present.
</p></dd></dl>

<hr size="6">
<a name="Version-Supported"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#System-Options" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Sysconf" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Which-Version-of-POSIX-is-Supported"></a>
<h2 class="section">31.3 Which Version of POSIX is Supported</h2>

<dl>
<dt><a name="index-_005fPOSIX_005fVERSION"></a><u>Macro:</u> long int <b>_POSIX_VERSION</b></dt>
<dd><p>This constant represents the version of the POSIX.1 standard to which
the implementation conforms.  For an implementation conforming to the
1995 POSIX.1 standard, the value is the integer <code>199506L</code>.
</p>
<p><code>_POSIX_VERSION</code> is always defined (in &lsquo;<tt>unistd.h</tt>&rsquo;) in any
POSIX system.
</p>
<p><strong>Usage Note:</strong> Don&rsquo;t try to test whether the system supports POSIX
by including &lsquo;<tt>unistd.h</tt>&rsquo; and then checking whether
<code>_POSIX_VERSION</code> is defined.  On a non-POSIX system, this will
probably fail because there is no &lsquo;<tt>unistd.h</tt>&rsquo;.  We do not know of
<em>any</em> way you can reliably test at compilation time whether your
target system supports POSIX or whether &lsquo;<tt>unistd.h</tt>&rsquo; exists.
</p>
<p>The GNU C compiler predefines the symbol <code>__POSIX__</code> if the target
system is a POSIX system.  Provided you do not use any other compilers
on POSIX systems, testing <code>defined (__POSIX__)</code> will reliably
detect such systems.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX2_005fC_005fVERSION"></a><u>Macro:</u> long int <b>_POSIX2_C_VERSION</b></dt>
<dd><p>This constant represents the version of the POSIX.2 standard which the
library and system kernel support.  We don&rsquo;t know what value this will
be for the first version of the POSIX.2 standard, because the value is
based on the year and month in which the standard is officially adopted.
</p>
<p>The value of this symbol says nothing about the utilities installed on
the system.
</p>
<p><strong>Usage Note:</strong> You can use this macro to tell whether a POSIX.1
system library supports POSIX.2 as well.  Any POSIX.1 system contains
&lsquo;<tt>unistd.h</tt>&rsquo;, so include that file and then test <code>defined
(_POSIX2_C_VERSION)</code>.
</p></dd></dl>

<hr size="6">
<a name="Sysconf"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Version-Supported" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Sysconf-Definition" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Using-sysconf"></a>
<h2 class="section">31.4 Using <code>sysconf</code></h2>

<p>When your system has configurable system limits, you can use the
<code>sysconf</code> function to find out the value that applies to any
particular machine.  The function and the associated <var>parameter</var>
constants are declared in the header file &lsquo;<tt>unistd.h</tt>&rsquo;.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Sysconf-Definition">31.4.1 Definition of <code>sysconf</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Detailed specifications of <code>sysconf</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Constants-for-Sysconf">31.4.2 Constants for <code>sysconf</code> Parameters</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">     The list of parameters <code>sysconf</code> can read.
</td></tr>
<tr><td align="left" valign="top"><a href="#Examples-of-Sysconf">31.4.3 Examples of <code>sysconf</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">       How to use <code>sysconf</code> and the parameter
				 macros properly together.
</td></tr>
</table>

<hr size="6">
<a name="Sysconf-Definition"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Sysconf" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Constants-for-Sysconf" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Sysconf" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Definition-of-sysconf"></a>
<h3 class="subsection">31.4.1 Definition of <code>sysconf</code></h3>

<dl>
<dt><a name="index-sysconf-4"></a><u>Function:</u> long int <b>sysconf</b><i> (int <var>parameter</var>)</i></dt>
<dd><p>This function is used to inquire about runtime system parameters.  The
<var>parameter</var> argument should be one of the &lsquo;<samp>_SC_</samp>&rsquo; symbols listed
below.
</p>
<p>The normal return value from <code>sysconf</code> is the value you requested.
A value of <code>-1</code> is returned both if the implementation does not
impose a limit, and in case of an error.
</p>
<p>The following <code>errno</code> error conditions are defined for this function:
</p>
<dl compact="compact">
<dt> <code>EINVAL</code></dt>
<dd><p>The value of the <var>parameter</var> is invalid.
</p></dd>
</dl>
</dd></dl>

<hr size="6">
<a name="Constants-for-Sysconf"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Sysconf-Definition" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Examples-of-Sysconf" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Sysconf" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Constants-for-sysconf-Parameters"></a>
<h3 class="subsection">31.4.2 Constants for <code>sysconf</code> Parameters</h3>

<p>Here are the symbolic constants for use as the <var>parameter</var> argument
to <code>sysconf</code>.  The values are all integer constants (more
specifically, enumeration type values).
</p>
<dl compact="compact">
<dt> <code>_SC_ARG_MAX</code>
<a name="index-_005fSC_005fARG_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>ARG_MAX</code>.
</p>
</dd>
<dt> <code>_SC_CHILD_MAX</code>
<a name="index-_005fSC_005fCHILD_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>CHILD_MAX</code>.
</p>
</dd>
<dt> <code>_SC_OPEN_MAX</code>
<a name="index-_005fSC_005fOPEN_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>OPEN_MAX</code>.
</p>
</dd>
<dt> <code>_SC_STREAM_MAX</code>
<a name="index-_005fSC_005fSTREAM_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>STREAM_MAX</code>.
</p>
</dd>
<dt> <code>_SC_TZNAME_MAX</code>
<a name="index-_005fSC_005fTZNAME_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>TZNAME_MAX</code>.
</p>
</dd>
<dt> <code>_SC_NGROUPS_MAX</code>
<a name="index-_005fSC_005fNGROUPS_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>NGROUPS_MAX</code>.
</p>
</dd>
<dt> <code>_SC_JOB_CONTROL</code>
<a name="index-_005fSC_005fJOB_005fCONTROL"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_JOB_CONTROL</code>.
</p>
</dd>
<dt> <code>_SC_SAVED_IDS</code>
<a name="index-_005fSC_005fSAVED_005fIDS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SAVED_IDS</code>.
</p>
</dd>
<dt> <code>_SC_VERSION</code>
<a name="index-_005fSC_005fVERSION"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_VERSION</code>.
</p>
</dd>
<dt> <code>_SC_CLK_TCK</code>
<a name="index-_005fSC_005fCLK_005fTCK"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>CLOCKS_PER_SEC</code>;
see section <a href="libc_21.html#CPU-Time">CPU Time Inquiry</a>.
</p>
</dd>
<dt> <code>_SC_CHARCLASS_NAME_MAX</code>
<a name="index-_005fSC_005fCHARCLASS_005fNAME_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to maximal length allowed for
a character class name in an extended locale specification.  These
extensions are not yet standardized and so this option is not standardized
as well.
</p>
</dd>
<dt> <code>_SC_REALTIME_SIGNALS</code>
<a name="index-_005fSC_005fREALTIME_005fSIGNALS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_REALTIME_SIGNALS</code>.
</p>
</dd>
<dt> <code>_SC_PRIORITY_SCHEDULING</code>
<a name="index-_005fSC_005fPRIORITY_005fSCHEDULING"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PRIORITY_SCHEDULING</code>.
</p>
</dd>
<dt> <code>_SC_TIMERS</code>
<a name="index-_005fSC_005fTIMERS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_TIMERS</code>.
</p>
</dd>
<dt> <code>_SC_ASYNCHRONOUS_IO</code>
<a name="index-_005fSC_005fASYNCHRONOUS_005fIO"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_ASYNCHRONOUS_IO</code>.
</p>
</dd>
<dt> <code>_SC_PRIORITIZED_IO</code>
<a name="index-_005fSC_005fPRIORITIZED_005fIO"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PRIORITIZED_IO</code>.
</p>
</dd>
<dt> <code>_SC_SYNCHRONIZED_IO</code>
<a name="index-_005fSC_005fSYNCHRONIZED_005fIO"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SYNCHRONIZED_IO</code>.
</p>
</dd>
<dt> <code>_SC_FSYNC</code>
<a name="index-_005fSC_005fFSYNC"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_FSYNC</code>.
</p>
</dd>
<dt> <code>_SC_MAPPED_FILES</code>
<a name="index-_005fSC_005fMAPPED_005fFILES"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MAPPED_FILES</code>.
</p>
</dd>
<dt> <code>_SC_MEMLOCK</code>
<a name="index-_005fSC_005fMEMLOCK"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MEMLOCK</code>.
</p>
</dd>
<dt> <code>_SC_MEMLOCK_RANGE</code>
<a name="index-_005fSC_005fMEMLOCK_005fRANGE"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MEMLOCK_RANGE</code>.
</p>
</dd>
<dt> <code>_SC_MEMORY_PROTECTION</code>
<a name="index-_005fSC_005fMEMORY_005fPROTECTION"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MEMORY_PROTECTION</code>.
</p>
</dd>
<dt> <code>_SC_MESSAGE_PASSING</code>
<a name="index-_005fSC_005fMESSAGE_005fPASSING"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MESSAGE_PASSING</code>.
</p>
</dd>
<dt> <code>_SC_SEMAPHORES</code>
<a name="index-_005fSC_005fSEMAPHORES"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SEMAPHORES</code>.
</p>
</dd>
<dt> <code>_SC_SHARED_MEMORY_OBJECTS</code>
<a name="index-_005fSC_005fSHARED_005fMEMORY_005fOBJECTS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to<br>
<code>_POSIX_SHARED_MEMORY_OBJECTS</code>.
</p>
</dd>
<dt> <code>_SC_AIO_LISTIO_MAX</code>
<a name="index-_005fSC_005fAIO_005fLISTIO_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_AIO_LISTIO_MAX</code>.
</p>
</dd>
<dt> <code>_SC_AIO_MAX</code>
<a name="index-_005fSC_005fAIO_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_AIO_MAX</code>.
</p>
</dd>
<dt> <code>_SC_AIO_PRIO_DELTA_MAX</code>
<a name="index-_005fSC_005fAIO_005fPRIO_005fDELTA_005fMAX"></a>
</dt>
<dd><p>Inquire the value by which a process can decrease its asynchronous I/O
priority level from its own scheduling priority.  This corresponds to the
run-time invariant value <code>AIO_PRIO_DELTA_MAX</code>.
</p>
</dd>
<dt> <code>_SC_DELAYTIMER_MAX</code>
<a name="index-_005fSC_005fDELAYTIMER_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_DELAYTIMER_MAX</code>.
</p>
</dd>
<dt> <code>_SC_MQ_OPEN_MAX</code>
<a name="index-_005fSC_005fMQ_005fOPEN_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MQ_OPEN_MAX</code>.
</p>
</dd>
<dt> <code>_SC_MQ_PRIO_MAX</code>
<a name="index-_005fSC_005fMQ_005fPRIO_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_MQ_PRIO_MAX</code>.
</p>
</dd>
<dt> <code>_SC_RTSIG_MAX</code>
<a name="index-_005fSC_005fRTSIG_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_RTSIG_MAX</code>.
</p>
</dd>
<dt> <code>_SC_SEM_NSEMS_MAX</code>
<a name="index-_005fSC_005fSEM_005fNSEMS_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SEM_NSEMS_MAX</code>.
</p>
</dd>
<dt> <code>_SC_SEM_VALUE_MAX</code>
<a name="index-_005fSC_005fSEM_005fVALUE_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SEM_VALUE_MAX</code>.
</p>
</dd>
<dt> <code>_SC_SIGQUEUE_MAX</code>
<a name="index-_005fSC_005fSIGQUEUE_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SIGQUEUE_MAX</code>.
</p>
</dd>
<dt> <code>_SC_TIMER_MAX</code>
<a name="index-_005fSC_005fTIMER_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_TIMER_MAX</code>.
</p>
</dd>
<dt> <code>_SC_PII</code>
<a name="index-_005fSC_005fPII"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII</code>.
</p>
</dd>
<dt> <code>_SC_PII_XTI</code>
<a name="index-_005fSC_005fPII_005fXTI"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_XTI</code>.
</p>
</dd>
<dt> <code>_SC_PII_SOCKET</code>
<a name="index-_005fSC_005fPII_005fSOCKET"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_SOCKET</code>.
</p>
</dd>
<dt> <code>_SC_PII_INTERNET</code>
<a name="index-_005fSC_005fPII_005fINTERNET"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_INTERNET</code>.
</p>
</dd>
<dt> <code>_SC_PII_OSI</code>
<a name="index-_005fSC_005fPII_005fOSI"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_OSI</code>.
</p>
</dd>
<dt> <code>_SC_SELECT</code>
<a name="index-_005fSC_005fSELECT"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_SELECT</code>.
</p>
</dd>
<dt> <code>_SC_UIO_MAXIOV</code>
<a name="index-_005fSC_005fUIO_005fMAXIOV"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_UIO_MAXIOV</code>.
</p>
</dd>
<dt> <code>_SC_PII_INTERNET_STREAM</code>
<a name="index-_005fSC_005fPII_005fINTERNET_005fSTREAM"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_INTERNET_STREAM</code>.
</p>
</dd>
<dt> <code>_SC_PII_INTERNET_DGRAM</code>
<a name="index-_005fSC_005fPII_005fINTERNET_005fDGRAM"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_INTERNET_DGRAM</code>.
</p>
</dd>
<dt> <code>_SC_PII_OSI_COTS</code>
<a name="index-_005fSC_005fPII_005fOSI_005fCOTS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_OSI_COTS</code>.
</p>
</dd>
<dt> <code>_SC_PII_OSI_CLTS</code>
<a name="index-_005fSC_005fPII_005fOSI_005fCLTS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_OSI_CLTS</code>.
</p>
</dd>
<dt> <code>_SC_PII_OSI_M</code>
<a name="index-_005fSC_005fPII_005fOSI_005fM"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_PII_OSI_M</code>.
</p>
</dd>
<dt> <code>_SC_T_IOV_MAX</code>
<a name="index-_005fSC_005fT_005fIOV_005fMAX"></a>
</dt>
<dd><p>Inquire the value of the value associated with the <code>T_IOV_MAX</code>
variable.
</p>
</dd>
<dt> <code>_SC_THREADS</code>
<a name="index-_005fSC_005fTHREADS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_THREADS</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_SAFE_FUNCTIONS</code>
<a name="index-_005fSC_005fTHREAD_005fSAFE_005fFUNCTIONS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to<br>
<code>_POSIX_THREAD_SAFE_FUNCTIONS</code>.
</p>
</dd>
<dt> <code>_SC_GETGR_R_SIZE_MAX</code>
<a name="index-_005fSC_005fGETGR_005fR_005fSIZE_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_GETGR_R_SIZE_MAX</code>.
</p>
</dd>
<dt> <code>_SC_GETPW_R_SIZE_MAX</code>
<a name="index-_005fSC_005fGETPW_005fR_005fSIZE_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_GETPW_R_SIZE_MAX</code>.
</p>
</dd>
<dt> <code>_SC_LOGIN_NAME_MAX</code>
<a name="index-_005fSC_005fLOGIN_005fNAME_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_LOGIN_NAME_MAX</code>.
</p>
</dd>
<dt> <code>_SC_TTY_NAME_MAX</code>
<a name="index-_005fSC_005fTTY_005fNAME_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_TTY_NAME_MAX</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_DESTRUCTOR_ITERATIONS</code>
<a name="index-_005fSC_005fTHREAD_005fDESTRUCTOR_005fITERATIONS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to
<code>_POSIX_THREAD_DESTRUCTOR_ITERATIONS</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_KEYS_MAX</code>
<a name="index-_005fSC_005fTHREAD_005fKEYS_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_THREAD_KEYS_MAX</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_STACK_MIN</code>
<a name="index-_005fSC_005fTHREAD_005fSTACK_005fMIN"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_THREAD_STACK_MIN</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_THREADS_MAX</code>
<a name="index-_005fSC_005fTHREAD_005fTHREADS_005fMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_THREAD_THREADS_MAX</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_ATTR_STACKADDR</code>
<a name="index-_005fSC_005fTHREAD_005fATTR_005fSTACKADDR"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to<br>a
<code>_POSIX_THREAD_ATTR_STACKADDR</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_ATTR_STACKSIZE</code>
<a name="index-_005fSC_005fTHREAD_005fATTR_005fSTACKSIZE"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to<br>
<code>_POSIX_THREAD_ATTR_STACKSIZE</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_PRIORITY_SCHEDULING</code>
<a name="index-_005fSC_005fTHREAD_005fPRIORITY_005fSCHEDULING"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to
<code>_POSIX_THREAD_PRIORITY_SCHEDULING</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_PRIO_INHERIT</code>
<a name="index-_005fSC_005fTHREAD_005fPRIO_005fINHERIT"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_THREAD_PRIO_INHERIT</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_PRIO_PROTECT</code>
<a name="index-_005fSC_005fTHREAD_005fPRIO_005fPROTECT"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_POSIX_THREAD_PRIO_PROTECT</code>.
</p>
</dd>
<dt> <code>_SC_THREAD_PROCESS_SHARED</code>
<a name="index-_005fSC_005fTHREAD_005fPROCESS_005fSHARED"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to
<code>_POSIX_THREAD_PROCESS_SHARED</code>.
</p>
</dd>
<dt> <code>_SC_2_C_DEV</code>
<a name="index-_005fSC_005f2_005fC_005fDEV"></a>
</dt>
<dd><p>Inquire about whether the system has the POSIX.2 C compiler command,
<code>c89</code>.
</p>
</dd>
<dt> <code>_SC_2_FORT_DEV</code>
<a name="index-_005fSC_005f2_005fFORT_005fDEV"></a>
</dt>
<dd><p>Inquire about whether the system has the POSIX.2 Fortran compiler
command, <code>fort77</code>.
</p>
</dd>
<dt> <code>_SC_2_FORT_RUN</code>
<a name="index-_005fSC_005f2_005fFORT_005fRUN"></a>
</dt>
<dd><p>Inquire about whether the system has the POSIX.2 <code>asa</code> command to
interpret Fortran carriage control.
</p>
</dd>
<dt> <code>_SC_2_LOCALEDEF</code>
<a name="index-_005fSC_005f2_005fLOCALEDEF"></a>
</dt>
<dd><p>Inquire about whether the system has the POSIX.2 <code>localedef</code>
command.
</p>
</dd>
<dt> <code>_SC_2_SW_DEV</code>
<a name="index-_005fSC_005f2_005fSW_005fDEV"></a>
</dt>
<dd><p>Inquire about whether the system has the POSIX.2 commands <code>ar</code>,
<code>make</code>, and <code>strip</code>.
</p>
</dd>
<dt> <code>_SC_BC_BASE_MAX</code>
<a name="index-_005fSC_005fBC_005fBASE_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value of <code>obase</code> in the <code>bc</code>
utility.
</p>
</dd>
<dt> <code>_SC_BC_DIM_MAX</code>
<a name="index-_005fSC_005fBC_005fDIM_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum size of an array in the <code>bc</code>
utility.
</p>
</dd>
<dt> <code>_SC_BC_SCALE_MAX</code>
<a name="index-_005fSC_005fBC_005fSCALE_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value of <code>scale</code> in the <code>bc</code>
utility.
</p>
</dd>
<dt> <code>_SC_BC_STRING_MAX</code>
<a name="index-_005fSC_005fBC_005fSTRING_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum size of a string constant in the
<code>bc</code> utility.
</p>
</dd>
<dt> <code>_SC_COLL_WEIGHTS_MAX</code>
<a name="index-_005fSC_005fCOLL_005fWEIGHTS_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum number of weights that can necessarily
be used in defining the collating sequence for a locale.
</p>
</dd>
<dt> <code>_SC_EXPR_NEST_MAX</code>
<a name="index-_005fSC_005fEXPR_005fNEST_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum number of expressions nested within
parentheses when using the <code>expr</code> utility.
</p>
</dd>
<dt> <code>_SC_LINE_MAX</code>
<a name="index-_005fSC_005fLINE_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum size of a text line that the POSIX.2 text
utilities can handle.
</p>
</dd>
<dt> <code>_SC_EQUIV_CLASS_MAX</code>
<a name="index-_005fSC_005fEQUIV_005fCLASS_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum number of weights that can be assigned to an
entry of the <code>LC_COLLATE</code> category &lsquo;<samp>order</samp>&rsquo; keyword in a locale
definition.  The GNU C library does not presently support locale
definitions.
</p>
</dd>
<dt> <code>_SC_VERSION</code>
<a name="index-_005fSC_005fVERSION-1"></a>
</dt>
<dd><p>Inquire about the version number of POSIX.1 that the library and kernel
support.
</p>
</dd>
<dt> <code>_SC_2_VERSION</code>
<a name="index-_005fSC_005f2_005fVERSION"></a>
</dt>
<dd><p>Inquire about the version number of POSIX.2 that the system utilities
support.
</p>
</dd>
<dt> <code>_SC_PAGESIZE</code>
<a name="index-_005fSC_005fPAGESIZE-2"></a>
</dt>
<dd><p>Inquire about the virtual memory page size of the machine.
<code>getpagesize</code> returns the same value (see section <a href="libc_22.html#Query-Memory-Parameters">How to get information about the memory subsystem?</a>).
</p>
</dd>
<dt> <code>_SC_NPROCESSORS_CONF</code>
<a name="index-_005fSC_005fNPROCESSORS_005fCONF-1"></a>
</dt>
<dd><p>Inquire about the number of configured processors.
</p>
</dd>
<dt> <code>_SC_NPROCESSORS_ONLN</code>
<a name="index-_005fSC_005fNPROCESSORS_005fONLN-1"></a>
</dt>
<dd><p>Inquire about the number of processors online.
</p>
</dd>
<dt> <code>_SC_PHYS_PAGES</code>
<a name="index-_005fSC_005fPHYS_005fPAGES-1"></a>
</dt>
<dd><p>Inquire about the number of physical pages in the system.
</p>
</dd>
<dt> <code>_SC_AVPHYS_PAGES</code>
<a name="index-_005fSC_005fAVPHYS_005fPAGES-1"></a>
</dt>
<dd><p>Inquire about the number of available physical pages in the system.
</p>
</dd>
<dt> <code>_SC_ATEXIT_MAX</code>
<a name="index-_005fSC_005fATEXIT_005fMAX"></a>
</dt>
<dd><p>Inquire about the number of functions which can be registered as termination
functions for <code>atexit</code>; see section <a href="libc_25.html#Cleanups-on-Exit">Cleanups on Exit</a>.
</p>
</dd>
<dt> <code>_SC_XOPEN_VERSION</code>
<a name="index-_005fSC_005fXOPEN_005fVERSION"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_VERSION</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_XCU_VERSION</code>
<a name="index-_005fSC_005fXOPEN_005fXCU_005fVERSION"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_XCU_VERSION</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_UNIX</code>
<a name="index-_005fSC_005fXOPEN_005fUNIX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_UNIX</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_REALTIME</code>
<a name="index-_005fSC_005fXOPEN_005fREALTIME"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_REALTIME</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_REALTIME_THREADS</code>
<a name="index-_005fSC_005fXOPEN_005fREALTIME_005fTHREADS"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_REALTIME_THREADS</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_LEGACY</code>
<a name="index-_005fSC_005fXOPEN_005fLEGACY"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_LEGACY</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_CRYPT</code>
<a name="index-_005fSC_005fXOPEN_005fCRYPT"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_CRYPT</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_ENH_I18N</code>
<a name="index-_005fSC_005fXOPEN_005fENH_005fI18N"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_ENH_I18N</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_SHM</code>
<a name="index-_005fSC_005fXOPEN_005fSHM"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_SHM</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_XPG2</code>
<a name="index-_005fSC_005fXOPEN_005fXPG2"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_XPG2</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_XPG3</code>
<a name="index-_005fSC_005fXOPEN_005fXPG3"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_XPG3</code>.
</p>
</dd>
<dt> <code>_SC_XOPEN_XPG4</code>
<a name="index-_005fSC_005fXOPEN_005fXPG4"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>_XOPEN_XPG4</code>.
</p>
</dd>
<dt> <code>_SC_CHAR_BIT</code>
<a name="index-_005fSC_005fCHAR_005fBIT"></a>
</dt>
<dd><p>Inquire about the number of bits in a variable of type <code>char</code>.
</p>
</dd>
<dt> <code>_SC_CHAR_MAX</code>
<a name="index-_005fSC_005fCHAR_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>char</code>.
</p>
</dd>
<dt> <code>_SC_CHAR_MIN</code>
<a name="index-_005fSC_005fCHAR_005fMIN"></a>
</dt>
<dd><p>Inquire about the minimum value which can be stored in a variable of type
<code>char</code>.
</p>
</dd>
<dt> <code>_SC_INT_MAX</code>
<a name="index-_005fSC_005fINT_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>int</code>.
</p>
</dd>
<dt> <code>_SC_INT_MIN</code>
<a name="index-_005fSC_005fINT_005fMIN"></a>
</dt>
<dd><p>Inquire about the minimum value which can be stored in a variable of type
<code>int</code>.
</p>
</dd>
<dt> <code>_SC_LONG_BIT</code>
<a name="index-_005fSC_005fLONG_005fBIT"></a>
</dt>
<dd><p>Inquire about the number of bits in a variable of type <code>long int</code>.
</p>
</dd>
<dt> <code>_SC_WORD_BIT</code>
<a name="index-_005fSC_005fWORD_005fBIT"></a>
</dt>
<dd><p>Inquire about the number of bits in a variable of a register word.
</p>
</dd>
<dt> <code>_SC_MB_LEN_MAX</code>
<a name="index-_005fSC_005fMB_005fLEN_005fMAX"></a>
</dt>
<dd><p>Inquire the maximum length of a multi-byte representation of a wide
character value.
</p>
</dd>
<dt> <code>_SC_NZERO</code>
<a name="index-_005fSC_005fNZERO"></a>
</dt>
<dd><p>Inquire about the value used to internally represent the zero priority level for
the process execution.
</p>
</dd>
<dt> <code>SC_SSIZE_MAX</code>
<a name="index-SC_005fSSIZE_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>ssize_t</code>.
</p>
</dd>
<dt> <code>_SC_SCHAR_MAX</code>
<a name="index-_005fSC_005fSCHAR_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>signed char</code>.
</p>
</dd>
<dt> <code>_SC_SCHAR_MIN</code>
<a name="index-_005fSC_005fSCHAR_005fMIN"></a>
</dt>
<dd><p>Inquire about the minimum value which can be stored in a variable of type
<code>signed char</code>.
</p>
</dd>
<dt> <code>_SC_SHRT_MAX</code>
<a name="index-_005fSC_005fSHRT_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>short int</code>.
</p>
</dd>
<dt> <code>_SC_SHRT_MIN</code>
<a name="index-_005fSC_005fSHRT_005fMIN"></a>
</dt>
<dd><p>Inquire about the minimum value which can be stored in a variable of type
<code>short int</code>.
</p>
</dd>
<dt> <code>_SC_UCHAR_MAX</code>
<a name="index-_005fSC_005fUCHAR_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>unsigned char</code>.
</p>
</dd>
<dt> <code>_SC_UINT_MAX</code>
<a name="index-_005fSC_005fUINT_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>unsigned int</code>.
</p>
</dd>
<dt> <code>_SC_ULONG_MAX</code>
<a name="index-_005fSC_005fULONG_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>unsigned long int</code>.
</p>
</dd>
<dt> <code>_SC_USHRT_MAX</code>
<a name="index-_005fSC_005fUSHRT_005fMAX"></a>
</dt>
<dd><p>Inquire about the maximum value which can be stored in a variable of type
<code>unsigned short int</code>.
</p>
</dd>
<dt> <code>_SC_NL_ARGMAX</code>
<a name="index-_005fSC_005fNL_005fARGMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>NL_ARGMAX</code>.
</p>
</dd>
<dt> <code>_SC_NL_LANGMAX</code>
<a name="index-_005fSC_005fNL_005fLANGMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>NL_LANGMAX</code>.
</p>
</dd>
<dt> <code>_SC_NL_MSGMAX</code>
<a name="index-_005fSC_005fNL_005fMSGMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>NL_MSGMAX</code>.
</p>
</dd>
<dt> <code>_SC_NL_NMAX</code>
<a name="index-_005fSC_005fNL_005fNMAX"></a>
</dt>
<dd><p>Inquire about  the parameter corresponding to <code>NL_NMAX</code>.
</p>
</dd>
<dt> <code>_SC_NL_SETMAX</code>
<a name="index-_005fSC_005fNL_005fSETMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>NL_SETMAX</code>.
</p>
</dd>
<dt> <code>_SC_NL_TEXTMAX</code>
<a name="index-_005fSC_005fNL_005fTEXTMAX"></a>
</dt>
<dd><p>Inquire about the parameter corresponding to <code>NL_TEXTMAX</code>.
</p></dd>
</dl>

<hr size="6">
<a name="Examples-of-Sysconf"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Constants-for-Sysconf" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Minimums" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Sysconf" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Examples-of-sysconf"></a>
<h3 class="subsection">31.4.3 Examples of <code>sysconf</code></h3>

<p>We recommend that you first test for a macro definition for the
parameter you are interested in, and call <code>sysconf</code> only if the
macro is not defined.  For example, here is how to test whether job
control is supported:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">int
have_job_control (void)
{
#ifdef _POSIX_JOB_CONTROL
  return 1;
#else
  int value = sysconf (_SC_JOB_CONTROL);
  if (value &lt; 0)
    /* <span class="roman">If the system is that badly wedged,</span>
       <span class="roman">there's no use trying to go on.</span>  */
    fatal (strerror (errno));
  return value;
#endif
}
</pre></td></tr></table>

<p>Here is how to get the value of a numeric limit:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">int
get_child_max ()
{
#ifdef CHILD_MAX
  return CHILD_MAX;
#else
  int value = sysconf (_SC_CHILD_MAX);
  if (value &lt; 0)
    fatal (strerror (errno));
  return value;
#endif
}
</pre></td></tr></table>

<hr size="6">
<a name="Minimums"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Examples-of-Sysconf" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Limits-for-Files" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Minimum-Values-for-General-Capacity-Limits"></a>
<h2 class="section">31.5 Minimum Values for General Capacity Limits</h2>

<p>Here are the names for the POSIX minimum upper bounds for the system
limit parameters.  The significance of these values is that you can
safely push to these limits without checking whether the particular
system you are using can go that far.
</p>
<dl compact="compact">
<dt> <code>_POSIX_AIO_LISTIO_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
I/O operations that can be specified in a list I/O call.  The value of
this constant is <code>2</code>; thus you can add up to two new entries
of the list of outstanding operations.
</p>
</dd>
<dt> <code>_POSIX_AIO_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
outstanding asynchronous I/O operations.  The value of this constant is
<code>1</code>.  So you cannot expect that you can issue more than one
operation and immediately continue with the normal work, receiving the
notifications asynchronously.
</p>
</dd>
<dt> <code>_POSIX_ARG_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum combined length of the <var>argv</var> and <var>environ</var>
arguments that can be passed to the <code>exec</code> functions.
Its value is <code>4096</code>.
</p>
</dd>
<dt> <code>_POSIX_CHILD_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum number of simultaneous processes per real user ID.  Its
value is <code>6</code>.
</p>
</dd>
<dt> <code>_POSIX_NGROUPS_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum number of supplementary group IDs per process.  Its
value is <code>0</code>.
</p>
</dd>
<dt> <code>_POSIX_OPEN_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum number of files that a single process can have open
simultaneously.  Its value is <code>16</code>.
</p>
</dd>
<dt> <code>_POSIX_SSIZE_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum value that can be stored in an object of type
<code>ssize_t</code>.  Its value is <code>32767</code>.
</p>
</dd>
<dt> <code>_POSIX_STREAM_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum number of streams that a single process can have open
simultaneously.  Its value is <code>8</code>.
</p>
</dd>
<dt> <code>_POSIX_TZNAME_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the maximum length of a time zone name.  Its value is <code>3</code>.
</p>
</dd>
<dt> <code>_POSIX2_RE_DUP_MAX</code></dt>
<dd><p>The value of this macro is the most restrictive limit permitted by POSIX
for the numbers used in the &lsquo;<samp>\{<var>min</var>,<var>max</var>\}</samp>&rsquo; construct
in a regular expression.  Its value is <code>255</code>.
</p></dd>
</dl>

<hr size="6">
<a name="Limits-for-Files"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Minimums" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Options-for-Files" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Limits-on-File-System-Capacity"></a>
<h2 class="section">31.6 Limits on File System Capacity</h2>

<p>The POSIX.1 standard specifies a number of parameters that describe the
limitations of the file system.  It&rsquo;s possible for the system to have a
fixed, uniform limit for a parameter, but this isn&rsquo;t the usual case.  On
most systems, it&rsquo;s possible for different file systems (and, for some
parameters, even different files) to have different maximum limits.  For
example, this is very likely if you use NFS to mount some of the file
systems from other machines.
</p>
<a name="index-limits_002eh-3"></a>
<p>Each of the following macros is defined in &lsquo;<tt>limits.h</tt>&rsquo; only if the
system has a fixed, uniform limit for the parameter in question.  If the
system allows different file systems or files to have different limits,
then the macro is undefined; use <code>pathconf</code> or <code>fpathconf</code> to
find out the limit that applies to a particular file.  See section <a href="#Pathconf">Using <code>pathconf</code></a>.
</p>
<p>Each parameter also has another macro, with a name starting with
&lsquo;<samp>_POSIX</samp>&rsquo;, which gives the lowest value that the limit is allowed to
have on <em>any</em> POSIX system.  See section <a href="#File-Minimums">Minimum Values for File System Limits</a>.
</p>
<a name="index-limits_002c-link-count-of-files"></a>
<dl>
<dt><a name="index-LINK_005fMAX"></a><u>Macro:</u> int <b>LINK_MAX</b></dt>
<dd><p>The uniform system limit (if any) for the number of names for a given
file.  See section <a href="libc_14.html#Hard-Links">Hard Links</a>.
</p></dd></dl>

<a name="index-limits_002c-terminal-input-queue"></a>
<dl>
<dt><a name="index-MAX_005fCANON"></a><u>Macro:</u> int <b>MAX_CANON</b></dt>
<dd><p>The uniform system limit (if any) for the amount of text in a line of
input when input editing is enabled.  See section <a href="libc_17.html#Canonical-or-Not">Two Styles of Input: Canonical or Not</a>.
</p></dd></dl>

<dl>
<dt><a name="index-MAX_005fINPUT"></a><u>Macro:</u> int <b>MAX_INPUT</b></dt>
<dd><p>The uniform system limit (if any) for the total number of characters
typed ahead as input.  See section <a href="libc_17.html#I_002fO-Queues">I/O Queues</a>.
</p></dd></dl>

<a name="index-limits_002c-file-name-length"></a>
<dl>
<dt><a name="index-NAME_005fMAX"></a><u>Macro:</u> int <b>NAME_MAX</b></dt>
<dd><p>The uniform system limit (if any) for the length of a file name component.
</p></dd></dl>

<dl>
<dt><a name="index-PATH_005fMAX"></a><u>Macro:</u> int <b>PATH_MAX</b></dt>
<dd><p>The uniform system limit (if any) for the length of an entire file name (that
is, the argument given to system calls such as <code>open</code>).
</p></dd></dl>

<a name="index-limits_002c-pipe-buffer-size"></a>
<dl>
<dt><a name="index-PIPE_005fBUF"></a><u>Macro:</u> int <b>PIPE_BUF</b></dt>
<dd><p>The uniform system limit (if any) for the number of bytes that can be
written atomically to a pipe.  If multiple processes are writing to the
same pipe simultaneously, output from different processes might be
interleaved in chunks of this size.  See section <a href="libc_15.html#Pipes-and-FIFOs">Pipes and FIFOs</a>.
</p></dd></dl>

<p>These are alternative macro names for some of the same information.
</p>
<dl>
<dt><a name="index-MAXNAMLEN"></a><u>Macro:</u> int <b>MAXNAMLEN</b></dt>
<dd><p>This is the BSD name for <code>NAME_MAX</code>.  It is defined in
&lsquo;<tt>dirent.h</tt>&rsquo;.
</p></dd></dl>

<dl>
<dt><a name="index-FILENAME_005fMAX"></a><u>Macro:</u> int <b>FILENAME_MAX</b></dt>
<dd><p>The value of this macro is an integer constant expression that
represents the maximum length of a file name string.  It is defined in
&lsquo;<tt>stdio.h</tt>&rsquo;.
</p>
<p>Unlike <code>PATH_MAX</code>, this macro is defined even if there is no actual
limit imposed.  In such a case, its value is typically a very large
number.  <strong>This is always the case on the GNU system.</strong>
</p>
<p><strong>Usage Note:</strong> Don&rsquo;t use <code>FILENAME_MAX</code> as the size of an
array in which to store a file name!  You can&rsquo;t possibly make an array
that big!  Use dynamic allocation (see section <a href="libc_3.html#Memory-Allocation">Allocating Storage For Program Data</a>) instead.
</p></dd></dl>

<hr size="6">
<a name="Options-for-Files"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Limits-for-Files" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#File-Minimums" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Optional-Features-in-File-Support"></a>
<h2 class="section">31.7 Optional Features in File Support</h2>

<p>POSIX defines certain system-specific options in the system calls for
operating on files.  Some systems support these options and others do
not.  Since these options are provided in the kernel, not in the
library, simply using the GNU C library does not guarantee that any of these
features is supported; it depends on the system you are using.  They can
also vary between file systems on a single machine.
</p>
<a name="index-unistd_002eh-28"></a>
<p>This section describes the macros you can test to determine whether a
particular option is supported on your machine.  If a given macro is
defined in &lsquo;<tt>unistd.h</tt>&rsquo;, then its value says whether the
corresponding feature is supported.  (A value of <code>-1</code> indicates no;
any other value indicates yes.)  If the macro is undefined, it means
particular files may or may not support the feature.
</p>
<p>Since all the machines that support the GNU C library also support NFS,
one can never make a general statement about whether all file systems
support the <code>_POSIX_CHOWN_RESTRICTED</code> and <code>_POSIX_NO_TRUNC</code>
features.  So these names are never defined as macros in the GNU C
library.
</p>
<dl>
<dt><a name="index-_005fPOSIX_005fCHOWN_005fRESTRICTED"></a><u>Macro:</u> int <b>_POSIX_CHOWN_RESTRICTED</b></dt>
<dd><p>If this option is in effect, the <code>chown</code> function is restricted so
that the only changes permitted to nonprivileged processes is to change
the group owner of a file to either be the effective group ID of the
process, or one of its supplementary group IDs.  See section <a href="libc_14.html#File-Owner">File Owner</a>.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX_005fNO_005fTRUNC"></a><u>Macro:</u> int <b>_POSIX_NO_TRUNC</b></dt>
<dd><p>If this option is in effect, file name components longer than
<code>NAME_MAX</code> generate an <code>ENAMETOOLONG</code> error.  Otherwise, file
name components that are too long are silently truncated.
</p></dd></dl>

<dl>
<dt><a name="index-_005fPOSIX_005fVDISABLE-1"></a><u>Macro:</u> unsigned char <b>_POSIX_VDISABLE</b></dt>
<dd><p>This option is only meaningful for files that are terminal devices.
If it is enabled, then handling for special control characters can
be disabled individually.  See section <a href="libc_17.html#Special-Characters">Special Characters</a>.
</p></dd></dl>

<a name="index-unistd_002eh-29"></a>
<p>If one of these macros is undefined, that means that the option might be
in effect for some files and not for others.  To inquire about a
particular file, call <code>pathconf</code> or <code>fpathconf</code>.
See section <a href="#Pathconf">Using <code>pathconf</code></a>.
</p>
<hr size="6">
<a name="File-Minimums"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Options-for-Files" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Pathconf" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Minimum-Values-for-File-System-Limits"></a>
<h2 class="section">31.8 Minimum Values for File System Limits</h2>

<p>Here are the names for the POSIX minimum upper bounds for some of the
above parameters.  The significance of these values is that you can
safely push to these limits without checking whether the particular
system you are using can go that far.  In most cases GNU systems do not
have these strict limitations.  The actual limit should be requested if
necessary.
</p>
<dl compact="compact">
<dt> <code>_POSIX_LINK_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum value of a
file&rsquo;s link count.  The value of this constant is <code>8</code>; thus, you
can always make up to eight names for a file without running into a
system limit.
</p>
</dd>
<dt> <code>_POSIX_MAX_CANON</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
bytes in a canonical input line from a terminal device.  The value of
this constant is <code>255</code>.
</p>
</dd>
<dt> <code>_POSIX_MAX_INPUT</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
bytes in a terminal device input queue (or typeahead buffer).
See section <a href="libc_17.html#Input-Modes">Input Modes</a>.  The value of this constant is <code>255</code>.
</p>
</dd>
<dt> <code>_POSIX_NAME_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
bytes in a file name component.  The value of this constant is
<code>14</code>.
</p>
</dd>
<dt> <code>_POSIX_PATH_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
bytes in a file name.  The value of this constant is <code>256</code>.
</p>
</dd>
<dt> <code>_POSIX_PIPE_BUF</code></dt>
<dd><p>The most restrictive limit permitted by POSIX for the maximum number of
bytes that can be written atomically to a pipe.  The value of this
constant is <code>512</code>.
</p>
</dd>
<dt> <code>SYMLINK_MAX</code></dt>
<dd><p>Maximum number of bytes in a symbolic link.
</p>
</dd>
<dt> <code>POSIX_REC_INCR_XFER_SIZE</code></dt>
<dd><p>Recommended increment for file transfer sizes between the
<code>POSIX_REC_MIN_XFER_SIZE</code> and <code>POSIX_REC_MAX_XFER_SIZE</code>
values.
</p>
</dd>
<dt> <code>POSIX_REC_MAX_XFER_SIZE</code></dt>
<dd><p>Maximum recommended file transfer size.
</p>
</dd>
<dt> <code>POSIX_REC_MIN_XFER_SIZE</code></dt>
<dd><p>Minimum recommended file transfer size.
</p>
</dd>
<dt> <code>POSIX_REC_XFER_ALIGN</code></dt>
<dd><p>Recommended file transfer buffer alignment.
</p></dd>
</dl>

<hr size="6">
<a name="Pathconf"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#File-Minimums" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Utility-Limits" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Using-pathconf"></a>
<h2 class="section">31.9 Using <code>pathconf</code></h2>

<p>When your machine allows different files to have different values for a
file system parameter, you can use the functions in this section to find
out the value that applies to any particular file.
</p>
<p>These functions and the associated constants for the <var>parameter</var>
argument are declared in the header file &lsquo;<tt>unistd.h</tt>&rsquo;.
</p>
<dl>
<dt><a name="index-pathconf"></a><u>Function:</u> long int <b>pathconf</b><i> (const char *<var>filename</var>, int <var>parameter</var>)</i></dt>
<dd><p>This function is used to inquire about the limits that apply to
the file named <var>filename</var>.
</p>
<p>The <var>parameter</var> argument should be one of the &lsquo;<samp>_PC_</samp>&rsquo; constants
listed below.
</p>
<p>The normal return value from <code>pathconf</code> is the value you requested.
A value of <code>-1</code> is returned both if the implementation does not
impose a limit, and in case of an error.  In the former case,
<code>errno</code> is not set, while in the latter case, <code>errno</code> is set
to indicate the cause of the problem.  So the only way to use this
function robustly is to store <code>0</code> into <code>errno</code> just before
calling it.
</p>
<p>Besides the usual file name errors (see section <a href="libc_11.html#File-Name-Errors">File Name Errors</a>),
the following error condition is defined for this function:
</p>
<dl compact="compact">
<dt> <code>EINVAL</code></dt>
<dd><p>The value of <var>parameter</var> is invalid, or the implementation doesn&rsquo;t
support the <var>parameter</var> for the specific file.
</p></dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-fpathconf"></a><u>Function:</u> long int <b>fpathconf</b><i> (int <var>filedes</var>, int <var>parameter</var>)</i></dt>
<dd><p>This is just like <code>pathconf</code> except that an open file descriptor
is used to specify the file for which information is requested, instead
of a file name.
</p>
<p>The following <code>errno</code> error conditions are defined for this function:
</p>
<dl compact="compact">
<dt> <code>EBADF</code></dt>
<dd><p>The <var>filedes</var> argument is not a valid file descriptor.
</p>
</dd>
<dt> <code>EINVAL</code></dt>
<dd><p>The value of <var>parameter</var> is invalid, or the implementation doesn&rsquo;t
support the <var>parameter</var> for the specific file.
</p></dd>
</dl>
</dd></dl>

<p>Here are the symbolic constants that you can use as the <var>parameter</var>
argument to <code>pathconf</code> and <code>fpathconf</code>.  The values are all
integer constants.
</p>
<dl compact="compact">
<dt> <code>_PC_LINK_MAX</code></dt>
<dd><p>Inquire about the value of <code>LINK_MAX</code>.
</p>
</dd>
<dt> <code>_PC_MAX_CANON</code></dt>
<dd><p>Inquire about the value of <code>MAX_CANON</code>.
</p>
</dd>
<dt> <code>_PC_MAX_INPUT</code></dt>
<dd><p>Inquire about the value of <code>MAX_INPUT</code>.
</p>
</dd>
<dt> <code>_PC_NAME_MAX</code></dt>
<dd><p>Inquire about the value of <code>NAME_MAX</code>.
</p>
</dd>
<dt> <code>_PC_PATH_MAX</code></dt>
<dd><p>Inquire about the value of <code>PATH_MAX</code>.
</p>
</dd>
<dt> <code>_PC_PIPE_BUF</code></dt>
<dd><p>Inquire about the value of <code>PIPE_BUF</code>.
</p>
</dd>
<dt> <code>_PC_CHOWN_RESTRICTED</code></dt>
<dd><p>Inquire about the value of <code>_POSIX_CHOWN_RESTRICTED</code>.
</p>
</dd>
<dt> <code>_PC_NO_TRUNC</code></dt>
<dd><p>Inquire about the value of <code>_POSIX_NO_TRUNC</code>.
</p>
</dd>
<dt> <code>_PC_VDISABLE</code></dt>
<dd><p>Inquire about the value of <code>_POSIX_VDISABLE</code>.
</p>
</dd>
<dt> <code>_PC_SYNC_IO</code></dt>
<dd><p>Inquire about the value of <code>_POSIX_SYNC_IO</code>.
</p>
</dd>
<dt> <code>_PC_ASYNC_IO</code></dt>
<dd><p>Inquire about the value of <code>_POSIX_ASYNC_IO</code>.
</p>
</dd>
<dt> <code>_PC_PRIO_IO</code></dt>
<dd><p>Inquire about the value of <code>_POSIX_PRIO_IO</code>.
</p>
</dd>
<dt> <code>_PC_FILESIZEBITS</code></dt>
<dd><p>Inquire about the availability of large files on the filesystem.
</p>
</dd>
<dt> <code>_PC_REC_INCR_XFER_SIZE</code></dt>
<dd><p>Inquire about the value of <code>POSIX_REC_INCR_XFER_SIZE</code>.
</p>
</dd>
<dt> <code>_PC_REC_MAX_XFER_SIZE</code></dt>
<dd><p>Inquire about the value of <code>POSIX_REC_MAX_XFER_SIZE</code>.
</p>
</dd>
<dt> <code>_PC_REC_MIN_XFER_SIZE</code></dt>
<dd><p>Inquire about the value of <code>POSIX_REC_MIN_XFER_SIZE</code>.
</p>
</dd>
<dt> <code>_PC_REC_XFER_ALIGN</code></dt>
<dd><p>Inquire about the value of <code>POSIX_REC_XFER_ALIGN</code>.
</p></dd>
</dl>

<hr size="6">
<a name="Utility-Limits"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Pathconf" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Utility-Minimums" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Utility-Program-Capacity-Limits"></a>
<h2 class="section">31.10 Utility Program Capacity Limits</h2>

<p>The POSIX.2 standard specifies certain system limits that you can access
through <code>sysconf</code> that apply to utility behavior rather than the
behavior of the library or the operating system.
</p>
<p>The GNU C library defines macros for these limits, and <code>sysconf</code>
returns values for them if you ask; but these values convey no
meaningful information.  They are simply the smallest values that
POSIX.2 permits.
</p>
<dl>
<dt><a name="index-BC_005fBASE_005fMAX"></a><u>Macro:</u> int <b>BC_BASE_MAX</b></dt>
<dd><p>The largest value of <code>obase</code> that the <code>bc</code> utility is
guaranteed to support.
</p></dd></dl>

<dl>
<dt><a name="index-BC_005fDIM_005fMAX"></a><u>Macro:</u> int <b>BC_DIM_MAX</b></dt>
<dd><p>The largest number of elements in one array that the <code>bc</code> utility
is guaranteed to support.
</p></dd></dl>

<dl>
<dt><a name="index-BC_005fSCALE_005fMAX"></a><u>Macro:</u> int <b>BC_SCALE_MAX</b></dt>
<dd><p>The largest value of <code>scale</code> that the <code>bc</code> utility is
guaranteed to support.
</p></dd></dl>

<dl>
<dt><a name="index-BC_005fSTRING_005fMAX"></a><u>Macro:</u> int <b>BC_STRING_MAX</b></dt>
<dd><p>The largest number of characters in one string constant that the
<code>bc</code> utility is guaranteed to support.
</p></dd></dl>

<dl>
<dt><a name="index-COLL_005fWEIGHTS_005fMAX"></a><u>Macro:</u> int <b>COLL_WEIGHTS_MAX</b></dt>
<dd><p>The largest number of weights that can necessarily be used in defining
the collating sequence for a locale.
</p></dd></dl>

<dl>
<dt><a name="index-EXPR_005fNEST_005fMAX"></a><u>Macro:</u> int <b>EXPR_NEST_MAX</b></dt>
<dd><p>The maximum number of expressions that can be nested within parenthesis
by the <code>expr</code> utility.
</p></dd></dl>

<dl>
<dt><a name="index-LINE_005fMAX"></a><u>Macro:</u> int <b>LINE_MAX</b></dt>
<dd><p>The largest text line that the text-oriented POSIX.2 utilities can
support.  (If you are using the GNU versions of these utilities, then
there is no actual limit except that imposed by the available virtual
memory, but there is no way that the library can tell you this.)
</p></dd></dl>

<dl>
<dt><a name="index-EQUIV_005fCLASS_005fMAX"></a><u>Macro:</u> int <b>EQUIV_CLASS_MAX</b></dt>
<dd><p>The maximum number of weights that can be assigned to an entry of the
<code>LC_COLLATE</code> category &lsquo;<samp>order</samp>&rsquo; keyword in a locale definition.
The GNU C library does not presently support locale definitions.
</p></dd></dl>

<hr size="6">
<a name="Utility-Minimums"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Utility-Limits" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#String-Parameters" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Minimum-Values-for-Utility-Limits"></a>
<h2 class="section">31.11 Minimum Values for Utility Limits</h2>

<dl compact="compact">
<dt> <code>_POSIX2_BC_BASE_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum value of
<code>obase</code> in the <code>bc</code> utility.  Its value is <code>99</code>.
</p>
</dd>
<dt> <code>_POSIX2_BC_DIM_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum size of
an array in the <code>bc</code> utility.  Its value is <code>2048</code>.
</p>
</dd>
<dt> <code>_POSIX2_BC_SCALE_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum value of
<code>scale</code> in the <code>bc</code> utility.  Its value is <code>99</code>.
</p>
</dd>
<dt> <code>_POSIX2_BC_STRING_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum size of
a string constant in the <code>bc</code> utility.  Its value is <code>1000</code>.
</p>
</dd>
<dt> <code>_POSIX2_COLL_WEIGHTS_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum number
of weights that can necessarily be used in defining the collating
sequence for a locale.  Its value is <code>2</code>.
</p>
</dd>
<dt> <code>_POSIX2_EXPR_NEST_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum number
of expressions nested within parenthesis when using the <code>expr</code> utility.
Its value is <code>32</code>.
</p>
</dd>
<dt> <code>_POSIX2_LINE_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum size of
a text line that the text utilities can handle.  Its value is
<code>2048</code>.
</p>
</dd>
<dt> <code>_POSIX2_EQUIV_CLASS_MAX</code></dt>
<dd><p>The most restrictive limit permitted by POSIX.2 for the maximum number
of weights that can be assigned to an entry of the <code>LC_COLLATE</code>
category &lsquo;<samp>order</samp>&rsquo; keyword in a locale definition.  Its value is
<code>2</code>.  The GNU C library does not presently support locale
definitions.
</p></dd>
</dl>

<hr size="6">
<a name="String-Parameters"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Utility-Minimums" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#System-Configuration" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="String_002dValued-Parameters"></a>
<h2 class="section">31.12 String-Valued Parameters</h2>

<p>POSIX.2 defines a way to get string-valued parameters from the operating
system with the function <code>confstr</code>:
</p>
<dl>
<dt><a name="index-confstr"></a><u>Function:</u> size_t <b>confstr</b><i> (int <var>parameter</var>, char *<var>buf</var>, size_t <var>len</var>)</i></dt>
<dd><p>This function reads the value of a string-valued system parameter,
storing the string into <var>len</var> bytes of memory space starting at
<var>buf</var>.  The <var>parameter</var> argument should be one of the
&lsquo;<samp>_CS_</samp>&rsquo; symbols listed below.
</p>
<p>The normal return value from <code>confstr</code> is the length of the string
value that you asked for.  If you supply a null pointer for <var>buf</var>,
then <code>confstr</code> does not try to store the string; it just returns
its length.  A value of <code>0</code> indicates an error.
</p>
<p>If the string you asked for is too long for the buffer (that is, longer
than <code><var>len</var> - 1</code>), then <code>confstr</code> stores just that much
(leaving room for the terminating null character).  You can tell that
this has happened because <code>confstr</code> returns a value greater than or
equal to <var>len</var>.
</p>
<p>The following <code>errno</code> error conditions are defined for this function:
</p>
<dl compact="compact">
<dt> <code>EINVAL</code></dt>
<dd><p>The value of the <var>parameter</var> is invalid.
</p></dd>
</dl>
</dd></dl>

<p>Currently there is just one parameter you can read with <code>confstr</code>:
</p>
<dl compact="compact">
<dt> <code>_CS_PATH</code></dt>
<dd><p>This parameter&rsquo;s value is the recommended default path for searching for
executable files.  This is the path that a user has by default just
after logging in.
</p>
</dd>
<dt> <code>_CS_LFS_CFLAGS</code></dt>
<dd><p>The returned string specifies which additional flags must be given to
the C compiler if a source is compiled using the
<code>_LARGEFILE_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS_LDFLAGS</code></dt>
<dd><p>The returned string specifies which additional flags must be given to
the linker if a source is compiled using the
<code>_LARGEFILE_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS_LIBS</code></dt>
<dd><p>The returned string specifies which additional libraries must be linked
to the application if a source is compiled using the
<code>_LARGEFILE_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS_LINTFLAGS</code></dt>
<dd><p>The returned string specifies which additional flags must be given to
the lint tool if a source is compiled using the
<code>_LARGEFILE_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS64_CFLAGS</code></dt>
<dd><p>The returned string specifies which additional flags must be given to
the C compiler if a source is compiled using the
<code>_LARGEFILE64_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS64_LDFLAGS</code></dt>
<dd><p>The returned string specifies which additional flags must be given to
the linker if a source is compiled using the
<code>_LARGEFILE64_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS64_LIBS</code></dt>
<dd><p>The returned string specifies which additional libraries must be linked
to the application if a source is compiled using the
<code>_LARGEFILE64_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p>
</dd>
<dt> <code>_CS_LFS64_LINTFLAGS</code></dt>
<dd><p>The returned string specifies which additional flags must be given to
the lint tool if a source is compiled using the
<code>_LARGEFILE64_SOURCE</code> feature select macro; see section <a href="libc_1.html#Feature-Test-Macros">Feature Test Macros</a>.
</p></dd>
</dl>

<p>The way to use <code>confstr</code> without any arbitrary limit on string size
is to call it twice: first call it to get the length, allocate the
buffer accordingly, and then call <code>confstr</code> again to fill the
buffer, like this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">char *
get_default_path (void)
{
  size_t len = confstr (_CS_PATH, NULL, 0);
  char *buffer = (char *) xmalloc (len);

  if (confstr (_CS_PATH, buf, len + 1) == 0)
    {
      free (buffer);
      return NULL;
    }

  return buffer;
}
</pre></td></tr></table>
<hr size="6">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#System-Configuration" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="libc_32.html#Cryptographic-Functions" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc.html#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="libc_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="libc_42.html#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="libc_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<p>
 <font size="-1">
  This document was generated by <em>root</em> on <em>April 20, 2012</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
 </font>
 <br>

</p>
</body>
</html>