aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog-2003
blob: 6356abefe47905d07b09aa2b0269699ea5ba850a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
2003-12-29  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: my_op_prefix is not necessarily suffixed by a '/'

2003-12-29  John Levon  <levon@movementarian.org>

	* configure.in:
	* doc/*.1.in: add HTML docs to SEE ALSO

2003-12-29  John Levon  <levon@movementarian.org>

	* doc/opcontrol.1.in:
	* doc/oprofile.xml: minor language cleanups

	* utils/opcontrol: only allow --verbose when it makes sense

2003-12-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/tests/file_manip_tests.cpp: ensure filename passed to
	  op_realpath() exists

2003-12-28  John Levon  <levon@movementarian.org>

	* doc/internals.xml:
	* libutil++/file_manip.h: fix typos

2003-12-16  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: error message rewording

2003-12-16  Carlo Wood  <carlo@alinoe.com>

	* libregex/tests/Makefile.am: avoid to install mangled-name test file

2003-11-20  John Levon  <levon@movementarian.org>

	* libregex/op_regex.cpp: move global ctor out of namespace
	anon (bug #845616)

2003-11-19  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: merge all unit mask before generating
	  event description string

2003-11-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: put unitmask in the same axis as
	  event:count, meaning than unitmask is now a part of the event
	  specification.

2003-12-19  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_sfile.c: we reversed to/from pc in call graph sample

2003-11-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.h:
	* pp/opgprof.cpp: oops a simplify a bit too cg handling in my last
	  patch, it was segfaulting each time no cg file was found...

2003-11-15  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opgprof.cpp: simplify a bit cg handling, we don't need to know
	  if we retrieved some cg files since the profile_t will be empty
	  in this case

2003-11-15  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.h: iterator::vma() must return the full key not only
	  an unsigned int.
	* pp/opgprof.cpp: implement merging of cg files.

2003-11-15  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.cpp:
	* libpp/profile_spec.h:
	* pp/opannotate_options.cpp:
	* pp/opgprof_options.cpp:
	* pp/opreport_options.cpp: filter call graph samples files

2003-11-14  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_mangling.c: oops, it's better to really open the cg file

	* daemon/opd_sfile.c:
	* daemon/opd_stats.c:
	* daemon/opd_stats.h:
	* daemon/liblegacy/opd_24_stats.c:
	* daemon/liblegacy/opd_24_stats.h:
	* daemon/liblegacy/opd_proc.c: log sample lost due to sample file open
	  failure

2003-11-15  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/liblegacy/opd_parse_proc.c: always provide an image name
	  for parsed process in /proc

2003-11-15  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/oprofile.xml:
	* libop/op_cpu_type.c: s/hammer/AMD64 processors/ for user visible
	  name.

2003-11-13  John Levon  <levon@movementarian.org>

	* libutil/op_file.h:
	* libutil/op_file.c: remove op_c_dirname(),
	op_relative_to_absolute_path(), op_is_directory(),
	op_follow_link(), in favour of using realpath(3)

	* libutil/tests/file_tests.c: fixes for above changes

	* libutil++/file_manip.h:
	* libutil++/file_manip.cpp: changes from above. Add
	op_realpath().

	* libutil++/tests/file_manip_tests.cpp: changes from 
	above.

	* daemon/oprofiled.c:
	* daemon/liblegacy/opd_parse_proc.c:
	* gui/oprof_start_util.cpp:
	* libpp/locate_images.cpp:
	* libpp/profile_spec.cpp:
	* pp/opannotate.cpp: changes from above

2003-11-12  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.8cvs

2003-11-11  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.7.1

2003-11-11  Joseph VanAndel  <unknown@unknown.org>

	* daemon/liblegacy/init.c: fix #840046 (segfault when starting profiler
	 with --no-vmlinux setup), this bug was present in 0.7.0.

2003-11-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.cpp: more precise error message
	* libutil++/tests/file_manip_tests.cpp: corner case test added
	  for dirname

2003-11-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: report_error() shows only distinct
	  conflicting name.

2003-11-10  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/opcontrol.1.in: reverse kernel:user in event setting description.
	  Fix #838968

2003-11-09  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/init.c:
	* daemon/liblegacy/init.c: move opd_read_fs_int ...
	* daemon/oprofiled.h:
	* daemon/oprofiled.c: here
	* daemon/liblegacy/opd_24_stats.c: dump kernel note buffer overflow and
	  buffer overlow

2003-11-09  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/op_help.c: do not use OP_MAX_COUNTERS but get counter number
	  at runtime

2003-11-09  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/tests/string_manip_tests.cpp: rtrim/ltrim/trim tests

2003-11-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/tests/Makefile.am:
	* libop/tests/mangle_tests.c: new tests: sample filename mangling

2003-11-08  Philippe Elie  <phil.el@wanadoo.fr>

	* module/x86/op_syscalls.c: fix build with 2.2 kernel

2003-11-06  Philippe Elie  <phil.el@wanadoo.fr>

	* Makefile.am: use .PHONY for module goal to not statisfy this goal
	  with the subdir named module
	* m4/findkernel.m4: minor fix.

2003-11-06  John Levon  <levon@movementarian.org>

	* Makefile.am: minor cleanup

2003-11-06  John Levon  <levon@movementarian.org>

	* gui/Makefile.am: remove unused -DKVERSION

2003-11-06  John Levon  <levon@movementarian.org>

	* configure.in: add --disable-werror and --disable-optimization

	* doc/oprofile.xml: document above. Remove docs for
	* --enable-gcov (only useful to developers)

2003-11-06  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_kernel.c:
	* daemon/liblegacy/opd_kernel.c: be less paranoid about kernel range,
	  this is slightly different than the patch Thomas Spatzier tested but
	  it can't hurt (famous last words ...). This fixes s390x where kernel
	  start can be zero and was rejected.

2003-11-06  Thomas Spatzier  <tspat@de.ibm.com>

	* daemon/opd_cookie.c: changed an #if defined for selecting right
	  system call for IBM s390 or s390x, respectively
	  
2003-11-04  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/path_filter.cpp: remove 2 identical FIXME
	* libutil++/tests/file_manip_tests.cpp:
	* libutil++/tests/path_filter_tests.cpp: reflect the behavior by
	  new tests

2003-11-04  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/db_manage.c:
	* libop/op_events.h: -pedantic fix

2003-11-04  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_sfile.c:
	* daemon/liblegacy/opd_kernel.c:
	* libutil/op_cpufreq.c:
	* libutil/op_file.c: a few s/goto/break/
	* libpp/format_output.cpp: padding never used after initialization

2003-11-04  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/comma_list.h: don't accept cumulative behavior
	* libutil++/string_manip.cpp: separate_token() return by value
	* gui/oprof_start.cpp:
	* libopt++/popt_options.cpp:
	* libpp/parse_filename.cpp:
	* libpp/profile_spec.cpp:
	* libutil++/comma_list.h:
	* libutil++/string_filter.cpp:
	* libutil++/string_manip.cpp:
	* libutil++/string_manip.h:
	* libutil++/tests/comma_list_tests.cpp:
	* libutil++/tests/string_manip_tests.cpp: update according
	* libpp/profile_spec.cpp: remove all trace of defunct op_alias

2003-11-04  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/liblegacy/opd_image.c:
	* daemon/liblegacy/opd_image.h:
	* daemon/liblegacy/opd_mapping.c:
	* daemon/liblegacy/opd_mapping.h:
	* daemon/liblegacy/opd_proc.c:
	* gui/oprof_start.cpp:
	* gui/oprof_start.h:
	* gui/oprof_start_config.cpp:
	* gui/oprof_start_util.cpp:
	* libop/op_config_24.h:
	* libpp/format_output.cpp:
	* libpp/op_header.cpp:
	* libpp/profile.h:
	* libpp/profile_container.cpp:
	* libpp/profile_spec.cpp:
	* libpp/profile_spec.h:
	* libpp/symbol.h:
	* libpp/symbol_sort.cpp:
	* libutil++/stream_util.cpp:
	* libutil++/stream_util.h:
	* libutil++/utility.h:
	* pp/common_option.cpp:
	* pp/common_option.h:
	* pp/opannotate_options.h:
	* pp/opgprof.cpp:
	* pp/opgprof_options.cpp:
	* pp/opgprof_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport_options.h:
	* pp/populate.cpp: remove some .h dependencies

2003-11-03  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/tests/Makefile.am:
	* libutil++/tests/utility_tests.cpp: new test files convering most of
	  utility.h and op_exception.h

2003-11-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/parse_filename.cpp: avoid repetitive vector::erase(v.begin())
	* libregex/stl.pat.in:
	* libregex/tests/mangled-name.in: add (i|o)stream operator(>>|<<)

2003-11-02  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/liblegacy/opd_image.h:
	* daemon/liblegacy/opd_image.c:
	* daemon/liblegacy/opd_proc.c:
	* daemon/liblegacy/opd_sample_files.c: sparse sample file array
	  allocated by line.

2003-11-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/glob_filter.h:
	* libutil++/path_filter.h:
	* libutil++/string_filter.h: comment fix to match implementation
	* libutil++/tests/path_filter_tests.cpp: new file test
	* libutil++/tests/Makefile.am: upate build
	* libutil++/tests/string_filter_tests.cpp: test white space at start
	  of pattern

2003-11-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.cpp: format_double can only format percent
	* libutil++/string_manip.h:
	* libpp/format_output.cpp:
	* libutil++/tests/string_manip_tests.cpp:
	* pp/opannotate.cpp:
	* pp/opreport.cpp: s/format_double/format_percent/

2003-11-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/glob_filter.h:
	* libutil++/string_filter.h:
	* libutil++/tests/string_filter_tests.cpp: minor tidy

	* libutil++/tests/glob_filter_tests.cpp: new file
	* libutil++/tests/Makefile.am: update build

2003-11-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: typo
	* libutil++/generic_spec.cpp: removed file
	* libutil++/Makefile.am: update according
	* libutil++/generic_spec.h: ensure generic_spec<string> will not link
	* libutil++/path_filter.cpp: minor tidy

2003-11-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/tests/string_manip_tests.cpp: ehance output on failure
	* module/oprofile.h:
	* module/oprofile.c: two new read-only sysctl: nr_buffer_overflow and
	  nr_note_buffer_overflow

2003-11-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/tests/Makefile.am:
	* libutil++/tests/file_manip_tests.cpp: don't use getcwd nor __FILE__
	  but ${topdir} and hard coded filename

2003-11-01  John Levon  <levon@movementarian.org>

	* daemon/liblegacy/opd_parse_proc.c: use op_follow_link

	* libutil/op_file.c:
	* libutil/op_file.h: make op_get_link() static, rename
	op_basename to op_c_basename

	* libutil++/file_manip.cpp:
	* libutil++/file_manip.h: rename to op_basename()/op_dirname().
	Use op_follow_link() for follow_link().

	* libutil++/tests/file_manip_tests.cpp:
	* gui/oprof_start_util.cpp:
	* libpp/locate_images.cpp:
	* libpp/name_storage.cpp:
	* libutil++/path_filter.cpp:
	* pp/opannotate.cpp:
	* pp/opreport.cpp: fixup from above changes

2003-11-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.h: has_debug_info() new member
	* pp/populate.h:
	* pp/populate.cpp: 
	* pp/opannotate.cpp: use it to error out when --assembly is not
	  requested and no debug information exists

2003-10-31  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/common_option.cpp: don't exit() if merge_by.lib is set through
	  !allow_lib

2003-10-31  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport_options.cpp: move handle_merge_option() ...
	* pp/common_option.h: 
	* pp/common_option.cpp: here
	* pp/opannotate_options.cpp: use it but disallow --merge=lib

2003-10-31  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/op_file.c:
	* libutil/op_file.h: implement dirname(), is_directory() and
	  op_follow_link()
	* daemon/oprofiled.c: follow symlink for image filter
	* libutil++/file_manip.cpp:
	* libutil++/file_manip.h:
	* gui/oprof_start_util.cpp:
	* libpp/profile_spec.cpp:  rename op_follow_link() to follow_link()

2003-10-31  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/tests/file_tests.c: "//usr" --> "//usr"
	* libutil++/tests/.cvsignore:
	* libutil++/tests/Makefile.am:
	* libutil++/tests/file_manip_tests.cpp: new tests file.

2003-10-31  John Levon  <levon@movementarian.org>

	* daemon/opd_perfmon.c: fix compilation

2003-10-30  John Levon  <levon@movementarian.org>

	* libpp/profile_spec.cpp: introduce a helper function
	to make the comma_list matching clear

2003-10-30  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/comma_list.h: is_set() new member
	* libpp/profile_spec.cpp: fix matching logic for cpu/tid/tgid

2003-10-30  John Levon  <levon@movementarian.org>

	* libutil++/generic_spec.h: add value() and
	is_set(), remove bool parameter from T value
	match() (it was never set to true)

	* libutil++/comma_list.h: do not accept
	generic_spec, the behaviour was to implicitly
	not match an "all" generic_spec. Instead:

	* libpp/profile_spec.cpp: encode the matching
	behaviour explicitly, and add a comment.

	* libutil++/tests/comma_list_tests.cpp: fix to
	match the above

2003-10-30  John Levon  <levon@movementarian.org>

	* Makefile.am: re-order build subdirs

	* libabi/Makefile.am: only build abitest on
	make check

	* pp/Makefile.am: pp_common not pp_commons

2003-10-30  John Levon  <levon@movementarian.org>

	* libutil++/tests/Makefile.am:
	* libutil++/tests/comma_list_tests.cpp: Add.

2003-10-30  John Levon  <levon@movementarian.org>

	* doc/Makefile.am: improve chunk rules

2003-10-30  John Levon  <levon@movementarian.org>

	* libutil++/tests/Makefile.am:
	* libutil++/tests/string_filter_tests.cpp: Add.

	* libutil++/tests/string_manip_tests.cpp: fix header include

2003-10-30  John Levon  <levon@movementarian.org>

	* libutil++/tests/string_manip_tests.cpp: fix tobool test
	("33" is not castable to bool)

2003-10-30  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.cpp:
	* libutil++/string_manip.h: remove tostr()/tobool/touint(), rename
	  lexical_cast_no_ws<> to op_lexical_cast<>

	* gui/oprof_start.cpp:
	* gui/oprof_start_config.cpp:
	* libpp/arrange_profiles.cpp:
	* libpp/filename_spec.cpp:
	* libpp/op_header.cpp:
	* libutil++/comma_list.h:
	* libutil++/generic_spec.h:
	* libutil++/tests/string_manip_tests.cpp: use op_lexical_cast<>

2003-10-29  John Levon  <levon@movementarian.org>

	* pp/common_option.h: use std namespace

2003-10-28  Jason Lunz  <lunz@falooley.org>

	* doc/oprofile.1.in: document cpu,tid,tgid in profile
	spec

2003-10-29  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.cpp: error out for all tag:value specified
	  more than once.

2003-10-29  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/opannotate.1.in:
	* doc/opreport.1.in:
	* doc/oprofile.xml:
	* libregex/demangle_symbol.cpp:
	* libregex/demangle_symbol.h:
	* pp/common_option.cpp:
	* pp/common_option.h:
	* pp/opannotate_options.cpp:
	* pp/opannotate_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport_options.h: remove --no-demangle, --smart-demangle and
	  --demangle, replace them with --demangle=none|smart|normal

2003-10-29  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/tests: new directory
	* libutil++/tests/string_manip_tests.cpp: new tests file
	* configure.in:
	* libutil++/Makefile.am:
	* libutil++/tests/.cvsignore:
	* libutil++/tests/Makefile.am: handle new test

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: correct implementation of separate_token
	  to match the documentation
	* daemon/liblegacy/opd_image.c: fix comment

2003-10-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/count_array.cpp:
	* libpp/count_array.h:
	* libpp/locate_images.h:
	* libpp/parse_filename.cpp:
	* libpp/profile.cpp:
	* libpp/profile.h:
	* libpp/profile_spec.cpp:
	* libpp/symbol_sort.cpp: minor tidy

2003-10-28  Jason Lunz  <lunz@falooley.org>

	* doc/opcontrol.1.in: better wording for --separate=
	* doc/oprofile.1.in: typo

2003-10-28  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/liblegacy/init.c:
	* daemon/liblegacy/opd_24_stats.c:
	* daemon/liblegacy/opd_24_stats.h:
	* daemon/liblegacy/opd_image.c:
	* daemon/liblegacy/opd_image.h:
	* daemon/liblegacy/opd_kernel.c:
	* daemon/liblegacy/opd_kernel.h:
	* daemon/liblegacy/opd_mapping.c:
	* daemon/liblegacy/opd_mapping.h:
	* daemon/liblegacy/opd_parse_proc.c:
	* daemon/liblegacy/opd_parse_proc.h:
	* daemon/liblegacy/opd_proc.c:
	* daemon/liblegacy/opd_proc.h:
	* daemon/liblegacy/opd_sample_files.c:
	* daemon/liblegacy/opd_sample_files.h: move doygen comment from *.c to
	  *.h. Add some doxygen comment.

2003-10-27  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/liblegacy/opd_24_stats.c:
	* daemon/liblegacy/opd_image.h:
	* daemon/liblegacy/opd_image.h: nr_images static

2003-10-27  John Levon  <levon@movementarian.org>

	* doc/opcontrol.1.in: document --image=

	* doc/oprofile.xml:
	* utils/opcontrol: make user specify "--image=all"
	to reset. Clean up help message. Ensure note table
	size is given a value. Add '-t' for '--stop', and
	'-i' for '--image'.

2003-10-27  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document opcontrol --image=

2003-10-27  John Levon  <levon@movementarian.org>

	* daemon/opd_events.h:
	* daemon/opd_events.c: move code for handling
	event descriptions here, and share find_counter_event(),
	plus fill_header()

	* daemon/opd_mangling.c:
	* daemon/opd_perfmon.c:
	* daemon/oprofiled.c:
	* daemon/oprofiled.h:
	* daemon/liblegacy/opd_proc.c:
	* daemon/liblegacy/opd_sample_files.c: changes from
	above

2003-10-27  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c: fix help text

	* daemon/liblegacy/init.c:
	* daemon/liblegacy/opd_proc.h:
	* daemon/liblegacy/opd_proc.c: clean up headers
	a bit

2003-10-27  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: check we can get kernel interface

2003-10-27  John Levon  <levon@movementarian.org>

	* daemon/liblegacy/Makefile.am: remove unneeded
	-I for abi

2003-10-27  John Levon  <levon@movementarian.org>

	* daemon/init.c:
	* daemon/opd_perfmon.c: move timer interrupt checks
	into perfmon

2003-10-27  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c: use op_get_interface()

	* libop/op_get_interface.c: simplify

2003-10-26  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/ui/oprof_start.base.ui:
	* gui/oprof_start.cpp:
	* gui/oprof_start.h: check separate_lib checkbox when
	  separate_kernel_cb is checked

2003-10-26  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: allow to reset --image through empty --image=
	  or --image

2003-10-26  John Levon  <levon@movementarian.org>

	* daemon/opd_cookie.c: reduce the hash table size somewhat

	* various: fixes for doxygen

2003-10-26  John Levon  <levon@movementarian.org>

	* HACKING:
	* configure.in:
	* Makefile.am:
	* dae/: move all of 2.4 daemon code to ...

	* daemon/liblegacy/: here

	* daemon/Makefile.am:
	* daemon/opd_util.h:
	* daemon/opd_util.c: move to ...

	* daemon/oprofiled.h:
	* daemon/oprofiled.c: here, and call the right operations
	depending upon oprofile kernel version.

	* daemon/init.c:
	* daemon/liblegacy/init.c: init and running for each version

2003-10-26  John Levon  <levon@movementarian.org>

	* daemon/opd_cookie.c: make sure to create the
	cookie for the ignore value if it's not found

	* daemon/opd_sfile.c: simplify ignored logic

2003-10-26  John Levon  <levon@movementarian.org>

	* doc/internals.xml:
	* doc/buffers.png: add a diagram

2003-10-26  Philippe Elie  <phil.el@wanadoo.fr>

	implement image filtering:

	* dae/opd_image.h: add a field filtered
	* dae/opd_image.c: set it at image creation
	* dae/opd_proc.c: don't record sample when !image->filtered

	* daemon/opd_cookie.h: add a field filtered
	* daemon/opd_cookie.c: set it a cookie_entry creation.
	* daemon/opd_sfile.h: add a field filtered
	* daemon/opd_file.c: set it a opd_sfile struct creation
	* daemon/opd_trans.c: record sample if filtered

	* daemon/opd_util.h: export opd_hash_name(), is_image_filtered()
	* daemon/opd_util.c: implement --image=xxx

	* oprofiled.c: #include "config.h" not <>

	* utils/opcontrol: handle --image

2003-10-26  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: remove some outdated stuff

2003-10-25  John Levon  <levon@movementarian.org>

	* doc/internals.xml: more docs

2003-10-25  John Levon  <levon@movementarian.org>

	* daemon/opd_perfmon.c: cleanups

2003-10-24  John Levon  <levon@movementarian.org>

	* doc/internals.xml: write some more

2003-10-23  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.7.1cvs

2003-10-22  John Levon  <levon@movementarian.org>

	* libop/tests/Makefile.am:
	* libop/tests/load_events_files_tests.c:
	* libop/tests/alloc_counter_tests.c: fix
	make distcheck

	* configure.in: bump to 0.7
 
2003-10-22  John Levon  <levon@movementarian.org>

	* daemon/Makefile.am:
	* daemon/opd_perfmon.h:
	* daemon/opd_perfmon.c: re-enable. Wait for children.
	More safety checking.

	* daemon/oprofiled.c: only use perfmon if !timer

2003-10-20  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/oprofile.xml:
	* doc/oprofile.1.in: s/physical CPU/CPU/

2003-10-20  John Levon  <levon@movementarian.org>

	* daemon/Makefile.am:
	* daemon/opd_perfmon.h: disable perfmon nicely

	* gui/oprof_start.cpp:
	* gui/oprof_start_config.h:
	* gui/oprof_start_config.cpp:
	* gui/ui/oprof_start.base.ui: Fix reading of separate
	parameters. Add CPU and thread separation

2003-10-20  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.cpp: relative path are relative to current dir
	  not filename.

2003-10-20  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml:
	* doc/opreport.1.in: fix --merge docs and profile specs

2003-10-20  John Levon  <levon@movementarian.org>

	* dae/opd_sample_files.c:
	* daemon/opd_mangling.c:
	* libabi/abi.cpp:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* libop/op_config.h:
	* libop/op_sample_file.h:
	* libpp/op_header.cpp: remove ctr and separate_* from
	header. Re-arrange it a little, and make it 64 bytes
	on ILP32. Bump the version.

2003-10-20  John Levon  <levon@movementarian.org>

	* libpp/arrange_profiles.cpp: rework the clashing-axes
	error message to be nicer to the user

2003-10-20  John Levon  <levon@movementarian.org>

	* libpp/arrange_profiles.cpp: if tid == tgid for
	every profile class, allow axes of both TID and TGID
	- there is no actual difference, only theoretical

2003-10-20  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/oprofiled.c: correct an error message
	* libop/op_alloc_counter.h: remove bogus FIXME
	* libutil++/child_reader.cpp: avoid quadratic behaviour if child does a
	  lot of output in stderr
	* libpp/opgprof.cpp: fix comment

2003-10-19  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: redundant return

2003-10-19  John Levon  <levon@movementarian.org>

	* libop/op_events.c: move to a fixed value for the default
	event count value

2003-10-19  Philippe Elie  <phil.el@wanadoo.fr>

	remove some FIXME:
	* libpp/format_output.h: remove first_output bool member
	* libpp/format_output.cpp: call output_header from the right place
	* libpp/op_header.h: remove bogus FIXME

	* libregex/tests/Makefile.am: fix dependencies on mangled-name file,
	  fix make dist
	* libregex/tests/mangled-name.in: simplify a bit and remove a bogus
	  FIXME
	* libregex/tests/regex_test.cpp: fix comment

	* module/ia64/op_syscalls.c:
	* module/x86/hammer_op_syscalls.c:
	* module/x86/op_syscalls.c: remove some FIXME

2003-10-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: clarify suggestion.
	* pp/opreport_options.cpp: update options help string for --merge.

	* libpp/profile_container.cpp:
	* libpp/profile_spec.cpp:
	* pp/common_option.cpp:
	* pp/populate.cpp: ';' are not necessary to end namespace

2003-10-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: use a set<profile_classes> instead
	  of a vector<...> to replace a O(N*M) by a O(N*log(M)) behavior.
	  (N number of samples files, M number of class).

2003-10-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: show filename when warning about no debug
	  information available. get_linenr(): s/filename/source_filename/

2003-10-16  Philippe Elie  <phil.el@wanadoo.fr>

	* events/ia64/itanium/events: counter 0,1 not 2,3 for IA64_INST_RETIRED

	* daemon/opd_util.c: opd_parse_events() fix use after free.

2003-10-16  John Levon  <levon@movementarian.org>

	* daemon/opd_perfmon.c: disable the code

2003-10-15  John Levon  <levon@movementarian.org>

	* daemon/opd_perfmon.c: fflushes to improve
	order of debug log

2003-10-15  John Levon  <levon@movementarian.org>

	* daemon/opd_perfmon.c: fix dumb allocation typo;
	handle signals correctly; wait for children to
	come up before returning

2003-10-15  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_sample_files.c:
	* daemon/opd_mangling.c:
	* daemon/opd_perfmon.c:
	* daemon/opd_util.c: check we not overflow op_nr_counters

2003-10-15  Philippe Elie  <phil.el@wanadoo.fr>

	* events/ia64/itanium/events: correct counter available according
	  to intel doc.

2003-10-15  John Levon  <levon@movementarian.org>

	* dae/opd_image.c:
	* dae/opd_kernel.c:
	* dae/opd_proc.c:
	* dae/opd_sample_files.c:
	* dae/oprofiled.c:
	* daemon/opd_kernel.c:
	* daemon/opd_mangling.c:
	* daemon/opd_sfile.c:
	* daemon/opd_trans.c:
	* daemon/opd_util.c:
	* daemon/opd_util.h:
	* daemon/oprofiled.c: merge the options handling
	for dae and daemon

2003-10-15  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_perfmon.c:
	* module/ia64/op_pmu.c: bit mask for event select field is 8 bits not 7

2003-10-14  John Levon  <levon@movementarian.org>

	* configure.in:
	* m4/findkernel.m4:
	* utils/opcontrol: 2.5 refs -> 2.6

2003-10-14  John Levon  <levon@movementarian.org>

	* utils/opcontrol: merge some 2.4/6 code

2003-10-14  John Levon  <levon@movementarian.org>

	* dae/opd_image.c:
	* dae/opd_sample_files.c:
	* dae/oprofiled.c:
	* utils/opcontrol: use --events for 2.4 daemon
	too

	* daemon/opd_perfmon.c:
	* daemon/opd_mangling.c: fix counter numbering
	on !perfmon

2003-10-14  John Levon  <levon@movementarian.org>

	* configure.in: xmemdup not xmemdump

2003-10-14  John Levon  <levon@movementarian.org>

	* daemon/opd_perfmon.c: propagate a SIGTERM
	up to the parent.

2003-10-14  John Levon  <levon@movementarian.org>

	* m4/perfmon.m4:
	* configure.in: remove pfmlib checks

	* daemon/opd_util.h:
	* daemon/opd_util.c:
	* daemon/opd_mangling.c:
	* daemon/oprofiled.c: parse more detailed events
	passed on command line

	* daemon/opd_perfmon.h:
	* daemon/opd_perfmon.c: don't use libpfm at all,
	do it ourselves.

	* utils/opcontrol: pass more of the events info to
	the daemon

2003-10-14  John Levon  <levon@movementarian.org>

	* m4/perfmon.m4:
	* configure.in: look for pfmlib 3

	* daemon/Makefile.am:
	* daemon/opd_perfmon.h:
	* daemon/opd_perfmon.c: interface to perfmon on 2.6 IA64

	* daemon/opd_mangling.c:
	* daemon/oprofiled.c: read event descriptions from command
	line not oprofilefs

	* daemon/opd_util.h:
	* daemon/opd_util.c: receive SIGUSR1/2 for perfmon

	* utils/opcontrol: handle multiple oprofileds. Send SIGUSR1/2
	on start/stop. Pass in events list to oprofiled on 2.6. Don't
	attempt to fill in oprofilefs with event info if using perfmon.

2003-10-14  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_mangling.c:
	* daemon/opd_sfile.c:
	* daemon/opd_sfile.h: protect the sfile we are acting on to be freed
	  by sfile_lru_clear()

	* libdb/db_manage.c:
	* libdb/odb_hash.h: Do not put hash->descr in an inconsistent state
	  when a failure occur.

2003-10-13  Philippe Elie  <phil.el@wanadoo.fr>

	* module/oprofile.c: don't restore syscall and stop counter twice

2003-10-13  Will Cohen  <wcohen@redhat.com>

	* libop/op_parse_event.c(parse_events): Correct fprintf.

2003-10-13  Philippe Elie  <phil.el@wanadoo.fr>

	* module/x86/hammer_op_syscalls.c: pass tgid to daemon. Not tested!

2003-10-12  John Levon  <levon@movementarian.org>

	* utils/opcontrol: share --separate-cpu/thread code now

2003-10-12  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: add libregex/tests/mangled-name.in
	* libregex/tests/mangled-name.txt: move ...
	* libregex/tests/mangled-name.in: here, tune to support different arch
	* libregex/tests/Makefile.am: s/mangled-name.txt/mangled-name.in
	* libregex/stl.pat.in: fix iterator<... ptrdiff_t>
	* libregex/tests/Makefile.am: update according to filename change

	* libregex/tests/regex_test.cpp: really fails on exception.

2003-10-12  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/oprofiled.c: don't set cpu_number when !--separate=cpu
	
	* libop/tests/alloc_counter_tests.c: printf format for 64 bits arch
	* libop/tests/cpu_type_tests.c: #include <string.h>
	* libop/tests/parse_event_tests.c: #include <string.h>

2003-10-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_interface.h: struct op_sample: remove packed attribute

2003-10-11  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_image.c:
	* dae/opd_image.h: reference count opd_image. Remove modification time
	  checking. Remove hash field. Tidy
	* dae/opd_kernel.c: pass tid, tgid to op_get_kernel_image()
	* dae/opd_mapping.c:
	* dae/opd_mapping.h: use module hash code for image name to index
	  a cache of name, this hash code is no longer used elsewhere. When
	  killing map delete associated image, reference count of image
	  will check for a real delete.
	* dae/opd_parse_proc.c: get tgid from /proc/pid/status
	* dae/opd_proc.c: create an opd_proc by process when
	  separate_thread == true. Tidy by adding an opd_for_each_proc()
	* dae/opd_proc.h: add tid/tgid to opd_proc struct
	* dae/opd_sample_files.c:
	* dae/opd_sample_files.h: lru all samples files, allowing to cleanup
	  a part of the lru if we go out of resource. Remove
	  opd_handle_old_sample_files() since we no longer check for image
	  modification time.
	* dae/opd_stats.c:
	* dae/opd_stats.h: statistics for opd_image struct depth search
	* dae/oprofiled.c: add --separate-cpu and --separate-thread
	* libop/op_interface.h: add tgid to samples struct passed from module
	  to daemon.
	* module/compat22.h:
	* module/compat24.h: op_get_tgid() return tgid, fall back to return
	  tid on 2.2 kernel.
	* module/oprofile.c:
	* module/ia64/op_syscalls.c: pass tgid to daemon. NOT TESTED but I
	  think it's ok. Note than even if it's broken ia64 should work w/o
	  --separate=thread
	* module/x86/op_syscalls.c: pass tgid to daemon.
	* utils/opcontrol: enable 2.4 thread/cpu separation

	* libdb/tests/db_test.c: verbose on when we provide filename of db file
	  to test on command line.

2003-10-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_cpu_type.h:
	* libop/op_cpu_type.c: constification
	* utils/op_help.c: check only if CPU_NO_GOOD not range

	* libutil/tests/Makefile.am:
	* libregex/tests/Makefile.am:
	* libdb/tests/Makefile.am: s/TEST = (.*)/TESTS = ${check_PROGRAMS}/

	* libop/tests/alloc_counter_tests.c: comment fix

	* libop/tests/Makefile.am:
	* libop/tests/cpu_type_tests.c: new file, test libop/op_cpu_type.c

2003-10-10  Will Cohen  <wcohen@redhat.com>

	* libop/op_cpu_type.h (op_get_cpu_number): Clarify comment.
	* libop/op_cpu_type.c (op_get_cpu_number): Check number.
	* utils/op_help.c (main): Make check with CPU_NO_GOOD.

2003-10-10  Will Cohen  <wcohen@redhat.com>

	* libop/op_cpu_type.h (op_get_cpu_number): Declare.
	* libop/op_cpu_type.c (op_get_cpu_number): New.
	  (op_get_cpu_type): Use op_get_cpu_number.
	* utils/op_help.c (main): Use op_get_cpu_number.

2003-10-10  John Levon  <levon@movementarian.org>

	* libop/op_parse_event.c: fix compile for IA64

2003-10-09  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document "no results" and
	how to fix it

2003-10-08  John Levon  <levon@movementarian.org>

	* utils/op_help.c: standardise name

	* gui/oprof_start.cpp: Qt 2.3.1 compile fix
	(bug 819943)

2003-10-07  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.c: memory leak

	* dae/opd_mapping.c:
	* dae/opd_mapping.h:
	* dae/opd_parse_proc.c:
	* dae/opd_proc.c: 
	* dae/opd_proc.h: use a list of struct opd_map instead of an array,
	  remove last_map optimization.

	* dae/oprofiled.c: memory leak
	
	* libutil/op_cpufreq.c: memory leak, FILE* leak
	* libutil/op_list.h: fix @author

2003-10-06  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/oprofiled.c:
	* dae/opd_proc.h:
	* dae/opd_proc.c: use struct list_head to chain opd_proc struct in hash
	  table

	* utils/op_help.c: comment fix

2003-10-06  John Levon  <levon@movementarian.org>

	* utils/opcontrol: work around 2.6 daemon's signal
	handling race that could cause it to hang during
	a --shutdown

2003-10-05  Philippe Elie  <phil.el@wanadoo.fr>

	* events/i386/p4/events:
	* events/i386/p4-ht/events: put GLOBAL_POWER_EVENTS on top

	* events/i386/pii/unit_masks:
	* events/i386/piii/unit_masks: typo in help string

	* utils/op_help.c: show "counter: all" instead an enumeration of all
	  counter

2003-10-02  Philippe Elie  <phil.el@wanadoo.fr>

	* events/*.events *.unit_masks: move these files to subdir named
	  arch/processor_name/events and arch/processor_name/unit_masks
	* events/Makefile.am: update according
	
	* libop/op_events.c: now it's safe to allow loading events file from a
	  directory provided through environment var OPROFILE_EVENTS_FILE_DIR
	* libop/tests/alloc_counter_tests.c: use it
	* libop/tests/load_events_files_tests.c: use it

2003-10-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_events.c: revert last commit (allowed to find events files
	  description directory in alternate directory)

	* libop/tests/Makefile.am:
	* libop/tests/load_events_files_tests.c: new files. Validate events
	  description file by loading them.

	* libutil/op_cpufreq.c: comment why we don't have any code handling
	  s390

2003-10-01  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in:
	* libop/Makefile.am: new subdir
	* libop/op_events.c: allow to retrieve events file dir through
	  environment variable
	* utils/op_help.c: move parse_events() and parsed_event struct to ...
	* libop/op_parse_event.h:
	* libop/op_parse_event.c: these new files

	* libop/tests/Makefile.am: new tests subdir
	* libop/tests/alloc_counter_tests.c: events mapping to counter nr tests
	* libop/tests/parse_event_tests.c: event parsing tests

2003-10-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_alloc_counter.c: add forward declaration
	* libop/op_alloc_counter.c: alloc counter in increasing number order,
	  it's less surprising.

2003-10-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/tests/db_test.c: if previous tests fails a corrupted samples
	  file can exist in test dir and will be re-used, remove() it.

2003-10-01  John Levon  <levon@movementarian.org>

	* daemon/opd_sfile.c:
	* libabi/op_import.cpp:
	* libop/op_interface.h:
	* libpp/locate_images.h: small cleanups

	* pp/opreport_options.cpp: don't complain about
	"-x -m all"

2003-09-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/op_file.c:
	* libutil/tests/file_tests.c: honor posix "//" filename namespace

2003-09-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_alloc_counter.h:
	* libop/op_alloc_counter.c: change allocator by a backtracking
	  algorithm walking only through possible solution.

2003-09-26  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/tests/db_test.c: success must be silent
	* dae/oprofiled.c:
	* daemon/oprofiled.c:
	* libutil/op_deviceio.c:
	* libutil/op_deviceio.h: op_open_device(): remove unused parameter
	  fatal

2003-09-26  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/tests/file_tests.c: Fix some test: in some case the pathname
	  component must be valid since we lstat() them. Fix a segfault due
	  to missing ',' 

2003-09-26  John Levon  <levon@movementarian.org>

	* libdb/tests/Makefile.am:
	* libregex/tests/Makefile.am:
	* libutil/tests/Makefile.am: don't build tests
	unless "make check"

2003-09-26  John Levon  <levon@movementarian.org>

	* libutil/op_file.c: don't test for NULL path
	passed in, we want to crash here instead of
	in xstrdup

	* configure.in:
	* libutil/Makefile.am:
	* libutil/tests/Makefile.am:
	* libutil/tests/file_tests.c:
	* libutil/tests/string_tests.c: add some unit tests
	for libutil string and path handling

2003-09-26  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/db_debug.c: remove useless display interface
	* libdb/db_db_travel.c: remove callback interface
	* libdb/odb_hash.h: remove display/callback interface
	* libdb/db_test.cpp: move to tests subdir
	* libdb/Makefile.am: update according
	* libdb/tests: new dir
	* libdb/tests/.cvsignore:
	* libdb/tests/Makefile.am: new files
	* libdb/tests/db_test.cpp: shorter tests

	* libregex/mangled-name.txt:
	* libregex/regex_testc.cpp: move to ...
	* libregex/tests: new directory
	* libdb/Makefile.am: update according
	* libregex/tests/.cvsignore:
	* libregex/tests/Makefile.am: new files

2003-09-26  John Levon  <levon@movementarian.org>

	* libabi/abi_test.cpp:
	* libabi/op_import.cpp: small cleanups

2003-09-25  John Levon  <levon@movementarian.org>

	* daemon/opd_cookie.c:
	* daemon/opd_kernel.c:
	* daemon/opd_sfile.c:
	* daemon/opd_trans.c:
	* daemon/oprofiled.c: trivial cleanups

2003-09-25  Marc Herbert  <marc.herbert@ens-lyon.fr>

	* configure.in: fix prefix stuff to allow stow
	to work

2003-09-25  Philippe Elie  <phil.el@wanadoo.fr>

	* pch-c++.h: remove
	* Makefile.am: update according
	* configure.in: no longer need for conditional enable_pch
	* m4/precompiledheader.m4: don't use -Winvalid-pch

2003-09-25  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_sfile.c: sfile_lru_clear() return 0 if lru is empty
	* daemon/opd_mangling.c: abort() if lru was empty (not tested)
	* daemon/oprofiled.c: likewise; opd_alarm(): don't sfile_lru_clear()

	* utils/op_help.c:
	* daemon/opd_sfile.h:
	* daemon/opd_cookie.h: s/()/(void)/ in some function prototype and
	  definition

	* daemon/opd_cookie.c: s/"not looked up"/"not hashed"/

2003-09-25  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c: push rlimit down back to 2048.
	This gives a running RSS of about 10Mb when thread
	profiling on my box, which seems reasonable (at 8192
	it was hitting 40Mb)

2003-09-25  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/oprofile.xml: clarify what means a configured kernel.

2003-09-25  John Levon  <levon@movementarian.org>

	* daemon/opd_sfile.c: bump LRU_AMOUNT to 1000

2003-09-24  John Levon  <levon@movementarian.org>

	* doc/opcontrol.1.in:
	* doc/oprofile.xml: document thread and cpu
	profiling a bit

	* daemon/opd_mangling.c:
	* daemon/opd_sfile.c:
	* daemon/oprofiled.c:
	* utils/opcontrol: implement per-CPU profiling,
	not tested yet

2003-09-24  John Levon  <levon@movementarian.org>

	* dae/opd_proc.c:
	* dae/opd_sample_files.c:
	* daemon/opd_mangling.c:
	* daemon/opd_sfile.c:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* libdb/db_insert.c:
	* libdb/db_manage.c:
	* libdb/db_test.c:
	* libdb/odb_hash.h:
	* libpp/op_header.cpp:
	* libpp/profile.cpp: remove samples_odb_t.err_msg
	entirely - prefer UNIX-style errno returns. Modify
	error messages to match

2003-09-24  John Levon  <levon@movementarian.org>

	* dae/opd_sample_files.c:
	* daemon/opd_sample_files.c:
	* libpp/op_header.cpp:
	* libpp/profile.cpp:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* libdb/db_test.c:
	* libdb/odb_hash.h:
	* libdb/odb_manage.c: make odb_open return errno
	instead of EXIT_FAILURE/SUCCESS to allow EMFILE
	handling. Also do not leak fd's on failure.

	* libutil/op_types.h: cookie_t moved into daemon/

	* daemon/: major rewrite: move to a hash on all
	parameters of struct transient. Lots of readability
	cleanups, plus resistance to cookie lookup failures,
	and hitting open file limits. Additionally thread
	profiling for kernel threads is enabled now.

2003-09-24  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: remove support for missing
	CTX_TGID

2003-09-24  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c: remove /proc/kcore support

2003-09-22  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_parse_proc.c: both op_file.h and op_fileio.h are needed

2003-09-22  John Levon  <levon@movementarian.org>

	* doc/CodingStyle: document doxygen placing rule

	* libop/op_alloc_counter.h:
	* libop/op_get_interface.c:
	* libutil++/file_manip.cpp:
	* libutil++/file_manip.h:
	* libutil++/op_bfd.cpp:
	* libutil++/op_bfd.h:
	* libutil/op_deviceio.c:
	* libutil/op_deviceio.h:
	* libutil/op_get_time.c:
	* libutil/op_get_time.h:
	* libutil/op_libiberty.c:
	* libutil/op_libiberty.h:
	* libutil/op_lockfile.c:
	* libutil/op_lockfile.h:
	* libutil/op_popt.c:
	* libutil/op_popt.h: follow the above

	* libutil/op_file.c:
	* libutil/op_file.h:
	* libutil/op_fileio.c:
	* libutil/op_fileio.h:
	* dae/opd_parse_proc.c:
	* libutil++/string_manip.cpp: move op_get_link to
	op_file

2003-09-22  John Levon  <levon@movementarian.org>

	* libutil/op_fileio.h:
	* libutil/op_fileio.c: warn about op_get_link()
	restrictions

	* libutil++/file_manip.h:
	* libutil++/file_manip.cpp: s/op_read_link/op_follow_link,
	and behaviour change to match

	* libpp/profile_spec.cpp:
	* gui/oprof_start_util.cpp: use op_follow_link

2003-09-22  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/makefile.am: missing AM_CFLAGS setting

	* dae/oprofiled.c:
	* daemon/oprofiled.c: handle signal in read loop
	* daemon/opd_util.h:
	* daemon/opd_util.c: move opd_setup_signal() from dae/ daemon/

2003-09-22  John Levon  <levon@movementarian.org>

	* dae/oprofiled.c:
	* daemon/oprofiled.c: mask SIGTERM too to prevent
	the possibility of empty sample files

2003-09-21  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* pp/opreport.cpp: format_output::show_header no hide_header

2003-09-21  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/opreport.1.in:
	* doc/oprofile.xml:
	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* pp/opreport.cpp: --global_percent must be effective for detailed
	  output too

2003-09-21  John Levon  <levon@movementarian.org>

	* pp/opreport_options.cpp: prevent --global-percent
	when appropriate

2003-09-21  John Levon  <levon@movementarian.org>

	* Makefile.am: back out broken make clean change

2003-09-21  John Levon  <levon@movementarian.org>

	* Makefile.am: make clean now removes *.html

	* internals.xml: add some outline sections

2003-09-21  John Levon  <levon@movementarian.org>

	* doc/internals.xml: provide a short overview
	and start a glossary

	* libpp/count_array.h:
	* libpp/format_output.cpp:
	* libpp/format_output.h:
	* libpp/profile.cpp:
	* libpp/profile.h:
	* libpp/profile_container.cpp:
	* libpp/profile_container.h:
	* pp/opreport.cpp: replace residual references to
	count groups with profile class concept

2003-09-21  John Levon  <levon@movementarian.org>

	* doc/Makefile.am:
	* doc/internals.xml: start an internals manual ...

2003-09-19  John Levon  <levon@movementarian.org>

	* pp/image_errors.cpp: missing include

2003-09-19  John Levon  <levon@movementarian.org>

	* libopt++/popt_options.h:
	* libopt++/popt_options.cpp: remove additional_help
	stuff, unused for some time

2003-09-18  John Levon  <levon@movementarian.org>

	* libutil++/Makefile.am:
	* libutil++/image_flags.h: move to ...

	* libpp/Makefile.am:
	* libpp/image_error.h: ... here, and rename

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: take an in-out bool
	instead of image_flags

	* libpp/arrange_profiles.cpp:
	* libpp/arrange_profiles.h:
	* libpp/locate_images.cpp:
	* libpp/locate_images.h:
	* libpp/profile_spec.cpp:
	* pp/image_errors.cpp:
	* pp/opgprof.cpp:
	* pp/populate.cpp: changes from above

2003-09-18  John Levon  <levon@movementarian.org>

	* libutil++/Makefile.am:
	* libutil++/image_flags.h: flags for image read failure

	* libpp/profile_spec.cpp:
	* libpp/locate_images.h:
	* libpp/locate_images.cpp:
	* libpp/arrange_profiles.h:
	* libpp/arrange_profiles.cpp: use image_flags

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: use image_flags, no longer error
	out on format failure

	* pp/Makefile.am:
	* pp/image_errors.cpp:
	* pp/image_errors.h: errors previously reported in locate_images
	are now reported here by the client

	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opgprof_options.cpp:
	* pp/opreport.cpp:
	* pp/populate.h:
	* pp/populate.cpp: use the above

2003-09-18  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.cpp: use 9 not 12 for % field width
	* libutil++/string_manip.cpp: shrink 100.0000 to 100.000
	* pp/opreport.cpp: s/" "/' '

2003-09-18  John Levon  <levon@movementarian.org>

	* pp/opannotate_options.cpp:
	* pp/opreport_options.cpp: clean up error messages

	* pp/opgprof_options.h:
	* pp/opgprof_options.cpp:
	* pp/opgprof.cpp: use inverted_profile API

2003-09-18  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: overwrite all current settings with --separate,
	  this change behavior of --separate=kernel,library now we really setup
	  both in this case.

2003-09-18  John Levon  <levon@movementarian.org>

	* libpp/locate_images.cpp: rewrite a little

	* libutil++/op_bfd.cpp: set fsize to default to -1,
	for fake artificial symbol

2003-09-18  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/locate_images.h:
	* libpp/locate_images.cpp: find_module_path() extra bool parameter
	  to know if we fail to retrieve the image.
	* libpp/arrange_profiles.h:
	* libpp/arrange_profiles.cpp: use it and save this bool in
	  inverted_profile struct
	* libpp/profile_spec.cpp: update caller according

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: use the above change to create fake op_bfd

	* pp/opgprof_options.cpp:
	* pp/opgprof.cpp: update caller but never allow fake op_bfd

	* pp/populate.cpp: allow to create fake op_bfd
	

2003-09-18  John Levon  <levon@movementarian.org>

	* dae/opd_image.c:
	* dae/opd_proc.c:
	* dae/opd_sample_files.c:
	* dae/oprofiled.c:
	* daemon/opd_image.c:
	* daemon/opd_image.h:
	* daemon/opd_kernel.c:
	* daemon/opd_sample_files.c:
	* daemon/oprofiled.c:
	* gui/oprof_start.cpp:
	* gui/oprof_start_config.cpp:
	* gui/oprof_start_config.h:
	* gui/ui/oprof_start.base.ui:
	* libabi/abi.cpp:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* libop/op_sample_file.h:
	* libpp/op_header.cpp:
	* utils/opcontrol: renamings of separate stuff

2003-09-17  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.c: thinko in opd_get_module_info(): we must take
	  care to re-use a previously created module not to create a new

2003-09-17  John Levon  <levon@movementarian.org>

	* daemon/opd_kernel.c: logging improvements

2003-09-17  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.c:
	* daemon/opd_kernel.c: fix use after free of module

2003-09-17  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: fix thread profiling when
	--separate-library=0

2003-09-17  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.c: add module to list of module ...
	* daemon/opd_kernel.c: s/print/verbprintf

2003-09-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_config.h: remove OPD_MAX_MODULEs
	* dae/opd_kernel.c:
	* daemon/opd_kernel.c: remove fixed array of modules replaced by
	  a list. Unify the way we create opd_module
	* utils/opcontrol: don't use --thread-profiling for 2.4

2003-09-17 Ka Fai Lu  <kafai0928@yahoo.com>

	I adapted slightly this patch Phil.
	* daemon/opd_image.c:
	* daemon/opd_image.h:
	* daemon/opd_kernel.c:
	* daemon/opd_sample_files.c:
	* daemon/oprofiled.c:
	* utils/opcontrol: implement per thread profiling

2003-09-16  Philippe Elie  <phil.el@wanadoo.fr>

	* libopt++/popt_options.h:
	* libpp/locate_images.cpp: minor tidy

2003-09-16  John Levon  <levon@movementarian.org>

	* utils/opcontrol: don't pass pid/pgrp filter
	to 2.6 daemon

	* dae/oprofiled.c:
	* daemon/oprofiled.c: setrlimit to 8192 (lame
	workaround for now), minor cleanups

2003-09-15  John Levon  <levon@movementarian.org>

	* common_option.cpp: rename the array to
	avoid a link error in GCC 3.4

2003-09-15  John Levon  <levon@movementarian.org>

	* libop/Makefile.am:
	* libop/op_interface_25.h: move to ...

	* daemon/Makefile.am:
	* daemon/opd_interface.h: ... here

	* daemon/opd_image.c:
	* daemon/oprofiled.c: use above. Remove pointless
	command line options.

	* libop/op_config_25.h: remove.

	* libop/op_hw_config.h: move DCOOKIE_SHIFT to
	opd_interface.h

2003-09-15  John Levon  <levon@movementarian.org>

	* configure.in: use -Wdeclaration-after-statement
	if available

	* README:
	* daemon/opd_util.c:
	* daemon/opd_util.h:
	* doc/opannotate.1.in:
	* doc/opgprof.1.in:
	* doc/opreport.1.in:
	* doc/oprofile.1.in:
	* doc/oprofile.xml:
	* gui/oprof_start.cpp:
	* gui/oprof_start_util.cpp:
	* libop/op_cpu_type.c:
	* libop/op_cpu_type.h:
	* libop/op_get_interface.c:
	* libpp/locate_images.cpp: remove references to
	2.5, replaced with 2.6

2003-09-15  John Levon  <levon@movementarian.org>

	* doc/opreport.1.in: document --show-address

2003-09-15  John Levon  <levon@movementarian.org>

	* libpp/arrange_profiles.cpp:
	* libpp/arrange_profiles.h:
	* pp/populate.cpp: more commentary

2003-09-14  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: handle 2.95 right io manipulator and the lack
	  of a proper setw(w) << std::string

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: re-add header for image summary

2003-09-14  John Levon  <levon@movementarian.org>

	* libpp/arrange_profiles.cpp: throw an exception
	if there are two many unmerged profiles, with details
	of how to fix it

	* pp/opgprof_options.cpp:
	* pp/common_option.cpp: clean up error messages

2003-09-14  John Levon  <levon@movementarian.org>

	* libpp/arrange_profiles.h:
	* libpp/arrange_profiles.cpp: add location of 
	images when inverting profiles

	* libpp/locate_images.cpp: return empty string
	if file isn't readable

	* pp/opannotate.cpp: use the above

	* pp/opreport.cpp: use the above; place warnings
	before any other output

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opgprof_options.cpp: use locate_image_path

2003-09-14  John Levon  <levon@movementarian.org>

	* Makefile.am:
	* populate.h:
	* populate.cpp: shared code for populating from
	inverted profiles

	* opreport.cpp:
	* opannotate.cpp: use above

2003-09-14  John Levon  <levon@movementarian.org>

	* libpp/arrange_profiles.h:
	* libpp/arrange_profiles.cpp: add invert_profiles

	* pp/opreport.cpp: use it

2003-09-14  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml:
	* pp/opreport.cpp:
	* pp/opreport_options.cpp:
	* pp/opreport_options.h: Turn off VMA report by
	default, add --show-address

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: nice formatting of image report
	column headers, respect --no-header

2003-09-14  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: use string::erase() not string::clear()
	  for 2.95

	* libutil++/generic_spec.h: allow to ignore "all" match
	* libutil++/comma_list.h: use it

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: output column headers for
	image report

2003-09-14  John Levon  <levon@movementarian.org>

	* libpp/op_header.h:
	* libpp/op_header.cpp: output header info to
	a string not a stream

	* libpp/arrange_profiles.h:
	* libpp/arrange_profiles.cpp: give classes a long
	name, and fill in global event/cpu info

	* pp/opannotate.cpp:
	* pp/opannotate_options.cpp:
	* pp/opannotate_options.h:
	* pp/opgprof_options.cpp:
	* pp/opreport.cpp:
	* pp/opreport_options.cpp:
	* pp/opreport_options.h: use the class long names
	and info

2003-09-14  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.cpp: handle symlink

2003-09-14  John Levon  <levon@movementarian.org>

	* arrange_profiles.h:
	* arrange_profiles.cpp: Add code to give short names
	to each class, unused yet

2003-09-14  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/arrange_profiles.cpp: missing include<> with gcc 2.95

2003-09-14  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/split_sample_filename.cpp:
	* libpp/split_sample_filename.h: rename as ...

	* libpp/parse_filename.cpp:
	* libpp/parse_filename.h: ... this

	* libpp/filename_spec.cpp:
	* libpp/arrange_profiles.cpp:
	* libpp/arrange_profiles.h: sort classes for niceness,
	changes from above

	* pp/opreport.cpp: remove needless double check of
	exclude_dependent

	* libutil++/string_manip.cpp: touint should init to 0
	in case of parse failure

2003-09-14  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: fix maximum template depth to 50
	* libutil/op_fileio.c: op_get_link() don't truncate silently results
	* m4/sstream.m4: use OP_CXXFLAGS not CXXFLAGS

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/partition_files.h:
	* pp/partition_files.cpp: remove, now unused

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opannotate.cpp:
	* pp/opannotate_options.cpp:
	* pp/opannotate_options.h: use arrange_profiles API

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opgprof_options.h:
	* pp/opgprof_options.cpp:
	* pp/opgprof.cpp: use arrange_profiles API

2003-09-14  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/arrange_profiles.cpp:
	* libpp/arrange_profiles.h: introduce new
	code for partitioning profiles and handling
	merging

	* libpp/partition_files.h:
	* pp/opreport_options.cpp:
	* pp/opreport_options.h:
	* pp/opreport.cpp: use the above code

	* libpp/format_flags.h:
	* libpp/profile_container.cpp: remove unneeded
	multiple apps hint

	* libpp/count_array.cpp:
	* libpp/count_array.h: remove unnecessary code

2003-09-14  John Levon  <levon@movementarian.org>

	* configure.in: back to 0.7cvs

2003-09-14  John Levon  <levon@movementarian.org>

	* pp/opannotate.cpp: gcc 2.91 workaround
	(in 0.6.1 release)

2003-09-14  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.6.1

2003-09-13  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document "incorrect source attribution"
	a bit

2003-09-12  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/op_header.cpp: typo in comment

2003-09-11  John Levon  <levon@movementarian.org>

	* configure.in: check for -lintl, tweak -ldl check

2003-09-11  John Levon  <levon@movementarian.org>

	* dae/oprofiled.c:
	* daemon/oprofiled.c:
	* libdb/db_manage.c:
	* libdb/db_test.c: correct headers

2003-09-11  John Levon  <levon@movementarian.org>

	* op_lockfile.c: use correct headers

2003-09-07  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/op_help.c: check than all events are distincts

2003-09-06  Philippe Elie  <phil.el@wanadoo.fr>

	* pch-c++.h:
	* m4/precompiledheader.m4: new file to handle precompiled header
	* m4/Makefile.am:
	* configure.in:
	* Makefile.am: handle precompiled header

2003-09-05  John Levon  <levon@movementarian.org>

	* opd_image.c: cleanup of ctx_switch_set_image()

2003-09-05  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_image.c: After a context switch ensure we update correctly
	  the current image.

2003-09-04  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp:
	* pp/opannotate.cpp: catch op_bfd exception and recover gracefully

2003-09-04  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: tweak "signaling daemon " message as suggested
	  by Carlo Wood

2003-09-04  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: mention --reset in
	"Getting Started"

2003-09-03  John Levon  <levon@movementarian.org>

	* libop/op_events.c:
	* libpp/op_header.cpp:
	* dae/opd_sample_files.c:
	* daemon/opd_sample_files.c: propagate event
	error back up to caller

	* libdb/odb_hash.h: fix comment

2003-09-02  John Levon  <levon@movementarian.org>

	* dae/opd_image.c:
	* dae/opd_proc.c:
	* dae/oprofiled.c:
	* daemon/opd_image.c: use abort() not exit()
	on "can't happen" errors

2003-09-02  John Levon  <levon@movementarian.org>

	* dae/opd_proc.c:
	* daemon/opd_image.c: fix error message

2003-08-28  Philippe Elie  <phil.el@wanadoo.fr>

	* events/alpha.ev6.events: fix duplicate um tag

2003-08-28  John Levon  <levon@movementarian.org>

	* events/i386.athlon.events: fix duplicate minimum tag

	* daemon/opd_image.c:
	* libop/op_events.c: check for duplicate tags

2003-08-28  John Levon  <levon@movementarian.org>


2003-08-27  Will Cohen  <wcohen@redhat.com>

	* utils/op_help.c (resolve_events): Typecast printf argument.

2003-08-25  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate_options.cpp:
	* pp/opannotate_options.h:
	* pp/opannotate.cpp: enable multiple events

	* pp/opreport_options.cpp: remove #if 0 .... #endif

2003-08-25  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/count_array.cpp: avoid to access invalid memory

2003-08-25  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in:
	* m4/builtinexpect.m4:
	* m4/configmodule.m4:
	* module/Makefile.in:
	* module/ia64/Makefile.in:
	* module/x86/makefile.in: always use EXTRA_CFLAGS_MODULE not
	EXTRA_CFLAGS for module build flags

2003-08-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libregex/op_regex.h:
	* libregex/op_regex.cpp: tidy

	* libutil++/op_bfd.cpp: remove obsolete comment

2003-08-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/file_manip.h:
	* libutil++/file_manip.cpp: is_directory(dirname): return true if
	  dirname exists
	* pp/common_option.cpp: validate --image-path parameters

2003-08-22  Philippe Elie  <phil.el@wanadoo.fr>

	* events/i386.p4.events: clarify than 128BIT_MMX_UOP count only integer
	  SSE2 ops
	* pp/opreport.cpp: minor spacing change in output

2003-08-22  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c: report the kernel pointer size

2003-08-22  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c: read new /dev/oprofile/pointer_size
	in preference to kcore. kcore code will eventually go.

2003-08-21  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.cpp: update gcc2_compiled. comment
	to reflect reality

2003-08-19  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: really merge when --merge=lib and image name are
	  specified.

2003-08-16  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate.cpp: output threshold percent when necessary.

2003-08-16  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: remove ELF-based symbol size code

2003-08-15  William Cohen  <wcohen@redhat.com>

	* doc/opcontrol.1.in:
	* doc/oprofile.1.in:
	* doc/oprofile.xml: Correct path to /root/.oprofile/daemonrc.

2003-08-15  Thomas Spatzier  <TSPAT@de.ibm.com>

	* daemon/opd_cookie.h: fix s390 syscall

2003-08-14  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.cpp: erase_to_last_of() is not a ltrim()

2003-08-14  Philippe Elie  <phil.el@wanadoo.fr>

	Dave Jones suggested this change.

	* module/x86/op_model_p4.c: remove superflous ';' at end of some macro

2003-08-14  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.h: remove erase_from_last_of()
	* libutil++/string_manip.cpp: and tidy erase_to_last_of(), rtrim() and
	  ltrim()

2003-08-13  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.h:
	* libpp/profile_container.cpp: remove nil_symbol_index

2003-08-13  John Levon  <levon@movementarian.org>

	* libpp/profile_container.cpp:
	* libpp/profile_container.h: remove "base_vma" parameter
	to add_samples(), we can just re-grab it straight from
	the abfd

2003-08-13  John Levon  <levon@movementarian.org>

	* libpp/profile_container.cpp:
	* libpp/profile_container.h: remove unused "zero samples"
	optimization hint: it's always false

	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: from above

2003-08-12  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: small trivialities

2003-08-12  Philippe Elie  <phil.el@wanadoo.fr>

	* libregex/stl.pat.in: minor fix/improvements
	* libregex/mangled-name.txt: add tests

2003-08-12  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: fix thinko when --merge=lib

2003-08-12  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: s/count_groups_summary/summary_container/g

2003-08-12  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document opreport's side-by-side a little
	bit

2003-08-12  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: s/group_summary/app_summary/, and
	a lot of other renamings to clarify the count groups
	usage.

2003-08-12  John Levon  <levon@movementarian.org>

	* utils/op_help.c: add --unit-mask

	* utils/opcontrol: use --unit-mask

2003-08-12  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: re write using count_array_t

2003-08-11  John Levon  <levon@movementarian.org>

	* libpp/count_array.cpp:
	* libpp/count_array.h: auto-resize the number of groups
	based on how we index.

	* libpp/profile_container.cpp: remove check

	* pp/opannotate.cpp: count_array.zero() not .empty()

2003-08-11  John Levon  <levon@movementarian.org>

	* libpp/filename_spec.h:
	* libpp/profile_spec.cpp:
	* libpp/profile_spec.h: add comments, allow comma lists
	for event, count, and unit mask

	* libutil++/comma_list.h: implement missing method

2003-08-11  John Levon  <levon@movementarian.org>

	* libpp/format_output.cpp:
	* libpp/format_output.h: add set_nr_groups(), remove
	pp_nr_counters.

	* libpp/profile_container.cpp:
	* libpp/profile_container.h:
	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: count_group not counter

2003-08-11  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/counter_array.cpp:
	* libpp/counter_array.h: rename to ...

	* libpp/count_array.h:
	* libpp/count_array.cpp: ... this ...

	* libpp/format_output.cpp:
	* libpp/format_output.h:
	* libpp/profile.cpp:
	* libpp/profile.h:
	* libpp/profile_container.cpp:
	* libpp/profile_container.h:
	* libpp/sample_container.cpp:
	* libpp/sample_container.h:
	* libpp/symbol.h:
	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: ... and several renamings to starting
	change the notion from "counters" to the more general notion
	of "count groups"

2003-08-10  Philippe Elie  <phil.el@wanadoo.fr>

	Multiple counter support for pp tools.

	* libpp/counter_array.h:
	* libpp/counter_array.cpp: resurrected from pp-interface-branch, for
	 now memory use is inefficient.
	* libpp/Makefile.am: add counter_array.cpp .h
	* libpp/format_out.h:
	* libpp/format_out.cpp: handle multiple counter + a general tidy
	* libpp/format_flags.h: remove ff_immutable_mask and some nasty
	  requisite on flags value
	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/sample_container.h:
	* libpp/sample_container.cpp:
	* libpp/symbol.h:
	* libpp/symbol_container.cpp:
	* libpp/symbol_sort.cpp:
	* pp/opreport.cpp: handle multiple counter
	* pp/opannotate.cpp: partial handling of multiple counter
	* pp/opgprof.cpp:
	* pp/opreport.cpp: minor bits

2003-08-08  Will Cohen  <wcohen@redhat.com>

	* dae/Makefile.am:
	* daemon/Makefile.am: Correct library linking order.
	* daemon/opd_util.c: Add needed include files.

2003-08-08  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: move_and_remove() do nothing if source doesn't exist

2003-08-08  Philippe Elie  <phil.el@wanadoo.fr>

	revert the previous patch
	* dae/Makefile.am:
	* dae/opd_sample_files.h:
	* dae/opd_sample_files.c:
	* daemon/Makefile.am:
	* daemon/opd_sample_files.c: un-share opd_sample_files
	code

2003-08-08  John Levon  <levon@movementarian.org>

	* dae/Makefile.am:
	* dae/opd_sample_files.h:
	* dae/opd_sample_files.c:
	* daemon/Makefile.am:
	* daemon/opd_sample_files.c: share opd_sample_files
	code

2003-08-08  John Levon  <levon@movementarian.org>

	* dae/oprofiled.c:
	* daemon/oprofiled.c:
	* daemon/opd_util.h:
	* daemon/opd_util.c: share opd_write_abi()

2003-08-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_alloc_counter.c:
	* libop/op_events.h: minor doxygen fix

2003-08-08  John Levon  <levon@movementarian.org>

	* dae/Makefile.am:
	* dae/oprofiled.c:
	* daemon/Makefile.am:
	* daemon/oprofiled.c:
	* daemon/opd_util.h:
	* daemon/opd_util.c: share some small bits of code
	between the daemons

2003-08-08  John Levon  <levon@movementarian.org>

	* dae/oprofiled.c:
	* daemon/oprofiled.c: remove mypid, unused

2003-08-08  John Levon  <levon@movementarian.org>

	* dae/Makefile.am:
	* dae/opd_printf.h: remove duplicate header
	and use daemon/opd_printf.h

2003-08-08  John Levon  <levon@movementarian.org>

	* dae/opd_image.c:
	* dae/opd_sample_files.h:
	* dae/opd_sample_files.c:
	* daemon/opd_image.c:
	* daemon/opd_sample_files.h:
	* daemon/opd_sample_files.c: remove "create" bool
	from opd_mangle_filename(): only one callsite needs
	that functionality, open code the create instead

	* dae/opd_proc.c:
	* dae/opd_sample_files.h:
	* dae/opd_sample_files.c:
	* daemon/opd_sample_files.h:
	* daemon/opd_sample_files.c: return error from
	opd_open_sample_filename(). Do not fail when odb_open
	fails due to --reset races.

	* dae/oprofiled.c:
	* daemon/oprofiled.c: a little more verbosity.

	* libutil/op_file.h:
	* libutil/op_file.c: fix create_dir/path() comments,
	don't use access()

	* utils/opcontrol: reduce chance of --reset races

2003-08-06  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/symbol_sort.h:
	* libpp/symbol_sort.cpp: add app_name sort order, force sort order
	  for criteria unspecified by user.
	* pp/opreport_options.cpp: update --sort option help string.

2003-08-04  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml:
	* doc/opannotate.1.in:
	* pp/opannotate.cpp:
	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp: add --base-dirs

2003-08-04  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml:
	* doc/opannotate.1.in:
	* pp/opannotate.cpp:
	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp: add --search-dirs

2003-08-04  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml:
	* doc/opannotate.1.in:
	* pp/opannotate.cpp:
	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp: remove --source-dir and --base-dir,
	  they're confusing and not useful in the current form

2003-08-03  John Levon  <levon@movementarian.org>

	* utils/opcontrol: avoid using ps, it's very slow with kallsyms

2003-08-03  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: c++ static function doesn't get a mangled name
	  in debug info (see gcc #11774). Try to recover through a not
	  completely reliable mechanism but better than ignoring the problem

2003-08-02  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: minor: more consistency about function ordering

2003-08-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.h:
	* libpp/profile.cpp: profile::sample_count() new to allow raw access
	  to samples count
	* pp/opreport.cpp: use above function to implement opreport (w/o -l
	  or --details options). opreport is roughly twice faster.

2003-08-02  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: clarify multiple counter support

2003-08-01  John Levon  <levon@movementarian.org>

	* libregex/stl.pat.in: fix _List_iterator regex
	(from Phil)

2003-07-31  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate.cpp: output cpu type and cpu speed.

2003-07-30  John Levon  <levon@movementarian.org>

	* libpp/partition_files.cpp: remove some apparently
	dead code

2003-07-30  John Levon  <levon@movementarian.org>

	* events/i386.p4.unit_masks: make flame_uops value
	mandatory, Yuan.Lu@rrze.uni-erlangen.de does not
	see any events without setting the unit mask

2003-07-30  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: bfd_openr() keeps a copy of
	the passed in char * around, sickenly enough. Ensure lifetimes
	will always be correct by adding a filename data member to
	op_bfd

2003-07-29  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/op_header.h:
	* libpp/op_header.cpp: separate output of cpu_type, cpu_speed
	  and counter setup

	* libpp/partition_files.h:
	* libpp/partition_files.cpp: unmergeable_profile() split profile
	  by the unmergeable.

	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport.cpp: initial multiple counter output, multiple counter
	  with -l is not yet available.

2003-07-29  John Levon  <levon@movementarian.org>

	* doc/opcontrol.1.in: update for --event

2003-07-29  John Levon  <levon@movementarian.org>

	* configure.in:
	* doc/srcdoc/Doxyfile.in:
	* oprof_report/: remove badly out of date oprof_report

2003-07-28  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.7cvs

2003-07-26  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.6

2003-07-26  John Levon  <levon@movementarian.org>

	* utils/opcontrol: fix call of op_help

2003-07-26  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: replace folder icons with clearer
	red/green circles

2003-07-26  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: actually select and show the default
	event

2003-07-26  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: small string tweak, show "conflicts"
	message consistently

2003-07-26  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: don't use invalidated iterator

2003-07-26  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: fix for 2.91.66

	* libpp/profile.cpp: typo invoking an undefined behavior revealed
	  by gcc stl debug mode
	* libpp/profile.h: ensure we provide the right typedef to std::
	  for profile::const_iterator revealed by gcc stl debug mode at compile
	  time. The implementation is a bit tricky to work with old compiler
	* libpp/symbol_sort.cpp: compare must define a weak ordered relation
	  order, revealed by gcc stl debug mode.

2003-07-26  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/ui/oprof_start.base.ui:
	* gui/oprof_start.h:
	* gui/oprof_start.cpp: change UI to use the new counter allocation
	  API

	* libop/op_alloc_counter.h:
	* libop/op_alloc_counter.c:
	* utils/op_help.c: minor const-ness api change

2003-07-25  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol: Restrict the search path.

2003-07-25  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_alloc_counter.c: use tabulation

	* libop/op_events.c:
	* libop/op_events.h: find_event_by_name() new
	* utils/op_help.c: use find_event_by_name()

2003-07-24  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/op_help.c: make valgrind happy + minor cleanup

2003-07-24  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_alloc_counter.h:
	* libop/op_alloc_counter.c: new file providing mapping from an event 
	  list to hardware counter number
	* utils/op_help.c: use the above api

2003-07-24  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/op_help.c: fix hardware counter allocation order

2003-07-23  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: comment out --base-dir mention

2003-07-23  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: remove mention of oprof_start_event

2003-07-23  John Levon  <levon@movementarian.org>

	* dae/oprofiled.c:
	* daemon/oprofiled.c: don't uselessly try to unlink
	non-existent lockfile

	* daemon/opd_image.c:
	* daemon/oprofiled.c: clean up buffer read messages

2003-07-23  John Levon  <levon@movementarian.org>

	* utils/opcontrol: error out at --setup time if vmlinux is not
	valid. Cleanup the error message if so

	* daemon/opd_kernel.c: fix potential null deref

2003-07-21  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: select "No event" when switching counter
	if needed

2003-07-21  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: fix default event choosing when
	daemonrc exists

2003-07-21  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: thinko in has_unique_event(), don't warn for
	  no counter with CPU_TIMER_INT

2003-07-21  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: allow to de-select a counter

2003-07-21  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp:
	* gui/oprof_start_util.h:
	* gui/oprof_start_util.cpp: remove uptime pretty printing.
	It's broken for 2.5 and ugly code

2003-07-21  John Levon  <levon@movementarian.org>

	* gui/oprof_start.h:
	* gui/oprof_start.cpp: use a default event if no
	events are set yet

2003-07-20  Philippe Elie  <phil.el@wanadoo.fr>

	* m4/compileroption.m4: fix for autoconf 2.13

2003-07-19  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp:
	* libpp/format_output.cpp:
	* libpp/format_output.h:
	* pp/opannotate.cpp:
	* pp/opreport_options.cpp: minor tidy

2003-07-19  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: RTC mode was not working

2003-07-16  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start_config.h:
	* gui/oprof_start_config.cpp: remove dead code, fix kernel_only read

2003-07-16  John Levon  <levon@movementarian.org>

	* utils/opcontrol: fix typo that was partly breaking
	CPU_TIMER_INT

2003-07-16  John Levon  <levon@movementarian.org>

	* gui/oprof_start.h:
	* gui/oprof_start.cpp: fixes for CPU_TIMER_INT

2003-07-16  John Levon  <levon@movementarian.org>

	* gui/ui/oprof_start.base.ui: remove add/remove event buttons,
	fix resize weirdness

	* gui/oprof_start.h:
	* gui/oprof_start.cpp: remove add/remove event buttons, allow
	short-form event descriptions

2003-07-15  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/persistent_config.h: remove
	* gui/oprof_start.h:
	* gui/oprof_start.cpp: debug, remove dead code, works better now, see
	  TODO

2003-07-15  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.h:
	* gui/oprof_start.cpp:
	* gui/oprof_start_util.cpp: re-enable partially the gui, sorta of
	  working if cautioulsy used

2003-07-15  John Levon  <levon@movementarian.org>

	* gui/ui/oprof_start_base.ui:
	* gui/oprof_start.h:
	* gui/oprof_start.cpp: some steps towards fixing gui for
	the new events stuff

2003-07-15  John Levon  <levon@movementarian.org>

	* libop/op_events.h:
	* libop/op_events.c: add op_default_event

	* utils/op_help.c: move default event stuff to libop,
	fix -c option

2003-07-15  John Levon  <levon@movementarian.org>

	* utils/op_help.c: fix default RTC event to be
	"RTC_INTERRUPTS"

2003-07-15  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol
	* events/rtc..events: use RTC_INTERRUPTS as event name

2003-07-15  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_sample_files.c: C89 compile fix

2003-07-15  John Levon  <levon@movementarian.org>

	* utils/opcontrol:
	* utils/op_help.c: move the default event strings into
	op_help.c instead of in opcontrol

2003-07-15  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document event name for timer interrupt

	* daemon/opd_sample_files.c: handle CPU_TIMER_INT

	* utils/op_help.c: fix a core dump

2003-07-13  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_image.c: verbprintf() when starting reading buffer not
	  printf

2003-07-12  Philippe Elie  <phil.el@wanadoo.fr>

	* from BRANCH_CALLGRAPH:
	* daemon/opd_image.c: printf -> verbprintf, fix comment
	* daemon/opd_kernel.c: kernel/module samples statistics was wrong

	* daemon/opd_image.c:
	* daemon/opd_image.h:
	* daemon/opd_kernel.c:
	* daemon/opd_kernel.h: import cleanup from branch, mainly don't handle
	  samples in opd_kernel.c but return (creating if necessary) an
	  opd_image struct where the sample must go and let opd_image caller
	  in opd_image.c do sample insertion

2003-07-11  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: shows basename $0 with --version
	* libpp/op_header.cpp: formating
	
2003-07-11  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: don't try to save current if the directory doesn't
	  exist

2003-07-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/stream_util.h:
	* libutil++/stream_util.cpp: new file, io_state() save object
	* libutil++/Makefile.am: handle new file
	* libutil++/op_bfd.cpp:
	* pp/opreport.cpp:
	* libpp/op_header.cpp: use io_state

2003-07-09  Philippe Elie  <phil.el@wanadoo.fr>

	* module/x86/op_model_p4.c: reflect intel documentation fix.

2003-07-08  Will Cohen  <wcohen@redhat.com>

	* daemon/opd_kernel.c: Handle /proc/modules format.
	
2003-07-08  Will Cohen  <wcohen@redhat.com>

	* doc/oprofile.xml:
	* configure.in: --enable-gcov option and documentation.

2003-07-08  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol: Correct P4 default event.

2003-06-03  John Levon  <levon@movementarian.org>

	* from BRANCH_CALLGRAPH
	* libdb/odb_hash.h:
	* libdb/db_manage.c:
	* libdb/db_insert.c: namespace safety

	* libpp/partition_files.cpp:
	* libpp/profile.cpp: spacing, add a FIXME

2003-07-07  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: cleanup walking through multimap with a
	  pair<iterator, iterator>

2003-07-05  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_image.c:
	* libdb/db_insert.c: 64 bits arch compile fix, thanks to Falk Hueffner
	 <falk@debian.org>

2003-07-02  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: honor options::show_header

2003-06-30  Graydon Hoare  <graydon@redhat.com>

	* libpp/op_header.cpp: Handle printing multiple bitmask values.

2003-06-19  John Levon  <levon@movementarian.org>

	* doc/Makefile.am: fix make distcheck

2003-06-18  John Levon  <levon@movementarian.org>

	* pp/opannotate_options.c: hide the unhandled
	--base-dir option

2003-06-18  John Levon  <levon@movementarian.org>

	* pp/Makefile.am: don't build opdiff

2003-06-17  Will Cohen  <wcohen@redhat.com>

	* daemon/opd_cookie.h: Add s390 syscall value.
	
2003-06-17  John Levon  <levon@movementarian.org>

	* utils/opcontrol: don't accept "-r" - it's too easy to typo

2003-06-17  John Levon  <levon@movementarian.org>

	* doc/srcdoc/Doxyfile: removed

	* doc/srcdoc/Doxyfile.in:
	* configure.in: generate doxygen version nr. automatically

2003-06-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/db_insert.cpp: missing initialization of error message on
	  error path

2003-06-17  John Levon  <levon@movementarian.org>

	* utils/opcontrol: accept some short forms for common
	operations

2003-06-17  John Levon  <levon@movementarian.org>

	* utils/opcontrol: accept --foo blah as well as
	--foo=blah

2003-06-16  John Levon  <levon@movementarian.org>

	* utils/opcontrol: "opcontrol" will show usage
	instead of doing nothing

2003-06-16  Will Cohen  <wcohen@nc.rr.com>

	* libabi/abi.cpp:
	* libabi/op_import.cpp: Add required include for cassert.

2003-06-16  John Levon  <levon@movementarian.org>

	* events/x86-64.hammer.unit_masks: remove some
	bogus FIXMEs

2003-06-15  John Levon  <levon@movementarian.org>

	* README: fix autogen.sh line

2003-06-15  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: 64 bit fixes

2003-06-15  John Levon  <levon@movementarian.org>

	* utils/op_help.c: c89 fix

2003-06-15  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: c89 fix

2003-06-15  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document --event

	* utils/opcontrol:
	* utils/op_help.c: allow unit mask, kernel, user to be
	optional. Verify not too many events are passed.

2003-06-15  John Levon  <levon@movementarian.org>

	* libop/op_cpu_type.c: fix nr_counters cpu type check

	* utils/op_help: implement --check_events, event validation
	and counter allocation

	* utils/opcontrol: use the above, implement --event=default

2003-06-14  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: fix a stupid error in my previous TGID patch

2003-06-12  Graydon Hoare  <graydon@redhat.com>

	* libop/op_events.c (op_check_events): Check bitmasks as well as 
	exclusive values, for unit masks.

2003-06-12  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: we were not handling a truncated
	TGID entry properly

2003-06-12  John Levon  <levon@movementarian.org>

	* libutil++/unique_storage.h: missing typename

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate_options.cpp: typo in option name

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: boring_symbol() new to get a better choice
	when eliminating symbol at identical vma

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: fix rtc option checking, bug added after 0.5.3,
	no big deal

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libregex/op_regex.cpp:
	* libpp/profile.cpp: compile fix, tree was broken by my previous patch

2003-06-11  Jason Yeh  <jason.yeh@amd.com>

	* events/i386.athlon.events: add CPU_CLK_UNHALTED

	* utils/opcontrol: use the above by default

	* events/x86-64.hammer.events:
	* events/x86-64.hammer.unit_masks: various fixes

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/op_header.cpp:
	* libpp/profile.cpp:
	* libpp/profile_spec.cpp:
	* libpp/symbol_sort.cpp:
	* libregex/op_regex.cpp:
	* libutil++/op_bfd.cpp: use exception rather exit(EXIT_FAILURE) in
	library code

2003-06-11  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: future-proof the code handlers

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate.cpp: output_asm() avoid output when the set of selected
	symbols doesn't contain any samples

2003-06-11  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/unique_storage.h: we don't need to check if key is present
	  before trying to insert it

2003-06-10  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/name_storage.h: minor tidy
	* libutil++/unique_storage.h: small efficiency improvement

2003-06-09  John Levon  <levon@movementarian.org>

	* pp/Makefile.am:
	* libutil/Makefile.am: fix make distcheck

2003-06-09  John Levon  <levon@movementarian.org>

	* libpp/opp_symbol.h: rename to ...

	* libpp/symbol.h: ... this

	* libpp/Makefile.am:
	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/sample_container.h:
	* libpp/sample_container.cpp:
	* libpp/symbol_functors.h:
	* libpp/symbol_sort.cpp: fix up from above and some header
	cleanups

2003-06-09  John Levon  <levon@movementarian.org>

	* libpp/profile.h: std::pair not pair

2003-06-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.cpp: don't underflow start offset when the vma range
	  is unknown
	* pp/opreport.cpp: use samples_range() not samples_range(0, ~0)

2003-06-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.h:
	* libpp/profile.cpp: replace accumulate_samples() API by an iterator
	  interface
	* libpp/profile_container.h:
	* libpp/profilecontainer.cpp:
	* pp/opreport.cpp: use new API

2003-06-08  Philippe Elie  <phil.el@wanadoo.fr>

	* include/sstream: replace old version by the once shipped with
	  2.95.3, seekg() in the old was not working

2003-06-08  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h: don't need to define the tag structs

	* libutil++/unique_storage.h: fix the comments,
	make get() public

2003-06-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_container.cpp:
	* libutil++/string_manip.cpp: gcc 2.91.66 fix

2003-06-08  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp:
	* libpp/opp_symbol.h:
	* libpp/profile_container.cpp:
	* libpp/symbol_functors.cpp:
	* libutil++/unique_storage.h: don't derive from I()
	at all for id_value, it's not needed. Hide .id and
	provide operator<(), operator==(), operator!=(), and
	set()

2003-06-08  John Levon  <levon@movementarian.org>

	* libutil++/unique_storage.h: make some of
	id_value only visible to unique_storage.

2003-06-08  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libutil++/unique_storage.h: move the ID class
	into unique_storage, and make it derive from the
	template parameter, to give simpler type safe support

2003-06-08  John Levon  <levon@movementarian.org>

	* libutil++/Makefile.am:
	* libutil++/unique_storage.h: add new template for
	unique storage of values

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: use it

2003-06-07  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_container.cpp: fix order of file output with opannotate
	--source to be consistent with other tools

2003-06-07  John Levon  <levon@movementarian.org>

	* libpp/profile_container.cpp: fix operator<

2003-06-07  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.h:
	* libpp/profile.cpp: change API to walk through vma with non zero
	samples count rather looking for all vma. This is not very clean, an
	iterator interface will be perhaps a better idea. Measures shows it's
	to do it so for now I apply it.
	* libpp/profile_container.cpp: update according to above change.

2003-06-07  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp: remove dead api
	  find_symbol(string symbol_name)

2003-06-07  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp:
	* libpp/profile_container.cpp:
	* libpp/profile_container.h:
	* libpp/sample_container.h:
	* libpp/sample_container.cpp:
	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp:
	* pp/opannotate.cpp: replace some use of string filename by
	  debug_name_id

2003-06-05  John Levon  <levon@movementarian.org>

	* daemon/Makefile.am:
	* daemon/opd_kernel.c:
	* daemon/p_module.h: remove p_module.h, unused

	* daemon/opd_cookie.h: use __NR_lookup_dcookie and
	use our definitions only if it's not defined

	* daemon/opd_image.c:
	* daemon/opd_kernel.c:
	* daemon/opd_sample_files.c:
	* daemon/oprofiled.c: pedantry

	* libabi/op_import.cpp:
	* libabi/abi_test.cpp: fix build from odb change

	* libop/op_config.h: move NR_CPUS to ...

	* libop/op_config_24.h: ... here

	* libop/op_hw_config.h: remove unused OP_COUNT_MAX

2003-06-03  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/op_header.cpp:
	* libpp/profile.cpp:
	* dae/opd_proc.c:
	* dae/opd_sample_files.c:
	* daemon/opd_image.c:
	* daemon/opd_sample_files.c:
	* libdb/odb_hash.h:
	* libdb/db_insert.c:
	* libdb/db_manage.c:
	* libdb/db_test.c: error message is now a field of a samples_odb_t

2003-06-03  John Levon  <levon@movementarian.org>

	* libutil++/child_reader.cpp:
	* libabi/abi.cpp:
	* libabi/abi.h:
	* libabi/abi_test.cpp:
	* libabi/op_api.h:
	* libabi/op_abi.cpp:
	* libabi/op_import.cpp: pedantry, remove unused code

2003-06-01  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/oprofiled.c:
	* libop/oprofiled.c:
	* libop/op_cpu_type.c:
	* module/oprofile.c:
	* module/oprofile.h:
	* pp/opdiff.cpp: more static data and function

2003-05-31  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start_util.h:
	* libdb/db_stat.c:
	* libdb/odb_hash.h:
	* libpp/format_output.h:
	* libpp/locate_image.h:
	* libpp/name_storage.h:
	* libpp/partition_files.h:
	* libpp/profile.h:
	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: improve doxygen comment

2003-05-31  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: use AC_DEFINE_UNQUOTED() to define version string
	  in config.h not in version-1.h
	* Makefile.am: distclean-local: is no longer used
	* version-1.h.in: delete
	* libutil/op_version.h:
	* libutil/op_version.c: new file: package version output
	* libutil/Makefile.am:
	* dae/oprofiled.c:
	* daemon/oprofiled.c:
	* gui/oprof_start.h:
	* libop/op_events.c:
	* libopt++/popt_options.cpp:
	* libregex/demangle_sybol.cpp:
	* module/oprofile.c:
	* utils/op_help.c: tweak # include according

2003-05-30  Dan Zink  <Dan.Zink@hp.com>

	* module/x86/op_apic.c: really disable the apic if it was disabled

2003-05-29  John Levon  <levon@movementarian.org>

	* utils/opcontrol: don't allow --rtc-value if not RTC mode

2003-05-27  John Levon  <levon@movementarian.org>

	* libutil++/string_manip.h: add <stdexcept>

	* pp/opannotate.cpp: use '\n' not endl

	* pp/opreport.cpp: untie cout

2003-05-29  Philippe Elie  <phil.el@wanadoo.fr>

	* merge with pp-interface-branch: following ChangeLog was unmerged
	  to branch

	2003-05-27  John Levon  <levon@movementarian.org>

	* configure.in: oprofile 0.5.3 is released, back to
	0.6cvs

	2003-05-26  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: update docs for --no-vmlinux

	2003-05-26  John Levon  <levon@movementarian.org>

	* libop/op_interface_25.h:
	* daemon/opd_image.c: handle tgid for future
	compatibility, fix compile on older gccs

	2003-05-26  John Levon  <levon@movementarian.org>

	* libop/op_interface_25.h: add LAST_CODE

	* daemon/opd_stats.h:
	* daemon/opd_stats.c: count short reads of
	buffer and unplaceable samples

	* daemon/opd_image.c: rewrite buffer parsing
	code, handle window where we can't place a
	sample

	2003-05-26  John Levon  <levon@movementarian.org>

	* libutil++/utility.h: fix typo

	* utils/opcontrol: fix typo

	2003-05-16  John Levon  <levon@movementarian.org>

	* pp/counter_profile.cpp: remove bogus cpu speed
	consistency check

	2003-05-09  John Levon  <levon@movementarian.org>

	* m4/Makefile.am:
	* m4/compileroption.m4: add a generalised compiler option
	tester

	* configure.in: use it, add -fno-common

	2003-05-09  John Levon  <levon@movementarian.org>

	* daemon/oprofiled.c:
	* dae/oprofiled.c: remove duplicate declaration found
	via -fno-common

	2003-05-04  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: fix validation errors from xmllint --valid
	

2003-05-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.cpp: make image:/path/to:image working

2003-05-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: specialize
	  lexical_cast_no_ws<unsigned int> to accept hexadecimal input

	* pp/common_option.cpp: missing << endl

2003-05-27  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/oprofile.xml: update example in "Interpreting profiling results"
	section

2003-05-26  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: add new pp tools options

2003-05-26  John Levon  <levon@movementarian.org>

	* doc/opreport.1.in:
	* doc/opgprof.1.in:
	* doc/opannotate.1.in:
	* doc/op_help.1.in: complete

2003-05-26  John Levon  <levon@movementarian.org>

	* configure.in:
	* doc/Makefile.am:
	* doc/oprofile.1.in:
	* doc/op_help.1.in:
	* doc/opcontrol.1.in:
	* doc/opreport.1.in:
	* doc/opannotate.1.in:
	* doc/opgprof.1.in: re-organise and add manpages

2003-05-26  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: start to document the pp interface

2003-05-26  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: remove automatic switch to --symbols mode

2003-05-26  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/symbol_sort.h:
	* pp/opannotate_options.cpp:
	* pp/opgprof_options.cpp:
	* pp/opreport_options.cpp: handle meaningless options combinations

2003-05-26  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opgprof_options.cpp: no need to use unmergeable_profile here

2003-05-25  Philippe Elie  <phil.el@wanadoo.fr>

	* events/i386.piii.unit_masks: tweak comment, change default unit mask
	  for kni instruction to 0 and type to exclusive

2003-05-25  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_container.cpp: thinko
	* pp/opreport.cpp: typo

2003-05-25  John Levon  <levon@movementarian.org>

	* libopt++/popt_options.h:
	* libopt++/popt_options.cpp: obvious cleanup,
	remove some dead code

2003-05-25  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_flags: cf_image_name new column_flags flag
	* libpp/profile_container.cpp: use above flag. Don't compare app_name
	  by string but id
	* pp/opreport.cpp: hide image_name when un-necessary

2003-05-24  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/srcdoc/Doxyfile:
	* libpp/profile.h:
	* libpp/profile_container.h:
	* libutil++/utility.h: remove gcc 2.91 noncopyable as empty base class
	 work-around

2003-05-23  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: do early check of libiberty

	* libpp/symbol_sort.cpp: 2.91 compile fix

2003-05-22  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/child_reader.h: minor #include fix

2003-05-22  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/name_storage.cpp: debug_name_storage::name() 
	  return an empty string when for zero id to avoid exception

2003-05-21  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile.cpp:
	* libpp/op_header.h:
	* libpp/op_header.cpp: when sample file differ output the sample
	  filename

	* pp/opannotate.cpp: remove spurious output

	* */Makefile.am:
	* configure.in: handle our own OP_CFLAGS, OP_CXXFLAGS to let user
	  free to use make CFLAGS=

