This file is indexed.

/usr/share/doc/glibc-doc/html/libc_3.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
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
<!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: 3. Virtual Memory Allocation And Paging</title>

<meta name="description" content="The GNU C Library: 3. Virtual Memory Allocation And Paging">
<meta name="keywords" content="The GNU C Library: 3. Virtual Memory Allocation And Paging">
<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="Memory"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="libc_2.html#Error-Messages" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Concepts" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="libc_2.html#Error-Reporting" 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_4.html#Character-Handling" 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="Virtual-Memory-Allocation-And-Paging"></a>
<h1 class="chapter">3. Virtual Memory Allocation And Paging</h1>
<a name="index-memory-allocation"></a>
<a name="index-storage-allocation"></a>

<p>This chapter describes how processes manage and use memory in a system
that uses the GNU C library.
</p>
<p>The GNU C Library has several functions for dynamically allocating
virtual memory in various ways.  They vary in generality and in
efficiency.  The library also provides functions for controlling paging
and allocation of real memory.
</p>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Memory-Concepts">3.1 Process Memory Concepts</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">             An introduction to concepts and terminology.
</td></tr>
<tr><td align="left" valign="top"><a href="#Memory-Allocation">3.2 Allocating Storage For Program Data</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           Allocating storage for your program data
</td></tr>
<tr><td align="left" valign="top"><a href="#Locking-Pages">3.4 Locking Pages</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">               Preventing page faults
</td></tr>
<tr><td align="left" valign="top"><a href="#Resizing-the-Data-Segment">3.3 Resizing the Data Segment</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">   <code>brk</code>, <code>sbrk</code>
</td></tr>
</table>

<p>Memory mapped I/O is not discussed in this chapter.  See section <a href="libc_13.html#Memory_002dmapped-I_002fO">Memory-mapped I/O</a>.
</p>


<hr size="6">
<a name="Memory-Concepts"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Memory" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Process-Memory-Concepts"></a>
<h2 class="section">3.1 Process Memory Concepts</h2>

<p>One of the most basic resources a process has available to it is memory.
There are a lot of different ways systems organize memory, but in a
typical one, each process has one linear virtual address space, with
addresses running from zero to some huge maximum.  It need not be
contiguous; i.e., not all of these addresses actually can be used to
store data.
</p>
<p>The virtual memory is divided into pages (4 kilobytes is typical).
Backing each page of virtual memory is a page of real memory (called a
<em>frame</em>) or some secondary storage, usually disk space.  The disk
space might be swap space or just some ordinary disk file.  Actually, a
page of all zeroes sometimes has nothing at all backing it &ndash; there&rsquo;s
just a flag saying it is all zeroes.
<a name="index-page-frame"></a>
<a name="index-frame_002c-real-memory"></a>
<a name="index-swap-space"></a>
<a name="index-page_002c-virtual-memory"></a>
</p>
<p>The same frame of real memory or backing store can back multiple virtual
pages belonging to multiple processes.  This is normally the case, for
example, with virtual memory occupied by GNU C library code.  The same
real memory frame containing the <code>printf</code> function backs a virtual
memory page in each of the existing processes that has a <code>printf</code>
call in its program.
</p>
<p>In order for a program to access any part of a virtual page, the page
must at that moment be backed by (&ldquo;connected to&rdquo;) a real frame.  But
because there is usually a lot more virtual memory than real memory, the
pages must move back and forth between real memory and backing store
regularly, coming into real memory when a process needs to access them
and then retreating to backing store when not needed anymore.  This
movement is called <em>paging</em>.
</p>
<p>When a program attempts to access a page which is not at that moment
backed by real memory, this is known as a <em>page fault</em>.  When a page
fault occurs, the kernel suspends the process, places the page into a
real page frame (this is called &ldquo;paging in&rdquo; or &ldquo;faulting in&rdquo;), then
resumes the process so that from the process&rsquo; point of view, the page
was in real memory all along.  In fact, to the process, all pages always
seem to be in real memory.  Except for one thing: the elapsed execution
time of an instruction that would normally be a few nanoseconds is
suddenly much, much, longer (because the kernel normally has to do I/O
to complete the page-in).  For programs sensitive to that, the functions
described in <a href="#Locking-Pages">Locking Pages</a> can control it.
<a name="index-page-fault"></a>
<a name="index-paging"></a>
</p>
<p>Within each virtual address space, a process has to keep track of what
is at which addresses, and that process is called memory allocation.
Allocation usually brings to mind meting out scarce resources, but in
the case of virtual memory, that&rsquo;s not a major goal, because there is
generally much more of it than anyone needs.  Memory allocation within a
process is mainly just a matter of making sure that the same byte of
memory isn&rsquo;t used to store two different things.
</p>
<p>Processes allocate memory in two major ways: by exec and
programmatically.  Actually, forking is a third way, but it&rsquo;s not very
interesting.  See section <a href="libc_26.html#Creating-a-Process">Creating a Process</a>.
</p>
<p>Exec is the operation of creating a virtual address space for a process,
loading its basic program into it, and executing the program.  It is
done by the &ldquo;exec&rdquo; family of functions (e.g. <code>execl</code>).  The
operation takes a program file (an executable), it allocates space to
load all the data in the executable, loads it, and transfers control to
it.  That data is most notably the instructions of the program (the
<em>text</em>), but also literals and constants in the program and even
some variables: C variables with the static storage class (see section <a href="#Memory-Allocation-and-C">Memory Allocation in C Programs</a>).
<a name="index-executable"></a>
<a name="index-literals"></a>
<a name="index-constants"></a>
</p>
<p>Once that program begins to execute, it uses programmatic allocation to
gain additional memory.  In a C program with the GNU C library, there
are two kinds of programmatic allocation: automatic and dynamic.
See section <a href="#Memory-Allocation-and-C">Memory Allocation in C Programs</a>.
</p>
<p>Memory-mapped I/O is another form of dynamic virtual memory allocation.
Mapping memory to a file means declaring that the contents of certain
range of a process&rsquo; addresses shall be identical to the contents of a
specified regular file.  The system makes the virtual memory initially
contain the contents of the file, and if you modify the memory, the
system writes the same modification to the file.  Note that due to the
magic of virtual memory and page faults, there is no reason for the
system to do I/O to read the file, or allocate real memory for its
contents, until the program accesses the virtual memory.
See section <a href="libc_13.html#Memory_002dmapped-I_002fO">Memory-mapped I/O</a>.
<a name="index-memory-mapped-I_002fO"></a>
<a name="index-memory-mapped-file"></a>
<a name="index-files_002c-accessing"></a>
</p>
<p>Just as it programmatically allocates memory, the program can
programmatically deallocate (<em>free</em>) it.  You can&rsquo;t free the memory
that was allocated by exec.  When the program exits or execs, you might
say that all its memory gets freed, but since in both cases the address
space ceases to exist, the point is really moot.  See section <a href="libc_25.html#Program-Termination">Program Termination</a>.
<a name="index-execing-a-program"></a>
<a name="index-freeing-memory"></a>
<a name="index-exiting-a-program"></a>
</p>
<p>A process&rsquo; virtual address space is divided into segments.  A segment is
a contiguous range of virtual addresses.  Three important segments are:
</p>
<ul>
<li>

The <em>text segment</em> contains a program&rsquo;s instructions and literals and
static constants.  It is allocated by exec and stays the same size for
the life of the virtual address space.

</li><li>
The <em>data segment</em> is working storage for the program.  It can be
preallocated and preloaded by exec and the process can extend or shrink
it by calling functions as described in See section <a href="#Resizing-the-Data-Segment">Resizing the Data Segment</a>.  Its lower end is fixed.

</li><li>
The <em>stack segment</em> contains a program stack.  It grows as the stack
grows, but doesn&rsquo;t shrink when the stack shrinks.

</li></ul>



<hr size="6">
<a name="Memory-Allocation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Memory-Concepts" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation-and-C" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Allocating-Storage-For-Program-Data"></a>
<h2 class="section">3.2 Allocating Storage For Program Data</h2>

<p>This section covers how ordinary programs manage storage for their data,
including the famous <code>malloc</code> function and some fancier facilities
special the GNU C library and GNU Compiler.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Memory-Allocation-and-C">3.2.1 Memory Allocation in C Programs</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">     How to get different kinds of allocation in C.
</td></tr>
<tr><td align="left" valign="top"><a href="#Unconstrained-Allocation">3.2.2 Unconstrained Allocation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">    The <code>malloc</code> facility allows fully general
		 		 dynamic allocation.
</td></tr>
<tr><td align="left" valign="top"><a href="#Allocation-Debugging">3.2.3 Allocation Debugging</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Finding memory leaks and not freed memory.
</td></tr>
<tr><td align="left" valign="top"><a href="#Obstacks">3.2.4 Obstacks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                    Obstacks are less general than malloc
				 but more efficient and convenient.
</td></tr>
<tr><td align="left" valign="top"><a href="#Variable-Size-Automatic">3.2.5 Automatic Storage with Variable Size</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">     Allocation of variable-sized blocks
				 of automatic storage that are freed when the
				 calling function returns.
</td></tr>
</table>


<hr size="6">
<a name="Memory-Allocation-and-C"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Memory-Allocation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Dynamic-Memory-Allocation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Memory-Allocation-in-C-Programs"></a>
<h3 class="subsection">3.2.1 Memory Allocation in C Programs</h3>

<p>The C language supports two kinds of memory allocation through the
variables in C programs:
</p>
<ul>
<li>
<em>Static allocation</em> is what happens when you declare a static or
global variable.  Each static or global variable defines one block of
space, of a fixed size.  The space is allocated once, when your program
is started (part of the exec operation), and is never freed.
<a name="index-static-memory-allocation"></a>
<a name="index-static-storage-class"></a>

</li><li>
<em>Automatic allocation</em> happens when you declare an automatic
variable, such as a function argument or a local variable.  The space
for an automatic variable is allocated when the compound statement
containing the declaration is entered, and is freed when that
compound statement is exited.
<a name="index-automatic-memory-allocation"></a>
<a name="index-automatic-storage-class"></a>

<p>In GNU C, the size of the automatic storage can be an expression
that varies.  In other C implementations, it must be a constant.
</p></li></ul>

<p>A third important kind of memory allocation, <em>dynamic allocation</em>,
is not supported by C variables but is available via GNU C library
functions.
<a name="index-dynamic-memory-allocation"></a>
</p>
<hr size="6">
<a name="Dynamic-Memory-Allocation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Memory-Allocation-and-C" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation-and-C" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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>
<h4 class="subsubsection">3.2.1.1 Dynamic Memory Allocation</h4>
<a name="index-dynamic-memory-allocation-1"></a>

<p><em>Dynamic memory allocation</em> is a technique in which programs
determine as they are running where to store some information.  You need
dynamic allocation when the amount of memory you need, or how long you
continue to need it, depends on factors that are not known before the
program runs.
</p>
<p>For example, you may need a block to store a line read from an input
file; since there is no limit to how long a line can be, you must
allocate the memory dynamically and make it dynamically larger as you
read more of the line.
</p>
<p>Or, you may need a block for each record or each definition in the input
data; since you can&rsquo;t know in advance how many there will be, you must
allocate a new block for each record or definition as you read it.
</p>
<p>When you use dynamic allocation, the allocation of a block of memory is
an action that the program requests explicitly.  You call a function or
macro when you want to allocate space, and specify the size with an
argument.  If you want to free the space, you do so by calling another
function or macro.  You can do these things whenever you want, as often
as you want.
</p>
<p>Dynamic allocation is not supported by C variables; there is no storage
class &ldquo;dynamic&rdquo;, and there can never be a C variable whose value is
stored in dynamically allocated space.  The only way to get dynamically
allocated memory is via a system call (which is generally via a GNU C
library function call), and the only way to refer to dynamically
allocated space is through a pointer.  Because it is less convenient,
and because the actual process of dynamic allocation requires more
computation time, programmers generally use dynamic allocation only when
neither static nor automatic allocation will serve.
</p>
<p>For example, if you want to allocate dynamically some space to hold a
<code>struct foobar</code>, you cannot declare a variable of type <code>struct
foobar</code> whose contents are the dynamically allocated space.  But you can
declare a variable of pointer type <code>struct foobar *</code> and assign it the
address of the space.  Then you can use the operators &lsquo;<samp>*</samp>&rsquo; and
&lsquo;<samp>-&gt;</samp>&rsquo; on this pointer variable to refer to the contents of the space:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">{
  struct foobar *ptr
     = (struct foobar *) malloc (sizeof (struct foobar));
  ptr-&gt;name = x;
  ptr-&gt;next = current_foobar;
  current_foobar = ptr;
}
</pre></td></tr></table>

<hr size="6">
<a name="Unconstrained-Allocation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Dynamic-Memory-Allocation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Basic-Allocation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Unconstrained-Allocation-1"></a>
<h3 class="subsection">3.2.2 Unconstrained Allocation</h3>
<a name="index-unconstrained-memory-allocation"></a>
<a name="index-malloc-function"></a>
<a name="index-heap_002c-dynamic-allocation-from"></a>

<p>The most general dynamic allocation facility is <code>malloc</code>.  It
allows you to allocate blocks of memory of any size at any time, make
them bigger or smaller at any time, and free the blocks individually at
any time (or never).
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Basic-Allocation">3.2.2.1 Basic Memory Allocation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">            Simple use of <code>malloc</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Malloc-Examples">3.2.2.2 Examples of <code>malloc</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">             Examples of <code>malloc</code>.  <code>xmalloc</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Freeing-after-Malloc">3.2.2.3 Freeing Memory Allocated with <code>malloc</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Use <code>free</code> to free a block you
				 got with <code>malloc</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Changing-Block-Size">3.2.2.4 Changing the Size of a Block</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         Use <code>realloc</code> to make a block
				 bigger or smaller.
</td></tr>
<tr><td align="left" valign="top"><a href="#Allocating-Cleared-Space">3.2.2.5 Allocating Cleared Space</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">    Use <code>calloc</code> to allocate a
				 block and clear it.
</td></tr>
<tr><td align="left" valign="top"><a href="#Efficiency-and-Malloc">3.2.2.6 Efficiency Considerations for <code>malloc</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">       Efficiency considerations in use of
				 these functions.
</td></tr>
<tr><td align="left" valign="top"><a href="#Aligned-Memory-Blocks">3.2.2.7 Allocating Aligned Memory Blocks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">       Allocating specially aligned memory.
</td></tr>
<tr><td align="left" valign="top"><a href="#Malloc-Tunable-Parameters">3.2.2.8 Malloc Tunable Parameters</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">   Use <code>mallopt</code> to adjust allocation
                                 parameters.
</td></tr>
<tr><td align="left" valign="top"><a href="#Heap-Consistency-Checking">3.2.2.9 Heap Consistency Checking</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">   Automatic checking for errors.
</td></tr>
<tr><td align="left" valign="top"><a href="#Hooks-for-Malloc">3.2.2.10 Memory Allocation Hooks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">            You can use these hooks for debugging
				 programs that use <code>malloc</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Statistics-of-Malloc">3.2.2.11 Statistics for Memory Allocation with <code>malloc</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Getting information about how much
				 memory your program is using.