2003-05-20  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_spec.h:
	* libpp/profile_spec.cpp: remove lib_image_exclude, use image_exclude
	  instead. match() Handle image exclusion.

	* libregex/stl.pat.in: FIXME

	* libutil++/string_manip.h: compile fix

2003-05-19  John Levon  <levon@movementarian.org>

	* libutil++/comma_list.h:
	* libpp/filename_spec.cpp:
	* libutil++/string_manip.h:
	* libutil++/generic_spec.h: rename strict_convert<>
	to lexical_cast_no_ws<>

2003-05-19  John Levon  <levon@movementarian.org>

	* libutil++/generic_spec.h: move strict_convert<> to...

	* libutil++/string_manip.h: ...here

2003-05-19  John Levon  <levon@movementarian.org>

	* libutil++/generic_spec.h: comma_list isn't a friend
	any more

	* libutil++/comma_list.h: use generic_spec<>::match()
	directly

2003-05-19  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h: s/name_map/stored_names/, it's not
	a map any more.

2003-05-19  Philippe Elie  <phil.el@wanadoo.fr>

	* libregex/mangled-name.txt:
	* libregex/stl.pat.in: partial handling of _Identity<> and
	  _Select1st<>, pattern fail if type are too complex

2003-05-19  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.cpp: small cleanup

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: ensure type safety by providing distinct
	  type identifier for each name_storage based container

	* libpp/profile_container.cpp:
	* libpp/sample_container.cpp:
	* libpp/symbol_functors.cpp:
	* libpp/symbol_sort.cpp:
	* libpp/opp_symbol.h: use the name identifier api

	* libpp/op_header.cpp: 
	* libpp/partition_files.cpp: use a set<string> not a name_storage

	* libpp/format_output.cpp: small cleanup


2003-05-18  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/partition_files.cpp: merge partition entry when necessary
	  fixing a corner case when a binary can be a dependent or a primary
	  image and was not merged

2003-05-18  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport_options.cpp:
	* pp/opannotate_options.cpp: remove conflicting options shortcut

2003-05-18  Philippe Elie  <phil.el@wanadoo.fr>

	* libregex/stl.pat.in: add list<T>::{const_}+iterator

2003-05-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/name_storage.cpp: basename() return an empty string for nil id

2003-05-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: get_linenr() init linenr to zero

	* libpp/name_storage.cpp: don't use id zero
	* libpp/opp_symbol.h: now we use id and not string we must provide
	  default ctor to initialize the id
	* libpp/profile_container.cpp: init debug info entry only if
	  get_linenr() succeed

2003-05-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/db_manage.c: better handling of zero sample file size when
	  opening in read only mode

	* module/x86/op_nmi.c: printk format fix

2003-05-17  John Levon  <levon@movementarian.org>

	* pp/opannotate_option.cpp:
	* pp/opreport_options.cpp: command line changes

2003-05-17  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: add present()

	* libpp/op_header.cpp:
	* libpp/partition_files.cpp: use a name store
	to track what we've warned about, and clean up
	the warnings a bit

2003-05-16  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: expose anonymous symbols
	to the world as "??sectionname". Useful for .plt
	and .fini, which are quite common.

	* libpp/name_storage.cpp: demangle anonymous symbols
	nicely.

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/symbol_sort.cpp: fix image-sorting

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: make ID be per-container

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: merge processed names
	into one string, remove the boolean

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: whoops, use string
	not stored_name for the ID map

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/name_storage.h:
	* libpp/name_storage.cpp: split into three
	stores for debug filenames, symbols, and images

	* libpp/format_output.cpp:
	* libpp/profile_container.cpp:
	* libpp/sample_container.cpp:
	* libpp/symbol_container.cpp:
	* libpp/symbol_sort.cpp:
	* pp/opannotate.cpp: changes from above

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/name_storage.h:
	* libpp/name_storage.cpp: add shared storage
	and caching of symbol and file names

	* libpp/opp_symbol.h:
	* libpp/format_output.cpp:
	* libpp/profile_container.cpp:
	* libpp/sample_container.cpp:
	* libpp/symbol_container.cpp:
	* libpp/symbol_container.h:
	* libpp/symbol_sort.cpp:
	* libpp/symbol_sort.h:
	* pp/opannotate.cpp:
	* pp/opreport.cpp: use it

	* pp/opgprof_options.cpp: add unused demangle
	options to hack-fix the build