</td></tr>
<tr><td align="left" valign="top"><a href="#Summary-of-Malloc">3.2.2.12 Summary of <code>malloc</code>-Related Functions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           Summary of <code>malloc</code> and related functions.
</td></tr>
</table>

<hr size="6">
<a name="Basic-Allocation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Malloc-Examples" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Basic-Memory-Allocation"></a>
<h4 class="subsubsection">3.2.2.1 Basic Memory Allocation</h4>
<a name="index-allocation-of-memory-with-malloc"></a>

<p>To allocate a block of memory, call <code>malloc</code>.  The prototype for
this function is in &lsquo;<tt>stdlib.h</tt>&rsquo;.
<a name="index-stdlib_002eh"></a>
</p>
<dl>
<dt><a name="index-malloc"></a><u>Function:</u> void * <b>malloc</b><i> (size_t <var>size</var>)</i></dt>
<dd><p>This function returns a pointer to a newly allocated block <var>size</var>
bytes long, or a null pointer if the block could not be allocated.
</p></dd></dl>

<p>The contents of the block are undefined; you must initialize it yourself
(or use <code>calloc</code> instead; see section <a href="#Allocating-Cleared-Space">Allocating Cleared Space</a>).
Normally you would cast the value as a pointer to the kind of object
that you want to store in the block.  Here we show an example of doing
so, and of initializing the space with zeros using the library function
<code>memset</code> (see section <a href="libc_5.html#Copying-and-Concatenation">Copying and Concatenation</a>):
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">struct foo *ptr;
&hellip;
ptr = (struct foo *) malloc (sizeof (struct foo));
if (ptr == 0) abort ();
memset (ptr, 0, sizeof (struct foo));
</pre></td></tr></table>

<p>You can store the result of <code>malloc</code> into any pointer variable
without a cast, because ISO C automatically converts the type
<code>void *</code> to another type of pointer when necessary.  But the cast
is necessary in contexts other than assignment operators or if you might
want your code to run in traditional C.
</p>
<p>Remember that when allocating space for a string, the argument to
<code>malloc</code> must be one plus the length of the string.  This is
because a string is terminated with a null character that doesn&rsquo;t count
in the &ldquo;length&rdquo; of the string but does need space.  For example:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">char *ptr;
&hellip;
ptr = (char *) malloc (length + 1);
</pre></td></tr></table>

<p>See section <a href="libc_5.html#Representation-of-Strings">Representation of Strings</a>, for more information about this.
</p>
<hr size="6">
<a name="Malloc-Examples"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Basic-Allocation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Freeing-after-Malloc" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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-malloc"></a>
<h4 class="subsubsection">3.2.2.2 Examples of <code>malloc</code></h4>

<p>If no more space is available, <code>malloc</code> returns a null pointer.
You should check the value of <em>every</em> call to <code>malloc</code>.  It is
useful to write a subroutine that calls <code>malloc</code> and reports an
error if the value is a null pointer, returning only if the value is
nonzero.  This function is conventionally called <code>xmalloc</code>.  Here
it is:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *
xmalloc (size_t size)
{
  register void *value = malloc (size);
  if (value == 0)
    fatal (&quot;virtual memory exhausted&quot;);
  return value;
}
</pre></td></tr></table>

<p>Here is a real example of using <code>malloc</code> (by way of <code>xmalloc</code>).
The function <code>savestring</code> will copy a sequence of characters into
a newly allocated null-terminated string:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">char *
savestring (const char *ptr, size_t len)
{
  register char *value = (char *) xmalloc (len + 1);
  value[len] = '\0';
  return (char *) memcpy (value, ptr, len);
}
</pre></td></tr></table>

<p>The block that <code>malloc</code> gives you is guaranteed to be aligned so
that it can hold any type of data.  In the GNU system, the address is
always a multiple of eight on most systems, and a multiple of 16 on
64-bit systems.  Only rarely is any higher boundary (such as a page
boundary) necessary; for those cases, use <code>memalign</code>,
<code>posix_memalign</code> or <code>valloc</code> (see section <a href="#Aligned-Memory-Blocks">Allocating Aligned Memory Blocks</a>).
</p>
<p>Note that the memory located after the end of the block is likely to be
in use for something else; perhaps a block already allocated by another
call to <code>malloc</code>.  If you attempt to treat the block as longer than
you asked for it to be, you are liable to destroy the data that
<code>malloc</code> uses to keep track of its blocks, or you may destroy the
contents of another block.  If you have already allocated a block and
discover you want it to be bigger, use <code>realloc</code> (see section <a href="#Changing-Block-Size">Changing the Size of a Block</a>).
</p>
<hr size="6">
<a name="Freeing-after-Malloc"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Malloc-Examples" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Changing-Block-Size" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Freeing-Memory-Allocated-with-malloc"></a>
<h4 class="subsubsection">3.2.2.3 Freeing Memory Allocated with <code>malloc</code></h4>
<a name="index-freeing-memory-allocated-with-malloc"></a>
<a name="index-heap_002c-freeing-memory-from"></a>

<p>When you no longer need a block that you got with <code>malloc</code>, use the
function <code>free</code> to make the block available to be allocated again.
The prototype for this function is in &lsquo;<tt>stdlib.h</tt>&rsquo;.
<a name="index-stdlib_002eh-1"></a>
</p>
<dl>
<dt><a name="index-free"></a><u>Function:</u> void <b>free</b><i> (void *<var>ptr</var>)</i></dt>
<dd><p>The <code>free</code> function deallocates the block of memory pointed at
by <var>ptr</var>.
</p></dd></dl>

<dl>
<dt><a name="index-cfree"></a><u>Function:</u> void <b>cfree</b><i> (void *<var>ptr</var>)</i></dt>
<dd><p>This function does the same thing as <code>free</code>.  It&rsquo;s provided for
backward compatibility with SunOS; you should use <code>free</code> instead.
</p></dd></dl>

<p>Freeing a block alters the contents of the block.  <strong>Do not expect to
find any data (such as a pointer to the next block in a chain of blocks) in
the block after freeing it.</strong>  Copy whatever you need out of the block before
freeing it!  Here is an example of the proper way to free all the blocks in
a chain, and the strings that they point to:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">struct chain
  {
    struct chain *next;
    char *name;
  }

void
free_chain (struct chain *chain)
{
  while (chain != 0)
    {
      struct chain *next = chain-&gt;next;
      free (chain-&gt;name);
      free (chain);
      chain = next;
    }
}
</pre></td></tr></table>

<p>Occasionally, <code>free</code> can actually return memory to the operating
system and make the process smaller.  Usually, all it can do is allow a
later call to <code>malloc</code> to reuse the space.  In the meantime, the
space remains in your program as part of a free-list used internally by
<code>malloc</code>.
</p>
<p>There is no point in freeing blocks at the end of a program, because all
of the program&rsquo;s space is given back to the system when the process
terminates.
</p>
<hr size="6">
<a name="Changing-Block-Size"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Freeing-after-Malloc" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocating-Cleared-Space" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Changing-the-Size-of-a-Block"></a>
<h4 class="subsubsection">3.2.2.4 Changing the Size of a Block</h4>
<a name="index-changing-the-size-of-a-block-_0028malloc_0029"></a>

<p>Often you do not know for certain how big a block you will ultimately need
at the time you must begin to use the block.  For example, the block might
be a buffer that you use to hold a line being read from a file; no matter
how long you make the buffer initially, you may encounter a line that is
longer.
</p>
<p>You can make the block longer by calling <code>realloc</code>.  This function
is declared in &lsquo;<tt>stdlib.h</tt>&rsquo;.
<a name="index-stdlib_002eh-2"></a>
</p>
<dl>
<dt><a name="index-realloc"></a><u>Function:</u> void * <b>realloc</b><i> (void *<var>ptr</var>, size_t <var>newsize</var>)</i></dt>
<dd><p>The <code>realloc</code> function changes the size of the block whose address is
<var>ptr</var> to be <var>newsize</var>.
</p>
<p>Since the space after the end of the block may be in use, <code>realloc</code>
may find it necessary to copy the block to a new address where more free
space is available.  The value of <code>realloc</code> is the new address of the
block.  If the block needs to be moved, <code>realloc</code> copies the old
contents.
</p>
<p>If you pass a null pointer for <var>ptr</var>, <code>realloc</code> behaves just
like &lsquo;<samp>malloc (<var>newsize</var>)</samp>&rsquo;.  This can be convenient, but beware
that older implementations (before ISO C) may not support this
behavior, and will probably crash when <code>realloc</code> is passed a null
pointer.
</p></dd></dl>

<p>Like <code>malloc</code>, <code>realloc</code> may return a null pointer if no
memory space is available to make the block bigger.  When this happens,
the original block is untouched; it has not been modified or relocated.
</p>
<p>In most cases it makes no difference what happens to the original block
when <code>realloc</code> fails, because the application program cannot continue
when it is out of memory, and the only thing to do is to give a fatal error
message.  Often it is convenient to write and use a subroutine,
conventionally called <code>xrealloc</code>, that takes care of the error message
as <code>xmalloc</code> does for <code>malloc</code>:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *
xrealloc (void *ptr, size_t size)
{
  register void *value = realloc (ptr, size);
  if (value == 0)
    fatal (&quot;Virtual memory exhausted&quot;);
  return value;
}
</pre></td></tr></table>

<p>You can also use <code>realloc</code> to make a block smaller.  The reason you
would do this is to avoid tying up a lot of memory space when only a little
is needed.
In several allocation implementations, making a block smaller sometimes
necessitates copying it, so it can fail if no other space is available.
</p>
<p>If the new size you specify is the same as the old size, <code>realloc</code>
is guaranteed to change nothing and return the same address that you gave.
</p>
<hr size="6">
<a name="Allocating-Cleared-Space"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Changing-Block-Size" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Efficiency-and-Malloc" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Allocating-Cleared-Space-1"></a>
<h4 class="subsubsection">3.2.2.5 Allocating Cleared Space</h4>

<p>The function <code>calloc</code> allocates memory and clears it to zero.  It
is declared in &lsquo;<tt>stdlib.h</tt>&rsquo;.
<a name="index-stdlib_002eh-3"></a>
</p>
<dl>
<dt><a name="index-calloc"></a><u>Function:</u> void * <b>calloc</b><i> (size_t <var>count</var>, size_t <var>eltsize</var>)</i></dt>
<dd><p>This function allocates a block long enough to contain a vector of
<var>count</var> elements, each of size <var>eltsize</var>.  Its contents are
cleared to zero before <code>calloc</code> returns.
</p></dd></dl>

<p>You could define <code>calloc</code> as follows:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *
calloc (size_t count, size_t eltsize)
{
  size_t size = count * eltsize;
  void *value = malloc (size);
  if (value != 0)
    memset (value, 0, size);
  return value;
}
</pre></td></tr></table>

<p>But in general, it is not guaranteed that <code>calloc</code> calls
<code>malloc</code> internally.  Therefore, if an application provides its own
<code>malloc</code>/<code>realloc</code>/<code>free</code> outside the C library, it
should always define <code>calloc</code>, too.
</p>
<hr size="6">
<a name="Efficiency-and-Malloc"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Allocating-Cleared-Space" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Aligned-Memory-Blocks" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Efficiency-Considerations-for-malloc"></a>
<h4 class="subsubsection">3.2.2.6 Efficiency Considerations for <code>malloc</code></h4>
<a name="index-efficiency-and-malloc"></a>





<p>As opposed to other versions, the <code>malloc</code> in the GNU C Library
does not round up block sizes to powers of two, neither for large nor
for small sizes.  Neighboring chunks can be coalesced on a <code>free</code>
no matter what their size is.  This makes the implementation suitable
for all kinds of allocation patterns without generally incurring high
memory waste through fragmentation.
</p>
<p>Very large blocks (much larger than a page) are allocated with
<code>mmap</code> (anonymous or via <code>/dev/zero</code>) by this implementation.
This has the great advantage that these chunks are returned to the
system immediately when they are freed.  Therefore, it cannot happen
that a large chunk becomes &ldquo;locked&rdquo; in between smaller ones and even
after calling <code>free</code> wastes memory.  The size threshold for
<code>mmap</code> to be used can be adjusted with <code>mallopt</code>.  The use of
<code>mmap</code> can also be disabled completely.
</p>
<hr size="6">
<a name="Aligned-Memory-Blocks"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Efficiency-and-Malloc" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Malloc-Tunable-Parameters" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Allocating-Aligned-Memory-Blocks"></a>
<h4 class="subsubsection">3.2.2.7 Allocating Aligned Memory Blocks</h4>

<a name="index-page-boundary"></a>
<a name="index-alignment-_0028with-malloc_0029"></a>
<a name="index-stdlib_002eh-4"></a>
<p>The address of a block returned by <code>malloc</code> or <code>realloc</code> in
the GNU system is always a multiple of eight (or sixteen on 64-bit
systems).  If you need a block whose address is a multiple of a higher
power of two than that, use <code>memalign</code>, <code>posix_memalign</code>, or
<code>valloc</code>.  <code>memalign</code> is declared in &lsquo;<tt>malloc.h</tt>&rsquo; and
<code>posix_memalign</code> is declared in &lsquo;<tt>stdlib.h</tt>&rsquo;.
</p>
<p>With the GNU library, you can use <code>free</code> to free the blocks that
<code>memalign</code>, <code>posix_memalign</code>, and <code>valloc</code> return.  That
does not work in BSD, however&mdash;BSD does not provide any way to free
such blocks.
</p>
<dl>
<dt><a name="index-memalign"></a><u>Function:</u> void * <b>memalign</b><i> (size_t <var>boundary</var>, size_t <var>size</var>)</i></dt>
<dd><p>The <code>memalign</code> function allocates a block of <var>size</var> bytes whose
address is a multiple of <var>boundary</var>.  The <var>boundary</var> must be a
power of two!  The function <code>memalign</code> works by allocating a
somewhat larger block, and then returning an address within the block
that is on the specified boundary.
</p></dd></dl>

<dl>
<dt><a name="index-posix_005fmemalign"></a><u>Function:</u> int <b>posix_memalign</b><i> (void **<var>memptr</var>, size_t <var>alignment</var>, size_t <var>size</var>)</i></dt>
<dd><p>The <code>posix_memalign</code> function is similar to the <code>memalign</code>
function in that it returns a buffer of <var>size</var> bytes aligned to a
multiple of <var>alignment</var>.  But it adds one requirement to the
parameter <var>alignment</var>: the value must be a power of two multiple of
<code>sizeof (void *)</code>.
</p>
<p>If the function succeeds in allocation memory a pointer to the allocated
memory is returned in <code>*<var>memptr</var></code> and the return value is zero.
Otherwise the function returns an error value indicating the problem.
</p>
<p>This function was introduced in POSIX 1003.1d.
</p></dd></dl>

<dl>
<dt><a name="index-valloc"></a><u>Function:</u> void * <b>valloc</b><i> (size_t <var>size</var>)</i></dt>
<dd><p>Using <code>valloc</code> is like using <code>memalign</code> and passing the page size
as the value of the second argument.  It is implemented like this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *
valloc (size_t size)
{
  return memalign (getpagesize (), size);
}
</pre></td></tr></table>

<p><a href="libc_22.html#Query-Memory-Parameters">How to get information about the memory subsystem?</a> for more information about the memory
subsystem.
</p></dd></dl>