2003-05-16  John Levon  <levon@movementarian.org>

	* libpp/symbol_sort.cpp: fix --sort debug

2003-05-16  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: remove have_debug_info()

2003-05-16  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/op_header.cpp: remove cpu_speed checking

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: bail out in get_linenr() if binary doesn't
	  contain any debug info. Speed up my test case opreport --debug-info
	  -l by 25

2003-05-16  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.cpp: clean up interesting_symbol
	a bit

2003-05-16  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.cpp: make sure linenr is
	always set to something

	* libpp/opp_symbol.h: linenr should be unsigned

	* libpp/profile_container.cpp: remove some unneeded
	copies
	
2003-05-16  John Levon  <levon@movementarian.org>

	* pp/opannotate.cpp: small renaming

2003-05-15  John Levon  <levon@movementarian.org>

	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp: add begin(), end(),
	remove symbols_by_count()

	* libpp/profile_container.cpp: use symbol container
	iterator directly in select_symbols()

2003-05-15  John Levon  <levon@movementarian.org>

	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp:
	* libpp/symbol_sort.h:
	* libpp/symbol_sort.cpp:
	* pp/opannotate.cpp:
	* pp/opreport.cpp:
	* pp/opgprof.cpp: move symbol_collection typedef
	  into global namespace, and use consistently