<hr size="6">
<a name="Malloc-Tunable-Parameters"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Aligned-Memory-Blocks" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Heap-Consistency-Checking" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Malloc-Tunable-Parameters-1"></a>
<h4 class="subsubsection">3.2.2.8 Malloc Tunable Parameters</h4>

<p>You can adjust some parameters for dynamic memory allocation with the
<code>mallopt</code> function.  This function is the general SVID/XPG
interface, defined in &lsquo;<tt>malloc.h</tt>&rsquo;.
<a name="index-malloc_002eh"></a>
</p>
<dl>
<dt><a name="index-mallopt"></a><u>Function:</u> int <b>mallopt</b><i> (int <var>param</var>, int <var>value</var>)</i></dt>
<dd><p>When calling <code>mallopt</code>, the <var>param</var> argument specifies the
parameter to be set, and <var>value</var> the new value to be set.  Possible
choices for <var>param</var>, as defined in &lsquo;<tt>malloc.h</tt>&rsquo;, are:
</p>
<dl compact="compact">
<dt> <code>M_TRIM_THRESHOLD</code></dt>
<dd><p>This is the minimum size (in bytes) of the top-most, releasable chunk
that will cause <code>sbrk</code> to be called with a negative argument in
order to return memory to the system.
</p></dd>
<dt> <code>M_TOP_PAD</code></dt>
<dd><p>This parameter determines the amount of extra memory to obtain from the
system when a call to <code>sbrk</code> is required.  It also specifies the
number of bytes to retain when shrinking the heap by calling <code>sbrk</code>
with a negative argument.  This provides the necessary hysteresis in
heap size such that excessive amounts of system calls can be avoided.
</p></dd>
<dt> <code>M_MMAP_THRESHOLD</code></dt>
<dd><p>All chunks larger than this value are allocated outside the normal
heap, using the <code>mmap</code> system call.  This way it is guaranteed
that the memory for these chunks can be returned to the system on
<code>free</code>.  Note that requests smaller than this threshold might still
be allocated via <code>mmap</code>.
</p></dd>
<dt> <code>M_MMAP_MAX</code></dt>
<dd><p>The maximum number of chunks to allocate with <code>mmap</code>.  Setting this
to zero disables all use of <code>mmap</code>.
</p></dd>
<dt> <code>M_PERTURB</code></dt>
<dd><p>If non-zero, memory blocks are filled with values depending on some
low order bits of this parameter when they are allocated (except when
allocated by <code>calloc</code>) and freed.  This can be used to debug the
use of uninitialized or freed heap memory.
</p></dd>
</dl>

</dd></dl>

<hr size="6">
<a name="Heap-Consistency-Checking"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Malloc-Tunable-Parameters" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Hooks-for-Malloc" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Heap-Consistency-Checking-1"></a>
<h4 class="subsubsection">3.2.2.9 Heap Consistency Checking</h4>

<a name="index-heap-consistency-checking"></a>
<a name="index-consistency-checking_002c-of-heap"></a>

<p>You can ask <code>malloc</code> to check the consistency of dynamic memory by
using the <code>mcheck</code> function.  This function is a GNU extension,
declared in &lsquo;<tt>mcheck.h</tt>&rsquo;.
<a name="index-mcheck_002eh"></a>
</p>
<dl>
<dt><a name="index-mcheck"></a><u>Function:</u> int <b>mcheck</b><i> (void (*<var>abortfn</var>) (enum mcheck_status <var>status</var>))</i></dt>
<dd><p>Calling <code>mcheck</code> tells <code>malloc</code> to perform occasional
consistency checks.  These will catch things such as writing
past the end of a block that was allocated with <code>malloc</code>.
</p>
<p>The <var>abortfn</var> argument is the function to call when an inconsistency
is found.  If you supply a null pointer, then <code>mcheck</code> uses a
default function which prints a message and calls <code>abort</code>
(see section <a href="libc_25.html#Aborting-a-Program">Aborting a Program</a>).  The function you supply is called with
one argument, which says what sort of inconsistency was detected; its
type is described below.
</p>
<p>It is too late to begin allocation checking once you have allocated
anything with <code>malloc</code>.  So <code>mcheck</code> does nothing in that
case.  The function returns <code>-1</code> if you call it too late, and
<code>0</code> otherwise (when it is successful).
</p>
<p>The easiest way to arrange to call <code>mcheck</code> early enough is to use
the option &lsquo;<samp>-lmcheck</samp>&rsquo; when you link your program; then you don&rsquo;t
need to modify your program source at all.  Alternatively you might use
a debugger to insert a call to <code>mcheck</code> whenever the program is
started, for example these gdb commands will automatically call <code>mcheck</code>
whenever the program starts:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">(gdb) break main
Breakpoint 1, main (argc=2, argv=0xbffff964) at whatever.c:10
(gdb) command 1
Type commands for when breakpoint 1 is hit, one per line.
End with a line saying just &quot;end&quot;.
&gt;call mcheck(0)
&gt;continue
&gt;end
(gdb) &hellip;
</pre></td></tr></table>

<p>This will however only work if no initialization function of any object
involved calls any of the <code>malloc</code> functions since <code>mcheck</code>
must be called before the first such function.
</p>
</dd></dl>

<dl>
<dt><a name="index-mprobe"></a><u>Function:</u> enum mcheck_status <b>mprobe</b><i> (void *<var>pointer</var>)</i></dt>
<dd><p>The <code>mprobe</code> function lets you explicitly check for inconsistencies
in a particular allocated block.  You must have already called
<code>mcheck</code> at the beginning of the program, to do its occasional
checks; calling <code>mprobe</code> requests an additional consistency check
to be done at the time of the call.
</p>
<p>The argument <var>pointer</var> must be a pointer returned by <code>malloc</code>
or <code>realloc</code>.  <code>mprobe</code> returns a value that says what
inconsistency, if any, was found.  The values are described below.
</p></dd></dl>

<dl>
<dt><a name="index-enum-mcheck_005fstatus"></a><u>Data Type:</u> <b>enum mcheck_status</b></dt>
<dd><p>This enumerated type describes what kind of inconsistency was detected
in an allocated block, if any.  Here are the possible values:
</p>
<dl compact="compact">
<dt> <code>MCHECK_DISABLED</code></dt>
<dd><p><code>mcheck</code> was not called before the first allocation.
No consistency checking can be done.
</p></dd>
<dt> <code>MCHECK_OK</code></dt>
<dd><p>No inconsistency detected.
</p></dd>
<dt> <code>MCHECK_HEAD</code></dt>
<dd><p>The data immediately before the block was modified.
This commonly happens when an array index or pointer
is decremented too far.
</p></dd>
<dt> <code>MCHECK_TAIL</code></dt>
<dd><p>The data immediately after the block was modified.
This commonly happens when an array index or pointer
is incremented too far.
</p></dd>
<dt> <code>MCHECK_FREE</code></dt>
<dd><p>The block was already freed.
</p></dd>
</dl>
</dd></dl>

<p>Another possibility to check for and guard against bugs in the use of
<code>malloc</code>, <code>realloc</code> and <code>free</code> is to set the environment
variable <code>MALLOC_CHECK_</code>.  When <code>MALLOC_CHECK_</code> is set, a
special (less efficient) implementation is used which is designed to be
tolerant against simple errors, such as double calls of <code>free</code> with
the same argument, or overruns of a single byte (off-by-one bugs).  Not
all such errors can be protected against, however, and memory leaks can
result.  If <code>MALLOC_CHECK_</code> is set to <code>0</code>, any detected heap
corruption is silently ignored; if set to <code>1</code>, a diagnostic is
printed on <code>stderr</code>; if set to <code>2</code>, <code>abort</code> is called
immediately.  This can be useful because otherwise a crash may happen
much later, and the true cause for the problem is then very hard to
track down.
</p>
<p>There is one problem with <code>MALLOC_CHECK_</code>: in SUID or SGID binaries
it could possibly be exploited since diverging from the normal programs
behavior it now writes something to the standard error descriptor.
Therefore the use of <code>MALLOC_CHECK_</code> is disabled by default for
SUID and SGID binaries.  It can be enabled again by the system
administrator by adding a file &lsquo;<tt>/etc/suid-debug</tt>&rsquo; (the content is
not important it could be empty).
</p>
<p>So, what&rsquo;s the difference between using <code>MALLOC_CHECK_</code> and linking
with &lsquo;<samp>-lmcheck</samp>&rsquo;?  <code>MALLOC_CHECK_</code> is orthogonal with respect to
&lsquo;<samp>-lmcheck</samp>&rsquo;.  &lsquo;<samp>-lmcheck</samp>&rsquo; has been added for backward
compatibility.  Both <code>MALLOC_CHECK_</code> and &lsquo;<samp>-lmcheck</samp>&rsquo; should
uncover the same bugs - but using <code>MALLOC_CHECK_</code> you don&rsquo;t need to
recompile your application.
</p>
<hr size="6">
<a name="Hooks-for-Malloc"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Heap-Consistency-Checking" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Statistics-of-Malloc" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Memory-Allocation-Hooks"></a>
<h4 class="subsubsection">3.2.2.10 Memory Allocation Hooks</h4>
<a name="index-allocation-hooks_002c-for-malloc"></a>

<p>The GNU C library lets you modify the behavior of <code>malloc</code>,
<code>realloc</code>, and <code>free</code> by specifying appropriate hook
functions.  You can use these hooks to help you debug programs that use
dynamic memory allocation, for example.
</p>
<p>The hook variables are declared in &lsquo;<tt>malloc.h</tt>&rsquo;.
<a name="index-malloc_002eh-1"></a>
</p>
<dl>
<dt><a name="index-_005f_005fmalloc_005fhook"></a><u>Variable:</u> <b>__malloc_hook</b></dt>
<dd><p>The value of this variable is a pointer to the function that
<code>malloc</code> uses whenever it is called.  You should define this
function to look like <code>malloc</code>; that is, like:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *<var>function</var> (size_t <var>size</var>, const void *<var>caller</var>)
</pre></td></tr></table>

<p>The value of <var>caller</var> is the return address found on the stack when
the <code>malloc</code> function was called.  This value allows you to trace
the memory consumption of the program.
</p></dd></dl>

<dl>
<dt><a name="index-_005f_005frealloc_005fhook"></a><u>Variable:</u> <b>__realloc_hook</b></dt>
<dd><p>The value of this variable is a pointer to function that <code>realloc</code>
uses whenever it is called.  You should define this function to look
like <code>realloc</code>; that is, like:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *<var>function</var> (void *<var>ptr</var>, size_t <var>size</var>, const void *<var>caller</var>)
</pre></td></tr></table>

<p>The value of <var>caller</var> is the return address found on the stack when
the <code>realloc</code> function was called.  This value allows you to trace the
memory consumption of the program.
</p></dd></dl>

<dl>
<dt><a name="index-_005f_005ffree_005fhook"></a><u>Variable:</u> <b>__free_hook</b></dt>
<dd><p>The value of this variable is a pointer to function that <code>free</code>
uses whenever it is called.  You should define this function to look
like <code>free</code>; that is, like:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void <var>function</var> (void *<var>ptr</var>, const void *<var>caller</var>)
</pre></td></tr></table>

<p>The value of <var>caller</var> is the return address found on the stack when
the <code>free</code> function was called.  This value allows you to trace the
memory consumption of the program.
</p></dd></dl>

<dl>
<dt><a name="index-_005f_005fmemalign_005fhook"></a><u>Variable:</u> <b>__memalign_hook</b></dt>
<dd><p>The value of this variable is a pointer to function that <code>memalign</code>
uses whenever it is called.  You should define this function to look
like <code>memalign</code>; that is, like:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void *<var>function</var> (size_t <var>alignment</var>, size_t <var>size</var>, const void *<var>caller</var>)
</pre></td></tr></table>

<p>The value of <var>caller</var> is the return address found on the stack when
the <code>memalign</code> function was called.  This value allows you to trace the
memory consumption of the program.
</p></dd></dl>

<p>You must make sure that the function you install as a hook for one of
these functions does not call that function recursively without restoring
the old value of the hook first!  Otherwise, your program will get stuck
in an infinite recursion.  Before calling the function recursively, one
should make sure to restore all the hooks to their previous value.  When
coming back from the recursive call, all the hooks should be resaved
since a hook might modify itself.
</p>
<dl>
<dt><a name="index-_005f_005fmalloc_005finitialize_005fhook"></a><u>Variable:</u> <b>__malloc_initialize_hook</b></dt>
<dd><p>The value of this variable is a pointer to a function that is called
once when the malloc implementation is initialized.  This is a weak
variable, so it can be overridden in the application with a definition
like the following:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void (*<var>__malloc_initialize_hook</var>) (void) = my_init_hook;
</pre></td></tr></table>
</dd></dl>

<p>An issue to look out for is the time at which the malloc hook functions
can be safely installed.  If the hook functions call the malloc-related
functions recursively, it is necessary that malloc has already properly
initialized itself at the time when <code>__malloc_hook</code> etc. is
assigned to.  On the other hand, if the hook functions provide a
complete malloc implementation of their own, it is vital that the hooks
are assigned to <em>before</em> the very first <code>malloc</code> call has
completed, because otherwise a chunk obtained from the ordinary,
un-hooked malloc may later be handed to <code>__free_hook</code>, for example.
</p>
<p>In both cases, the problem can be solved by setting up the hooks from
within a user-defined function pointed to by
<code>__malloc_initialize_hook</code>&mdash;then the hooks will be set up safely
at the right time.
</p>
<p>Here is an example showing how to use <code>__malloc_hook</code> and
<code>__free_hook</code> properly.  It installs a function that prints out
information every time <code>malloc</code> or <code>free</code> is called.  We just
assume here that <code>realloc</code> and <code>memalign</code> are not used in our
program.
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">/* Prototypes for __malloc_hook, __free_hook */
#include &lt;malloc.h&gt;

/* Prototypes for our hooks.  */
static void my_init_hook (void);
static void *my_malloc_hook (size_t, const void *);
static void my_free_hook (void*, const void *);

/* Override initializing hook from the C library. */
void (*__malloc_initialize_hook) (void) = my_init_hook;

static void
my_init_hook (void)
{
  old_malloc_hook = __malloc_hook;
  old_free_hook = __free_hook;
  __malloc_hook = my_malloc_hook;
  __free_hook = my_free_hook;
}

static void *
my_malloc_hook (size_t size, const void *caller)
{
  void *result;
  /* Restore all old hooks */
  __malloc_hook = old_malloc_hook;
  __free_hook = old_free_hook;
  /* Call recursively */
  result = malloc (size);
  /* Save underlying hooks */
  old_malloc_hook = __malloc_hook;
  old_free_hook = __free_hook;
  /* <span class="roman"><code>printf</code> might call <code>malloc</code>, so protect it too.</span> */
  printf (&quot;malloc (%u) returns %p\n&quot;, (unsigned int) size, result);
  /* Restore our own hooks */
  __malloc_hook = my_malloc_hook;
  __free_hook = my_free_hook;
  return result;
}