2003-05-15  John Levon  <levon@movementarian.org>

	* libpp/format_output.h:
	* libpp/format_output.cpp: add vma_format_64bit(),
	remove bool parameter from output()

	* pp/opreport.cpp: change from above, refactor flags
	code into get_format_flags() helper

2003-05-12  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* libpp/symbol_sort.h:
	* libpp/symbol_sort.cpp: handle reverse sort in sorting not in output
	* pp/opannotate.cpp:
	* pp/opreport.cpp: update according

2003-05-12  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/symbol_sort.h:
	* libpp/symbol_sort.cpp: handle sort order as specified on command line

	* pp/opgprof.cpp: sort symbol is not necessary for gprof
	* pp/opreport.cpp:
	* pp/opreport_options.cpp:
	* pp/opannotate.cpp: use new sort API

2003-05-12  John Levon  <levon@movementarian.org>

	* libpp/symbol_sort.h:
	* libpp/symbol_sort.cpp: partial implementation
	of other sort options

2003-05-12  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/symbol_sort.h:
	* libpp/symbol_sort.cpp: add sorting code

	* symbol_functors.h: move some less() into
	symbol_sort.cpp

	* libpp/profile_container.h:
	* libpp/profile_container.cpp: don't pass in
	sort option to select_symbols(), do it in caller

	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp: from the above

2003-05-12  John Levon  <levon@movementarian.org>

	* format_flags.h: remove vma64_p. Add column_flags

	* libpp/profile_container.h:
	* libpp/profile_container.cpp: pass in a struct
	to select_symbols. Generate hints for 64-bit VMA
	and multiple apps in the profile.

	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: use the above

2003-05-12  John Levon  <levon@movementarian.org>

	* libpp/format_output.cpp:
	* libpp/format_flags.h:
	* pp/opreport.cpp: trivial renaming of flags

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/format_output.cpp:
	* libpp/format_flags.h: better output for
	the default of short filenames

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: improve the app/image name column
	showing a bit

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: default to -l if we were just
	going to show one image summary.

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: move some code around that
	outputs the image summaries

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* pp/opreport.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp: s/--short-filename/--long-filenames/

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/profile_spec.h:
	* libpp/profile_spec.cpp: take exclude_dependent not
	include_dependent

	* pp/opannotate_options.c:
	* pp/opgprof_options.c:
	* pp/opreport_options.h:
	* pp/opreport_options.c: change to use exclude_dependent,
	remove --hide-dependent

2003-05-11  John Levon  <levon@movementarian.org>

	* locate_images.h:
	* locate_images.cpp: extra_images can now use
	relative paths for its search dirs. Move most of 
	the warnings out of find_image_path, and make it
	also handle relative paths. Return the file
	even if it wasn't readable.

	* libpp/partition_files.cpp: give warnings when
	necessary.

	* libpp/profile_spec.h:
	* libpp/profile_spec.cpp: handle relative paths
	inside image specs, as stated in pp_interface; also
	use the extra images search path for resolution.

	* pp/opannotate_options.cpp:
	* pp/opreport_options.cpp:
	* pp/opgprof_options.cpp: changes from above

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/format_flags.h: source doc improvements

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/opp_symbol.h: move vma64_p to ...

	* libpp/format_flags.h: ... here

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/outsymbflags.h:
	* libpp/format_flags.h:
	* libpp/profile_container.h:
	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* pp/opreport.cpp: rename outsymbflags to format_flags

2003-05-11  John Levon  <levon@movementarian.org>

	* profile_container.h:
	* profile_container.cpp:
	* opannotate.cpp: clean up select_filename() in a
	similar fashion

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* pp/opreport.cpp:
	* pp/opannotate.cpp:
	* pp/opgprof.cpp: another select_symbols() API cleanup

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opgprof.cpp: use select_symbols so we can
	handle --threshold

2003-05-11  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate.cpp: use threshold for source output

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/common_option.h:
	* pp/common_option.cpp:
	* pp/opannotate_options.cpp:
	* pp/opreport_options.cpp: make --threshold
	be a common option.

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/profile_container.h:
	* pp/profile_container.cpp:
	* pp/opannotate.cpp:
	* pp/opreport.cpp: clean up select_symbols
	interface

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: make --threshold work for
	image summaries too

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opreport_options.cpp: fix --threshold
	description to match reality

2003-05-11  John Levon  <levon@movementarian.org>

	* libpp/partition_files.h:
	* libpp/partition_files.cpp:
	* pp/opannotate_options.cpp:
	* pp/opgprof_options.cpp:
	* pp/opreport.cpp:
	* pp/opreport_options.cpp: rename merge_by members

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: add some logic to not output
	duplicate lines for dep images when we've already
	shown all the possible details in the main image summary

2003-05-11  John Levon  <levon@movementarian.org>

	* pp/common_option.h: use std::

2003-05-11  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport_options.cpp: move handle_threshold()
	* pp/common_option.h:
	* pp/common_option.cpp: here
	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp:
	* pp/opannotate.cpp: handle --threshold

2003-05-10  John Levon  <levon@movementarian.org>

	* libop/op_mangle.h:
	* libop/op_mangle.c: use a temp struct for
	passing the mangle parameters with a set of
	flags.

	* dae/opd_sample_files.c:
	* daemon/opd_sample_files.c: use it

2003-05-10  John Levon  <levon@movementarian.org>

	* Makefile.am:
	* HACKING:
	* libop++/:
	* pp/Makefile.am:
	* libpp/Makefile.am:
	* libpp/op_header.h:
	* libpp/op_header.cpp: remove libop++ after
	moving op_header into libpp

2003-05-10  John Levon  <levon@movementarian.org>

	* libop++/op_header.cpp: make CPU info take up
	one line not two

2003-05-10  John Levon  <levon@movementarian.org>

	* libop++/Makefile.am:
	* libop++/op_header.cpp:
	* libop++/op_print_event.h:
	* libop++/op_print_event.cpp: remove op_print_event
	files, making it a function local to op_header.cpp

2003-05-10  John Levon  <levon@movementarian.org>

	* libop++/op_header.h:
	* libop++/op_header.cpp: make output_header() be
	an operator<<
	
	* pp/opannotate.cpp:
	* pp/opreport.cpp: changes from the above

	* libpp/profile.h: small cleanup

2003-05-10  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: replace format_percent() by
	  format_double()

	* libpp/format_output.cpp:
	* pp/opannotate.cpp:
	* pp/opreport.cpp: use format_double()

2003-05-09  John Levon  <levon@movementarian.org>

	* libpp/opp_symbol.h: app name, image name should
	be in symbol not in file_location

	* libpp/format_output.cpp:
	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/symbol_container.cpp:
	* libpp/symbol_functors.cpp: changes from above

2003-05-09  John Levon  <levon@movementarian.org>

	* libpp/format_output.h:
	* libpp/format_output.cpp: vma_64 doesn't need
	to be in field_datum. make one output() private

2003-05-09  John Levon  <levon@movementarian.org>

	* libpp/format_output.h:
	* libpp/format_output.cpp: pass a symbol ref
	not name down into the formatters

2003-05-09  John Levon  <levon@movementarian.org>

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: sample_filename() is unused

2003-05-09  Philippe Elie  <phil.el@wanadoo.fr>

	* libop++/op_header.h:
	* libop++/op_header.cpp: read_header() new
	* libop++/Makefile.in: we depend on libdb

	* pp/opannotate.cpp:
	* pp/opreport.cpp: better way to get sample file header

2003-05-09  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.cpp: remove redundant map formater
	* pp/opannotate.cpp: spurious cout

2003-05-08  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp:
	* pp/opreport_options.cpp:
	* pp/opreport_options.h: clean up cout stuff as
	suggested by Phil

2003-05-08  John Levon  <levon@movementarian.org>

	* libpp/profile_spec.h:
	* libpp/profile_spec.c: rename the set_p variables,
	remove pointless is_empty() function

	* pp/opreport.cpp: split collation and output into
	two separate functions. Rename the temporary structures
	so it's hopefully a bit more obvious what's happening.
	Add sourcedocs.

2003-05-08  John Levon  <levon@movementarian.org>

	* pp/opreport_options.h:
	* pp/opreport_options.cpp: add options::cout,
	  --output-file option

	* pp/opreport.cpp: use options::cout

2003-05-08  John Levon  <levon@movementarian.org>

	* pp/format_output.cpp: fix cumulative column widths

2003-05-08  John Levon  <levon@movementarian.org>

	* opreport_options.h: add accumulated

	* opreport.cpp: handle --accumulated

2003-05-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/symbol_container.cpp: minor tidy

	* libpp/profile.h:
	* libpp/profile.cpp: allow to cumulate sample file
	* libpp/profile_container.h:
	* libpp/profile_container.cpp: remove free function add_samples()

	* pp/annotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: when possible cumulate samples into a profile_t
	  first before cumulating them in a profile_container

2003-05-07  John Levon  <levon@movementarian.org>

	* pp/opannotate.cpp: small cleanup

2003-05-07  John Levon  <levon@movementarian.org>

	* pp/opreport_options.cpp: remove unneeded include

2003-05-07  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp: rename to ...

	* libpp/profile_spec.h:
	* libpp/profile_spec.cpp: this. Make handle_nonoptions()
	be a static factory create() method instead. Make
	select_sample_filenames() be a member generate_file_list()
	instead. Concomitant cleanups.

	* libpp/filename_spec.h:
	* pp/opannotate_options.cpp:
	* pp/opgprof_options.cpp:
	* pp/opreport_options.cpp: changes from above

2003-05-07  John Levon  <levon@movementarian.org>

	* libpp/profile.cpp: fix stupid error in last commit