static void
my_free_hook (void *ptr, const void *caller)
{
  /* Restore all old hooks */
  __malloc_hook = old_malloc_hook;
  __free_hook = old_free_hook;
  /* Call recursively */
  free (ptr);
  /* Save underlying hooks */
  old_malloc_hook = __malloc_hook;
  old_free_hook = __free_hook;
  /* <span class="roman"><code>printf</code> might call <code>free</code>, so protect it too.</span> */
  printf (&quot;freed pointer %p\n&quot;, ptr);
  /* Restore our own hooks */
  __malloc_hook = my_malloc_hook;
  __free_hook = my_free_hook;
}

main ()
{
  &hellip;
}
</pre></td></tr></table>

<p>The <code>mcheck</code> function (see section <a href="#Heap-Consistency-Checking">Heap Consistency Checking</a>) works by
installing such hooks.
</p>

<hr size="6">
<a name="Statistics-of-Malloc"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Hooks-for-Malloc" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Summary-of-Malloc" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Statistics-for-Memory-Allocation-with-malloc"></a>
<h4 class="subsubsection">3.2.2.11 Statistics for Memory Allocation with <code>malloc</code></h4>

<a name="index-allocation-statistics"></a>
<p>You can get information about dynamic memory allocation by calling the
<code>mallinfo</code> function.  This function and its associated data type
are declared in &lsquo;<tt>malloc.h</tt>&rsquo;; they are an extension of the standard
SVID/XPG version.
<a name="index-malloc_002eh-2"></a>
</p>
<dl>
<dt><a name="index-struct-mallinfo"></a><u>Data Type:</u> <b>struct mallinfo</b></dt>
<dd><p>This structure type is used to return information about the dynamic
memory allocator.  It contains the following members:
</p>
<dl compact="compact">
<dt> <code>int arena</code></dt>
<dd><p>This is the total size of memory allocated with <code>sbrk</code> by
<code>malloc</code>, in bytes.
</p>
</dd>
<dt> <code>int ordblks</code></dt>
<dd><p>This is the number of chunks not in use.  (The memory allocator
internally gets chunks of memory from the operating system, and then
carves them up to satisfy individual <code>malloc</code> requests; see
<a href="#Efficiency-and-Malloc">Efficiency Considerations for <code>malloc</code></a>.)
</p>
</dd>
<dt> <code>int smblks</code></dt>
<dd><p>This field is unused.
</p>
</dd>
<dt> <code>int hblks</code></dt>
<dd><p>This is the total number of chunks allocated with <code>mmap</code>.
</p>
</dd>
<dt> <code>int hblkhd</code></dt>
<dd><p>This is the total size of memory allocated with <code>mmap</code>, in bytes.
</p>
</dd>
<dt> <code>int usmblks</code></dt>
<dd><p>This field is unused.
</p>
</dd>
<dt> <code>int fsmblks</code></dt>
<dd><p>This field is unused.
</p>
</dd>
<dt> <code>int uordblks</code></dt>
<dd><p>This is the total size of memory occupied by chunks handed out by
<code>malloc</code>.
</p>
</dd>
<dt> <code>int fordblks</code></dt>
<dd><p>This is the total size of memory occupied by free (not in use) chunks.
</p>
</dd>
<dt> <code>int keepcost</code></dt>
<dd><p>This is the size of the top-most releasable chunk that normally
borders the end of the heap (i.e., the high end of the virtual address
space&rsquo;s data segment).
</p>
</dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-mallinfo"></a><u>Function:</u> struct mallinfo <b>mallinfo</b><i> (void)</i></dt>
<dd><p>This function returns information about the current dynamic memory usage
in a structure of type <code>struct mallinfo</code>.
</p></dd></dl>

<hr size="6">
<a name="Summary-of-Malloc"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Statistics-of-Malloc" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocation-Debugging" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Unconstrained-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Summary-of-malloc_002dRelated-Functions"></a>
<h4 class="subsubsection">3.2.2.12 Summary of <code>malloc</code>-Related Functions</h4>

<p>Here is a summary of the functions that work with <code>malloc</code>:
</p>
<dl compact="compact">
<dt> <code>void *malloc (size_t <var>size</var>)</code></dt>
<dd><p>Allocate a block of <var>size</var> bytes.  See section <a href="#Basic-Allocation">Basic Memory Allocation</a>.
</p>
</dd>
<dt> <code>void free (void *<var>addr</var>)</code></dt>
<dd><p>Free a block previously allocated by <code>malloc</code>.  See section <a href="#Freeing-after-Malloc">Freeing Memory Allocated with <code>malloc</code></a>.
</p>
</dd>
<dt> <code>void *realloc (void *<var>addr</var>, size_t <var>size</var>)</code></dt>
<dd><p>Make a block previously allocated by <code>malloc</code> larger or smaller,
possibly by copying it to a new location.  See section <a href="#Changing-Block-Size">Changing the Size of a Block</a>.
</p>
</dd>
<dt> <code>void *calloc (size_t <var>count</var>, size_t <var>eltsize</var>)</code></dt>
<dd><p>Allocate a block of <var>count</var> * <var>eltsize</var> bytes using
<code>malloc</code>, and set its contents to zero.  See section <a href="#Allocating-Cleared-Space">Allocating Cleared Space</a>.
</p>
</dd>
<dt> <code>void *valloc (size_t <var>size</var>)</code></dt>
<dd><p>Allocate a block of <var>size</var> bytes, starting on a page boundary.
See section <a href="#Aligned-Memory-Blocks">Allocating Aligned Memory Blocks</a>.
</p>
</dd>
<dt> <code>void *memalign (size_t <var>size</var>, size_t <var>boundary</var>)</code></dt>
<dd><p>Allocate a block of <var>size</var> bytes, starting on an address that is a
multiple of <var>boundary</var>.  See section <a href="#Aligned-Memory-Blocks">Allocating Aligned Memory Blocks</a>.
</p>
</dd>
<dt> <code>int mallopt (int <var>param</var>, int <var>value</var>)</code></dt>
<dd><p>Adjust a tunable parameter.  See section <a href="#Malloc-Tunable-Parameters">Malloc Tunable Parameters</a>.
</p>
</dd>
<dt> <code>int mcheck (void (*<var>abortfn</var>) (void))</code></dt>
<dd><p>Tell <code>malloc</code> to perform occasional consistency checks on
dynamically allocated memory, and to call <var>abortfn</var> when an
inconsistency is found.  See section <a href="#Heap-Consistency-Checking">Heap Consistency Checking</a>.
</p>
</dd>
<dt> <code>void *(*__malloc_hook) (size_t <var>size</var>, const void *<var>caller</var>)</code></dt>
<dd><p>A pointer to a function that <code>malloc</code> uses whenever it is called.
</p>
</dd>
<dt> <code>void *(*__realloc_hook) (void *<var>ptr</var>, size_t <var>size</var>, const void *<var>caller</var>)</code></dt>
<dd><p>A pointer to a function that <code>realloc</code> uses whenever it is called.
</p>
</dd>
<dt> <code>void (*__free_hook) (void *<var>ptr</var>, const void *<var>caller</var>)</code></dt>
<dd><p>A pointer to a function that <code>free</code> uses whenever it is called.
</p>
</dd>
<dt> <code>void (*__memalign_hook) (size_t <var>size</var>, size_t <var>alignment</var>, const void *<var>caller</var>)</code></dt>
<dd><p>A pointer to a function that <code>memalign</code> uses whenever it is called.
</p>
</dd>
<dt> <code>struct mallinfo mallinfo (void)</code></dt>
<dd><p>Return information about the current dynamic memory usage.
See section <a href="#Statistics-of-Malloc">Statistics for Memory Allocation with <code>malloc</code></a>.
</p></dd>
</dl>

<hr size="6">
<a name="Allocation-Debugging"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Summary-of-Malloc" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Tracing-malloc" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Allocation-Debugging-1"></a>
<h3 class="subsection">3.2.3 Allocation Debugging</h3>
<a name="index-allocation-debugging"></a>
<a name="index-malloc-debugger"></a>

<p>A complicated task when programming with languages which do not use
garbage collected dynamic memory allocation is to find memory leaks.
Long running programs must assure that dynamically allocated objects are
freed at the end of their lifetime.  If this does not happen the system
runs out of memory, sooner or later.
</p>
<p>The <code>malloc</code> implementation in the GNU C library provides some
simple means to detect such leaks and obtain some information to find
the location.  To do this the application must be started in a special
mode which is enabled by an environment variable.  There are no speed
penalties for the program if the debugging mode is not enabled.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Tracing-malloc">3.2.3.1 How to install the tracing functionality</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Using-the-Memory-Debugger">3.2.3.2 Example program excerpts</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">    Example programs excerpts.
</td></tr>
<tr><td align="left" valign="top"><a href="#Tips-for-the-Memory-Debugger">3.2.3.3 Some more or less clever ideas</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top"></td></tr>
<tr><td align="left" valign="top"><a href="#Interpreting-the-traces">3.2.3.4 Interpreting the traces</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">      What do all these lines mean?
</td></tr>
</table>

<hr size="6">
<a name="Tracing-malloc"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Allocation-Debugging" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Using-the-Memory-Debugger" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocation-Debugging" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="How-to-install-the-tracing-functionality"></a>
<h4 class="subsubsection">3.2.3.1 How to install the tracing functionality</h4>

<dl>
<dt><a name="index-mtrace"></a><u>Function:</u> void <b>mtrace</b><i> (void)</i></dt>
<dd><p>When the <code>mtrace</code> function is called it looks for an environment
variable named <code>MALLOC_TRACE</code>.  This variable is supposed to
contain a valid file name.  The user must have write access.  If the
file already exists it is truncated.  If the environment variable is not
set or it does not name a valid file which can be opened for writing
nothing is done.  The behavior of <code>malloc</code> etc. is not changed.
For obvious reasons this also happens if the application is installed
with the SUID or SGID bit set.
</p>
<p>If the named file is successfully opened, <code>mtrace</code> installs special
handlers for the functions <code>malloc</code>, <code>realloc</code>, and
<code>free</code> (see section <a href="#Hooks-for-Malloc">Memory Allocation Hooks</a>).  From then on, all uses of these
functions are traced and protocolled into the file.  There is now of
course a speed penalty for all calls to the traced functions so tracing
should not be enabled during normal use.
</p>
<p>This function is a GNU extension and generally not available on other
systems.  The prototype can be found in &lsquo;<tt>mcheck.h</tt>&rsquo;.
</p></dd></dl>

<dl>
<dt><a name="index-muntrace"></a><u>Function:</u> void <b>muntrace</b><i> (void)</i></dt>
<dd><p>The <code>muntrace</code> function can be called after <code>mtrace</code> was used
to enable tracing the <code>malloc</code> calls.  If no (successful) call of
<code>mtrace</code> was made <code>muntrace</code> does nothing.
</p>
<p>Otherwise it deinstalls the handlers for <code>malloc</code>, <code>realloc</code>,
and <code>free</code> and then closes the protocol file.  No calls are
protocolled anymore and the program runs again at full speed.
</p>
<p>This function is a GNU extension and generally not available on other
systems.  The prototype can be found in &lsquo;<tt>mcheck.h</tt>&rsquo;.
</p></dd></dl>

<hr size="6">
<a name="Using-the-Memory-Debugger"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Tracing-malloc" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Tips-for-the-Memory-Debugger" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocation-Debugging" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Example-program-excerpts"></a>
<h4 class="subsubsection">3.2.3.2 Example program excerpts</h4>

<p>Even though the tracing functionality does not influence the runtime
behavior of the program it is not a good idea to call <code>mtrace</code> in
all programs.  Just imagine that you debug a program using <code>mtrace</code>
and all other programs used in the debugging session also trace their
<code>malloc</code> calls.  The output file would be the same for all programs
and thus is unusable.  Therefore one should call <code>mtrace</code> only if
compiled for debugging.  A program could therefore start like this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">#include &lt;mcheck.h&gt;

int
main (int argc, char *argv[])
{
#ifdef DEBUGGING
  mtrace ();
#endif
  &hellip;
}
</pre></td></tr></table>

<p>This is all what is needed if you want to trace the calls during the
whole runtime of the program.  Alternatively you can stop the tracing at
any time with a call to <code>muntrace</code>.  It is even possible to restart
the tracing again with a new call to <code>mtrace</code>.  But this can cause
unreliable results since there may be calls of the functions which are
not called.  Please note that not only the application uses the traced
functions, also libraries (including the C library itself) use these
functions.
</p>
<p>This last point is also why it is no good idea to call <code>muntrace</code>
before the program terminated.  The libraries are informed about the
termination of the program only after the program returns from
<code>main</code> or calls <code>exit</code> and so cannot free the memory they use
before this time.
</p>
<p>So the best thing one can do is to call <code>mtrace</code> as the very first
function in the program and never call <code>muntrace</code>.  So the program
traces almost all uses of the <code>malloc</code> functions (except those
calls which are executed by constructors of the program or used
libraries).
</p>
<hr size="6">
<a name="Tips-for-the-Memory-Debugger"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Using-the-Memory-Debugger" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Interpreting-the-traces" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocation-Debugging" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Some-more-or-less-clever-ideas"></a>
<h4 class="subsubsection">3.2.3.3 Some more or less clever ideas</h4>

<p>You know the situation.  The program is prepared for debugging and in
all debugging sessions it runs well.  But once it is started without
debugging the error shows up.  A typical example is a memory leak that
becomes visible only when we turn off the debugging.  If you foresee
such situations you can still win.  Simply use something equivalent to
the following little program:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">#include &lt;mcheck.h&gt;
#include &lt;signal.h&gt;

static void
enable (int sig)
{
  mtrace ();
  signal (SIGUSR1, enable);
}

static void
disable (int sig)
{
  muntrace ();
  signal (SIGUSR2, disable);
}

int
main (int argc, char *argv[])
{
  &hellip;

  signal (SIGUSR1, enable);
  signal (SIGUSR2, disable);

  &hellip;
}
</pre></td></tr></table>

<p>I.e., the user can start the memory debugger any time s/he wants if the
program was started with <code>MALLOC_TRACE</code> set in the environment.
The output will of course not show the allocations which happened before
the first signal but if there is a memory leak this will show up
nevertheless.
</p>
<hr size="6">
<a name="Interpreting-the-traces"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Tips-for-the-Memory-Debugger" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocation-Debugging" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Interpreting-the-traces-1"></a>
<h4 class="subsubsection">3.2.3.4 Interpreting the traces</h4>

<p>If you take a look at the output it will look similar to this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">= Start
&nbsp;[0x8048209] - 0x8064cc8
&nbsp;[0x8048209] - 0x8064ce0
&nbsp;[0x8048209] - 0x8064cf8
&nbsp;[0x80481eb] + 0x8064c48 0x14
&nbsp;[0x80481eb] + 0x8064c60 0x14
&nbsp;[0x80481eb] + 0x8064c78 0x14
&nbsp;[0x80481eb] + 0x8064c90 0x14
= End
</pre></td></tr></table>

<p>What this all means is not really important since the trace file is not
meant to be read by a human.  Therefore no attention is given to
readability.  Instead there is a program which comes with the GNU C
library which interprets the traces and outputs a summary in an
user-friendly way.  The program is called <code>mtrace</code> (it is in fact a
Perl script) and it takes one or two arguments.  In any case the name of
the file with the trace output must be specified.  If an optional
argument precedes the name of the trace file this must be the name of
the program which generated the trace.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">drepper$ mtrace tst-mtrace log
No memory leaks.
</pre></td></tr></table>

<p>In this case the program <code>tst-mtrace</code> was run and it produced a
trace file &lsquo;<tt>log</tt>&rsquo;.  The message printed by <code>mtrace</code> shows there
are no problems with the code, all allocated memory was freed
afterwards.
</p>
<p>If we call <code>mtrace</code> on the example trace given above we would get a
different outout:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">drepper$ mtrace errlog
- 0x08064cc8 Free 2 was never alloc'd 0x8048209
- 0x08064ce0 Free 3 was never alloc'd 0x8048209
- 0x08064cf8 Free 4 was never alloc'd 0x8048209

Memory not freed:
-----------------
   Address     Size     Caller
0x08064c48     0x14  at 0x80481eb
0x08064c60     0x14  at 0x80481eb
0x08064c78     0x14  at 0x80481eb
0x08064c90     0x14  at 0x80481eb
</pre></td></tr></table>

<p>We have called <code>mtrace</code> with only one argument and so the script
has no chance to find out what is meant with the addresses given in the
trace.  We can do better:
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">drepper$ mtrace tst errlog
- 0x08064cc8 Free 2 was never alloc'd /home/drepper/tst.c:39
- 0x08064ce0 Free 3 was never alloc'd /home/drepper/tst.c:39
- 0x08064cf8 Free 4 was never alloc'd /home/drepper/tst.c:39

Memory not freed:
-----------------
   Address     Size     Caller
0x08064c48     0x14  at /home/drepper/tst.c:33
0x08064c60     0x14  at /home/drepper/tst.c:33
0x08064c78     0x14  at /home/drepper/tst.c:33
0x08064c90     0x14  at /home/drepper/tst.c:33
</pre></td></tr></table>

<p>Suddenly the output makes much more sense and the user can see
immediately where the function calls causing the trouble can be found.
</p>
<p>Interpreting this output is not complicated.  There are at most two
different situations being detected.  First, <code>free</code> was called for
pointers which were never returned by one of the allocation functions.
This is usually a very bad problem and what this looks like is shown in
the first three lines of the output.  Situations like this are quite
rare and if they appear they show up very drastically: the program
normally crashes.
</p>
<p>The other situation which is much harder to detect are memory leaks.  As
you can see in the output the <code>mtrace</code> function collects all this
information and so can say that the program calls an allocation function
from line 33 in the source file &lsquo;<tt>/home/drepper/tst-mtrace.c</tt>&rsquo; four
times without freeing this memory before the program terminates.
Whether this is a real problem remains to be investigated.
</p>
<hr size="6">
<a name="Obstacks"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Interpreting-the-traces" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Creating-Obstacks" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Obstacks-1"></a>
<h3 class="subsection">3.2.4 Obstacks</h3>
<a name="index-obstacks"></a>

<p>An <em>obstack</em> is a pool of memory containing a stack of objects.  You
can create any number of separate obstacks, and then allocate objects in
specified obstacks.  Within each obstack, the last object allocated must
always be the first one freed, but distinct obstacks are independent of
each other.
</p>
<p>Aside from this one constraint of order of freeing, obstacks are totally
general: an obstack can contain any number of objects of any size.  They
are implemented with macros, so allocation is usually very fast as long as
the objects are usually small.  And the only space overhead per object is
the padding needed to start each object on a suitable boundary.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Creating-Obstacks">3.2.4.1 Creating Obstacks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">		How to declare an obstack in your program.
</td></tr>
<tr><td align="left" valign="top"><a href="#Preparing-for-Obstacks">3.2.4.2 Preparing for Using Obstacks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">	Preparations needed before you can
				 use obstacks.
</td></tr>
<tr><td align="left" valign="top"><a href="#Allocation-in-an-Obstack">3.2.4.3 Allocation in an Obstack</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">    Allocating objects in an obstack.
</td></tr>
<tr><td align="left" valign="top"><a href="#Freeing-Obstack-Objects">3.2.4.4 Freeing Objects in an Obstack</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">     Freeing objects in an obstack.
</td></tr>
<tr><td align="left" valign="top"><a href="#Obstack-Functions">3.2.4.5 Obstack Functions and Macros</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">		The obstack functions are both
				 functions and macros.
</td></tr>
<tr><td align="left" valign="top"><a href="#Growing-Objects">3.2.4.6 Growing Objects</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">             Making an object bigger by stages.
</td></tr>
<tr><td align="left" valign="top"><a href="#Extra-Fast-Growing">3.2.4.7 Extra Fast Growing Objects</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">		Extra-high-efficiency (though more
				 complicated) growing objects.
</td></tr>
<tr><td align="left" valign="top"><a href="#Status-of-an-Obstack">3.2.4.8 Status of an Obstack</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Inquiries about the status of an obstack.
</td></tr>
<tr><td align="left" valign="top"><a href="#Obstacks-Data-Alignment">3.2.4.9 Alignment of Data in Obstacks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">     Controlling alignment of objects in obstacks.
</td></tr>
<tr><td align="left" valign="top"><a href="#Obstack-Chunks">3.2.4.10 Obstack Chunks</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">              How obstacks obtain and release chunks;
				 efficiency considerations.
</td></tr>
<tr><td align="left" valign="top"><a href="#Summary-of-Obstacks">3.2.4.11 Summary of Obstack Functions</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">
</td></tr>
</table>

<hr size="6">
<a name="Creating-Obstacks"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Obstacks" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Preparing-for-Obstacks" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Creating-Obstacks-1"></a>
<h4 class="subsubsection">3.2.4.1 Creating Obstacks</h4>

<p>The utilities for manipulating obstacks are declared in the header
file &lsquo;<tt>obstack.h</tt>&rsquo;.
<a name="index-obstack_002eh"></a>
</p>
<dl>
<dt><a name="index-struct-obstack"></a><u>Data Type:</u> <b>struct obstack</b></dt>
<dd><p>An obstack is represented by a data structure of type <code>struct
obstack</code>.  This structure has a small fixed size; it records the status
of the obstack and how to find the space in which objects are allocated.
It does not contain any of the objects themselves.  You should not try
to access the contents of the structure directly; use only the functions
described in this chapter.
</p></dd></dl>

<p>You can declare variables of type <code>struct obstack</code> and use them as
obstacks, or you can allocate obstacks dynamically like any other kind
of object.  Dynamic allocation of obstacks allows your program to have a
variable number of different stacks.  (You can even allocate an
obstack structure in another obstack, but this is rarely useful.)
</p>
<p>All the functions that work with obstacks require you to specify which
obstack to use.  You do this with a pointer of type <code>struct obstack
*</code>.  In the following, we often say &ldquo;an obstack&rdquo; when strictly
speaking the object at hand is such a pointer.
</p>
<p>The objects in the obstack are packed into large blocks called
<em>chunks</em>.  The <code>struct obstack</code> structure points to a chain of
the chunks currently in use.
</p>
<p>The obstack library obtains a new chunk whenever you allocate an object
that won&rsquo;t fit in the previous chunk.  Since the obstack library manages
chunks automatically, you don&rsquo;t need to pay much attention to them, but
you do need to supply a function which the obstack library should use to
get a chunk.  Usually you supply a function which uses <code>malloc</code>
directly or indirectly.  You must also supply a function to free a chunk.
These matters are described in the following section.
</p>
<hr size="6">
<a name="Preparing-for-Obstacks"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Creating-Obstacks" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Allocation-in-an-Obstack" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Preparing-for-Using-Obstacks"></a>
<h4 class="subsubsection">3.2.4.2 Preparing for Using Obstacks</h4>

<p>Each source file in which you plan to use the obstack functions
must include the header file &lsquo;<tt>obstack.h</tt>&rsquo;, like this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">#include &lt;obstack.h&gt;
</pre></td></tr></table>

<a name="index-obstack_005fchunk_005falloc"></a>
<a name="index-obstack_005fchunk_005ffree"></a>
<p>Also, if the source file uses the macro <code>obstack_init</code>, it must
declare or define two functions or macros that will be called by the
obstack library.  One, <code>obstack_chunk_alloc</code>, is used to allocate
the chunks of memory into which objects are packed.  The other,
<code>obstack_chunk_free</code>, is used to return chunks when the objects in
them are freed.  These macros should appear before any use of obstacks
in the source file.
</p>
<p>Usually these are defined to use <code>malloc</code> via the intermediary
<code>xmalloc</code> (see section <a href="#Unconstrained-Allocation">Unconstrained Allocation</a>).  This is done with
the following pair of macro definitions:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
</pre></td></tr></table>

<p>Though the memory you get using obstacks really comes from <code>malloc</code>,
using obstacks is faster because <code>malloc</code> is called less often, for
larger blocks of memory.  See section <a href="#Obstack-Chunks">Obstack Chunks</a>, for full details.
</p>
<p>At run time, before the program can use a <code>struct obstack</code> object
as an obstack, it must initialize the obstack by calling
<code>obstack_init</code>.
</p>
<dl>
<dt><a name="index-obstack_005finit"></a><u>Function:</u> int <b>obstack_init</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>Initialize obstack <var>obstack-ptr</var> for allocation of objects.  This
function calls the obstack&rsquo;s <code>obstack_chunk_alloc</code> function.  If
allocation of memory fails, the function pointed to by
<code>obstack_alloc_failed_handler</code> is called.  The <code>obstack_init</code>
function always returns 1 (Compatibility notice: Former versions of
obstack returned 0 if allocation failed).
</p></dd></dl>

<p>Here are two examples of how to allocate the space for an obstack and
initialize it.  First, an obstack that is a static variable:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">static struct obstack myobstack;
&hellip;
obstack_init (&amp;myobstack);
</pre></td></tr></table>

<p>Second, an obstack that is itself dynamically allocated:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">struct obstack *myobstack_ptr
  = (struct obstack *) xmalloc (sizeof (struct obstack));

obstack_init (myobstack_ptr);
</pre></td></tr></table>

<dl>
<dt><a name="index-obstack_005falloc_005ffailed_005fhandler"></a><u>Variable:</u> <b>obstack_alloc_failed_handler</b></dt>
<dd><p>The value of this variable is a pointer to a function that
<code>obstack</code> uses when <code>obstack_chunk_alloc</code> fails to allocate
memory.  The default action is to print a message and abort.
You should supply a function that either calls <code>exit</code>
(see section <a href="libc_25.html#Program-Termination">Program Termination</a>) or <code>longjmp</code> (see section <a href="libc_23.html#Non_002dLocal-Exits">Non-Local Exits</a>) and doesn&rsquo;t return.
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void my_obstack_alloc_failed (void)
&hellip;
obstack_alloc_failed_handler = &amp;my_obstack_alloc_failed;
</pre></td></tr></table>

</dd></dl>

<hr size="6">
<a name="Allocation-in-an-Obstack"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Preparing-for-Obstacks" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Freeing-Obstack-Objects" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Allocation-in-an-Obstack-1"></a>
<h4 class="subsubsection">3.2.4.3 Allocation in an Obstack</h4>
<a name="index-allocation-_0028obstacks_0029"></a>

<p>The most direct way to allocate an object in an obstack is with
<code>obstack_alloc</code>, which is invoked almost like <code>malloc</code>.
</p>
<dl>
<dt><a name="index-obstack_005falloc"></a><u>Function:</u> void * <b>obstack_alloc</b><i> (struct obstack *<var>obstack-ptr</var>, int <var>size</var>)</i></dt>
<dd><p>This allocates an uninitialized block of <var>size</var> bytes in an obstack
and returns its address.  Here <var>obstack-ptr</var> specifies which obstack
to allocate the block in; it is the address of the <code>struct obstack</code>
object which represents the obstack.  Each obstack function or macro
requires you to specify an <var>obstack-ptr</var> as the first argument.
</p>
<p>This function calls the obstack&rsquo;s <code>obstack_chunk_alloc</code> function if
it needs to allocate a new chunk of memory; it calls
<code>obstack_alloc_failed_handler</code> if allocation of memory by
<code>obstack_chunk_alloc</code> failed.
</p></dd></dl>

<p>For example, here is a function that allocates a copy of a string <var>str</var>
in a specific obstack, which is in the variable <code>string_obstack</code>:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">struct obstack string_obstack;

char *
copystring (char *string)
{
  size_t len = strlen (string) + 1;
  char *s = (char *) obstack_alloc (&amp;string_obstack, len);
  memcpy (s, string, len);
  return s;
}
</pre></td></tr></table>

<p>To allocate a block with specified contents, use the function
<code>obstack_copy</code>, declared like this:
</p>
<dl>
<dt><a name="index-obstack_005fcopy"></a><u>Function:</u> void * <b>obstack_copy</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>address</var>, int <var>size</var>)</i></dt>
<dd><p>This allocates a block and initializes it by copying <var>size</var>
bytes of data starting at <var>address</var>.  It calls
<code>obstack_alloc_failed_handler</code> if allocation of memory by
<code>obstack_chunk_alloc</code> failed.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fcopy0"></a><u>Function:</u> void * <b>obstack_copy0</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>address</var>, int <var>size</var>)</i></dt>
<dd><p>Like <code>obstack_copy</code>, but appends an extra byte containing a null
character.  This extra byte is not counted in the argument <var>size</var>.
</p></dd></dl>

<p>The <code>obstack_copy0</code> function is convenient for copying a sequence
of characters into an obstack as a null-terminated string.  Here is an
example of its use:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">char *
obstack_savestring (char *addr, int size)
{
  return obstack_copy0 (&amp;myobstack, addr, size);
}
</pre></td></tr></table>

<p>Contrast this with the previous example of <code>savestring</code> using
<code>malloc</code> (see section <a href="#Basic-Allocation">Basic Memory Allocation</a>).
</p>
<hr size="6">
<a name="Freeing-Obstack-Objects"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Allocation-in-an-Obstack" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstack-Functions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Freeing-Objects-in-an-Obstack"></a>
<h4 class="subsubsection">3.2.4.4 Freeing Objects in an Obstack</h4>
<a name="index-freeing-_0028obstacks_0029"></a>

<p>To free an object allocated in an obstack, use the function
<code>obstack_free</code>.  Since the obstack is a stack of objects, freeing
one object automatically frees all other objects allocated more recently
in the same obstack.
</p>
<dl>
<dt><a name="index-obstack_005ffree"></a><u>Function:</u> void <b>obstack_free</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>object</var>)</i></dt>
<dd><p>If <var>object</var> is a null pointer, everything allocated in the obstack
is freed.  Otherwise, <var>object</var> must be the address of an object
allocated in the obstack.  Then <var>object</var> is freed, along with
everything allocated in <var>obstack</var> since <var>object</var>.
</p></dd></dl>

<p>Note that if <var>object</var> is a null pointer, the result is an
uninitialized obstack.  To free all memory in an obstack but leave it
valid for further allocation, call <code>obstack_free</code> with the address
of the first object allocated on the obstack:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">obstack_free (obstack_ptr, first_object_allocated_ptr);
</pre></td></tr></table>

<p>Recall that the objects in an obstack are grouped into chunks.  When all
the objects in a chunk become free, the obstack library automatically
frees the chunk (see section <a href="#Preparing-for-Obstacks">Preparing for Using Obstacks</a>).  Then other
obstacks, or non-obstack allocation, can reuse the space of the chunk.
</p>
<hr size="6">
<a name="Obstack-Functions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Freeing-Obstack-Objects" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Growing-Objects" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Obstack-Functions-and-Macros"></a>
<h4 class="subsubsection">3.2.4.5 Obstack Functions and Macros</h4>
<a name="index-macros"></a>