2003-05-07  John Levon  <levon@movementarian.org>

	* libpp/profile.h:
	* libpp/profile.cpp: remove sample_filename member,
	bogus old spurious check, set_start_offset().

	* libpp/profile_container.cpp:
	* pp/opannotate.cpp:
	* pp/opreport.cpp: changes from above

2003-05-07  John Levon  <levon@movementarian.org>

	* libpp/derive_files.h:
	* libpp/derive_files.cpp: rename files as ...

	* libpp/locate_images.h:
	* libpp/locate_images.cpp: this.

	* libpp/Makefile.am:
	* libpp/partition_files.h:
	* pp/common_option.h:
	* pp/opgprof.cpp:
	* pp/opgprof_options.h:
	* pp/opreport_options.h: changes from above

2003-05-07  John Levon  <levon@movementarian.org>

	* libpp/derive_files.h:
	* libpp/derive_files.cpp: rework into extra_images
	class

	* libpp/partition_files.h:
	* libpp/partition_files.cpp:
	* pp/common_option.h:
	* pp/common_option.cpp:
	* pp/opannotate.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp: use the above

2003-05-07  John Levon  <levon@movementarian.org>

	* libpp/Makefile.am:
	* session.h:
	* session.cpp: remove session.{h,cpp}

2003-05-07  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/oprofpp.cpp pp/oprofpp_options.cpp pp/oprofpp_options.h:
	* pp/op_time.cpp pp/op_time_options.cpp pp/op_time_options.h:
	* pp/op_to_source.cpp pp/op_to_source_options.cpp:
	* pp/op_to_source_options.h pp/op_merge.cpp: removed files

	* pp/Makefile.am: update

2003-05-06  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opgprof.cpp: infamous typo

	* pp/opannotate.cpp: output sample file header


2003-05-06  Philippe Elie  <phil.el@wanadoo.fr>

	* libpop++/op_mangling.h:
	* libpop++/op_mangling.cpp: removed file
	* libop++/op_header.h:
	* libop++/op_header.cpp: new file, misc function acting on sample
	  file header stolen from libpp/profile.(cpp|h)
	* libop++/op_print_event.h: typo
	* libop++/op_print_event.cpp: save/restore ostream state
	* libop++/Makefile.am: update
	
	* libop/op_sample_file.h: remove dead #define OPD_MANGLE_CHAR

	* libpp/profile.h:
	* libpp/profile.cpp: move some member function to free function in
	  libop++/op_header.(cpp|h)
	* libpp/profile_container.cpp: minor call change

	* libpp/Makefile.am: op_merge can't be compiled currently inhibit build

	* libpp/opreport.cpp: output sample file header

2003-05-06  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/path_filter.h: default param to empty string not "*"

	* libpp/symbol_functors.h: remove dead code

	* pp/opgprof.cpp: off by one in histsize calculation

2003-05-04  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/op_file.h:
	* libutil/op_file.c: sanitize create_path()

	* libutil++/path_filter.h: default ctor match all

	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/sample_container.h:
	* libpp/sample_container.cpp:
	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp: extend api to allow selecting symbol
	  restricted to one application, ditto for retrieving samples

	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp:
	* pp/opannotate.cpp: implement

	* pp/opgprof_options.h:
	* pp/opgprof_options.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp: comment fix

	* pp/opreport.cpp: update to match new profile_container api

2003-05-03  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: don't show dependent file if !--include-dependent

2003-05-02  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/partition_files.h:
	* libpp/partition_files.cpp: sort_by_image_name() new return a list
	  of sample filename sorted by bfd image name.
	* libpp/profile_container.cpp: add_samples() don't build op_bfd object
	  used here but pass it as parameters

	* pp/opgprof.cpp:
	* pp/opreport.cpp: use the above change to avoid opening multiple time
	  a bfd object.

	* pp/opannotate_options.cpp: add --(include|exclude)-symbols

	* libpp/parse_cmdline.cpp:
	* pp/opgprof_options.cpp:
	* pp/opreport.cpp: make a distinction in error message between no
	  sample available and sample file available but no one was selected

2003-05-01  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp:
	* pp/opdiff.cpp:
	* pp/opdiff_options.h:
	* pp/opdiff_options.cpp:
	* pp/opgprof.cpp:
	* pp/opgprof_options.h:
	* pp/opgprof_options.cpp:
	* pp/opreport.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp: move common options handling ...
	* pp/common_option.h:
	* pp/common_option.cpp: here

	* pp/opannotate.cpp: add options

	* libpp/parse_cmdline.cpp: #include <iterator> ...

2003-05-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/counter_util.h:
	* libpp/counter_util.cpp: remove these files from cvs

	* libpp/derive_files.h:
	* libpp/derive_files.cpp: remove dead code derive_files() + typo

	* libpp/parse_cmdline.cpp: select_sample_filename() throw if empty
	  session after filtering

	* pp/common_option.cpp: catch invalid_argument, return failure on
	  catched exception

2003-05-01  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: remove _init from excluded symbol
	* libpp/profile_container.cpp: tidy

	* pp/opgprof.cpp: fix capping samples

2003-04-30  John Levon  <levon@movementarian.org>

	* pp/opgprof.cpp:
	* pp/opgprof_options.cpp:
	* libpp/profile.cpp: tiny cleanups, fix compile

2003-04-30  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/db_stat.c: minor improvement to stat, useful to track missed
	  sample by our tools.

	* pp/op_report.cpp: move matching_sample_filename() to ...
	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp: here renamed select_sample_filename()

	* libpp/profile_container.h:
	* libpp/profile_container.cpp: expose begin() / end() from
	 sample_container

	* pp/common_option.h:
	* pp/common_option.cpp: move option which was not really common to ..
	* pp/opreport_options.h:
	* pp/opreport_options.cpp: here
	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp: and here

	* pp/operport.cpp:
	* pp/opannotate.cpp: better to return a value from main() ...

	* pp/opgprof_options.h:
	* pp/opgprof_options.cpp:
	* pp/opgprof.cpp: implement opgprof

2003-04-29  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp: handle opreport /lib/libc-2.2.5.so, now
	  non tag, non option argument match either an image name or lib name

2003-04-29  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.cpp: remove "static " inside anon namespace

2003-04-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.h:
	* libpp/format_output.cpp: need header tweaking

	* pp/opannotate.cpp:
	* pp/opgprof.cpp: minor tidy

	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport.cpp: handle -no-header and --image-path

2003-04-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/glob_filter.cpp:
	* libutil++/path_filter.cpp:
	* libutil++/string_filter.cpp: #include <algorithm>

2003-04-28  John Levon  <levon@movementarian.org>

	* libutil++/string_filter.cpp:
	* libutil++/string_filter.h:
	* libutil++/glob_filter.h:
	* libutil++/glob_filter.cpp:
	* libutil++/path_filter.h:
	* libutil++/path_filter.cpp: use std::find[_if],
	share some code

2003-04-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: replace a loop by a std::copy()

2003-04-28  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: cleanup of last fix

2003-04-28  John Levon  <levon@movementarian.org>

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: make symbol filtering
	happen *after* adding of artificial symbol

2003-04-28  John Levon  <levon@movementarian.org>

	* libutil++/string_filter.cpp:
	* libutil++/glob_filter.cpp:
	* libutil++/path_filter.cpp: match as true if
	include_list is empty and not excluded

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: use string_filter to
	filter symbols

	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport.cpp: changes from using string_filter

2003-04-28  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport.cpp: finish to remove use of split_sample_filename

2003-04-28  John Levon  <levon@movementarian.org>

	* libutil++/filename_match.h:
	* libutil++/filename_match.cpp: replace with ...

	* libutil++/Makefile.am:
	* libutil++/string_filter.h:
	* libutil++/string_filter.cpp:
	* libutil++/glob_filter.h:
	* libutil++/glob_filter.cpp:
	* libutil++/path_filter.h:
	* libutil++/path_filter.cpp: .. split up variants
	of the filters

	* libpp/parse_cmdline.cpp: use glob_filter

	* pp/op_to_source.cpp: use path_filter

2003-04-28  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/partition_files.h:
	* libpp/partition_files.cpp:
	* libpp/split_sample_filename.h:
	* libpp/split_sample_filename.cpp:
	* pp/opreport.cpp: replace some use of std::string sample_filename
	  by a split_sample_filename struct

2003-04-28  John Levon  <levon@movementarian.org>

	* libutil++/filename_match.h:
	* libutil++/filename_match.cpp: use file-scope
	not private static member function

2003-04-27  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.h:
	* libpp/format_output.cpp: remove all string based output format flag

	* libpp/format_output.cpp: move options::demangle handling ...
	* libregx/demangle_symbol.cpp: here

	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport.cpp: handle --include-symbols

2003-04-27  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport.cpp: handle --threshold, remove --ignore-symbols

2003-04-27  John Levon  <levon@movementarian.org>

	* libpp/<various>: minor spacing etc.

2003-04-27  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/outsymbflag.h: remove osf_short_xxx variant
	* libpp/format_output.h:
	* libpp/format_output.cpp: replace osf_short_xxx by a boolean
	* libpp/profile_container.cpp: update according

	* pp/opreport_options.h: export short_filename option
	* pp/opreport.cpp: use short_filename

2003-04-27  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/symbol_functors.h: add less_symbol predicate
	* libpp/symbol_functors.cpp: new file, less_symbol implementation
	* libpp/Makefile.am: symbol_functors.cpp

	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp: use a node based container for symbols
	  ensuring validity of symbol pointer over a symbol_container life time
	* libpp/sample_container.h:
	* libpp/sample_container.cpp: ditto as above for samples
	* libpp/profile_container.h:
	* libpp/profile_container.cpp: use this new api to merge symbols
	  and sample.

	* libpp/format_output.h:
	* libpp/format_output.cpp: use new api to iterate over sample by symbol

	* pp/opreport.cpp: detailed output
	

2003-04-27  John Levon  <levon@movementarian.org>

	* pp/opreport.cpp: make opreport -l put largest results
	at the top like opreport does

2003-04-26  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/profile_container.h: comment

	* pp/opreport_options.h: more options export
	* pp/opreport.cpp: implement -l. Doesn't works correctly: --merge=lib

2003-04-25  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/opreport_options.h: export global_percent
	* pp/opreport.cpp: finish to implement op_time like behavior. Remains
	  to implement op_time -l

2003-04-25  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/partition_files.cpp: fix a crash when profile spec is empty

	* pp/opreport_options.cpp: bail out if no samples files are found

2003-04-25  John Levon  <levon@movementarian.org>

	* pp/opreport_options.cpp: --hide-dependent should have 'h' as
	short form. Add a FIXME for a crash

2003-04-25  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/partition_files.cpp: thinko in sample filename partition

	* pp/opreport_options.h: export more options
	* pp/opreport_options.cpp: add --hide-dependent, change --merge to not
	  default to all
	* pp/opreport.cpp: handle --hide-dependent --include-dependent and
	  --merge=lib. Code is ugly, tidy incoming

2003-04-25  John Levon  <levon@movementarian.org>

	* libpp/format_output.cpp:
	* libpp/format_output.h:
	* libpp/outsymbflag.h: "immutable" not "imutable"

	* libpp/partition_files.cpp: include <iterator> to compile

2003-04-24  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/partition_files.h: typo
	* libpp/profile.cpp: difficult to get right result with a random value
	  in profile::start_offset

	* pp/opreport_options.h: export options::reverse_sort
	* pp/opreport_options.cpp: bail out if we get multiple counter

	* pp/opreport.cpp: raw output result for application (not symbol)
	  output.

2003-04-24  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/filename_spec.h:
	* libpp/filename_spec.cpp:
	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp:
	* libpp/split_sample_filename.h:
	* libpp/split_sample_filename.cpp: s/unit_mask/unitmask

	* libpp/merge_spec.cpp:
	* libpp/merge_spec.h: rename to
	* libpp/partition_files.h:
	* libpp/partition_files.cpp: here. Add and merge_option.
	  partition_files is now a class.
	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opreport.cpp: update according to the above. Add a roughly support
	  to count samples for plain op_time opreport like

2003-04-24  John Levon  <levon@movementarian.org>

	* libpp/profile_container.h:
	* libpp/profile_container.cpp: chop off the _t of the class name

	* libpp/format_output.cpp:
	* libpp/format_output.h:
	* libpp/symbol_container.cpp:
	* libpp/symbol_container.h:
	* pp/op_time.cpp:
	* pp/op_to_source.cpp:
	* pp/oprofpp.cpp: changes from the above

2003-04-24  John Levon  <levon@movementarian.org>

	* libpp/profile_container.h:
	* libpp/profile_container.cpp: pedantry for sample_container
	indices.

	* libpp/sample_container.h:
	* libpp/sample_container.cpp: various cleanups and docs. Add
	and use size_type.

	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp: renamings. Add and use size_type.

2003-04-24  John Levon  <levon@movementarian.org>

	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp: remove unused operator[].
	Add some docs. Some small cleanups

2003-04-24  John Levon  <levon@movementarian.org>

	* libpp/symbol_container_imp.h:
	* libpp/symbol_container_imp.cpp:
	* libpp/sample_container_imp.h:
	* libpp/sample_container_imp.cpp: These classes weren't using
	the pimpl idiom, so the _imp was spurious. Remove that as well
	as removing the _t from the names, and rename to ...

	* libpp/symbol_container.h:
	* libpp/symbol_container.cpp:
	* libpp/sample_container.h:
	* libpp/sample_container.cpp: ...files moved from the above with
	new names.

2003-04-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/generic_spec.h: minor formating tweak

	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp: handle_non_options(): return parse_cmdline
	  by value

	* libpp/merge_spec.h:
	* libpp/merge_spec.cpp: new files: partition list of samples filename
	  according to merge options.
	* libpp/Makefile.am: update

	* pp/opreport_options.cpp: more options handling, use partition_files()

2003-04-22  John Levon  <levon@movementarian.org>

	* pp/opreport_options.cpp: compile fix

2003-04-21  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/filename_match.h:
	* libutil++/filename_match.cpp: add strict_match()

	* libutil++/generic_spec.cpp: generic_spec<string>::set() was not
	  setting is_all member leading to bad matching

	* libpp/filename_spec.cpp: minor tidy

	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp: fix match()

	* libpp/split_sample_filename.h:
	* libpp/split_sample_filename.cpp: handle sample file base directory

	* libop++/op_print_event.h:
	* libop++/op_print_event.cpp:
	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* libpp/opp_symbol.h:
	* libpp/profile.h:
	* libpp/profile.cpp:
	* libpp/profile_container.h:
	* libpp/profile_container.cpp:
	* libpp/sample_container_imp.h:
	* libpp/sample_container_imp.cpp:
	* libpp/symbol_container_imp.h:
	* libpp/symbol_container_imp.cpp:
	* libpp/symbol_functors.h: remove all use of counter number

	* libpp/counter_array.h:
	* libpp/counter_array.cpp:
	* libpp/counter_profile.h:
	* libpp/counter_profile.cpp: no longer used, move some bits to
	  libpp/profile.(h|cpp) and remove these files.
	* libpp/Makefile.am: update according

	* pp/op_merge.cpp: use profile_t not counter_profile_t
	* pp/makefile.am: correct lib for op_merge

	* pp/opreport_options.cpp: more options handling

2003-04-19  Philippe Elie  <phil.el@wanadoo.fr>

	* libopt++/popt_options.cpp: don't show help_str with --usage
	* libpp/format_output.cpp: typo
	* libutil/op_file.c: create dir with 755 not 700
	* pp/common_option.cpp: source formating

	* libpp/parse_cmdline.h:
	* libpp/parse_cmdline.cpp: handle_non_options() new
	* pp/opreport_options.cpp: handle more options

	* pp/opsummary.cpp:
	* pp/opsummary_options.h:
	* pp/opsummary_options.cpp: remove, opreport should do its job.
	* pp/Makefile.am: update

2003-04-18  Philippe Elie  <phil.el@wanadoo.fr>

	* libopt++/popt_options.cpp: allow "no-" prefix to long option name
	  implicitly specify the value must be negated
	* libopt++/popt_options.cpp: update doxygen documentation

	* libpp/format_output.h: missing #include
	* libpp/format_output.cpp: space + minor change

	* pp/opannotate_options.h:
	* pp/opannotate_options.cpp:
	* pp/opdiff_options.h:
	* pp/opdiff_options.cpp:
	* pp/opgprof_options.h:
	* pp/opgprof_options.cpp:
	* pp/opreport_options.h:
	* pp/opreport_options.cpp:
	* pp/opsummary_options.h:
	* pp/opsummary_options.cpp: new skeleton file

	* pp/opannotate.cpp:
	* pp/opdiff.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp:
	* pp/opsummary.cpp: update to handle options

	* pp/common_option.cpp: follow more closely pp_interface

	* pp/opsummary_options.cpp: start to handle opsummary option

	* pp/Makefile.am: update

2003-04-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libpp/format_output.h:
	* libpp/format_output.cpp:
	* libpp/outsymbflag.h:
	* libpp/profile_container.h:
	* libpp/profile_container.cpp: osf_header/osf_details are no longer
	  flags but separate boolean.

2003-04-17  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.c:
	* daemon/opd_kernel.c: remove leading '/' on module name fixing 2.5
	 module not under {kern} and similar case for "no-vmlinux" with 2.4/2.5

	* libutil/op_file.c: tiny tidy

2003-04-17  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_mangle.c: app_name and image was reversed, {dep} was missing

2003-04-17  John Levon  <levon@movementarian.org>

	* libpp/filename_spec.h:
	* libutil++/comma_list.h: compile fixes

2003-04-17  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: better --reset handling

2003-04-16  Philippe Elie  <phil.el@wanadoo.fr>

	* dae works, daemon compiles but not tested.

	* libop/op_config.h:
	* libpp/op_session.h:
	* libpp/session.cpp:
	* pp/op_merge: handle new path to samples files.

	* libutil++/file_manip.h:
	* libutil++/file_manip.cpp: move create_dir(), create_path() ...
	* libutil/op_file.h:
	* libutil/op_file.c: here. Remove op_move_regular_file()

	* daemon/opd_image.c:
	* daemon/opd_sample_files.h:
	* daemon/opd_sample_files.c:
	* dae/opd_image.c:
	* dae/opd_sample_files.h:
	* dae/opd_sample_files.c: use new filename scheme

	* daemon/oprofiled.c:
	* dae/oprofiled.c: remove samples files backup stuff

	* libop/op_mangle.h:
	* libop/op_mangle.c: ugly modification to handle new samples filename

	* utils/opcontrol: handle new samples files path, --save and --reset
	  are working too.

	* gui/oprof_start_util.cpp: use new create_path() API

2003-04-16  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/common_option.cpp:
	* pp/common_option.h:
	* libregex/demangle_symbol.cpp: rename demangle_and_shrink to
	  smart_demangle