<p>The interfaces for using obstacks may be defined either as functions or
as macros, depending on the compiler.  The obstack facility works with
all C compilers, including both ISO C and traditional C, but there are
precautions you must take if you plan to use compilers other than GNU C.
</p>
<p>If you are using an old-fashioned non-ISO C compiler, all the obstack
&ldquo;functions&rdquo; are actually defined only as macros.  You can call these
macros like functions, but you cannot use them in any other way (for
example, you cannot take their address).
</p>
<p>Calling the macros requires a special precaution: namely, the first
operand (the obstack pointer) may not contain any side effects, because
it may be computed more than once.  For example, if you write this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">obstack_alloc (get_obstack (), 4);
</pre></td></tr></table>

<p>you will find that <code>get_obstack</code> may be called several times.
If you use <code>*obstack_list_ptr++</code> as the obstack pointer argument,
you will get very strange results since the incrementation may occur
several times.
</p>
<p>In ISO C, each function has both a macro definition and a function
definition.  The function definition is used if you take the address of the
function without calling it.  An ordinary call uses the macro definition by
default, but you can request the function definition instead by writing the
function name in parentheses, as shown here:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">char *x;
void *(*funcp) ();
/* <span class="roman">Use the macro</span>.  */
x = (char *) obstack_alloc (obptr, size);
/* <span class="roman">Call the function</span>.  */
x = (char *) (obstack_alloc) (obptr, size);
/* <span class="roman">Take the address of the function</span>.  */
funcp = obstack_alloc;
</pre></td></tr></table>

<p>This is the same situation that exists in ISO C for the standard library
functions.  See section <a href="libc_1.html#Macro-Definitions">Macro Definitions of Functions</a>.
</p>
<p><strong>Warning:</strong> When you do use the macros, you must observe the
precaution of avoiding side effects in the first operand, even in ISO C.
</p>
<p>If you use the GNU C compiler, this precaution is not necessary, because
various language extensions in GNU C permit defining the macros so as to
compute each argument only once.
</p>
<hr size="6">
<a name="Growing-Objects"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Obstack-Functions" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Extra-Fast-Growing" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Growing-Objects-1"></a>
<h4 class="subsubsection">3.2.4.6 Growing Objects</h4>
<a name="index-growing-objects-_0028in-obstacks_0029"></a>
<a name="index-changing-the-size-of-a-block-_0028obstacks_0029"></a>

<p>Because memory in obstack chunks is used sequentially, it is possible to
build up an object step by step, adding one or more bytes at a time to the
end of the object.  With this technique, you do not need to know how much
data you will put in the object until you come to the end of it.  We call
this the technique of <em>growing objects</em>.  The special functions
for adding data to the growing object are described in this section.
</p>
<p>You don&rsquo;t need to do anything special when you start to grow an object.
Using one of the functions to add data to the object automatically
starts it.  However, it is necessary to say explicitly when the object is
finished.  This is done with the function <code>obstack_finish</code>.
</p>
<p>The actual address of the object thus built up is not known until the
object is finished.  Until then, it always remains possible that you will
add so much data that the object must be copied into a new chunk.
</p>
<p>While the obstack is in use for a growing object, you cannot use it for
ordinary allocation of another object.  If you try to do so, the space
already added to the growing object will become part of the other object.
</p>
<dl>
<dt><a name="index-obstack_005fblank"></a><u>Function:</u> void <b>obstack_blank</b><i> (struct obstack *<var>obstack-ptr</var>, int <var>size</var>)</i></dt>
<dd><p>The most basic function for adding to a growing object is
<code>obstack_blank</code>, which adds space without initializing it.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fgrow"></a><u>Function:</u> void <b>obstack_grow</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>data</var>, int <var>size</var>)</i></dt>
<dd><p>To add a block of initialized space, use <code>obstack_grow</code>, which is
the growing-object analogue of <code>obstack_copy</code>.  It adds <var>size</var>
bytes of data to the growing object, copying the contents from
<var>data</var>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fgrow0"></a><u>Function:</u> void <b>obstack_grow0</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>data</var>, int <var>size</var>)</i></dt>
<dd><p>This is the growing-object analogue of <code>obstack_copy0</code>.  It adds
<var>size</var> bytes copied from <var>data</var>, followed by an additional null
character.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005f1grow"></a><u>Function:</u> void <b>obstack_1grow</b><i> (struct obstack *<var>obstack-ptr</var>, char <var>c</var>)</i></dt>
<dd><p>To add one character at a time, use the function <code>obstack_1grow</code>.
It adds a single byte containing <var>c</var> to the growing object.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fptr_005fgrow"></a><u>Function:</u> void <b>obstack_ptr_grow</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>data</var>)</i></dt>
<dd><p>Adding the value of a pointer one can use the function
<code>obstack_ptr_grow</code>.  It adds <code>sizeof (void *)</code> bytes
containing the value of <var>data</var>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fint_005fgrow"></a><u>Function:</u> void <b>obstack_int_grow</b><i> (struct obstack *<var>obstack-ptr</var>, int <var>data</var>)</i></dt>
<dd><p>A single value of type <code>int</code> can be added by using the
<code>obstack_int_grow</code> function.  It adds <code>sizeof (int)</code> bytes to
the growing object and initializes them with the value of <var>data</var>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005ffinish"></a><u>Function:</u> void * <b>obstack_finish</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>When you are finished growing the object, use the function
<code>obstack_finish</code> to close it off and return its final address.
</p>
<p>Once you have finished the object, the obstack is available for ordinary
allocation or for growing another object.
</p>
<p>This function can return a null pointer under the same conditions as
<code>obstack_alloc</code> (see section <a href="#Allocation-in-an-Obstack">Allocation in an Obstack</a>).
</p></dd></dl>

<p>When you build an object by growing it, you will probably need to know
afterward how long it became.  You need not keep track of this as you grow
the object, because you can find out the length from the obstack just
before finishing the object with the function <code>obstack_object_size</code>,
declared as follows:
</p>
<dl>
<dt><a name="index-obstack_005fobject_005fsize"></a><u>Function:</u> int <b>obstack_object_size</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>This function returns the current size of the growing object, in bytes.
Remember to call this function <em>before</em> finishing the object.
After it is finished, <code>obstack_object_size</code> will return zero.
</p></dd></dl>

<p>If you have started growing an object and wish to cancel it, you should
finish it and then free it, like this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">obstack_free (obstack_ptr, obstack_finish (obstack_ptr));
</pre></td></tr></table>

<p>This has no effect if no object was growing.
</p>
<a name="index-shrinking-objects"></a>
<p>You can use <code>obstack_blank</code> with a negative size argument to make
the current object smaller.  Just don&rsquo;t try to shrink it beyond zero
length&mdash;there&rsquo;s no telling what will happen if you do that.
</p>
<hr size="6">
<a name="Extra-Fast-Growing"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Growing-Objects" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Status-of-an-Obstack" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Extra-Fast-Growing-Objects"></a>
<h4 class="subsubsection">3.2.4.7 Extra Fast Growing Objects</h4>
<a name="index-efficiency-and-obstacks"></a>

<p>The usual functions for growing objects incur overhead for checking
whether there is room for the new growth in the current chunk.  If you
are frequently constructing objects in small steps of growth, this
overhead can be significant.
</p>
<p>You can reduce the overhead by using special &ldquo;fast growth&rdquo;
functions that grow the object without checking.  In order to have a
robust program, you must do the checking yourself.  If you do this checking
in the simplest way each time you are about to add data to the object, you
have not saved anything, because that is what the ordinary growth
functions do.  But if you can arrange to check less often, or check
more efficiently, then you make the program faster.
</p>
<p>The function <code>obstack_room</code> returns the amount of room available
in the current chunk.  It is declared as follows:
</p>
<dl>
<dt><a name="index-obstack_005froom"></a><u>Function:</u> int <b>obstack_room</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>This returns the number of bytes that can be added safely to the current
growing object (or to an object about to be started) in obstack
<var>obstack</var> using the fast growth functions.
</p></dd></dl>

<p>While you know there is room, you can use these fast growth functions
for adding data to a growing object:
</p>
<dl>
<dt><a name="index-obstack_005f1grow_005ffast"></a><u>Function:</u> void <b>obstack_1grow_fast</b><i> (struct obstack *<var>obstack-ptr</var>, char <var>c</var>)</i></dt>
<dd><p>The function <code>obstack_1grow_fast</code> adds one byte containing the
character <var>c</var> to the growing object in obstack <var>obstack-ptr</var>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fptr_005fgrow_005ffast"></a><u>Function:</u> void <b>obstack_ptr_grow_fast</b><i> (struct obstack *<var>obstack-ptr</var>, void *<var>data</var>)</i></dt>
<dd><p>The function <code>obstack_ptr_grow_fast</code> adds <code>sizeof (void *)</code>
bytes containing the value of <var>data</var> to the growing object in
obstack <var>obstack-ptr</var>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fint_005fgrow_005ffast"></a><u>Function:</u> void <b>obstack_int_grow_fast</b><i> (struct obstack *<var>obstack-ptr</var>, int <var>data</var>)</i></dt>
<dd><p>The function <code>obstack_int_grow_fast</code> adds <code>sizeof (int)</code> bytes
containing the value of <var>data</var> to the growing object in obstack
<var>obstack-ptr</var>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fblank_005ffast"></a><u>Function:</u> void <b>obstack_blank_fast</b><i> (struct obstack *<var>obstack-ptr</var>, int <var>size</var>)</i></dt>
<dd><p>The function <code>obstack_blank_fast</code> adds <var>size</var> bytes to the
growing object in obstack <var>obstack-ptr</var> without initializing them.
</p></dd></dl>

<p>When you check for space using <code>obstack_room</code> and there is not
enough room for what you want to add, the fast growth functions
are not safe.  In this case, simply use the corresponding ordinary
growth function instead.  Very soon this will copy the object to a
new chunk; then there will be lots of room available again.
</p>
<p>So, each time you use an ordinary growth function, check afterward for
sufficient space using <code>obstack_room</code>.  Once the object is copied
to a new chunk, there will be plenty of space again, so the program will
start using the fast growth functions again.
</p>
<p>Here is an example:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">void
add_string (struct obstack *obstack, const char *ptr, int len)
{
  while (len &gt; 0)
    {
      int room = obstack_room (obstack);
      if (room == 0)
        {
          /* <span class="roman">Not enough room. Add one character slowly,</span>
             <span class="roman">which may copy to a new chunk and make room.</span>  */
          obstack_1grow (obstack, *ptr++);
          len--;
        }
      else
        {
          if (room &gt; len)
            room = len;
          /* <span class="roman">Add fast as much as we have room for.</span> */
          len -= room;
          while (room-- &gt; 0)
            obstack_1grow_fast (obstack, *ptr++);
        }
    }
}
</pre></td></tr></table>

<hr size="6">
<a name="Status-of-an-Obstack"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Extra-Fast-Growing" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks-Data-Alignment" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Status-of-an-Obstack-1"></a>
<h4 class="subsubsection">3.2.4.8 Status of an Obstack</h4>
<a name="index-obstack-status"></a>
<a name="index-status-of-obstack"></a>

<p>Here are functions that provide information on the current status of
allocation in an obstack.  You can use them to learn about an object while
still growing it.
</p>
<dl>
<dt><a name="index-obstack_005fbase"></a><u>Function:</u> void * <b>obstack_base</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>This function returns the tentative address of the beginning of the
currently growing object in <var>obstack-ptr</var>.  If you finish the object
immediately, it will have that address.  If you make it larger first, it
may outgrow the current chunk&mdash;then its address will change!
</p>
<p>If no object is growing, this value says where the next object you
allocate will start (once again assuming it fits in the current
chunk).
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fnext_005ffree"></a><u>Function:</u> void * <b>obstack_next_free</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>This function returns the address of the first free byte in the current
chunk of obstack <var>obstack-ptr</var>.  This is the end of the currently
growing object.  If no object is growing, <code>obstack_next_free</code>
returns the same value as <code>obstack_base</code>.
</p></dd></dl>

<dl>
<dt><a name="index-obstack_005fobject_005fsize-1"></a><u>Function:</u> int <b>obstack_object_size</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>This function returns the size in bytes of the currently growing object.
This is equivalent to
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">obstack_next_free (<var>obstack-ptr</var>) - obstack_base (<var>obstack-ptr</var>)
</pre></td></tr></table>
</dd></dl>

<hr size="6">
<a name="Obstacks-Data-Alignment"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Status-of-an-Obstack" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstack-Chunks" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Alignment-of-Data-in-Obstacks"></a>
<h4 class="subsubsection">3.2.4.9 Alignment of Data in Obstacks</h4>
<a name="index-alignment-_0028in-obstacks_0029"></a>

<p>Each obstack has an <em>alignment boundary</em>; each object allocated in
the obstack automatically starts on an address that is a multiple of the
specified boundary.  By default, this boundary is aligned so that
the object can hold any type of data.
</p>
<p>To access an obstack&rsquo;s alignment boundary, use the macro
<code>obstack_alignment_mask</code>, whose function prototype looks like
this:
</p>
<dl>
<dt><a name="index-obstack_005falignment_005fmask"></a><u>Macro:</u> int <b>obstack_alignment_mask</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>The value is a bit mask; a bit that is 1 indicates that the corresponding
bit in the address of an object should be 0.  The mask value should be one
less than a power of 2; the effect is that all object addresses are
multiples of that power of 2.  The default value of the mask is a value
that allows aligned objects to hold any type of data: for example, if
its value is 3, any type of data can be stored at locations whose
addresses are multiples of 4.  A mask value of 0 means an object can start
on any multiple of 1 (that is, no alignment is required).
</p>
<p>The expansion of the macro <code>obstack_alignment_mask</code> is an lvalue,
so you can alter the mask by assignment.  For example, this statement:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">obstack_alignment_mask (obstack_ptr) = 0;
</pre></td></tr></table>

<p>has the effect of turning off alignment processing in the specified obstack.
</p></dd></dl>

<p>Note that a change in alignment mask does not take effect until
<em>after</em> the next time an object is allocated or finished in the
obstack.  If you are not growing an object, you can make the new
alignment mask take effect immediately by calling <code>obstack_finish</code>.
This will finish a zero-length object and then do proper alignment for
the next object.
</p>
<hr size="6">
<a name="Obstack-Chunks"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Obstacks-Data-Alignment" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Summary-of-Obstacks" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Obstack-Chunks-1"></a>
<h4 class="subsubsection">3.2.4.10 Obstack Chunks</h4>
<a name="index-efficiency-of-chunks"></a>
<a name="index-chunks"></a>