2003-04-16  Philippe Elie  <phil.el@wanadoo.fr>

	* starting branch pp-interface-branch

	* Makefile.am:
	* configure.in: handle new sub dir libpp

	* libutil++/comma_list.h: new file handling of comma separated list of
	  items.
	* libutil++/generic_spec.cpp:
	* libutil++/generic_spec.h: new file
	* libutil++/Makefile.am: handle new file

	* pp/counter_array.*:
	* pp/counter_profile.*:
	* pp/counter_util.*:
	* pp/derive_files.*:
	* pp/format_output.*:
	* pp/opp_symbol.h:
	* pp/outsymbflag.h:
	* pp/profile.*:
	* pp/profile_container.*:
	* pp/sample_container_imp.*:
	* pp/session.*:
	* pp/symbol_container_imp.*:
	* pp/symbol_functors.*: move to

	* libpp/*: here
	* libpp/filename_spec.cpp:
	* libpp/filename_spec.h: new file handling of pp sample filename
	* libpp/parse_cmdline.cpp:
	* libpp/parse_cmdline.h: new file, handling of command line tag:value
	* libpp/Makefile.am: new file build libpp.a

	* pp/common_option.h:
	* pp/common_option.cpp: common option to pp tools. Implement common
	  entry point to pp tools.
	* pp/opannotate.cpp:
	* pp/opdiff.cpp:
	* pp/opgprof.cpp:
	* pp/opreport.cpp:
	* pp/opsummary.cpp: skeleton file for all pp tools.
	* pp/Makefile.am: remove old pp tools, add the news.

2003-04-28  Alex Tsariounov  <alext@fc.hp.com>

	* module/ia64/op_pmu.c: fix compile

2003-04-24  Philippe Elie  <phil.el@wanadoo.fr>

	* module/compat22.h: add cpuid_edx when linux version < 2.2.21

2003-04-24  Dave Jones <davej@codemonkey.org.uk>

	* events/x86-64.hammer.events:
	* events/x86-64.hammer.unit_masks: typo fixes from AMD.
	* module/x86/cpu_type.c: Check for APIC on Athlon before enabling it.

2003-04-15  Philippe Elie  <phil.el@wanadoo.fr>

	* events/i386-ht.events: all events allow only one counter, remove
	  three events due to ESCR restriction.
	* events/i386.events: add some comments.

	* module/x86/op_model_p4.c: synch with linux 2.5 mainline
	  - except events CTR_BPU_0 all virtual counter was not working.
	  - Prevents a segfault when using incorrect counter number.
	  - ESCR event select is 6 bits length not 5.
	  - Don't fail silently in p4_setup_ctrs().
	* module/x86/op_msr.h: match name used in linux.

2003-04-15  John Levon  <levon@movementarian.org>

	* doc/oprofile.1.in:
	* doc/oprofile.xml: small english fixes

2003-04-14  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.c:
	* dae/opd_proc.c:
	* dae/oprofiled.c:
	* utils/opcontrol:
	* doc/oprofile.1.in:
	* doc/oprofile.xml: handle --no-vmlinux

	* daemon/opd_kernel.c: use no-vmlinux not /no-vmlinux when user
	  specify --no-vmlinux

2003-04-08  John Levon  <levon@movementarian.org>

	* HACKING: describe what happens with oprofile-www

2003-04-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: check for #717720 and direct user to
	  FAQ if detected. Note than we don't detect all symptom of this bug.

2003-04-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_exception.h: op_runtime_error is no longer abstract

	* libregex/op_regex.h: comment and tidy
	* libregex/op_regex.cpp: tidy

2003-04-07  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/op_to_source.cpp: make each line be prefixed with the samples
	counts. It was too hard to find samples inside previous format.

2003-04-07  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.cpp: work around for gcc 2.95
	* p/op_to_source.cpp: minor cleanup

2003-04-07  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: cheat a bit to get
	better indentation on the default setup, by
	widening counter width to 7.

2003-04-07  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: append symbol summary
	annotations separate from the prolog samples on
	the same line.

2003-04-07  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: only output line 0 annotation
	if samples found there.

2003-04-07  John Levon  <levon@movementarian.org>

	* utils/opcontrol: make sure --ctrX-event=none gets noticed

2003-04-06  John Levon  <levon@movementarian.org>

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: remove ws_prefix(). Add
	format_percent().

	* pp/op_to_source.cpp: make each line be prefixed with
	the sample counts, instead of on a line above, to preserve
	line numbering.

2003-04-06  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: some renamings for clarity

2003-04-06  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: move extract_blank_at_begin() to ...

	* libutil++/string_manip.cpp: ... here, and rename as
	ws_prefix().
	
2003-04-06  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: prefix comment lines.
	Output the general footer on each separate file.
	Output the info at the bottom when outputting
	separate files (towards maintaining line numbering).

2003-04-06  John Levon  <levon@movementarian.org>

	* pp/op_to_source.cpp: construct a file-scope
	cmdline string, instead of passing it around.

2003-04-06  John Levon  <levon@movementarian.org>

	* libregex/op_regexp.cpp: re-arrange a bit

2003-04-06  John Levon  <levon@movementarian.org>

	* configure.in:
	* all Makefile.am: don't blindly set $LIBS, use
	explicit mention of which libs are needed.

	* dae/Makefile.am:
	* daemon/Makefile.am: only link with C++ if needed.

2003-04-05  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_config_24.h:
	* module/oprofile.c:
	* module/oprofile.c: make watermark size proportional to buffer size.

2003-04-05  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_events.h:
	* libop/op_events.c: re-add op_min_count();

	* dae/oprofiled.c:
	* daemon/oprofiled.c: use op_min_count() fixing #715923

2003-04-01  John Levon  <levon@movementarian.org>

	* libdb/Makefile.am: fix make dist

	* daemon/opd_cookie.h: add SPARC syscall number.
	  The system call function is OK for sparc/sparc64

2003-03-31  Will Cohen  <wcohen@redhat.com>

	* libdb/odb_hash.h: Renamed db_hash.h.

	* dae/Makefile.am:
	* dae/opd_image.c:
	* dae/opd_image.h:
	* dae/opd_proc.c:
	* dae/opd_sample_files.c:
	* daemon/Makefile.am:
	* daemon/opd_image.c:
	* daemon/opd_image.h:
	* daemon/opd_sample_files.c:
	* libabi/Makefile.am:
	* libabi/abi.cpp:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* libdb/Makefile.am:
	* libdb/db_debug.c:
	* libdb/db_hash.h:
	* libdb/db_insert.c:
	* libdb/db_manage.c:
	* libdb/db_stat.c:
	* libdb/db_test.c:
	* libdb/db_travel.c:
	* pp/Makefile.am:
	* pp/counter_profile.cpp:
	* pp/counter_profile.h:
	* pp/op_merge.cpp: Change names to avoid libdb.a name conflicts.
	
2003-03-30  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.6cvs

	* doc/oprofile.xml: fix id. Add java etc. mention

	* utils/Makefile.am:
	* utils/op_start:
	* utils/op_start_25:
	* utils/op_stop:
	* utils/op_stop_25:
	* utils/op_dump:
	* utils/op_dump_25:
	* utils/op_session: finally remove the back compat crap

	* HACKING: add release-notes policy

2003-03-30  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.5.2

2003-03-30  John Levon  <levon@movementarian.org>

	* Makefile.am: remove op_arch.h for ia64

2003-03-27  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: several more examples and fixes

2003-03-26  John Levon  <levon@movementarian.org>

	From a patch by Bryan Rittmeyer.

	* module/oprofile.c:
	* module/oprofile.h: push "irq_enabled" test
	into arch code, don't pass struct pt_regs.

	* module/x86/op_arch.h: cleanups

	* module/x86/op_model_athlon.c:
	* module/x86/op_model_ppro.c:
	* module/x86/op_model_p4.c:
	* module/x86/op_rtc.c: changes from above

	* module/ia64/op_arch.h: remove
	* module/ia64/op_pmu.c: change from above

2003-03-24  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: document prologues, and inline functions

2003-03-24  Will Cohen  <wcohen@redhat.com>

	* libutil/op_fileio.c (op_get_line): Use lower cost getc().

2003-03-24  John Levon  <levon@movementarian.org>

	* m4/configmodule.m4: fix quoting problem for awk

2003-03-23  John Levon  <levon@movementarian.org>

	* configure.in:
	* m4/: move lots of stuff into separate .m4 files

	* m4/typedef.m4: improve configure message

2003-03-23  John Levon  <levon@movementarian.org>

	* configure.in:
	* m4/Makefile.am:
	* m4/copyifchange.m4:
	* m4/docbook.m4:
	* m4/kerneloption.m4:
	* m4/kernelversion.m4:
 	* m4/resultyn.m4: move configure.in macros to m4/

2003-03-23  John Levon  <levon@movementarian.org>

	* m4/ChangeLog: add comment

	* m4/typedef.m4: can't use AC_LANG_PUSH/POP

2003-03-23  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* m4/Makefile.am:
	* m4/typedef.m4: new file to get underlined type for a typedef.
	
	* configure.in: get at configure time the real underlined type
	  for size_t and ptrdiff_t

	* libregex/stl.pat: move to ...
	* libregex/stl.pat.in: here. Use @SIZE_T_TYPE@ and @PTRDIFF_T_TYPE@
	* libregex/Makefile.am: update according
	* libregex/.cvsignore: ignore stl.pat

2003-03-22  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: use $OP_HELP not op_help
	* utils/op_help.c: remove short option for --get-cpu-frequency

2003-03-22  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* m4: new directory
	* m4/.cvsignore: new

	* acinclude.m4: move to
	* m4/qt.m4: here
	* m4/Makefile.am: new for EXTRA_DIST = all our .m4
	* Makefile.am:
	* configure.in:
	* autogen.sh: handle m4 subdir, add -I m4 to aclocal flags

2003-03-22  Philippe Elie  <phil.el@wanadoo.fr>

	  Suggested by John

	* libutil/op_cpufreq.c: typo in comment

	* utils/op_help.c: add --get-cpu-frequency, intentionnaly not
	  documented.
	* utils/opcontrol: use op_help --get-cpu-frequency and remove
	  ugly shell script doing the same thing.

2003-03-22  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/op_cpufreq.h:
	* libutil/op_cpufreq.c: new file exporting op_cpu_frequency()
	* libutil/Makefile.am: update according

	* utils/opcontrol: handle other arch

	* gui/oprof_start_util.h:
	* gui/oprof_start_util.cpp: remove get_cpu_speed()
	* gui/oprof_start.h:
	* gui/oprof_start.cpp: and use instead op_cpu_frequency()

	* daemon/oprofiled.c:
	* dae/oprofiled.c: replace --cpu-speed option by a call to
	  op_cpu_frequencey()

2003-03-20  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: doc some 2.5 module stuff

2003-03-20  John Levon  <levon@movementarian.org>

	* utils/opcontrol: fix opcontrol --dump to do something

	* daemon/opd_image.c: give a printf when reading the buffer.

2003-03-19  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp: correct get_vma_range()

	* pp/oprofpp.cpp: do_dump_gprof() this time it's right!

2003-03-18  John Levon  <levon@movementarian.org>

	* pp/profile.cpp: improve mtime warning for 2.5 modules

2003-03-18  John Levon  <levon@movementarian.org>

	* pp/derive_files.cpp: some more 2.5 modules derivation fixes

2003-03-18  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/derive_files.cpp: fix handling of 2.5 module name

2003-03-18  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c:
	* libop/op_interface_25.h: rename to MODULE_LOADED_CODE

2003-03-18  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* pp/derive_files.cpp: special to retrieve 2.5 module

2003-03-18  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* pp/symbol_container_imp.h:
	* pp/symbol_container_imp.cpp:
	* pp/profile_container.h:
	* pp/profile_container.cpp: find(string symbol_name) return a vector
	  of symbol rather a a single symbol
	* pp/oprofpp.cpp: use above change so oprofpp -s will show all
	  symbol with the same name.

	* pp/symbol_functors.h: remove unused functors equal_symbol_by_name

2003-03-17  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* libutil/op_fileio.h:
	* libutil/op_fileio.c: op_write_u64() new
	* libutil/op_types.h: continue our silly typedef: add u64

	* libutil++/op_bfd.h:
	* libutil++/op_bfd.cpp: op_bfd::arch_bits_per_address() new allowing
	  to get, on a per-binary basis, the vma size.

	* pp/oprofpp.cpp: fix 64 bits arch gprof output. Fix multiplier and
	  get the multiplier of gprof file at runtime. Fix a very old bug
	  where we credit the samples to previous gprof bin having the effect
	  than sample at start of function was credited to the previous
	  function

2003-03-17  John Levon  <levon@movementarian.org>

	* daemon/opd_kernel.c:
	* daemon/opd_kernel.h:
	* daemon/opd_image.c:
	* daemon/oprofiled.c: don't try to reread the module
	list on a failed EIP match. We must have the module load
	notification instead.

2003-03-17  John Levon  <levon@movementarian.org>

	* daemon/opd_kernel.c: fix module accounting. Remove
	quick-drop code that can't work.

	* doc/oprofile.1.in:
	* doc/oprofile.xml: english tweaks

2003-03-17  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* doc/oprofile.1.in:
	* doc/oprofile.xml: remove documentation about -P, update doc about -p

	* pp/derive_files.h:
	* pp/derive_files.cpp: check_image_name(), add_to_alternate_filename()
	  functions moved from op_time.cpp

	* pp/op_time_options.h:
	* pp/op_time_options.cpp:
	* pp/op_time.cpp: remove -P option, minor cleanup

	* pp/oprofpp_options.h:
	* pp/oprofpp_options.cpp:
	* pp/oprofpp.cpp: add -p option, minor cleanup
	
	* pp/op_to_source.cpp: minor cleanup

2003-03-16  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: check return code for --ctr??-event=none

2003-03-16  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: check for --separate=xxxx in the right order.
	  Old code do: if user set separate=library and separate=kernel only
	  separate=library was taken by opcontrol

2003-03-16  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: typo

2003-03-16  John Levon  <levon@movementarian.org>

	* configure.in: more docbook macro fixes

2003-03-15  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil/op_libiberty.h: cut&paste typo breaking compilation on box
	  w/o libiberty.h

	* daemon/opd_image.c: remove bogus fprintf. compilation was broken
	  on alpha.

	* configure.in: xsltproc checking fix, was always accepted even
	 on box where xsltproc is not installed

2003-03-15  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* Makefile.am: add ChangeLog-2002 in dist files
	* all Makefile.am: put one item by line for most  xxxx = blah
	* doc/CodingStyle: rationale for the above change

2003-03-15  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_events.c: minor cleanup

2003-03-15  Dave Jones <davej@codemonkey.org.uk>

	* module/x86/op_nmi.c: Remove stale debug code from yesterdays commit.

2003-03-15  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: add checking for existence of xmemdup()

	* libutil/Makefile.am:
	* libutil/op_string.h:
	* libutil/op_string.c: new, a few C string handling function

	* libutil/op_libiberty.h:
	* libutil/op_libiberty.c: xmemdup() new.

	* libop/op_events.h:
	* libop/op_events.c: tidy parser. Add op_free_events(). Fix minor
	  buglet.

	* dae/oprofiled.c:
	* daemon/oprofiled.c: fix memleak from parsing events files

	* gui/Makefile.am:
	* pp/Makefile.am: fix lib ordering, now libop depend on libutil

	* utils/op_help.c: error message if invalid cpu type. Fix op_help
	  when using timer interrupt.

2003-03-14  Andi Kleen <ak@suse.de>

	* module/x86/op_nmi.c: Fix another possible race condition.

2003-03-14  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* libregex/stl.pat: support for rb tree, set/map, anonymous namespace.
	  Fix incorrect pattern for gcc 3.2. Handle 2.95 vector/string
	  iterator and a few stl free function handling. add all C++ base type.
	* libregex/mangled-name.txt: test for the above change

2003-03-14  Philippe Elie  <phil.el@wanadoo.fr>

	* gui/oprof_start.cpp: gcc 2.91 warning work around

2003-03-14  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_events.c: fix a daemon segfault depending on the used
	  libc version, added 2003-03-04 (0.5.1 is ok)

2003-03-13  Dave Jones <davej@codmeonkey.org.uk>

	* events/x86-64.hammer.events: Remove duplicate minimum tag
	  from RETIRED_INSNS counter.

2003-03-11  John Levon  <levon@movementarian.org>

	* module/ia64/op_pmu.c: include op_arch.h not arch.h

2003-03-10  Philippe Elie  <phil.el@wanadoo.fr>

	* configure.in: remove unsupported --warnnet, fix docbook root dir test
	* doc/oprofile.xml: typo

2003-03-10  John Levon  <levon@movementarian.org>

	* doc/Makefile.am:
	* configure.in:
	* doc/xsl/catalog-1.xml.in: more docbook changes

2003-03-10  John Levon  <levon@movementarian.org>

	* configure.in:
	* doc/Makefile.am:
	* doc/xsl/xhtml.xsl:
	* doc/xsl/xhtml-chunk.xsl:
	* doc/xsl/catalog-1.xml.in: Use a catalog for finding
	the XSL, so we only have one .in file now.

2003-03-08  Will Cohen  <wcohen@redhat.com>

	* doc/Makefile.am: Correct path for htmldir.

2003-03-08  John Levon  <levon@movementarian.org>

	* libop/op_cpu_type.c: improve error message

	* utils/op_help.c: show CPU name in events list. Show CPU
	 pretty name in op_help --get-cpu-type.

2003-03-08  John Levon  <levon@movementarian.org>

	* configure.in: specify distcheck ./configure flags.
	  Add version.h to distclean.

	* doc/Makefile.am: 
	* doc/xsl/xhtml-1.in:
	* doc/xsl/xhtml-chunk-1.in: fix make distcheck

2003-03-08  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/xsl/.cvsignore: update

	* module/x86/cpu_type.c: <smpboot.h> is not necessary

2003-03-07  John Levon  <levon@movementarian.org>

	* README: document autogen.sh

2003-03-07  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* doc/xsl/xhtml.xsl.in: move to
	* doc/xsl/xhtml-1.xsl.in: here
	* doc/xsl/xhtml-chunk.xsl.in: move to
	* doc/xsl/xhtml-chunk-1.xsl.in: here
	* doc/Makefile.am; update according
	* configure.in: avoid to touch doc/xsl generated files

2003-03-07  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* daemon/opd_image.c:
	* daemon/op_stats.c:
	* daemon/opd_stats.h: add statistics for nil image whilst receiving
	  user space samples.

2003-03-06  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* libdb/db_hash.h:
	* libdb/db_insert.c: get error message from db_insert()

	* libdb/db_test.c:
	* dae/opd_proc.c:
	* daemon/opd_image.c:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* pp/op_merge.cpp: update according to the new api

2003-03-06  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: pedantry

2003-03-06  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* doc/oprofile.1.in:
	* doc/oprofile.xml: document --smart-demangle

2003-03-06  Philippe Elie  <phil.el@wanadoo.fr>

	* module/ia64/op_pmu.c:
	* module/x86/op_nmi.c: remove #include <op_events.h>

2003-03-06  John Levon  <levon@movementarian.org>

	* utils/opcontrol: sh != C. This is the last opcontrol
	  bug, honest ! OK, maybe not.

2003-03-06  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* gui/oprof_start.cpp: save_config() gcc 2.95.3 warning work-around

2003-03-05  John Levon  <levon@movementarian.org>

	* utils/opcontrol: Make --setup optional (e.g.
	  opcontrol --no-vmlinux). Fix a bug in the --setup
	  exclusive arg testing.

	* doc/oprofile.xml: reflect the above

2003-03-05  John Levon  <levon@movementarian.org>

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: cleanup, use s.find
	  because older gcc's don't have the right s.compare

2003-03-04  John Levon  <levon@movementarian.org>

	* utils/opcontrol: only sleep 2 after dump on 2.4

2003-03-04  John Levon  <levon@movementarian.org>

	* configure.in: tweak the xsltproc test

2003-03-04  John Levon  <levon@movementarian.org>

	* configure.in:
	* doc/Makefile.am: don't try to build the docs
	  if it will fail.

2003-03-04  John Levon  <levon@movementarian.org>

	* utils/opcontrol:
	* daemon/opd_kernel.h:
	* daemon/opd_image.c:
	* daemon/opd_kernel.c:
	* daemon/oprofiled.c: implement --no-vmlinux.
 	  Remove back compat for is_kernel.

	* gui/uioprof_start.base.ui:
	* gui/oprof_start.cpp:
	* gui/oprof_start_config.h:
	* gui/oprof_start_config.cpp: support the above

	* doc/oprofile.1.in:
	* doc/oprofile.xml: doc the above

2003-03-04  John Levon  <levon@movementarian.org>

	* utils/opcontrol: allow --version, --help early on

2003-03-04  John Levon  <levon@movementarian.org>

	* libop/op_events.c: alter the parser to give file/linenr on
	  error, and handle more whitespace.

2003-03-04  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp:
	* gui/oprof_start.h:
	* gui/oprof_start_config.cpp:
	* gui/oprof_start_config.h:

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: add is_prefix(),
	  make the trimmers take an argument

2003-03-04  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp:
	* gui/oprof_start.h:
	* gui/oprof_start_config.cpp:
	* gui/oprof_start_config.h:
	* gui/persistent_config.h:

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: add split(), tobool(), touint()

	* utils/opcontrol: don't write BUF_SIZE twice. Write
	  RTC_VALUE properly. Write KERNEL_ONLY

2003-03-03  John Levon  <levon@movementarian.org>

	* gui/oprof_start.cpp: use --ctrX-event=none,
	  --separate=none. --pid/pgrp-filter=0 was already
	  being done.

2003-03-03  John Levon  <levon@movementarian.org>

	* doc/oprofile.1.in:
	* doc/oprofile.xml:
	* doc/opcontrol: add --ctrX-event=none

2003-03-03  Will Cohen  <wcohen@redhat.com>

	* gui/oprof_start.cpp (oprof_start::on_start_profiler): Limit
	  check to only utm_bitmask.

2003-03-03  Will Cohen  <wcohen@redhat.com>

    * events/ia64.itanium2.events:
    * events/ia64.itanium2.unit_masks: Add Itanium 2 events.

2003-03-03  Will Cohen  <wcohen@redhat.com>

    * libop/op_events.h:
    * libop/op_events.c: Correct checking for the number of unit
      masks.

2003-03-03  John Levon  <levon@movementarian.org>

	* doc/oprofile.1.in:
	* doc/oprofile.xml: another round of cleanups

	* pp/op_merge.cpp: --counter not --use-counter,
	  for consistency

2003-03-03  John Levon  <levon@movementarian.org>

	Patch from Chris Moller, modified.

	* dae/opd_proc.c:
	* dae/opd_sample_files.c:
	* daemon/opd_image.c:
	* daemon/opd_sample_files.c:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp:
	* libdb/db_hash.h:
	* libdb/db_insert.c:
	* libdb/db_manage.c:
	* libdb/db_test.c:
	* pp/counter_profile.cpp:
	* pp/op_merge.cpp: push asserts in libdb down into
	  the clients.

2003-03-03  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml:
	* doc/oprofile.1.in:
	* utils/opcontrol: add --separate=none, --pid/pgrp-filter=non

2003-03-03  John Levon  <levon@movementarian.org>

	* configure.in:
	* doc/Makefile.am:
	* doc/oprofile.xml:
	* doc/xsl/xhtml-chunk.xsl.in:
	* doc/xsl/xhtml.xsl.in:
	* doc/xsl/xhtml-common.xsl: Add version to the
	  docs. Some doc cleanups

2003-03-02  John Levon  <levon@movementarian.org>

	* utils/opcontrol: --separate=library should turn kernel off

2003-03-02  John Levon  <levon@movementarian.org>

	* events/Makefile.am: fix uninstall

2003-03-02  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: more re-workings prodded by aeb

2003-03-02  John Levon  <levon@movementarian.org>

	* daemon/opd_kernel.c: remove /proc/ksyms reading

2003-03-02  John Levon  <levon@movementarian.org>

	* libutil/op_fileio.c: change op_get_line to return
	  NULL on EOF. Also bump up the default allocation some.

	* dae/opd_kernel.c:
	* dae/opd_parse_proc.c:
	* daemon/opd_kernel.c:
	* libop/op_events.c: changes from the above

2003-03-02  John Levon  <levon@movementarian.org>

	* configure.in:
	* Makefile.am:
	* events/: add text files describing the CPU counters
	  and unit masks. Install them.

	* libop/op_events.h:
	* libop/op_events.c: remove the bletcherous hard coded
	  descriptions.

	* module/ia64/op_pmu.c:
	* module/x86/op_nmi.c: remove another big of validation

	* libutil/op_list.h: make C++ friendly

	* libop/op_cpu_type.h:
	* libop/op_cpu_type.c: add op_get_cpu_name()

	* libop/Makefile:
	* libop/op_events_desc.h:
	* libop/op_events_desc.cpp: removed

	* libop++/op_print_event.cpp:
	* utils/Makefile.am:
	* utils/op_help.c:
	* gui/oprof_start.h:
	* gui/oprof_start.cpp: changes from above

2003-03-01  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: tweaks

	* utils/opcontrol: scale the default event count. Please
	  test ...

2003-03-01  John Levon  <levon@movementarian.org>

	* utils/opcontrol: setup default events. Allow part-setting
	  using --setup. Fix a help text.

	* doc/oprofile.xml: changes from the above

2003-03-01  John Levon  <levon@movementarian.org>

	* libop/op_cpu_type.c: fix alpha/ev4 mis-detection

2003-03-01  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: expand intro a little, small fixes

2003-03-01  John Levon  <levon@movementarian.org>

	* pp/format_output.cpp: use "%" not "%-age"

2003-02-28  John Levon  <levon@movementarian.org>

	* utils/opcontrol: fix IS_TIMER setting, noticed by
	  Duncan Sands

2003-02-28  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.6cvs

2003-02-28  John Levon  <levon@movementarian.org>

	* doc/Makefile.am: tweak

	* libregex/Makefile.am: fix make dist

2003-02-27  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.5.1

2003-02-27  John Levon  <levon@movementarian.org>

	* doc/oprofile.xml: clarify --separate=kernel

2003-02-25  John Levon  <levon@movementarian.org>

	* configure.in: clarify --with-kernel-support

	* libop/op_events.c:
	* module/x86/op_nmi.c:
	* module/ia64/op_nmi.c: remove sanity checking - it's
	  the wrong place to have such code, is a barrier to op_events
	  cleanup, and makes life harder for NDAers.

2003-02-25  Will Cohen <wcohen@redhat.com>

	* utils/opcontrol (do_deinit): Correct search for /dev/oprofile.

2003-02-24  Dave Jones <davej@codemonkey.org.uk>

	* module/x86/op_apic.[c|h]: move NMI gate setup to architecture
	  specific SET_NMI_GATE macro. x86=no change.
	  Make x86-64 use the kernels _set_gate instead of its own open
	  coded variant.

2003-02-23  John Levon  <levon@movementarian.org>

	* version-1.h.in: another rename

2003-02-23  John Levon  <levon@movementarian.org>

	* configure.in: set up OP_DATADIR and OP_BINDIR

	* gui/oprof_start.cpp:
	* libregex/demangle_symbol.cpp: use the above

	* version_tpl.h.in: move to ...

	* version.h.in.in: ... here

2003-02-23  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* configure.in: add AX_COPY_IF_CHANGE() use it to generate version.h
	* .cvsignore: update

	* gui/Makefile.am:
	* gui/oprof_start.cpp:
	* libregex/Makefile.am:
	* libregex/demangle_symbol.cpp: don't use -DBINDIR, rather include
	  version.h to get install path

2003-02-23  John Levon  <levon@movementarian.org>

	* README: quick start build insns

2003-02-23  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* libregex/Makefile.am: install stl.pat in $prefix/share/oprofile
	* libregex/demangle_symbol.cpp: use DATADIR not BINDIR
	* libregex/magle-name.txt: add test for pointer
	* libregex/stl.pat: partial support for pointer

2003-02-23  John Levon  <levon@movementarian.org>

	* autogen.sh: error out if options passed

2003-02-23  John Levon  <levon@movementarian.org>

	* libregex/op_regex.h:
	* libregex/regex_test.cpp: fix std::

2003-02-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/demangle_symbol.cpp:
	* libutil++/demangle_symbol.h: move to
	* libregex/demangle_symbol.cpp:
	* libregex/demangle_symbol.h: here to avoid circular reference between
	  libutil++ and libregex
	* libregex/Makefile.am:
	* libutil++/Makefile.am: update according to file move

	* pp/Makefile.am:
	* pp/op_time.cpp:
	* pp/op_time_options.cpp:
	* pp/op_to_source.cpp:
	* pp/op_to_source_options.cpp:
	* pp/oprofpp.cpp:
	* pp/oprofpp_options.cpp: add -D --Demangle options enabling C++
	  demangled name filtering.

2003-02-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/string_manip.h:
	* libutil++/string_manip.cpp: trim(), ltrim(), rtrim() new functions

	* Makefile.am: handle libregex directory
	* configure.in: handle libregex/Makefile

	* libregex/.cvsignore:
	* libregex/Makefile.am :
	* libregex/mangled-name.txt:
	* libregex/op_regex.cpp:
	* libregex/op_regex.h:
	* libregex/regex_test.cpp:
	* libregex/stl.pat: new file implementing a match and replace regular
	  expression around glibc regex. Not used for now, next commit will
	  use this for pp tools C++ name demangling.

2003-02-22  John Levon  <levon@movementarian.org>

	* configure.in: fix X, non-Qt build case

2003-02-22  John Levon  <levon@movementarian.org>

	* libutil++/Makefile.am: fix make dist

2003-02-21  Dave Jones <davej@codemonkey.org.uk>

	* configure.in: Enable building on hammer again.

2003-02-21  John Levon  <levon@movementarian.org>

	* utils/opcontrol: "Params used" was lying

2003-02-20  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: Fixed a bitch of a bug with separate-kernel,
	  now attribution of kernel samples should be more accurate

2003-02-20  John Levon  <levon@movementarian.org>

	* utils/opcontrol: set LIB_SAMPLES if KERNEL_SAMPLES in .daemonrc

2003-02-20  John Levon  <levon@movementarian.org>

	* dae/opd_stats.h:
	* dae/opd_stats.c:
	* daemon/opd_stats.h:
	* daemon/opd_stats.c:
	* dae/opd_proc.c:
	* daemon/opd_image.c: remove unused OPD_SAMPLE_COUNTS. Actually
	  count samples for 2.5

2003-02-20  John Levon  <levon@movementarian.org>

	* libop/op_interface_25.h:
	* daemon/opd_kernel.c: implement module dropping

	* daemon/opd_image.c:
	* daemon/opd_kernel.c: attempt to make verbose logs
	  less confusing

2003-02-22  Dave Jones <davej@codemonkey.org.uk>

	* libop/op_events.c: segregload is utm_mask not utm_exclusive

2003-02-20  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* pp/output_format.h:
	* pp/output_format.cpp:
	* pp/op_time.cpp:
	* pp/oprofpp.cpp:
	* pp/opp_symbol.h: better handling of 64/32 bits bfd_vma
	  in output

2003-02-20  John Levon  <levon@movementarian.org>

	* libutil++/op_exception.h:
	* libutil++/op_exception.cpp: throw() where needed

2003-02-19  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* daemon/opd_image.h:
	* daemon/opd_image.cpp:
	* daemon/opd_kernel.cpp: fix thinko with --separate=kernel resulting
	  in duplicate opening of the same samples file.

2003-02-19  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_exception.h:
	* libutil++/op_exception.cpp: new files, base class for exception.
	  Not used for now.

2003-02-19  John Levon  <levon@movementarian.org>

	* acinclude.m4: update from upstream

	* gui/ui/oprof_start.base.ui:
	* gui/oprof_start.cpp: separate --setup,--start.
	  Hide non-2.5 stuff in 2.5.

2003-02-18  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* dae/opd_sample_files.c:
	* daemon/opd_sample_files.c: opd_handle_old_sample_file() don't
	  try to delete old samples files if they don't exist.

2003-02-18  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol (do_options): Better option error checking.

2003-02-17  Will Cohen  <wcohen@redhat.com>

	* pp/format_output.h (show_help): namespace std.

2003-02-17  Will Cohen  <wcohen@redhat.com>

	* TODO: update.

2003-02-17  Philippe Elie  <phil.el@wanadoo.fr>

	From Anton Blanchard :

	* daemon/opd_image.c: cookie_t fix for 64 bits

2003-02-17  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* libopt++/popt_options.cpp:
	* libopt++/popt_options.h: handle an user specific additional
	  help string

	* pp/output_format.h:
	* pp/output_format.cpp:
	* pp/op_time_options.cpp:
	* pp/oprofpp_options.cpp: use it to show in --output_format
	  options details.

2003-02-14  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/oprofile.1.in:
	* doc/oprofile.xml:
	* pp/oprofpp_options.cpp: allow --show-shared-libs with -s

2003-02-13  Philippe Elie  <phil.el@wanadoo.fr>

	* TODO: update

	* pp/output_format.h:
	* pp/output_format.cpp: fix #686272, crash when using
	  oprofpp -s symb_name.

2003-02-13  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_kernel.h:
	* dae/opd_image.h:
	* dae/opd_image.c: don't use hash entry zero for kernel image
	 fix #686175

2003-02-13  Will Cohen  <wcohen@redhat.com>

	* daemon/opd_cookie.h(opd_nr_lookup_dcookie): Correct number.

2003-02-13  Will Cohen  <wcohen@redhat.com>

	* daemon/opd_cookie.h(opd_nr_lookup_dcookie): Add x86_64.

2003-02-13  John Levon  <levon@movementarian.org>

	* dae/opd_image.c: little cleanup and fix error message
	  to not lie

2003-02-12  Philippe Elie  <phil.el@wanadoo.fr>

	* doc/oprofile.1.in:
	* doc/oprofile.xml: enhance doc about --separate=kernel

	* utils/opcontrol: handle gracefully opcontrol --deinit if profiler
	  was already shutdown. Avoid wrong warning when umount /dev/oprofile

2003-02-12  Will Cohen  <wcohen@redhat.com>

	* gui/oprof_start.cpp (oprof_start::oprof_start,
	    oprof_start::on_flush_profiler_data,
	    oprof_start::on_start_profiler,
	    oprof_start::on_stop_profiler): Use opcontrol.
	* gui/oprof_start_util.cpp (daemon_status::daemon_status):
	    Allow reading interrupt info from new kernel interface.
	* libop/op_get_interface.c: New.
	* libop/Makefile.am: Add libop/op_get_interface.c.
	* libop/op_cpu_type.h: Add enum op_interface.

	I Added some bits. Phil
	* gui/oprof_start.cpp: correct --separate= handling
	* gui/oprof_start_util.cpp: read only the real number of interrupts

2003-02-12  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/opcontrol: handle --note-table-size --kernel-only (2.4 kernel)

2003-02-12  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/op_start: map --separate-samples to daemon option
	  --separate-lib-samples.

2003-02-11  Philippe Elie  <phil.el@wanadoo.fr>

	* dae/opd_image.c:
	* dae/opd_kernel.c:
	* dae/opd_kernel.h:
	* dae/opd_parse_proc.c:
	* dae/opd_proc.c:
	* dae/opd_proc.h:
	* dae/opd_sample_files.c:
	* dae/oprofiled.c:
	* daemon/opd_image.c:
	* daemon/opd_image.h:
	* daemon/opd_kernel.c:
	* daemon/opd_kernel.h:
	* daemon/opd_sample_files.c:
	* daemon/oprofiled.c: per application kernel samples files

	* doc/oprofile.1.in:
	* doc/oprofile.xml: document opcontrol --separate=kernel

	* gui/oprof_start.cpp:
	* gui/oprof_start_config.cpp:
	* gui/oprof_start_config.h:
	* gui/ui/oprof_start.base.ui: remove ignore_daemon checkbox, handle
	  --separate=[library|kernel]

	* libop/op_sample_file.h: add separate_kernel_samples field, file
	  format is backward compatible

	* libabi/abi.cpp:
	* libabi/abi_test.cpp:
	* libabi/op_import.cpp: handle new samples file header field

	* pp/counter_profile.cpp: dump new sample files header field.

	* utils/opcontrol: handle --separate=kernel

2003-02-09  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol: Add rtc-value option.

2003-02-09  John Levon  <levon@movementarian.org>

	* utils/opcontrol: stale lock file detection

2003-02-06  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol (do_dump): Do not exit if no daemon.

2003-02-06  Will cohen  <wcohen@redhat.com>

	* doc/oprofile.1.in: Update man page information.

2003-02-03  John Levon  <levon@movementarian.org>

	* configure.in: 0.6cvs

2003-02-02  John Levon  <levon@movementarian.org>

	* configure.in: bump to 0.5

2003-02-02  John Levon  <levon@movementarian.org>

	* configure.in: disable x86_64

2003-02-02  John Levon  <levon@movementarian.org>

	* pp/format_output.cpp: revert previous patch, Phil's
	  x86 binutils is built with 64-bit bfd_vma

2003-02-01  John Levon  <levon@movementarian.org>

	* utils/opcontrol: rename --separate-samples to --separate=library
	  for future proofing.

	* pp/format_output.cpp: output vma at a suitable width

2003-01-31  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol(get_kernel_range): Match only .text segment.

2003-01-31  Graydon Hoare  <graydon@redhat.com>

	* libabi/abi.cpp
	* libabi/abi_test.cpp
	* libabi/op_import.cpp: Treat endianness as a property of the datum
	being imported, rather than the memory architecture.

2003-01-31  Dave Jones <davej@codemonkey.org.uk>

	* module/x86/op_model_athlon.c: Don't poke reserved bits in the counter.
	  Only rdmsr/wrmsr counters that we've enabled in the NMI handler.
	  ulong->uint conversion.

2003-01-30  Philippe Elie  <phil.el@wanadoo.fr>

	From Randolph Chung :

	* daemon/opd_cookie.h: add parisc support

2003-01-30  John Levon  <levon@movementarian.org>

	From Anton Blanchard :

	* daemon/opd_cookie.h: add ppc32/64

	* utils/op_start_25: fix start of kernel for ppc

2003-01-30  Will Cohen  <wcohen@redhat.com>

	* utils/opcontrol(get_kernel_range): Avoid using perl arithmetic.

2003-01-29  Dave Jones <davej@codemonkey.org.uk>

	* utils/opcontrol: Trying to use the options --pid-filter=pid and
	  --pgmr-filter=pgmr, opcontrol returned "command not found.
	  This was due to 2 missing 'test' statements.
	
2003-01-29  Philippe Elie  <phil.el@wanadoo.fr>

	* pp/op_to_source.cpp: read vma with strtoull not strtoul fixing
	  32/64 failure to read output of objdump

2003-01-29  Dave Jones <davej@codemonkey.org.uk>

	* libop/op_cpu_type.c: Clue the user in on why the cpu type isn't
	  recognised, by suggesting the module wasn't loaded.
	* libop/op_events.c: Doh, unit masks use bit numbers, not values.

2003-01-28  Philippe Elie  <phil.el@wanadoo.fr>

	* utils/op_help.c: get cpu type only if not forced on command line.
	  Avoid wrong warning about unsupported cpu type.

2003-01-27  Will Cohen  <wcohen@redhat.com>

	* daemon/opd_cookie.h(opd_nr_lookup_dcookie): Add ia64 version.

2003-01-27  Dave Jones <davej@codemonkey.org.uk>

	* libop/op_events.c: K8 HT events are utm_exclusive, not utm_bitmask
	* libop/op_events.c: Add additional K8 unit masks.

2003-01-23  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_interface_25.h:
	* daemon/opd_image.c: prepare drop modules support. exit() when
	  receiving unknown escape code.

2003-01-23   Randolph Chung  <tausq@debian.org>

	Added minor change: backward compatibility, u_int to uint, fix
	32/64 bits escape code marker comparison. Phil

	* libop/op_interface_25.h:
	* daemon/opd_kernel.c:
	* daemon/opd_image.c: new scheme to recognize kernel or user space
	  eip, now kernel module pass the relevent information through
	  escape sequence.

2003-01-21  Dave Jones <davej@codemonkey.org.uk>

	* libop/op_events.c: Add unit mask for Hypertransport events.

2003-01-21  Dave Jones <davej@codemonkey.org.uk>

	* libop/op_events.c: Add x86-64 specific events.

2003-01-21  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_kernel.c: use sscanf to parse /proc/modules

2003-01-20  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_kernel.c: more robust /proc/modules parsing.

2003-01-20  Philippe Elie  <phil.el@wanadoo.fr>

	* daemon/opd_kernel.c: 2.5 modules support, for now I keep
	  the code for /proc/ksyms parsing in daemon. Let's it living a few
	  weeks please.

2003-01-18  Falk Hueffner  <falk@debian.org>

	I added to the original patch all %L to %ll, Phil

	* daemon/opd_image.c:
	* daemon/opd_kernel.c:
	* libutil/op_types.h: 64 bits printf/scanf safety.

2003-01-18  Falk Hueffner  <falk@debian.org>

	* libop/op_cpu_type.h:
	* libop/op_cpu_type.c: add Alpha CPU families.
	* libop/op_events.h: make op_event.cpu_mask u32, since we now have
	  more than 16 CPU types
	* libop/op_hw_config.h: bump OP_MAX_COUNTERS to 20 for Alpha
	* libop/op_events.c: add Alpha events
	* daemon/opd_cookie.h: add dcookie syscall number for Alpha
	* utils/op_help.c (main): add help string for Alpha

2003-01-18  John Levon  <levon@movementarian.org>

	* module/Makefile.in:
	* module/x86/Makefile.in:
	* module/ia64/Makefile.in: kernel headers are too fubar
	  for -Werror. So I'm taking my ball home.

2003-01-17  John Levon  <levon@movementarian.org>

	* HACKING:
	* doc/CodingStyle: add

2003-01-17  John Levon  <levon@movementarian.org>

	* TODO: some updates

2003-01-15  Philippe Elie  <phil.el@wanadoo.fr>

	* module/x86/op_model_p4.c: pmc_setup_one_p4_counter() show clearly
	  than event == 0 is an error

2003-01-15  John Levon  <levon@movementarian.org>

	* utils/opcontrol: prefer oprofiled/op_help binaries in the same
	  dir as opcontrol

2003-01-12  Philippe Elie  <phil.el@wanadoo.fr>

	* libop/op_events.c: rename OP_P4_HT2 to OP_P4_ALL

2003-01-12  Philippe Elie  <phil.el@wanadoo.fr>

	* libop++/op_print_event.cpp: no event,nor unit mask for CPU_TIMER_INT,
	  problem reported by Ka Fai Lu.

2003-01-12  John Levon  <levon@movementarian.org>

	From Graydon Hoare

	* libop/op_cpu_type.h:
	* libop/op_cpu_type.c: add P4 HT

	* libop/op_events.c: tag P4 HT events

2003-01-11   Randolph Chung  <tausq@debian.org>

	* daemon/oprofiled.c: fix ELF sniff

2003-01-11  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c: bail out immediately on dcookie
	  lookup failure.

2003-01-10  John Levon  <levon@movementarian.org>

	* daemon/opd_cookie.h: insulate against missing arch support
	  for sys_lookup_dcookie

	* daemon/opd_image.c: use the above

2003-01-10  John Levon  <levon@movementarian.org>

	* daemon/opd_image.c:
	* daemon/oprofiled.c: move complete_dump to a better place

2003-01-10  John Levon  <levon@movementarian.org>

	* libutil/op_types.h: add cookie_t and vma_t

	* daemon/opd_image.c:
	* daemon/opd_image.h:
	* daemon/opd_kernel.c:
	* daemon/opd_kernel.h: use above types, and kernel_pointer_size

	* daemon/oprofiled.c: sniff /proc/kcore for kernel_pointer_size

2003-01-10  Philippe Elie  <phil.el@wanadoo.fr>

	* libopt++/popt_options.cpp:
	* libopt++/popt_options.h: work-around to support both gcc new parser
	  and gcc 2.95

2003-01-08  John Levon  <levon@movementarian.org>

	* libop/op_type.cpp: support for ascii-string cpu types

2003-01-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.cpp:
	* libutil++/op_bfd.h:
	* pp/oprofpp.cpp: more use of bfd_vma

2003-01-08  Philippe Elie  <phil.el@wanadoo.fr>

	* libdb/Makefile.am: fix include dir
	* libdb/db_test.c: don't assume than sizeof(struct opd_header) == 128

2003-01-06  Philippe Elie  <phil.el@wanadoo.fr>

	* libutil++/op_bfd.h: fix for 64 bits.

2003-01-06  Philippe Elie  <phil.el@wanadoo.fr>

	* libabi/abi.cpp:
	* libabi/op_import.cpp: broken by my last change in libdb.

2003-01-06  Philippe Elie  <phil.el@wanadoo.fr>

	* db/db_hash.h: do_hash() use db_key_t as parameter

2003-01-04  John Levon  <levon@movementarian.org>

	* pp/op_time.cpp: suggest opcontrol --dump instead

	* utils/opcontrol: implement --start-daemon. Fix a number
	  of bugs

	* doc/oprofile.xml:
	* doc/oprofile.1.in: document --start-daemon

2003-01-03  Will Cohen  <wcohen@redhat.com>

	* daemon/oprofiled.c (opd_do_samples): Typecast to match
	  arguments.

See ChangeLog-2002 for earlier changelogs.