<p>Obstacks work by allocating space for themselves in large chunks, and
then parceling out space in the chunks to satisfy your requests.  Chunks
are normally 4096 bytes long unless you specify a different chunk size.
The chunk size includes 8 bytes of overhead that are not actually used
for storing objects.  Regardless of the specified size, longer chunks
will be allocated when necessary for long objects.
</p>
<p>The obstack library allocates chunks by calling the function
<code>obstack_chunk_alloc</code>, which you must define.  When a chunk is no
longer needed because you have freed all the objects in it, the obstack
library frees the chunk by calling <code>obstack_chunk_free</code>, which you
must also define.
</p>
<p>These two must be defined (as macros) or declared (as functions) in each
source file that uses <code>obstack_init</code> (see section <a href="#Creating-Obstacks">Creating Obstacks</a>).
Most often they are defined as macros like this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">#define obstack_chunk_alloc malloc
#define obstack_chunk_free free
</pre></td></tr></table>

<p>Note that these are simple macros (no arguments).  Macro definitions with
arguments will not work!  It is necessary that <code>obstack_chunk_alloc</code>
or <code>obstack_chunk_free</code>, alone, expand into a function name if it is
not itself a function name.
</p>
<p>If you allocate chunks with <code>malloc</code>, the chunk size should be a
power of 2.  The default chunk size, 4096, was chosen because it is long
enough to satisfy many typical requests on the obstack yet short enough
not to waste too much memory in the portion of the last chunk not yet used.
</p>
<dl>
<dt><a name="index-obstack_005fchunk_005fsize"></a><u>Macro:</u> int <b>obstack_chunk_size</b><i> (struct obstack *<var>obstack-ptr</var>)</i></dt>
<dd><p>This returns the chunk size of the given obstack.
</p></dd></dl>

<p>Since this macro expands to an lvalue, you can specify a new chunk size by
assigning it a new value.  Doing so does not affect the chunks already
allocated, but will change the size of chunks allocated for that particular
obstack in the future.  It is unlikely to be useful to make the chunk size
smaller, but making it larger might improve efficiency if you are
allocating many objects whose size is comparable to the chunk size.  Here
is how to do so cleanly:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">if (obstack_chunk_size (obstack_ptr) &lt; <var>new-chunk-size</var>)
  obstack_chunk_size (obstack_ptr) = <var>new-chunk-size</var>;
</pre></td></tr></table>

<hr size="6">
<a name="Summary-of-Obstacks"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Obstack-Chunks" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Size-Automatic" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Obstacks" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Summary-of-Obstack-Functions"></a>
<h4 class="subsubsection">3.2.4.11 Summary of Obstack Functions</h4>

<p>Here is a summary of all the functions associated with obstacks.  Each
takes the address of an obstack (<code>struct obstack *</code>) as its first
argument.
</p>
<dl compact="compact">
<dt> <code>void obstack_init (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>Initialize use of an obstack.  See section <a href="#Creating-Obstacks">Creating Obstacks</a>.
</p>
</dd>
<dt> <code>void *obstack_alloc (struct obstack *<var>obstack-ptr</var>, int <var>size</var>)</code></dt>
<dd><p>Allocate an object of <var>size</var> uninitialized bytes.
See section <a href="#Allocation-in-an-Obstack">Allocation in an Obstack</a>.
</p>
</dd>
<dt> <code>void *obstack_copy (struct obstack *<var>obstack-ptr</var>, void *<var>address</var>, int <var>size</var>)</code></dt>
<dd><p>Allocate an object of <var>size</var> bytes, with contents copied from
<var>address</var>.  See section <a href="#Allocation-in-an-Obstack">Allocation in an Obstack</a>.
</p>
</dd>
<dt> <code>void *obstack_copy0 (struct obstack *<var>obstack-ptr</var>, void *<var>address</var>, int <var>size</var>)</code></dt>
<dd><p>Allocate an object of <var>size</var>+1 bytes, with <var>size</var> of them copied
from <var>address</var>, followed by a null character at the end.
See section <a href="#Allocation-in-an-Obstack">Allocation in an Obstack</a>.
</p>
</dd>
<dt> <code>void obstack_free (struct obstack *<var>obstack-ptr</var>, void *<var>object</var>)</code></dt>
<dd><p>Free <var>object</var> (and everything allocated in the specified obstack
more recently than <var>object</var>).  See section <a href="#Freeing-Obstack-Objects">Freeing Objects in an Obstack</a>.
</p>
</dd>
<dt> <code>void obstack_blank (struct obstack *<var>obstack-ptr</var>, int <var>size</var>)</code></dt>
<dd><p>Add <var>size</var> uninitialized bytes to a growing object.
See section <a href="#Growing-Objects">Growing Objects</a>.
</p>
</dd>
<dt> <code>void obstack_grow (struct obstack *<var>obstack-ptr</var>, void *<var>address</var>, int <var>size</var>)</code></dt>
<dd><p>Add <var>size</var> bytes, copied from <var>address</var>, to a growing object.
See section <a href="#Growing-Objects">Growing Objects</a>.
</p>
</dd>
<dt> <code>void obstack_grow0 (struct obstack *<var>obstack-ptr</var>, void *<var>address</var>, int <var>size</var>)</code></dt>
<dd><p>Add <var>size</var> bytes, copied from <var>address</var>, to a growing object,
and then add another byte containing a null character.  See section <a href="#Growing-Objects">Growing Objects</a>.
</p>
</dd>
<dt> <code>void obstack_1grow (struct obstack *<var>obstack-ptr</var>, char <var>data-char</var>)</code></dt>
<dd><p>Add one byte containing <var>data-char</var> to a growing object.
See section <a href="#Growing-Objects">Growing Objects</a>.
</p>
</dd>
<dt> <code>void *obstack_finish (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>Finalize the object that is growing and return its permanent address.
See section <a href="#Growing-Objects">Growing Objects</a>.
</p>
</dd>
<dt> <code>int obstack_object_size (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>Get the current size of the currently growing object.  See section <a href="#Growing-Objects">Growing Objects</a>.
</p>
</dd>
<dt> <code>void obstack_blank_fast (struct obstack *<var>obstack-ptr</var>, int <var>size</var>)</code></dt>
<dd><p>Add <var>size</var> uninitialized bytes to a growing object without checking
that there is enough room.  See section <a href="#Extra-Fast-Growing">Extra Fast Growing Objects</a>.
</p>
</dd>
<dt> <code>void obstack_1grow_fast (struct obstack *<var>obstack-ptr</var>, char <var>data-char</var>)</code></dt>
<dd><p>Add one byte containing <var>data-char</var> to a growing object without
checking that there is enough room.  See section <a href="#Extra-Fast-Growing">Extra Fast Growing Objects</a>.
</p>
</dd>
<dt> <code>int obstack_room (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>Get the amount of room now available for growing the current object.
See section <a href="#Extra-Fast-Growing">Extra Fast Growing Objects</a>.
</p>
</dd>
<dt> <code>int obstack_alignment_mask (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>The mask used for aligning the beginning of an object.  This is an
lvalue.  See section <a href="#Obstacks-Data-Alignment">Alignment of Data in Obstacks</a>.
</p>
</dd>
<dt> <code>int obstack_chunk_size (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>The size for allocating chunks.  This is an lvalue.  See section <a href="#Obstack-Chunks">Obstack Chunks</a>.
</p>
</dd>
<dt> <code>void *obstack_base (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>Tentative starting address of the currently growing object.
See section <a href="#Status-of-an-Obstack">Status of an Obstack</a>.
</p>
</dd>
<dt> <code>void *obstack_next_free (struct obstack *<var>obstack-ptr</var>)</code></dt>
<dd><p>Address just after the end of the currently growing object.
See section <a href="#Status-of-an-Obstack">Status of an Obstack</a>.
</p></dd>
</dl>

<hr size="6">
<a name="Variable-Size-Automatic"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Summary-of-Obstacks" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Alloca-Example" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory-Allocation" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Automatic-Storage-with-Variable-Size"></a>
<h3 class="subsection">3.2.5 Automatic Storage with Variable Size</h3>
<a name="index-automatic-freeing"></a>
<a name="index-alloca-function"></a>
<a name="index-automatic-storage-with-variable-size"></a>

<p>The function <code>alloca</code> supports a kind of half-dynamic allocation in
which blocks are allocated dynamically but freed automatically.
</p>
<p>Allocating a block with <code>alloca</code> is an explicit action; you can
allocate as many blocks as you wish, and compute the size at run time.  But
all the blocks are freed when you exit the function that <code>alloca</code> was
called from, just as if they were automatic variables declared in that
function.  There is no way to free the space explicitly.
</p>
<p>The prototype for <code>alloca</code> is in &lsquo;<tt>stdlib.h</tt>&rsquo;.  This function is
a BSD extension.
<a name="index-stdlib_002eh-5"></a>
</p>
<dl>
<dt><a name="index-alloca"></a><u>Function:</u> void * <b>alloca</b><i> (size_t <var>size</var>);</i></dt>
<dd><p>The return value of <code>alloca</code> is the address of a block of <var>size</var>
bytes of memory, allocated in the stack frame of the calling function.
</p></dd></dl>

<p>Do not use <code>alloca</code> inside the arguments of a function call&mdash;you
will get unpredictable results, because the stack space for the
<code>alloca</code> would appear on the stack in the middle of the space for
the function arguments.  An example of what to avoid is <code>foo (x,
alloca (4), y)</code>.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Alloca-Example">3.2.5.1 <code>alloca</code> Example</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">              Example of using <code>alloca</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Advantages-of-Alloca">3.2.5.2 Advantages of <code>alloca</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">        Reasons to use <code>alloca</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#Disadvantages-of-Alloca">3.2.5.3 Disadvantages of <code>alloca</code></a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">     Reasons to avoid <code>alloca</code>.
</td></tr>
<tr><td align="left" valign="top"><a href="#GNU-C-Variable_002dSize-Arrays">3.2.5.4 GNU C Variable-Size Arrays</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">  Only in GNU C, here is an alternative
				 method of allocating dynamically and
				 freeing automatically.
</td></tr>
</table>

<hr size="6">
<a name="Alloca-Example"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Variable-Size-Automatic" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Advantages-of-Alloca" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Size-Automatic" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="alloca-Example"></a>
<h4 class="subsubsection">3.2.5.1 <code>alloca</code> Example</h4>

<p>As an example of the use of <code>alloca</code>, here is a function that opens
a file name made from concatenating two argument strings, and returns a
file descriptor or minus one signifying failure:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">int
open2 (char *str1, char *str2, int flags, int mode)
{
  char *name = (char *) alloca (strlen (str1) + strlen (str2) + 1);
  stpcpy (stpcpy (name, str1), str2);
  return open (name, flags, mode);
}
</pre></td></tr></table>

<p>Here is how you would get the same results with <code>malloc</code> and
<code>free</code>:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">int
open2 (char *str1, char *str2, int flags, int mode)
{
  char *name = (char *) malloc (strlen (str1) + strlen (str2) + 1);
  int desc;
  if (name == 0)
    fatal (&quot;virtual memory exceeded&quot;);
  stpcpy (stpcpy (name, str1), str2);
  desc = open (name, flags, mode);
  free (name);
  return desc;
}
</pre></td></tr></table>

<p>As you can see, it is simpler with <code>alloca</code>.  But <code>alloca</code> has
other, more important advantages, and some disadvantages.
</p>
<hr size="6">
<a name="Advantages-of-Alloca"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Alloca-Example" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Disadvantages-of-Alloca" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Size-Automatic" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Advantages-of-alloca"></a>
<h4 class="subsubsection">3.2.5.2 Advantages of <code>alloca</code></h4>

<p>Here are the reasons why <code>alloca</code> may be preferable to <code>malloc</code>:
</p>
<ul>
<li>
Using <code>alloca</code> wastes very little space and is very fast.  (It is
open-coded by the GNU C compiler.)

</li><li>
Since <code>alloca</code> does not have separate pools for different sizes of
block, space used for any size block can be reused for any other size.
<code>alloca</code> does not cause memory fragmentation.

</li><li>
<a name="index-longjmp"></a>
Nonlocal exits done with <code>longjmp</code> (see section <a href="libc_23.html#Non_002dLocal-Exits">Non-Local Exits</a>)
automatically free the space allocated with <code>alloca</code> when they exit
through the function that called <code>alloca</code>.  This is the most
important reason to use <code>alloca</code>.

<p>To illustrate this, suppose you have a function
<code>open_or_report_error</code> which returns a descriptor, like
<code>open</code>, if it succeeds, but does not return to its caller if it
fails.  If the file cannot be opened, it prints an error message and
jumps out to the command level of your program using <code>longjmp</code>.
Let&rsquo;s change <code>open2</code> (see section <a href="#Alloca-Example"><code>alloca</code> Example</a>) to use this
subroutine:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">int
open2 (char *str1, char *str2, int flags, int mode)
{
  char *name = (char *) alloca (strlen (str1) + strlen (str2) + 1);
  stpcpy (stpcpy (name, str1), str2);
  return open_or_report_error (name, flags, mode);
}
</pre></td></tr></table>

<p>Because of the way <code>alloca</code> works, the memory it allocates is
freed even when an error occurs, with no special effort required.
</p>
<p>By contrast, the previous definition of <code>open2</code> (which uses
<code>malloc</code> and <code>free</code>) would develop a memory leak if it were
changed in this way.  Even if you are willing to make more changes to
fix it, there is no easy way to do so.
</p></li></ul>

<hr size="6">
<a name="Disadvantages-of-Alloca"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Advantages-of-Alloca" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#GNU-C-Variable_002dSize-Arrays" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Size-Automatic" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Disadvantages-of-alloca"></a>
<h4 class="subsubsection">3.2.5.3 Disadvantages of <code>alloca</code></h4>

<a name="index-alloca-disadvantages"></a>
<a name="index-disadvantages-of-alloca"></a>
<p>These are the disadvantages of <code>alloca</code> in comparison with
<code>malloc</code>:
</p>
<ul>
<li>
If you try to allocate more memory than the machine can provide, you
don&rsquo;t get a clean error message.  Instead you get a fatal signal like
the one you would get from an infinite recursion; probably a
segmentation violation (see section <a href="libc_24.html#Program-Error-Signals">Program Error Signals</a>).

</li><li>
Some non-GNU systems fail to support <code>alloca</code>, so it is less
portable.  However, a slower emulation of <code>alloca</code> written in C
is available for use on systems with this deficiency.
</li></ul>

<hr size="6">
<a name="GNU-C-Variable_002dSize-Arrays"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Disadvantages-of-Alloca" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Resizing-the-Data-Segment" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Size-Automatic" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="GNU-C-Variable_002dSize-Arrays-1"></a>
<h4 class="subsubsection">3.2.5.4 GNU C Variable-Size Arrays</h4>
<a name="index-variable_002dsized-arrays"></a>

<p>In GNU C, you can replace most uses of <code>alloca</code> with an array of
variable size.  Here is how <code>open2</code> would look then:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">int open2 (char *str1, char *str2, int flags, int mode)
{
  char name[strlen (str1) + strlen (str2) + 1];
  stpcpy (stpcpy (name, str1), str2);
  return open (name, flags, mode);
}
</pre></td></tr></table>

<p>But <code>alloca</code> is not always equivalent to a variable-sized array, for
several reasons:
</p>
<ul>
<li>
A variable size array&rsquo;s space is freed at the end of the scope of the
name of the array.  The space allocated with <code>alloca</code>
remains until the end of the function.

</li><li>
It is possible to use <code>alloca</code> within a loop, allocating an
additional block on each iteration.  This is impossible with
variable-sized arrays.
</li></ul>

<p><strong>NB:</strong> If you mix use of <code>alloca</code> and variable-sized arrays
within one function, exiting a scope in which a variable-sized array was
declared frees all blocks allocated with <code>alloca</code> during the
execution of that scope.
</p>

<hr size="6">
<a name="Resizing-the-Data-Segment"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#GNU-C-Variable_002dSize-Arrays" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Locking-Pages" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Resizing-the-Data-Segment-1"></a>
<h2 class="section">3.3 Resizing the Data Segment</h2>

<p>The symbols in this section are declared in &lsquo;<tt>unistd.h</tt>&rsquo;.
</p>
<p>You will not normally use the functions in this section, because the
functions described in <a href="#Memory-Allocation">Allocating Storage For Program Data</a> are easier to use.  Those
are interfaces to a GNU C Library memory allocator that uses the
functions below itself.  The functions below are simple interfaces to
system calls.
</p>
<dl>
<dt><a name="index-brk"></a><u>Function:</u> int <b>brk</b><i> (void *<var>addr</var>)</i></dt>
<dd>
<p><code>brk</code> sets the high end of the calling process&rsquo; data segment to
<var>addr</var>.
</p>
<p>The address of the end of a segment is defined to be the address of the
last byte in the segment plus 1.
</p>
<p>The function has no effect if <var>addr</var> is lower than the low end of
the data segment.  (This is considered success, by the way).
</p>
<p>The function fails if it would cause the data segment to overlap another
segment or exceed the process&rsquo; data storage limit (see section <a href="libc_22.html#Limits-on-Resources">Limiting Resource Usage</a>).
</p>
<p>The function is named for a common historical case where data storage
and the stack are in the same segment.  Data storage allocation grows
upward from the bottom of the segment while the stack grows downward
toward it from the top of the segment and the curtain between them is
called the <em>break</em>.
</p>
<p>The return value is zero on success.  On failure, the return value is
<code>-1</code> and <code>errno</code> is set accordingly.  The following <code>errno</code>
values are specific to this function:
</p>
<dl compact="compact">
<dt> <code>ENOMEM</code></dt>
<dd><p>The request would cause the data segment to overlap another segment or
exceed the process&rsquo; data storage limit.
</p></dd>
</dl>


</dd></dl>


<dl>
<dt><a name="index-_002asbrk"></a><u>Function:</u> void <b>*sbrk</b><i> (ptrdiff_t <var>delta</var>)</i></dt>
<dd><p>This function is the same as <code>brk</code> except that you specify the new
end of the data segment as an offset <var>delta</var> from the current end
and on success the return value is the address of the resulting end of
the data segment instead of zero.
</p>
<p>This means you can use &lsquo;<samp>sbrk(0)</samp>&rsquo; to find out what the current end
of the data segment is.
</p>
</dd></dl>



<hr size="6">
<a name="Locking-Pages"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Resizing-the-Data-Segment" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Why-Lock-Pages" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Memory" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Locking-Pages-1"></a>
<h2 class="section">3.4 Locking Pages</h2>
<a name="index-locking-pages"></a>
<a name="index-memory-lock"></a>
<a name="index-paging-1"></a>

<p>You can tell the system to associate a particular virtual memory page
with a real page frame and keep it that way &mdash; i.e., cause the page to
be paged in if it isn&rsquo;t already and mark it so it will never be paged
out and consequently will never cause a page fault.  This is called
<em>locking</em> a page.
</p>
<p>The functions in this chapter lock and unlock the calling process&rsquo;
pages.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Why-Lock-Pages">3.4.1 Why Lock Pages</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                Reasons to read this section.
</td></tr>
<tr><td align="left" valign="top"><a href="#Locked-Memory-Details">3.4.2 Locked Memory Details</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         Everything you need to know locked
                                    memory
</td></tr>
<tr><td align="left" valign="top"><a href="#Page-Lock-Functions">3.4.3 Functions To Lock And Unlock Pages</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           Here&rsquo;s how to do it.
</td></tr>
</table>

<hr size="6">
<a name="Why-Lock-Pages"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Locking-Pages" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Locked-Memory-Details" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Locking-Pages" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Why-Lock-Pages-1"></a>
<h3 class="subsection">3.4.1 Why Lock Pages</h3>

<p>Because page faults cause paged out pages to be paged in transparently,
a process rarely needs to be concerned about locking pages.  However,
there are two reasons people sometimes are:
</p>
<ul>
<li>
Speed.  A page fault is transparent only insofar as the process is not
sensitive to how long it takes to do a simple memory access.  Time-critical
processes, especially realtime processes, may not be able to wait or
may not be able to tolerate variance in execution speed.
<a name="index-realtime-processing"></a>
<a name="index-speed-of-execution"></a>

<p>A process that needs to lock pages for this reason probably also needs
priority among other processes for use of the CPU.  See section <a href="libc_22.html#Priority">Process CPU Priority And Scheduling</a>.
</p>
<p>In some cases, the programmer knows better than the system&rsquo;s demand
paging allocator which pages should remain in real memory to optimize
system performance.  In this case, locking pages can help.
</p>
</li><li>
Privacy.  If you keep secrets in virtual memory and that virtual memory
gets paged out, that increases the chance that the secrets will get out.
If a password gets written out to disk swap space, for example, it might
still be there long after virtual and real memory have been wiped clean.

</li></ul>

<p>Be aware that when you lock a page, that&rsquo;s one fewer page frame that can
be used to back other virtual memory (by the same or other processes),
which can mean more page faults, which means the system runs more
slowly.  In fact, if you lock enough memory, some programs may not be
able to run at all for lack of real memory.
</p>
<hr size="6">
<a name="Locked-Memory-Details"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Why-Lock-Pages" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Page-Lock-Functions" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Locking-Pages" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Locked-Memory-Details-1"></a>
<h3 class="subsection">3.4.2 Locked Memory Details</h3>

<p>A memory lock is associated with a virtual page, not a real frame.  The
paging rule is: If a frame backs at least one locked page, don&rsquo;t page it
out.
</p>
<p>Memory locks do not stack.  I.e., you can&rsquo;t lock a particular page twice
so that it has to be unlocked twice before it is truly unlocked.  It is
either locked or it isn&rsquo;t.
</p>
<p>A memory lock persists until the process that owns the memory explicitly
unlocks it.  (But process termination and exec cause the virtual memory
to cease to exist, which you might say means it isn&rsquo;t locked any more).
</p>
<p>Memory locks are not inherited by child processes.  (But note that on a
modern Unix system, immediately after a fork, the parent&rsquo;s and the
child&rsquo;s virtual address space are backed by the same real page frames,
so the child enjoys the parent&rsquo;s locks).  See section <a href="libc_26.html#Creating-a-Process">Creating a Process</a>.
</p>
<p>Because of its ability to impact other processes, only the superuser can
lock a page.  Any process can unlock its own page.
</p>
<p>The system sets limits on the amount of memory a process can have locked
and the amount of real memory it can have dedicated to it.  See section <a href="libc_22.html#Limits-on-Resources">Limiting Resource Usage</a>.
</p>
<p>In Linux, locked pages aren&rsquo;t as locked as you might think.
Two virtual pages that are not shared memory can nonetheless be backed
by the same real frame.  The kernel does this in the name of efficiency
when it knows both virtual pages contain identical data, and does it
even if one or both of the virtual pages are locked.
</p>
<p>But when a process modifies one of those pages, the kernel must get it a
separate frame and fill it with the page&rsquo;s data.  This is known as a
<em>copy-on-write page fault</em>.  It takes a small amount of time and in
a pathological case, getting that frame may require I/O.
<a name="index-copy_002don_002dwrite-page-fault"></a>
<a name="index-page-fault_002c-copy_002don_002dwrite"></a>
</p>
<p>To make sure this doesn&rsquo;t happen to your program, don&rsquo;t just lock the
pages.  Write to them as well, unless you know you won&rsquo;t write to them
ever.  And to make sure you have pre-allocated frames for your stack,
enter a scope that declares a C automatic variable larger than the
maximum stack size you will need, set it to something, then return from
its scope.
</p>
<hr size="6">
<a name="Page-Lock-Functions"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Locked-Memory-Details" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Locking-Pages" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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="Functions-To-Lock-And-Unlock-Pages"></a>
<h3 class="subsection">3.4.3 Functions To Lock And Unlock Pages</h3>

<p>The symbols in this section are declared in &lsquo;<tt>sys/mman.h</tt>&rsquo;.  These
functions are defined by POSIX.1b, but their availability depends on
your kernel.  If your kernel doesn&rsquo;t allow these functions, they exist
but always fail.  They <em>are</em> available with a Linux kernel.
</p>
<p><strong>Portability Note:</strong> POSIX.1b requires that when the <code>mlock</code>
and <code>munlock</code> functions are available, the file &lsquo;<tt>unistd.h</tt>&rsquo;
define the macro <code>_POSIX_MEMLOCK_RANGE</code> and the file
<code>limits.h</code> define the macro <code>PAGESIZE</code> to be the size of a
memory page in bytes.  It requires that when the <code>mlockall</code> and
<code>munlockall</code> functions are available, the &lsquo;<tt>unistd.h</tt>&rsquo; file
define the macro <code>_POSIX_MEMLOCK</code>.  The GNU C library conforms to
this requirement.
</p>
<dl>
<dt><a name="index-mlock"></a><u>Function:</u> int <b>mlock</b><i> (const void *<var>addr</var>, size_t <var>len</var>)</i></dt>
<dd>
<p><code>mlock</code> locks a range of the calling process&rsquo; virtual pages.
</p>
<p>The range of memory starts at address <var>addr</var> and is <var>len</var> bytes
long.  Actually, since you must lock whole pages, it is the range of
pages that include any part of the specified range.
</p>
<p>When the function returns successfully, each of those pages is backed by
(connected to) a real frame (is resident) and is marked to stay that
way.  This means the function may cause page-ins and have to wait for
them.
</p>
<p>When the function fails, it does not affect the lock status of any
pages.
</p>
<p>The return value is zero if the function succeeds.  Otherwise, it is
<code>-1</code> and <code>errno</code> is set accordingly.  <code>errno</code> values
specific to this function are:
</p>
<dl compact="compact">
<dt> <code>ENOMEM</code></dt>
<dd><ul>
<li>
At least some of the specified address range does not exist in the
calling process&rsquo; virtual address space.
</li><li>
The locking would cause the process to exceed its locked page limit.
</li></ul>

</dd>
<dt> <code>EPERM</code></dt>
<dd><p>The calling process is not superuser.
</p>
</dd>
<dt> <code>EINVAL</code></dt>
<dd><p><var>len</var> is not positive.
</p>
</dd>
<dt> <code>ENOSYS</code></dt>
<dd><p>The kernel does not provide <code>mlock</code> capability.
</p>
</dd>
</dl>

<p>You can lock <em>all</em> a process&rsquo; memory with <code>mlockall</code>.  You
unlock memory with <code>munlock</code> or <code>munlockall</code>.
</p>
<p>To avoid all page faults in a C program, you have to use
<code>mlockall</code>, because some of the memory a program uses is hidden
from the C code, e.g. the stack and automatic variables, and you
wouldn&rsquo;t know what address to tell <code>mlock</code>.
</p>
</dd></dl>

<dl>
<dt><a name="index-munlock"></a><u>Function:</u> int <b>munlock</b><i> (const void *<var>addr</var>, size_t <var>len</var>)</i></dt>
<dd>
<p><code>munlock</code> unlocks a range of the calling process&rsquo; virtual pages.
</p>
<p><code>munlock</code> is the inverse of <code>mlock</code> and functions completely
analogously to <code>mlock</code>, except that there is no <code>EPERM</code>
failure.
</p>
</dd></dl>

<dl>
<dt><a name="index-mlockall"></a><u>Function:</u> int <b>mlockall</b><i> (int <var>flags</var>)</i></dt>
<dd>
<p><code>mlockall</code> locks all the pages in a process&rsquo; virtual memory address
space, and/or any that are added to it in the future.  This includes the
pages of the code, data and stack segment, as well as shared libraries,
user space kernel data, shared memory, and memory mapped files.
</p>
<p><var>flags</var> is a string of single bit flags represented by the following
macros.  They tell <code>mlockall</code> which of its functions you want.  All
other bits must be zero.
</p>
<dl compact="compact">
<dt> <code>MCL_CURRENT</code></dt>
<dd><p>Lock all pages which currently exist in the calling process&rsquo; virtual
address space.
</p>
</dd>
<dt> <code>MCL_FUTURE</code></dt>
<dd><p>Set a mode such that any pages added to the process&rsquo; virtual address
space in the future will be locked from birth.  This mode does not
affect future address spaces owned by the same process so exec, which
replaces a process&rsquo; address space, wipes out <code>MCL_FUTURE</code>.
See section <a href="libc_26.html#Executing-a-File">Executing a File</a>.
</p>
</dd>
</dl>

<p>When the function returns successfully, and you specified
<code>MCL_CURRENT</code>, all of the process&rsquo; pages are backed by (connected
to) real frames (they are resident) and are marked to stay that way.
This means the function may cause page-ins and have to wait for them.
</p>
<p>When the process is in <code>MCL_FUTURE</code> mode because it successfully
executed this function and specified <code>MCL_CURRENT</code>, any system call
by the process that requires space be added to its virtual address space
fails with <code>errno</code> = <code>ENOMEM</code> if locking the additional space
would cause the process to exceed its locked page limit.  In the case
that the address space addition that can&rsquo;t be accommodated is stack
expansion, the stack expansion fails and the kernel sends a
<code>SIGSEGV</code> signal to the process.
</p>
<p>When the function fails, it does not affect the lock status of any pages
or the future locking mode.
</p>
<p>The return value is zero if the function succeeds.  Otherwise, it is
<code>-1</code> and <code>errno</code> is set accordingly.  <code>errno</code> values
specific to this function are:
</p>
<dl compact="compact">
<dt> <code>ENOMEM</code></dt>
<dd><ul>
<li>
At least some of the specified address range does not exist in the
calling process&rsquo; virtual address space.
</li><li>
The locking would cause the process to exceed its locked page limit.
</li></ul>

</dd>
<dt> <code>EPERM</code></dt>
<dd><p>The calling process is not superuser.
</p>
</dd>
<dt> <code>EINVAL</code></dt>
<dd><p>Undefined bits in <var>flags</var> are not zero.
</p>
</dd>
<dt> <code>ENOSYS</code></dt>
<dd><p>The kernel does not provide <code>mlockall</code> capability.
</p>
</dd>
</dl>

<p>You can lock just specific pages with <code>mlock</code>.  You unlock pages
with <code>munlockall</code> and <code>munlock</code>.
</p>
</dd></dl>


<dl>
<dt><a name="index-munlockall"></a><u>Function:</u> int <b>munlockall</b><i> (void)</i></dt>
<dd>
<p><code>munlockall</code> unlocks every page in the calling process&rsquo; virtual
address space and turn off <code>MCL_FUTURE</code> future locking mode.
</p>
<p>The return value is zero if the function succeeds.  Otherwise, it is
<code>-1</code> and <code>errno</code> is set accordingly.  The only way this
function can fail is for generic reasons that all functions and system
calls can fail, so there are no specific <code>errno</code> values.
</p>
</dd></dl>








<hr size="6">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Memory" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="libc_4.html#Character-Handling" 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>