summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 5d4f7f14854e4fe9b82f60532c1f50f4df5bf924 (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
Tue Jul 29 07:59:51 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/nmake.mpd:

          Remove ACE_ROOT reference in the templates for the depgen.pl
          script.

Tue Jul 29 07:46:58 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/README:
        * bin/MakeProjectCreator/modules/Creator.pm:
        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Change the way the 'implicit' keyword works.  It now takes both
          boolean values and character strings that represent base projects
          for implicitly generated projects.  See the README for more
          details.

        * examples/examples.mwc:

          Utilize the new 'implicit' functionality.

Mon Jul 28 22:00:00 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/footprint_stats.sh: Added new libraries that were not
          covered.

Mon Jul 28 15:06:32 2003  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/WFMO_Reactor.i:

          Fixed typo in preprocessor directive.

Mon Jul 28 19:23:22 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/WFMO_Reactor.cpp:
          Added ACE_UNUSED_ARG to dump to silence a warning when
          ACE_HAS_DUMP is not defined.

Mon Jul 28 18:29:38 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/RB_Tree.cpp:
          Added ACE_UNUSED_ARG to dump_i and dump_node_i to silence a
          warning when ACE_HAS_DUMP is not defined.

Mon Jul 28 13:01:49 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/UUID.h:
        * ace/UUID.cpp: The implementations are now placed in a namespace
          ACE_Utils. Since we can now use namespaces, adding them to a
          namspace made more sense.

        * ace/UUID.i: File UUID.i is now renamed to be UUID.inl

        * ace/UUID.inl: New file.

        * tests/UUIDTest.cpp: Changes to confirm to the above changes.

Mon Jul 28 12:49:23 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/TemplateParser.pm:

          Added the ability to uppercase and lowercase strings within the
          templates.

        * bin/MakeProjectCreator/USAGE:
        * bin/MakeProjectCreator/modules/AutomakeProjectCreator.pm:
        * bin/MakeProjectCreator/modules/AutomakeWorkspaceCreator.pm:
        * bin/MakeProjectCreator/templates/automake.mpd:
        * bin/mpc.pl:
        * bin/mwc.pl:

          Added initial support for Automake.  This is by no means complete
          or even correct, but it's a starting point.  Perhaps someone who
          knows something about Automake could make the automake template
          better (correct).

Mon Jul 28 09:36:15 2003  Gan Deng  <gan.deng@vanderbilt.edu>

        * bin/tao_orb_tests.lst
          Put the Bug_1551_Regression test into the daily builds.

Sun Jul 27 20:19:48 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/ARGV.cpp:
        * ace/ATM_Acceptor.cpp:
        * ace/ATM_Acceptor.i:
        * ace/ATM_Addr.cpp:
        * ace/ATM_Addr.i:
        * ace/ATM_Connector.cpp:
        * ace/ATM_Connector.i:
        * ace/ATM_Params.cpp:
        * ace/ATM_Params.i:
        * ace/ATM_QoS.cpp:
        * ace/ATM_QoS.i:
        * ace/ATM_Stream.cpp:
        * ace/ATM_Stream.i:
        * ace/Acceptor.cpp:
        * ace/Activation_Queue.cpp:
        * ace/Active_Map_Manager_T.i:
        * ace/Addr.cpp:
        * ace/Array_Base.inl:
        * ace/Atomic_Op.cpp:
        * ace/Atomic_Op_T.cpp:
        * ace/Atomic_Op_T.i:
        * ace/Auto_IncDec_T.cpp:
        * ace/Auto_Ptr.cpp:
        * ace/Auto_Ptr.i:
        * ace/Based_Pointer_T.cpp:
        * ace/Cache_Map_Manager_T.cpp:
        * ace/Cache_Map_Manager_T.i:
        * ace/Caching_Strategies_T.i:
        * ace/Connector.cpp:
        * ace/Containers_T.cpp:
        * ace/Containers_T.i:
        * ace/DEV.cpp:
        * ace/DEV_Addr.cpp:
        * ace/DEV_Connector.cpp:
        * ace/DEV_IO.cpp:
        * ace/Dev_Poll_Reactor.cpp:
        * ace/Dump_T.cpp:
        * ace/Dynamic_Service_Base.cpp:
        * ace/Event_Handler_T.cpp:
        * ace/FIFO.cpp:
        * ace/FIFO_Recv.cpp:
        * ace/FIFO_Recv_Msg.cpp:
        * ace/FIFO_Send.cpp:
        * ace/FIFO_Send_Msg.cpp:
        * ace/FILE.cpp:
        * ace/FILE_Addr.cpp:
        * ace/FILE_Connector.cpp:
        * ace/FILE_IO.cpp:
        * ace/File_Lock.cpp:
        * ace/Framework_Component.cpp:
        * ace/Future.cpp:
        * ace/Get_Opt.cpp:
        * ace/Handle_Set.cpp:
        * ace/Hash_Map_Manager_T.cpp:
        * ace/Hash_Map_Manager_T.i:
        * ace/High_Res_Timer.cpp:
        * ace/INET_Addr.cpp:
        * ace/IO_SAP.cpp:
        * ace/IPC_SAP.cpp:
        * ace/LSOCK.cpp:
        * ace/LSOCK_Acceptor.cpp:
        * ace/LSOCK_CODgram.cpp:
        * ace/LSOCK_Connector.cpp:
        * ace/LSOCK_Dgram.cpp:
        * ace/Local_Name_Space_T.cpp:
        * ace/Local_Tokens.cpp:
        * ace/Log_Msg.cpp:
        * ace/Log_Record.cpp:
        * ace/MEM_Acceptor.cpp:
        * ace/MEM_Addr.cpp:
        * ace/MEM_Connector.cpp:
        * ace/MEM_IO.cpp:
        * ace/MEM_SAP.cpp:
        * ace/MEM_Stream.cpp:
        * ace/Malloc.cpp:
        * ace/Malloc_Allocator.cpp:
        * ace/Malloc_Allocator.i:
        * ace/Malloc_T.cpp:
        * ace/Map_Manager.cpp:
        * ace/Map_T.i:
        * ace/Mem_Map.cpp:
        * ace/Memory_Pool.cpp:
        * ace/Message_Block.cpp:
        * ace/Message_Queue.cpp:
        * ace/Message_Queue_T.cpp:
        * ace/Module.cpp:
        * ace/Name_Proxy.cpp:
        * ace/Name_Request_Reply.cpp:
        * ace/Naming_Context.cpp:
        * ace/OS.cpp:
        * ace/Obchunk.cpp:
        * ace/Obstack_T.cpp:
        * ace/PI_Malloc.cpp:
        * ace/Parse_Node.cpp:
        * ace/Pipe.cpp:
        * ace/Priority_Reactor.cpp:
        * ace/Process_Manager.cpp:
        * ace/Process_Mutex.cpp:
        * ace/Process_Semaphore.cpp:
        * ace/Profile_Timer.cpp:
        * ace/RB_Tree.cpp:
        * ace/RB_Tree.i:
        * ace/RW_Process_Mutex.cpp:
        * ace/Reactor.cpp:
        * ace/Read_Buffer.cpp:
        * ace/Registry_Name_Space.cpp:
        * ace/Remote_Name_Space.cpp:
        * ace/Remote_Tokens.cpp:
        * ace/SOCK.cpp:
        * ace/SOCK_Acceptor.cpp:
        * ace/SOCK_CODgram.cpp:
        * ace/SOCK_Connector.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_Dgram_Bcast.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:
        * ace/SOCK_IO.cpp:
        * ace/SOCK_SEQPACK_Acceptor.cpp:
        * ace/SOCK_SEQPACK_Association.cpp:
        * ace/SOCK_SEQPACK_Connector.cpp:
        * ace/SOCK_Stream.cpp:
        * ace/SPIPE.cpp:
        * ace/SPIPE_Acceptor.cpp:
        * ace/SPIPE_Addr.cpp:
        * ace/SPIPE_Connector.cpp:
        * ace/SPIPE_Stream.cpp:
        * ace/SString.cpp:
        * ace/SV_Message.cpp:
        * ace/SV_Message_Queue.cpp:
        * ace/SV_Semaphore_Complex.cpp:
        * ace/SV_Semaphore_Simple.cpp:
        * ace/SV_Shared_Memory.cpp:
        * ace/Select_Reactor_Base.cpp:
        * ace/Select_Reactor_T.cpp:
        * ace/Service_Config.cpp:
        * ace/Service_Manager.cpp:
        * ace/Service_Object.cpp:
        * ace/Service_Repository.cpp:
        * ace/Service_Types.cpp:
        * ace/Shared_Memory_MM.cpp:
        * ace/Shared_Memory_SV.cpp:
        * ace/Signal.cpp:
        * ace/Singleton.cpp:
        * ace/Stats.i:
        * ace/Strategies_T.cpp:
        * ace/Stream.cpp:
        * ace/Stream_Modules.cpp:
        * ace/String_Base.i:
        * ace/Svc_Handler.cpp:
        * ace/Synch.cpp:
        * ace/Synch.i:
        * ace/Synch_Options.cpp:
        * ace/Synch_T.cpp:
        * ace/TLI.cpp:
        * ace/TLI_Acceptor.cpp:
        * ace/TLI_Connector.cpp:
        * ace/TLI_Stream.cpp:
        * ace/Task_T.cpp:
        * ace/Thread_Control.cpp:
        * ace/Thread_Manager.cpp:
        * ace/Time_Request_Reply.cpp:
        * ace/Time_Value.cpp:
        * ace/Timer_Hash_T.cpp:
        * ace/Timer_Heap_T.cpp:
        * ace/Timer_List_T.cpp:
        * ace/Timer_Queue_T.cpp:
        * ace/Timer_Wheel_T.cpp:
        * ace/Token.cpp:
        * ace/Token_Collection.cpp:
        * ace/Token_Invariants.cpp:
        * ace/Token_Manager.cpp:
        * ace/Token_Request_Reply.cpp:
        * ace/Trace.cpp:
        * ace/Typed_SV_Message.cpp:
        * ace/Typed_SV_Message_Queue.cpp:
        * ace/UNIX_Addr.cpp:
        * ace/UPIPE_Acceptor.cpp:
        * ace/UPIPE_Connector.cpp:
        * ace/UPIPE_Stream.cpp:
        * ace/Unbounded_Queue.cpp:
        * ace/Unbounded_Set.cpp:
        * ace/Unbounded_Set_Ex.cpp:
        * ace/Vector_T.cpp:
        * ace/WFMO_Reactor.cpp:
        * ace/WFMO_Reactor.i:
        * ace/XTI_ATM_Mcast.cpp:
        * ace/README:
          Added new macro, ACE_HAS_DUMP, and used it to #ifdef out the
          bodies of the dump() methods is it isn't defined.  This will
          help reduce footprint for deployed applications that don't use
          dump().  Currently, it is not defined by default.

Sun Jul 27 12:51:14 2003  Venkita Subramonian  <venkita@cs.wustl.edu>

        * Kokyu/DSRT_Dispatcher_Impl.{cpp,h,i}:
          Deleted these files.

        * Kokyu/Kokyu.dsp:
        * Kokyu/Kokyu_Static.dsp:
          Updated due to the above deletion.

Sun Jul 27 12:13:31 2003  Venkita Subramonian  <venkita@cs.wustl.edu>

        * Kokyu/DSRT_Schedulers.{cpp,h):
          Removed this file.

        * Kokyu/Kokyu_DLL.dsp:
          Replaced with Kokyu.dsp.

        * Kokyu/Kokyu.mwc:
          Deleted this until I am able to get the mwc based generation
          working.

        * Kokyu/Kokyu.mpc:
          Changed "dllflags" keyword to "dynamicflags". This was causing
          build errors in Win2K_VC71_NET_DLL Remedy build. Thanks to
          Johnny Willemsen for pointing this out.

        * Kokyu/Makefile.Kokyu:
          Updated dependencies.

        * Kokyu/Kokyu.dsp:
        * Kokyu/Kokyu_Static.dsp:
        * Kokyu/Kokyu.dsw:
          Updated project and workspace files with newly added DSRT files.

Sat Jul 26 22:08:48 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h (getmacaddress):
          Removed unused local variable.  Resolves compile warnings on
          Sun.

Sat Jul 26 13:25:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_gnuwin32_common.GNU:
          When linking with mingw, also link netapi32 because this is now
          needed because of the ACE_OS::getmacaddress() addition

Fri Jul 25 22:01:14 2003  Venkita Subramonian  <venkita@cse.wustl.edu>
        * Kokyu/Kokyu.dsp:
        * Kokyu/Kokyu_DLL.dsp:
        * Kokyu/Kokyu_Static.dsp:

          No .cpp extension was generated in MPC created .dsp
          file. Corrected this manually.

Fri Jul 25 17:41:08 2003  Venkita Subramonian  <venkita@cse.wustl.edu>

        * Kokyu/Kokyu_DLL.dsp:
        * Kokyu/DSRT_Schedulers.cpp:
        * Kokyu/DSRT_Scheduler.h:

          Removed these files from CVS. Kokyu_DLL.dsp is renamed to
          Kokyu.dsp after conversion to MPC.

        * Kokyu/DSRT_Direct_Dispatcher_Impl_T.{cpp,h}:
        * Kokyu/DSRT_Dispatch_Item_T.{cpp,h,i}:
        * Kokyu/DSRT_Dispatcher_Impl_T.{cpp,h,i}:
        * Kokyu/DSRT_Sched_Queue_T.{cpp,h}:
        * Kokyu/Kokyu_dsrt.{cpp,h,i}

          Added new files to implement dynamic scheduling schedulers.

        * Kokyu/Kokyu.dsp:
        * Kokyu/Kokyu.mwc:
        * Kokyu/Kokyu.mpc:
        * Kokyu/Makefile.Kokyu:
        * Kokyu/Makefile.Kokyu.bor:
        * Kokyu/Makefile.bor:
        * Kokyu/Kokyu.dsw:
        * Kokyu/Kokyu_Static.dsp:
        * Kokyu/Makefile:

          Created MPC file for Kokyu and generated project files from MPC.

        * Kokyu/Kokyu_defs.{cpp,h,i}
        * Kokyu/Default_Dispatcher_Impl.{cpp,h,i}
        * Kokyu/Dispatcher_Impl.{h,cpp,i}
        * Kokyu/Dispatcher_Task.{h,cpp,i}
        * Kokyu/Kokyu.{cpp,h,i}
        * Kokyu/kokyu_export.h

          Reorganized files and updated comments and doxygen documentation.

        * Kokyu/tests/DSRT_MIF/MIF.cpp

          Modified example to reflect new Kokyu dispatcher class.

Thu Jul 24 14:23:44 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/Future.{h,cpp}: Removed the operator new/delete/& so
          that ACE_Future can be stored in STL containers (e.g.,
          sets/maps/etc.).  Thanks to Felix Wyss <FelixW@inin.com>,
          Patrick Bennett <Patrick.Bennett@inin.com>, and Johnny Tucker
          for helping with this.

Fri Jul 25 17:32:58 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/os_include/os_dlfcn.h:
          Define ACE_DEFAULT_SHLIB_MODE to be RTLD_LAZY|RTLD_GLOBAL
          when ACE_HAS_SVR4_DYNAMIC_LINKING, not just for Linux.
          Thanks to Krishnakumar B <kitty@cse.wustl.edu> for suggesting
          this.

        * include/makeinclude/platform_macosx.GNU:  Add with_ld=macosx.
        * include/makeinclude/plafform_g++_common.GNU:
          Don't add "-Wl,-E" to LDFLAGS when with_ld=macosx.  Thanks to
          John Michael Zorko <j.zorko@att.net> pointing out the problem
          and supplying a patch.  Also, thanks to Craig Rodrigues
          <crodrigu@bbn.com> for suggesting we set the default for
          with_ld=gnu and only add "-Wl,-E", which id gnu linker
          specific, if we're using the gnu version of ld.

Fri Jul 25 11:37:09 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/TemplateParser.pm:

          Added the ability to access grouped source files through the
          template.  The grouped_source_files, grouped_header_files, etc.
          can be used if the files are grouped in the mpc file (as they
          currently are in ace.mpc).

        * bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
        * bin/MakeProjectCreator/templates/gnu.mpd:

          Utilize the new template ability and remove the 'gnu_source_files'
          and 'build' references and code.

Fri Jul 25 09:17:39 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/performance_stats.sh:
        * bin/generate_performance_chart.sh: Redefined the range for
          plotting different graphs.

Fri Jul 25 08:53:12 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/performance_stats.sh: Changed the path to mogrify. On
          flamenco.dre it is installed in /usr/local instead of
          /usr/bin/X11. This would break the stats pages at UCI. The pages
          at UCI havent been updated in a long while. Hence shouldnt be a
          big deal.

          With this change the thumbnails shold be fine at dre pages.

Fri Jul 25 11:10:21 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
          Only do a pragma comment with MSVC

        * ace/Makefile.bor:
          Added UUID
        * ace/UUID.h:
          Fixed compile error with Borland

        * ace/UUID.cpp:
          Improved log line.

        * tests/UUIDTest.cpp:
          Fix compile problem in unicode build and ACE_START_TEST to
          get logfile.

        * tests/Tests.bor:
          Added UUIDTest

Fri Jul 25 09:34:11 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
          Also include nb30.h with MinGW and Borland, but don't do a
          pragma comment with MinGW

        * ace/OS.cpp (getmacaddress):
          Fixed incorrect trace, with Borland and MinGW use a reinterpret
          cast instead of a static cast.

Thu Jul 24 17:32:51 2003  Pradeep Gore  <pradeep@oomworks.com>

        * bin/tao_other_tests.lst:

        Added:
        $TAO_ROOT/orbsvcs/examples/Notify/Lanes/run_test.pl: !ST !MINIMUM
        $TAO_ROOT/orbsvcs/examples/Notify/ThreadPool/run_test.pl: !ST !MINIMUM

Thu Jul 24 16:23:53 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/generate_performance_chart.sh: Changed the scale to which
          the graph is plotted.

Thu Jul 24 14:00:29 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/DEV_IO.h (recv_n):
        * ace/DEV_IO.i: The semantics of recv_n () is now changed to have
          a timeout and a byte transferred variable. The interface now has
          the semantics asscoiated with ACE_OS::recv_n () and ACE::recv_n
          () calls. Thanks to Tom Phan <tom.phan@telhub.com>.

Thu Jul 24 15:01:59 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * include/makeinclude/platform_g++_common.GNU:
          Added check for !static_libs_only before setting LDFLAGS +=
          -Wl,-E, since the static_libs and shared_libs variables aren't
          reset until later in wrapper_macros.GNU, e.g., users can either
          set shared_libs=0 or static_libs_only=1 to turn off shared_libs.

Thu Jul 24 13:56:54 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * include/makeinclude/platform_g++_common.GNU:
        * include/makeinclude/platform_linux.GNU:
          Rolled back the part of Wed Jul 23 23:47:52 UTC 2003  Don Hinton
          <dhinton@dresystems.com> that changed LDFLAGS in
          platform_linux.GNU, and instead added the same code to
          platform_g++_common.GNU for shared libs only.  This should
          fix the spike in footprint that showed up this morning due to
          yesterday's change.

Thu Jul 24 01:19:59 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * tests/DLL_Test.dsp:
        * tests/DLL_Test_Impl.dsp:
          Enabled RTTI so we can test dynamic_cast'ing in a dll.

Wed Jul 23 23:47:52 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/os_include/os_dlfcn.h:
          Changed ACE_DEFAULT_SHLIB_MODE to be RTLD_LAZY|RTLD_GLOBAL on Linux
          in order to enable dynamic_cast'ing in shared libraries loaded by
          ACE_DLL.

        * include/makeinclude/platform_linux.GNU:
          Added -Wl,-E to LDFLAGS to add all symbols to the dynamic symbol
          table in order to enable dynamic_cast'ing in shared libraries
          loaded by ACE_DLL.  Thanks to Milan Cvetkovic
          <mcvetkovic@mpathix.com> for reporting this and providing the fix.

        * tests/DLL_Test.cpp:
        * tests/DLL_Test.h:
        * tests/DLL_Test_Impl.cpp:
          Added a dynamic_cast test to the existing DLL_Test.

        * THANKS:
          Added Milan Cvetkovic <mcvetkovic@mpathix.com> to the hall of fame.

Wed Jul 23 12:43:48 2003  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/UUID.cpp:

          Added missing ACE_RCSID macro.

          (UUID_node):

          Use UUID_node::NODE_ID_SIZE instead of the hardcoded constant
          "6".  Improves code maintanability.

          (ACE_UUID):

          Corrected format specifier mismatch warnings in sscanf() call
          exhibited by G++ 3.2.2.  Hexadecimal format specifiers ("%x")
          expect the corresponding argument to be an unsigned int, not a
          signed int.

Wed Jul 23 19:35:27 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * THANKS:
          Added Serkan Unsal <serkan_u2000@yahoo.com> to hall of fame.

Wed Jul 23 18:03:21 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-cygwin32.h:
          Include os_math.h here so it always gets included before
          ACE.h, since math.h defines log2 as macro that conflicts with
          the method ACE::log2().

        * ace/ace/String_Base.cpp:
          Remove #include "ace/streams.h" and let the cpp's that acutally
          use it include it themselves.  This helps reduce both footprint
          and compile-times.  Thanks to Bala Natarajan
          <bala@dre.vanderbilt.edu> for motivating this change.

Wed Jul 23 17:34:56 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Configuration_Import_Export.h:
          Document for ACE_Registry_ImpExp that the value after dword is read
          in hexidecimal format. Thanks to Todd Cooper <todd@DO11073.com> for
          reporting this.

Tue Jul 22 22:46:18 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/OS.h: Fixed a typo in the documentation of read_n ().

Tue Jul 22 23:24:53 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.cpp (ACE_Thread_ID::to_string):
          Fixed WCHAR build errors by making all types char instead of
          ACE_TCHAR and removing ACE_LIB_TEXT macros.

Tue Jul 22 19:20:16 2003  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * ace/ace_dll.dsp:

          Included the UUID generator files into the project to compile on
          windows.

        * tests/tests.dsw:
        * tests/UUIDTest.dsp:

          Updated tests.dsw to include the corresponding UUIDTest.dsp
          project for the unit test UUIDTest which tests the ACE UUID
          generator.

Tue Jul 22 16:43:01 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS.i:
          Changed new rand_r() implementation a little bit

Tue Jul 22 15:12:02 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/iosfwd.h:
          Added #include "ace/streams.h" if __APPLE_CC__ is defined.  This
          fixes problems with gperf hanging on MAC OSX.  Thanks to John
          Michael Zorko <j.zorko@att.net> for reporting the problem and
          supplying the patch.

Tue Jul 22 14:59:59 UTC 2003 Don Hinton  <dhinton@dresystems.com>

        * include/makeinclude/platform_linux.GNU:
          Rolled back Wed Jun 18 17:28:25 2003  Balachandran Natarajan
          <bala@dre.vanderbilt.edu> and added _GNU_SOURCE instead.  If
          _GNU_SOURCE is defined, these defaults plus a few others
          including _XOPEN_SOURCE, get set by default--and defaults can
          and do change over time.  This should also cleanup warnings on
          Debian builds.

Tue Jul 22 10:29:39 2003  Steve Huston  <shuston@riverace.com>

        * ace/OS.cpp: Fixed compile error; #elif should be #else.
        * ace/UUID.cpp: Added #include "ace/Log_Msg.h" to pick up the necessary
          things for doing logging (ACE_DEBUG, etc.).

Tue Jul 22 06:01:03 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * Select_Reactor_T.cpp:
        * Timer_Heap_T.cpp:
        * Timer_List_T.cpp:
        * Timer_Wheel_T.cpp:
          Fixed incorrect ACE_TRACE statements to fix fuzz errors.

Tue Jul 22 05:44:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS.i:
          Added an implementation for rand_r() on Win32. Thanks to
          Kees van Marle <kvmarle@remedy.nl> for noticing the lack of this
          implementation.

Tue Jul 22 00:19:39 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * examples/C++NPv2/Logging_Handler.cpp:
          Added #include "ace/streams.h" to resolve compile error.

Mon Jul 21 22:57:54 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * bin/fuzz.pl:
          Added check for "/**/" comment in pre.h/post.h includes.  Thanks
          to Johnny Willemsen <jwillemsen@remedy.nl> for motivating this.

        * ace/Basic_Types.h:
        * ace/Strategies.h:
        * ace/UUID.h:
        * docs/tutorials/022/Acceptor_Service.h:
        * Kokyu/*.h:
          Added comment that adding "/**/" between the #include and the
          filenames in order to improve doxygen documentation.

Mon Jul 21 22:52:46 2003  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * ace/OS.h:
        * ace/OS.cpp:

          Moved #include <net/if_arp.h> from OS.h to OS.cpp. This
          should resolve the compile errors on solaris.

Mon Jul 21 08:59:14 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/UUID.cpp (get_systemtime):

          Temporary fix to get the compiles rolling again.

Mon Jul 21 01:56:44 2003  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * ace/OS.h:
        * ace/OS.cpp:

          Added method getmacaddress () to get the mac address of the host
          for generating UUIDs

          Added to_string () method to ACE_Thread_ID class to create a
          string representation of ACE_Thread_ID.

        * ace/config-win32-common.h:

          Included file nb30.h and library netapi32.lib required for
          obtaining MACaddress on windows.

        * ace/UUID.h:
        * ace/UUID.cpp:
        * ace/UUID.i:

          Files added to generate UUID (Universally Unique ID) based on
          expired IETF draft titled "UUIDs and GUIDs". Modifications were
          made to the UUID generation as defined by the specification to
          add thread and process ids. This was done by adding a new
          variant 0xc0 not defined by the specification. By default only
          the time variant version of the UUID as defined by the spec is
          generated.

        * tests/Makefile.tests:
        * tests/UUIDTest.cpp:

          Simple test added to verify ACE UUID generation.

Sun Jul 20 14:14:46 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/NT_Service.i (ACE_NT_Service): Set dwWaitHint to 0 in the
          constructor.  Thanks to Emiliano Berenbaum <eberenb@yahoo.com>
          for reporting this.

Fri Jul 18 18:59:46 2003  Douglas C. Schmidt  <schmidt@ace.cs.wustl.edu>

        * ACE-INSTALL.html: Clarified that ACE+TAO no longer build with
          MSVC++ 5.x or earlier.  Thanks to Amol Tambe
          <Amol.Tambe@ideas.com> for reporting this.

Sat Jul 19 18:38:50 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * docs/ACE-guidelines.html:
          Added comment that adding "/**/" between the #include and the
          file name prevents Doxygen from including the file in the file
          reference tree graphs, and should be used with pre.h and
          post.h--which makes the large ones much easier to understand.

        * ace/*.h:
        * ace/CLASSIX/*.h:
        * ace/QoS/*.h:
        * ace/RMCast/*.h:
        * ace/SSL/*.h:
        * ace/os_include/*.h:
        * ace/os_include/arpa/*.h:
        * ace/os_include/net/*.h:
        * ace/os_include/netinet/*.h:
        * ace/os_include/sys/*.h:
        * performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.h:
        * performance-tests/Server_Concurrency/Queue_Based_Workers/RT_CORBA_Workers.h:
        * tests/Service_Config_DLL.h:
          Added "/**/" between the #include and filename for pre.h and
          post.h so Doxygen won't include them in the file reference tree
          graphs.

Fri Jul 18 17:58:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Asynch_IO.h:
        * ace/Local_Tokens.h:
        * ace/Service_Types.h:
          Fixed doxygen warnings.

Fri Jul 18 10:36:51 2003  Krishnakumar B  <kitty@nospam.invalid.domain>

        * THANKS: Added Dieter Knüppel <dknueppel@datus.com> to the
          contributors list.

Thu Jul 17 15:02:56 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * examples/C++NPv1/Logging_Handler.cpp:
          Added #include "ace/streams.h".

Thu Jul 17 12:49:39 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * examples/NT_Service/main.cpp:
          Added #include "ace/streams.h".

Thu Jul 17 06:21:30 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:

          Changed the name of borland projects to just be the project name
          .bor.

        * bin/MakeProjectCreator/USAGE:
        * bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/Driver.pm:
        * bin/MakeProjectCreator/modules/NMakeWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/Options.pm:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Changed the default workspace names for nmake and borland to
          Makefile.  Additionally, I added an option (-make_coexistence)
          to allow the gnuace, nmake and borland types to coexist.  This
          option causes the default workspace names for nmake and borland to
          work as they previously had.  The nmake workspace would be
          workspace name .nmake and the borland workspace would be named
          Makefile.bor.

Wed Jul 16 15:29:37 2003  Justin Michel  <michel_j@ociweb.com>

        * bin/create_ace_build.pl:

          Fixed to link include/makeinclude/*.bor files.
          A few more link exclusions were added.

Wed Jul 16 15:27:37 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Dev_Poll_Reactor.h (find_handler):

          Pure virtual specifier for find_handler() was a cut and paste
          error.

Wed Jul 16 08:38:49 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/openssl.mpb:
        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/em3vcpdll.mpt:
        * bin/MakeProjectCreator/templates/em3vcpdllexe.mpt:
        * bin/MakeProjectCreator/templates/em3vcplibexe.mpt:
        * bin/MakeProjectCreator/templates/gnu.mpd:
        * bin/MakeProjectCreator/templates/gnudll.mpt:
        * bin/MakeProjectCreator/templates/gnuexe.mpt:
        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/makedll.mpt:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/nmakedll.mpt:
        * bin/MakeProjectCreator/templates/nmakeexe.mpt:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc6dspdll.mpt:
        * bin/MakeProjectCreator/templates/vc6dspdllexe.mpt:
        * bin/MakeProjectCreator/templates/vc6dsplibexe.mpt:
        * bin/MakeProjectCreator/templates/vc7.mpd:
        * bin/MakeProjectCreator/templates/vc7dll.mpt:
        * bin/MakeProjectCreator/templates/vc7exe.mpt:

          Switched ssl over to use the feature based style instead of the
          template style.  Now, the ssl related libraries will only be added
          to the generated projects if the ssl feature is enabled.

Wed Jul 16 08:00:10 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/global.features:
        * bin/MakeProjectCreator/config/zzip.mpb:
        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/bordll.mpt:
        * bin/MakeProjectCreator/templates/borexe.mpt:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/em3vcpdll.mpt:
        * bin/MakeProjectCreator/templates/em3vcpdllexe.mpt:
        * bin/MakeProjectCreator/templates/em3vcplib.mpt:
        * bin/MakeProjectCreator/templates/em3vcplibexe.mpt:
        * bin/MakeProjectCreator/templates/gnu.mpd:
        * bin/MakeProjectCreator/templates/gnudll.mpt:
        * bin/MakeProjectCreator/templates/gnuexe.mpt:
        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/makedll.mpt:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/nmakedll.mpt:
        * bin/MakeProjectCreator/templates/nmakeexe.mpt:
        * bin/MakeProjectCreator/templates/va4icc.mpd:
        * bin/MakeProjectCreator/templates/va4iccdll.mpt:
        * bin/MakeProjectCreator/templates/va4iccdllexe.mpt:
        * bin/MakeProjectCreator/templates/va4icclib.mpt:
        * bin/MakeProjectCreator/templates/va4icclibexe.mpt:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc6dspdll.mpt:
        * bin/MakeProjectCreator/templates/vc6dspdllexe.mpt:
        * bin/MakeProjectCreator/templates/vc6dsplib.mpt:
        * bin/MakeProjectCreator/templates/vc6dsplibexe.mpt:
        * bin/MakeProjectCreator/templates/vc7.mpd:
        * bin/MakeProjectCreator/templates/vc7dll.mpt:
        * bin/MakeProjectCreator/templates/vc7exe.mpt:

          Switched the zzip configuration information over to use the
          feature based style instead of doing it within the templates.
          Now, to enable zzip use the -feature_file option to specify a file
          that has 'zzip=1' and 'zlib=1'.  For more information on the
          -feature_file option see the README.
           (or use bin/MakeProjectCreator/config/default.features)

        * bin/MakeProjectCreator/config/zziplib.mpt:

          Removed this file.

Wed Jul 16 12:15:34 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/IOStream_T.cpp:
        * ace/config-borland-common.h:
        * ace/config-psos-diab-mips.h:
        * ace/config-psos-diab-ppc.h:
        * ace/config-psos-diab.h:
        * ace/config-psos-tm.h:
        * ace/config-psosim-g++.h:
        * ace/config-vxworks5.x.h:
        * ace/config-win32-ghs.h:
        * ace/iosfwd.h:
          Removed all references to ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION.
          It was used to include ace/iosfwd.h instead of ace/streams.h,
          but files should only include one they need instead of always
          including ace/streams.h, which includes <iostream> if available
          and unnecesarily increases compile times.  Thanks to Carlos O'Ryan
          <coryan@atdesk.com> motivating this.

        * ace/OS.h:
        * ace/Basic_Types.h:
          Removed the #ifdefs for ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION and
          always include ace/iosfwd.h.

        * ace/OS_Log_Msg_Attributes.h:
          Replaced include of ace/streams.h with ace/iosfwd.h in order
          to improve compile times

        * performance-tests/SCTP/Options_Manager.cpp:
        * performance-tests/SCTP/SOCK_SEQPACK_clt.cp:
        * performance-tests/SCTP/SOCK_SEQPACK_srv.cpp:
        * performance-tests/SCTP/SOCK_STREAM_clt.cpp:
        * performance-tests/SCTP/SOCK_STREAM_srv.cpp:
          Added include of ace/streams.h, needed due to the above change.

Tue Jul 16 11:43:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/tests.mpc:
          Some tests where based on aceexe, changes this to acetest. This
          fixes problems with vc71.

Tue Jul 15 06:22:55 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/global.features:
        * bin/MakeProjectCreator/config/zlib.mpb:

          Added the zlib feature (disabled by default).  This will allow
          users to enable the zlib feature and pull in include paths, lib
          paths and library which will be dependent upon the ZLIB_ROOT
          environment variable.

        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Fixed a bug where false warnings would be displayed if
          MPC_VERBOSE_ORDERING was set.

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Added a rule to create the libout directory.
          Fixed a bug in the gnu template that only affected TAO libraries
          that had 'requires' or 'avoids'.

        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/makedll.mpt:

          Fixed a problem with cppflags and dependencies.

        * bin/depgen.pl:

          Ignore unknown options instead of causing an error.

        * bin/ChangeLogEditor/FileLocator.pm:

          Fixed a bug where the correct CVSROOT value wasn't being used.

Mon Jul 14 18:33:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_errno.h:
          When building for VxWorks also include errnoLib.h

        * ace/OS.cpp (inet_aton):
          Fixed VxWorks specific implementation. Thanks to Eric Held
          <Eric.Held@harris.com> for reporting this, this fixes bugzilla
          entry [1484]

        * THANKS:
          Added Eric Held <Eric.Held@harris.com>

        * bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
          Removed windows specific use of cmd. This is not needed and
          causes problems when using MinGW with the MSYS shell on windows.

        * include/makeinclude/platform_cygwin32.GNU:
          Threading compiles with cygwin again, so no need anymore to set
          threads to 0 when not defined.

        * ChangeLog:
          Fixed fuzz errors about backslashed in file path

        * tests/Logging_Strategy_Test.cpp:
          Removed not needed newline.

        * tests/MEM_Stream_Test.cpp:
          Fixed typo in comment

        * tests/run_test.lst:
          The FIFO_Test doesn't run with Cygwin.

Mon Jul 14 11:16:25 2003  Craig Rodrigues <crodrigu@bbn.com>

        * ace/POSIX_Proactor.cpp: FreeBSD defines the sysconf value
          for _SC_AIO_LISTIO_MAX to 16, and the sysconf value for
          _SC_AIO_MAX to be 1024.  The lower value must be assigned to
          aiocb_list_max_size_ otherwise aio_suspend() will fail.  There
          was already already some logic in here to support HPUX that also
          works for FreeBSD, so use that.

Sat Jul 12 17:55:14 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/Conn_Test.cpp:

          Added explicit template instantiation for ACE_Connector_Base.

Fri Jul 11 16:30:02 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/MT_Reference_Counted_Event_Handler_Test.cpp (run_main):

          The string in ACE_START_TEST was incorrect.

Fri Jul 11 01:08:41 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ACEXML/common/Mem_Map_Stream.cpp:
        * apps/Gateway/Gateway/Connection_Handler_Connector.cpp:
        * apps/Gateway/Peer/Peer.cpp:
        * apps/JAWS/clients/Blobby/Blob.cpp:
        * apps/JAWS/clients/Caching/http_handler.cpp:
        * examples/ASX/Event_Server/Transceiver/transceiver.cpp:
        * examples/Connection/blocking/SPIPE-connector.cpp:
        * examples/Connection/misc/test_upipe.cpp:
        * examples/Connection/non_blocking/test_lsock_connector.cpp:
        * examples/Connection/non_blocking/test_sock_connector.cpp:
        * examples/Connection/non_blocking/test_spipe_connector.cpp:
        * examples/Connection/non_blocking/test_tli_connector.cpp:
        * examples/Web_Crawler/URL_Visitor.cpp:
        * netsvcs/lib/TS_Clerk_Handler.cpp:
        * tests/Cached_Accept_Conn_Test.cpp:
        * tests/Cached_Conn_Test.cpp:
        * tests/Dev_Poll_Reactor_Test.cpp:
        * tests/NonBlocking_Conn_Test.cpp:
        * tests/Priority_Reactor_Test.cpp:
        * tests/Reactor_Performance_Test.cpp:
        * tests/TP_Reactor_Test.cpp:
        * tests/CLASSIX/CLASSIX_Con_Acc_Test.cpp:

          Added explicit template instantiation for ACE_Connector_Base.

Fri Jul 11 00:38:16 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Dev_Poll_Reactor.h (ACE_Dev_Poll_Reactor):

          Added find_handler() method.

Thu Jul 10 19:51:52 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/Conn_Test.cpp:

          Fixed incorrect template instantiation for
          ACE_NonBlocking_Connect_Handler.

Thu Jul 10 15:11:55 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/MT_Reference_Counted_Event_Handler_Test.dsp
        * tests/MT_Reference_Counted_Notify_Test.dsp
        * tests/NonBlocking_Conn_Test.dsp
        * tests/Reactor_Registration_Test.dsp
        * tests/Reference_Counted_Event_Handler_Test.dsp
        * tests/Timer_Cancellation_Test.dsp
        * tests/Timer_Queue_Reference_Counting_Test.dsp
        * tests/WFMO_Reactor_Test.dsp

          Updated project files to add Main.cpp.

Wed Jul 09 22:48:48 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/Thread_Pool_Reactor_Resume_Test:

          Removed the lame reference counting scheme in this test and
          replaced it with the new and proper reference counting.

Wed Jul 09 21:37:52 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/MT_Reactor_Timer_Test.cpp (handle_close):

          Removed unused arg warning.

Wed Jul 09 21:22:24 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Timer_Heap_T.cpp (insert):

          The decision to grow the heap was made on this formula:

            if (this->cur_size_ + 2 >= this->max_size_)

          though the correct decision should have been:

            if (this->cur_size_ + this->cur_limbo_ + 2 >= this->max_size_)

          Without this, tests/Timer_Queue_Test was failing with
          cur_size_ = 15, cur_limbo_ = 20 and max_size_ = 35, but insert()
          did not regrow the heap and eventually schedule() failed.

Wed Jul 09 13:17:57 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Select_Reactor_Base.cpp (purge_pending_notifications):

          Fixed build problem when ACE_HAS_REACTOR_NOTIFICATION_QUEUE,
          there was a typo in the name of a local variable.  Thanks to
          Carlos for pointing this out.

Tue Jul 08 17:28:58 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/MT_Reactor_Timer_Test.cpp (handle_close):

          Not sure why handle_close() was trying to remove the handler
          from the Reactor.  handle_close() is called as a result of being
          removed from the Reactor.  No need to remove again.

Tue Jul 08 15:02:48 2003  Irfan Pyarali  <irfan@oomworks.com>

        * examples/Reactor/Misc/pingpong.cpp:

          Included "ace/Test_and_Set.h" explicitly.

Tue Jul 08 14:49:38 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Timer_List_T:
        * ace/Timer_Wheel_T:

          Fixed unused arg warning in cancel_i().

Mon Jul  7 23:17:21 2003  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Thread_Manager.cpp (spawn_i): Change to always return the
          thread "handle" if users ask for it.  For some reason, we did
          not return this value on some platforms, although it's always
          been available.  Thanks to Robin Farine
          <robin.farine@acn-group.ch> for reporting this.   [Bug 1546]

Mon Jul 07 18:00:38 2003  Irfan Pyarali  <irfan@oomworks.com>

        * The following changes are related to improving memory management
          of Event Handlers when they interact with Reactors (and Timer
          Queues).  When a handler is registered with the Reactor, the
          Reactor increments the reference count on the handler.  The
          Reactor also increments this reference count when making upcalls
          on the handler.  The reference count is decremented when an
          upcall completes or when the handler is removed from the
          Reactor.

          This mechanism is similar to what happens between POAs and
          Servants and it allows for the safe deletion of handlers.  This
          mechanism is particularly need for multi-threaded applications
          that can have multiple threads executing upcalls on a handler
          that needs to be shutdown in a safe manner.  The following
          illustrates an example of how this mechanism works:

          - When a handler is created, it reference count is one.

          - After the handler is registered with the Reactor, it reference
          count becomes two.

          - At this point, the handler creator can let go of the handler
          reference, bringing down the reference count to one.

          - For each thread executing upcalls on the handler, the Reactor
          increments the reference count by one. So if three threads were
          simultaneously making upcalls on a handler, the reference count
          would be four.

          - Assuming an external event (and thread) decides to close the
          handler.  It simply removes the handler from the Reactor.  This
          decreases the reference count to three.

          - As each thread completes their upcall, the reference reduces.

          - Once the final thread exits the upcall, the reference reaches
          zero, and the handler is finally deleted.

          This mechanism ensures that the handler is not deleted until the
          final upcall thread exits the handler.

          Reference counting on handlers is optional and is disabled by
          default.  To enable reference counting on a handler, reset its
          reference counting policy to "ENABLED".

          To facilitate reference counting of handlers, an
          ACE_Event_Handler_var class was added.  This class is akin to
          the PortableServer::ServantBase_var class.

          Similar reference counting related changes were made to the
          Timer Queues so that handlers can be used in a thread safe
          manner with the queues.

          The Connector implementation was completely revised to utilize
          the new memory management mechanisms and remove existing
          concurrency bugs.

          Several new examples/tests were added:

          - tests/Reference_Counted_Event_Handler_Test
          - tests/MT_Reference_Counted_Event_Handler_Test
          - tests/MT_Reference_Counted_Notify_Test
          - tests/Timer_Queue_Reference_Counting_Test
          - tests/NonBlocking_Conn_Test
          - tests/Reactor_Registration_Test
          - tests/WFMO_Reactor_Test
          - tests/Timer_Cancellation_Test

          Details follow below:

        Fri May 09 20:13:37 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Event_Handler:

          Added reference counting capabilities to the event handler.  The
          reference counting will be used for event handler memory
          management by Reactors that will call add_reference() and
          remove_reference() during registrations, removals, and upcalls.
          This mechanism is similar to the protocol between servants and
          POAs.

          Reference counting is configurable and can be controlled by the
          Reference_Counting_Policy which is disabled by default.

          Added a ACE_Event_Handler_var auto pointer like class for
          Event Handlers.  This class calls
          ACE_Event_Handler::remove_reference() in its destructor.

          Added reactor_timer_interface() method that returns the
          Reactor's timer related interface.

        * ace/Reactor_Timer_Interface.h:

          Added a new class ACE_Reactor_Timer_Interface that contains
          timer related (pure virtual) methods of the Reactor.  This
          allows us to make timer related calls on the Reactor from the
          Timer Queue without having to include Reactor.h.

      * ace/Reactor:

          Vastly improved documentation, specially with respect to how the
          reference counting works.

          Made the Reactor class inherit from ACE_Reactor_Timer_Interface
          so that timer related calls can be made on the Reactor from the
          Timer Queue without having to include Reactor.h.

        * ace/Reactor:
        * ace/Reactor_Impl:
        * ace/Select_Reactor_T:
        * ace/WFMO_Reactor:

          Added a new find_handler() method that returns the event handler
          associated with a <handle>.

        * ace/Select_Reactor_Base.cpp:

          - bind(): Make sure that the user is not registering a different
          handler for an existing handle in the
          Reactor_Handler_Repository.  Also, if it is a new entry, call
          add_reference() if reference counting is needed.

          - unbind(): Call remove_reference() if the removal is complete
          and reference counting is needed. Also, Bala's change:

          Mon Apr  7 16:58:55 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

          is no longer necessary since handle_close() is now only called
          once the Reactor state has been completely updated.

          - mask_ops(): If the handle is not suspended, then set the ops
          on the <wait_set_>, otherwise set the <suspend_set_>.

          - handler_i(): Add to reference count of event handler before
          returning to the user if reference counting is needed.

          - ACE_Select_Reactor_Notify::dispatch_notify():
          - ACE_Select_Reactor_Notify::purge_pending_notifications():
          - ACE_Select_Reactor_Notify::notify():

          Added reference counting for notifies.

        * ace/Select_Reactor_T:

          notify_handle(): Added reference counting to upcalls.

        * ace/TP_Reactor:

          - remove_handler(): All remove_handler() specializations can be
          removed since there no longer is the requirement of calling
          handle_close() from outside the Reactor lock.

          - handle_timer_events(): Call preinvoke() and postinvoke() on
          the timer queue so that timer upcalls can be reference counted.

          - handle_socket_events(): Added reference counting to upcalls.

          - mask_ops(): Specialization no longer necessary since the base
          class now does the right thing.

        * ace/WFMO_Reactor:

          - handler(): Original handler() method was not locked.

          - bind_i(): Call add_reference() if reference counting is
          needed.

          - make_changes_in_current_infos():
          - make_changes_in_suspension_infos():
          - make_changes_in_to_be_added_infos():

          The iteration loop was incorrect.  When an entry was replaced
          from the one at the end, the newly shifted entry was skipped and
          not evaluated.  make_changes_in_to_be_added_infos() did not need
          this change since entries are not moved around in the
          <to_be_added_info_> set.

          Also, call remove_reference() if reference counting if needed.

          - complex_dispatch_handler(): Added reference counting to
          upcalls.

          - ACE_WFMO_Reactor_Notify::purge_pending_notifications():
          - ACE_WFMO_Reactor_Notify::notify():
          - ACE_WFMO_Reactor_Notify::handle_signal():

          Added reference counting for notifies.

        * ace/Timer_Queue_T:

          - Not sure why we were including Test_and_Set.h when we only
          needed to include Event_Handler.h.

          - dispatch_info() and dispatch_info_i(): Made these virtual so
          that they can be specialized.

          - ACE_Timer_Node_Dispatch_Info_T: Added <recurring_timer_> so
          that we can determine if we need to call remove_reference() if
          it is not a recurring timer and if reference counting is
          required.  This value is passed to the timeout() method of the
          upcall functor.

          - timeout(): When handle_timeout() returns -1, invoke
          cancel_timer() on the reactor if the event handler has a valid
          reactor, otherwise invoke cancel() on the timer queue.  It is
          necessary to get the same locking as was used when registering
          the timer, which was potentially done holding the reactor lock
          while the timer queue could have been configured with a null
          lock.

          - schedule():  No longer a pure virtual method.  It now grabs
          the lock, call schedule_i(), and finally calls registration() on
          the upcall functor.

          - registration(): This method is called when a timer is
          registered.

          - preinvoke(): Invokes add_reference() on the event handler if
          reference counting is required before making the upcall.

          - upcall(): Changed the signature to pass
          ACE_Timer_Node_Dispatch_Info_T instead of the individual
          parameters.

          - postinvoke(): Invokes remove_reference() on the event handler
          if reference counting is required after making the upcall.

          - cancel_type() and cancel_timer(): Split cancellation() into
          two methods.  cancel_timer() is called when a timer is
          cancelled.  cancel_type() is called when a handler is
          cancelled. Also added <dont_call> parameter to these method.
          cancel_timer() will be used for reference counting and
          cancel_type() will be used for calling handle_close().

          - expire(): Call preinvoke() before calling upcall() and
          postinvoke() after calling upcall().

          - deletion(): Now calls cancel_type() and cancel_timer() for
          each timer remaining in the queue.

        * ace/Timer_List_T:
        * ace/Timer_Wheel_T:
        * ace/Timer_Heap_T:
        * ace/Timer_Hash_T:

          - schedule_i(): This method replaces the old schedule() method.
          Locking is not necessary anymore.

          - cancel(): This method will call cancel_timer() once for each
          timer cancelled and cancel_type() once for each handler
          cancelled.

          - cancel_i(): The <skip_close> check will be performed in the
          upcall functor.

        * ace/Timer_Heap_T:

          - ~ACE_Timer_Heap_T(): Don't use <cur_size_> for the for loop
          since it reduces after free_node() is called.

          - cancel(): Not sure why this is the only cancel() where the
          upcall is made outside the lock.

        * ace/Timer_Wheel_T:

          - expire(): Made this method similar to Timer_Queue_T::expire()
          by (a) invoking preinvoke() before calling upcall() and invoking
          postinvoke() after calling upcall() and (b) making sure that we
          skip past time values that have already "expired" when
          rescheduling.

        * ace/Timer_Hash_T:

          - ACE_Timer_Hash_Upcall: Updated this upcall functor to match
          the new APIs.

          - ACE_Timer_Hash_Upcall::registration():
          - ACE_Timer_Hash_Upcall::cancel_type():
          - ACE_Timer_Hash_Upcall::cancel_timer():

          Nothing to be done in these methods since
          registration/cancellation will be handled by the upcall functor
          of the timer hash.

          - ACE_Timer_Hash_Upcall::preinvoke():
          - ACE_Timer_Hash_Upcall::postinvoke():
          - ACE_Timer_Hash_Upcall::preinvoke():

          Assert that these methods never get invoked since we don't
          invoke expire() on the buckets.

          - ACE_Timer_Hash_Upcall::deletion(): Call up to the upcall
          functor of the timer hash since the timer hash does not invoke
          deletion() on its upcall functor directly.  This is because
          entries are actually registered with the buckets, and this
          method will be invoked when the buckets are cleaned up.

          - Hash_Token: Added TYPE information to the token.  This
          required templatizing Hash_Token since TYPE is a template
          parameter.

          - reschedule(): Cancel the old timer before registering the new
          one.  Otherwise, the old timer will always remain in the
          buckets.  Also, make sure that the new bucket position is noted.

          - dispatch_info_i(): This method needs to be specialized to give
          the original act and not the modified act.

          - free_node(): Needs to cancel the timer in addition to freeing
          the node.

          - expire(): Only call cancel() for timers that don't need to be
          rescheduled.  reschedule() takes care of removing the old timer
          for timers that need to be rescheduled.  Also, made this method
          similar to Timer_Queue_T::expire() by invoking preinvoke()
          before calling upcall() and invoking postinvoke() after calling
          upcall().

        * ace/Proactor:

          Updated ACE_Proactor_Handle_Timeout_Upcall upcall functor to
          match the new APIs.

        * ace/Connector:

          Completely reworked the Connector to utilize the reference
          counting provided by the Reactor.  This new design fixes bugs
          1405 and 1408.

          - There used to be a hash map that mapped handles to service
          handlers.  There is no need for this map since the Reactor
          already keeps this mapping.  We now keep a simple handle set to
          remember the non-blocking connects in progress.  This will help
          when the Connector is closing down and we need to cancel the
          non-blocking connections in progress.

          - The Connector no longer needs to inherit from
          ACE_Service_Object since it does not register with the Reactor.
          We now use ACE_NonBlocking_Connect_Handler for handling
          non-blocking connects. The resume(), suspend(), and init()
          no-ops, and fini() and info() were removed.

          - The <mutex_> is no longer needed since we use the Reactor lock
          to do all our synchronization.  This will solve bug 1408.

          - We no longer need the <closing_> flag.

          - Need to add a <reactor_> field since the Connector is no
          longer an event handler.

          - Reference counting of ASTs is no longer needed since event
          handlers are reference counted.

          Thanks to Andrew Voumard <andrewv@melbpc.org.au> for helping
          with this.

        * tests/Reference_Counted_Event_Handler_Test:

          This test is used to check reference counting of the Event
          Handler when it interacts with the Reactor.

        * tests/MT_Reference_Counted_Event_Handler_Test:

          This test tries to represents what happens in the TAO ORB wrt to
          event handlers, reactors, timer queues, threads, and connection
          caches, minus the other complexities.  The following three
          Reactors are tested: Select, TP, and WFMO.

          The test checks proper use and shutting down of client-side
          event handlers when it is used by invocation threads and/or
          event loop threads.  Server-side event handlers are either
          threaded or reactive. A purger thread is introduced to check the
          connection recycling and cache purging.  Nested upcalls are also
          tested.

        * tests/MT_Reference_Counted_Notify_Test:

          This test is used to check reference counting of the event
          handlers when it interacts with the reactor notification
          mechanism.

        * tests/Timer_Queue_Reference_Counting_Test:

          New test is used to check reference counting of the Event
          Handler when it interacts with Timer Queues.

        * tests/NonBlocking_Conn_Test:

          This test checks for the proper working of the following:
          - blocking connections
          - blocking connections with timeouts
          - non-blocking connections
          - non-blocking connections without waiting for completions
          - non-blocking connections with timeouts

        * tests/Reactor_Registration_Test:

          This is a test of registering handlers with the Reactor.

        * tests/WFMO_Reactor_Test:

          New test of the WFMO_Reactor.  It makes sure that removals and
          suspensions work correctly.

        * tests/Timer_Cancellation_Test:

          A test to ensure the timer cancellation works correctly.

        * tests/Makefile:
        * tests/Makefile.am:
        * tests/Makefile.bor:
        * tests/run_test.lst:
        * tests/tests.icp:
        * tests/tests.mpc:
        * tests/tests.dsw:

          Added new tests:

          - MT_Reference_Counted_Event_Handler_Test
          - MT_Reference_Counted_Notify_Test
          - NonBlocking_Conn_Test
          - Reactor_Registration_Test
          - Reference_Counted_Event_Handler_Test
          - Timer_Cancellation_Test
          - Timer_Queue_Reference_Counting_Test
          - WFMO_Reactor_Test

        * tests/Conn_Test.cpp:

          Updated template instantiations.

        * tests/icc.bat:
        * tests/run_tests.bat:
        * tests/run_tests.psosim:

          Removed this file since it has become obsolete.

        Wed May 14 17:56:13 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/OS.i:

          - event_timedwait(): For relative times, the <timeout> parameter
          was being modified.  Instead use a stack variable such that the
          <timeout> parameter is not modified.

        * ace/Timer_Hash_T:

          - expire(): Remove nodes from the buckets instead of simply
          getting them and canceling them later.  Also, if timers were
          expired, find the new earliest time.

          - reschedule(): No need to cancel the timer node since it is now
          removed from the bucket in expire().

          - free_node(): No need for this function since nodes are removed
          from the bucket in expire().

          - cancel(): No need to pass <act> to bucket's cancel() since the
          act comes from the Hash Token.  Also, only perform upcall and
          related cleanup on successful bucket cancel.

          - Added asserts in the code since there is not enough error
          checking (and recovery) going on.

        * ace/Reactor:
        * ace/Reactor_Impl:
        * ace/Select_Reactor_T:
        * ace/WFMO_Reactor:

          Renamed handler() to find_handler() since ACE_HANDLE is an "int"
          on UNIX platforms and that causes ambiguity between
          handler(ACE_HANDLE) and handler(int).

        * ace/Select_Reactor_Base.cpp (unbind):

          unbind() and bind(): Minor fixes for UNIX specific code.

        * ace/SOCK_SEQPACK_Association.cpp:

          Added template instantiation for ACE_Auto_Array_Ptr<sockaddr_in>.

        * ace/Connector.cpp:

          cancel() and close(): Changed calls from Reactor::handler() to
          Reactor::find_handler().

        * tests/MT_Reference_Counted_Notify_Test.cpp:
        * tests/NonBlocking_Conn_Test.cpp:
        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:
        * tests/Reference_Counted_Event_Handler_Test.cpp:
        * tests/Timer_Queue_Reference_Counting_Test.cpp:

          Added template instantiations.

        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:

          - main(): Added code to ignore SIGPIPE.

          - test(): Converted this into template class so that multiple
          instances of reactor implementation can be created.

          - Added additional asserts.

        Thu May 15 18:12:10 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/WFMO_Reactor (find_handler):

          Fixed minor oversights.

        * ace/Timer_Hash_T.cpp:
        * ace/Connector.cpp:

          Fixed unused arg warnings.

        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:

          - Added a Pipe class. It is a replica of the ACE_Pipe class.
          Only difference is that this class always uses two sockets to
          create the pipe, even on platforms that support pipes.

          - Removed some test cases that don't work on Linux.

        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:
        * tests/MT_Reference_Counted_Notify_Test.cpp:
        * tests/Reference_Counted_Event_Handler_Test.cpp:
        * tests/Reactor_Registration_Test.cpp:
        * tests/Timer_Cancellation_Test.cpp:
        * tests/Timer_Queue_Reference_Counting_Test.cpp:

          - Fixed member ordering in constructors.
          - Fixed unused arg warnings.

        Thu May 15 19:46:49 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ACEXML/common/Mem_Map_Stream.cpp:
        * apps/Gateway/Gateway/Connection_Handler_Connector.cpp:
        * apps/Gateway/Peer/Peer.cpp:
        * apps/JAWS/clients/Blobby/Blob.cpp:
        * apps/JAWS/clients/Caching/http_handler.cpp:
        * examples/ASX/Event_Server/Transceiver/transceiver.cpp:
        * examples/Connection/blocking/SPIPE-connector.cpp:
        * examples/Connection/misc/test_upipe.cpp:
        * examples/Connection/non_blocking/test_lsock_connector.cpp:
        * examples/Connection/non_blocking/test_sock_connector.cpp:
        * examples/Connection/non_blocking/test_spipe_connector.cpp:
        * examples/Connection/non_blocking/test_tli_connector.cpp:
        * examples/Web_Crawler/URL_Visitor.cpp:
        * netsvcs/lib/TS_Clerk_Handler.cpp:
        * tests/Cached_Accept_Conn_Test.cpp:
        * tests/Cached_Conn_Test.cpp:
        * tests/Dev_Poll_Reactor_Test.cpp:
        * tests/Priority_Reactor_Test.cpp:
        * tests/Reactor_Performance_Test.cpp:
        * tests/TP_Reactor_Test.cpp:
        * tests/CLASSIX/CLASSIX_Con_Acc_Test.cpp:

          Fixed Connector related template instantiations.

        Fri May 16 16:34:35 2003  Irfan Pyarali  <irfan@oomworks.com>

        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:
        * tests/Timer_Queue_Reference_Counting_Test.cpp (cancellation_test):

          Fixed static array initialization warnings.

        Tue May 20 18:33:07 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/Connector:

          Reverted the Connector to inherit from ACE_Service_Object again.
          Even though the Connector no longer registers with the Reactor,
          it still needs to inherit from ACE_Service_Object so that it can
          be used through the Service Configurator primarily for dynamic
          linking.  The resume(), suspend(), and init() no-ops, and fini()
          and info() were restated.

        Mon Jun 30 16:31:33 2003  Irfan Pyarali  <irfan@oomworks.com>

        * ace/SSL/ACE_SSL_LIB.dsp:

          Fixed the project names - they should be:

          # Name "ACE_SSL_LIB - Win32 Static Release"
          # Name "ACE_SSL_LIB - Win32 Static Debug"

          instead of:

          # Name "ACE_SSL_LIB - Win32 Release"
          # Name "ACE_SSL_LIB - Win32 Debug"

        Wed Jul 02 15:31:33 2003  Irfan Pyarali  <irfan@oomworks.com>

        * examples/Connection/non_blocking/CPP-connector.cpp:

          handle_close() on the Connector was being specialized to know
          when the connection was not successful.  This is not the correct
          approach in the first place since one should look for close() on
          the service handler.  In addition, handle_close() is no longer
          used by ACE_Connector.  Therefore, I changed this to use close()
          on the service handler.

        * apps/JAWS/clients/Caching/http_handler.h:

          Included "ace/Svc_Handler.h" explicitly.

        * examples/Logger/Acceptor-server/server_loggerd.cpp:

          Included "ace/Test_and_Set.h" explicitly since
          ace/Timer_Queue_T.h is no longer including it.

        Thu Jun 26 17:36:13 2003  Irfan Pyarali  <irfan@oomworks.com>

        * bin/msvc_auto_compile.pl:

          Added -tests_TAO and -examples_TAO options to make all projects
          in TAO tests and TAO examples.

        Thu May 22 14:13:37 2003  Irfan Pyarali  <irfan@oomworks.com>

        * Merged Reactor_RefCount branch with the main truck since all ACE
          level changes are now complete.  New branch is
          Reactor_RefCount_1.

        Tue May 27 19:59:25 2003  Irfan Pyarali  <irfan@oomworks.com>

        * Merged Reactor_RefCount_1 branch with the main truck to avail
          new changes by Bala to the TAO connection handlers.  New branch
          is Reactor_RefCount_2.

Mon Jul  7 12:38:01 2003  Douglas C. Schmidt  <schmidt@ace.cs.wustl.edu>

        * ace/Message_Queue_T.cpp: Updated the implementation of all the
          dequeue_*() methods so that the "next_" and "prev_" pointer of
          the dequeue'd message block are set to 0.  Failure to do this
          can cause weird behavior when a dequeue'd message block is
          passed to ACE::write_n().... Thanks to Wenlong Tang
          <tang_long@hotmail.com> for reporting this.

Mon Jul  7 11:14:02 2003  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_structure/any_op_cs.cpp (visit_enum):

          Fixed a cut and paste error that was causing the code generation
          for the any operators in the stub source file to be skipped. Thanks
          to <dyafe@itgil.com> for reporting the bug.

        * TAO_IDL/be/be_visitor_enum/any_op_cs.cpp:

          Fixed cut and paste error in the explicit template instantiation.

Mon Jul  7 12:31:40 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/MakeWorkspaceCreator.pm:
        * bin/MakeProjectCreator/templates/make.mpd:

          Added a 'depend' target and fixed the default library installation
          target.

Sun Jul  6 09:55:16 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Task.cpp: Fixed compile errors with MSVC 7.1 when
          ACE_HAS_ANSI_CAST  and RTTI is turned on. Thanks to Marek Brudka
          <M.Brudka@elka.pw.edu.pl> for providing the patch.

        * THANKS: Added Marek to the hall of fame.

Sat Jul  5 06:57:33 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * THANKS: Updated e-mail address of Serge Kolgan

Fri Jul 4 17:05:39 2003  Yamuna Krishnamurthy  <yamuna@oomworks.com>

        * include/makeinclude/ace_flags.bor:

          Added the TAO_RTSCHEDULER_CFLAGS flag to build RTSCheduler
          library using Borland compiler.

Fri Jul  4 07:29:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_gnuwin32_common.GNU:
          Added support for the -pipe command line option of the g++ compiler
          on Win32. This uses pipes instead of intermediate files and speeds up
          the compilation. This is enabled by default but can be disabled by
          adding pipes=0 to your platform_macros.GNU file. Thanks to
          Serge Kolgan <skolgan@trigraph.com> for this suggestion.

Thu Jul  3 22:05:58 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-linux-common.h:
        * ace/os_include/os_pthread.h:
          Moved the ACE_HAS_PTHREAD_SETSTACK definition to os_pthread.h
          along with all the other pthread related definitions.  This
          should help eliminate warnings about using a the deprecated
          function pthread_attr_setstackaddr.

Thu Jul 03 17:00:47 2003  Nanbor Wang  <nanbor@cs.wustl.edu>

        * bin/MakeProjectCreator/config/ciao_client.mpb: Added "security"
          as one of the depending library for all CIAO clients.

Thu Jul  3 13:15:17 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/README:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/gnu.mpd:
        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc7.mpd:

          Added 'libpath' to the custom define keywords to allow a user to
          specify an additional library search path for the custom command.

Thu Jul  3 11:49:23 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc7.mpd:

          Removed tao_idl specific defaults from these template files.

Wed Jul  2 23:58:11 UTC 2003  Craig Rodrigues <crodrigu@bbn.com>

        * ace/config-freebsd.h:
          FreeBSD 5.1 implements <stdint.h> (ACE_LACKS_STDINT_H) and
          reentrant password functions (ACE_LACKS_PWD_REENTRANT_FUNCTIONS).
          rand_r has been implemented for quite some time now
          (ACE_LACKS_RAND_REENTRANT_FUNCTIONS).

Wed Jul  2 23:34:18 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * tests/RMCast/RMCast_Fragment_Test.dsp:
        * tests/RMCast/RMCast_Membership_Test.dsp:
        * tests/RMCast/RMCast_Reassembly_Test.dsp:
        * tests/RMCast/RMCast_Reordering_Test.dsp:
        * tests/RMCast/RMCast_Retransmission_Test.dsp:
        * tests/RMCast/RMCast_UDP_Best_Effort_Test.dsp:
          Added Main.cpp to the projects.

Wed Jul  2 23:10:25 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * tests/RMCast/Makefile:
        * tests/RMCast/Makefile.bor:
        * tests/RMCast/Main.cpp:
        * tests/SSL/Makefile:
        * tests/SSL/Makefile.bor:
        * tests/SSL/Main.cpp:
          Added Main.cpp and wired it up in the Makefiles.  This is
          needed to work with Justin's changes below in preparation to
          using MPC for all builds.

Wed Jul  2 22:48:18 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-all.h/
          Rolled back Wed Jul  2 22:17:15 UTC 2003  Don Hinton
          <dhinton@dresystems.com> temporarily, since it is defined
          inconsistently and compilation will fail if ACE_HAS_ANSI_CASTS is
          just defined and not defined as a number.

Wed Jul  2 22:17:15 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-all.h/
          Added test for ACE_HAS_ANSI_CASTS != 0, not just its existence
          since this is the way it is used.

Wed Jul 02 14:57:00 2003  Justin Michel  <michel_j@ociweb.com>

        * examples/Registry/Registry.mpc
        * tests/RMCast/acetest.mpb
        * tests/SSL/acetest.mpb
        * bin/create_ace_build.pl
        * bin/MakeProjectCreator/config/rtnotify.mpb
        * bin/MakeProjectCreator/config/valuetype.mpb
        * examples/IPC_SAP/SOCK_SAP/sock_sap.mpc
        * examples/IPC_SAP/SSL_SAP/SSL_SAP.mpc
        * examples/Log_Msg/Log_Msg_MFC/Log_Msg_MFC.mpc
        * examples/Mem_Map/IO-tests/IO_Test.cpp
        * examples/Mem_Map/IO-tests/test_io.cpp
        * examples/OS/Process/OS_Process.mpc
        * examples/QOS/Change_Receiver_FlowSpec/QOS_Change_Receiver_FlowSpec.mpc
        * examples/QOS/Change_Sender_TSpec/QOS_Change_Sender_FlowSpec.mpc
        * examples/QOS/Diffserv/QOS_Diffserv.mpc
        * examples/QOS/Simple/QOS_Simple.mpc
        * examples/RMCast/Send_File/RMCast_Send_File.mpc
        * examples/Reactor/Misc/Reactor_Misc.mpc
        * examples/Reactor/Multicast/Reactor_Multicast.mpc
        * examples/Service_Configurator/IPC-tests/client/Service_Configurator_IPC_Client.mpc
        * examples/Service_Configurator/IPC-tests/server/Service_Configurator_IPC_Server.mpc
        * examples/Service_Configurator/Misc/Service_Configurator_Misc.mpc
        * examples/Shared_Malloc/Shared_Malloc.mpc
        * examples/Shared_Memory/Shared_Memory.mpc
        * examples/Smart_Pointers/Smart_Pointers.mpc
        * examples/System_V_IPC/SV_Message_Queues/SV_Message_Queues.mpc
        * examples/System_V_IPC/SV_Semaphores/SV_Semaphores.mpc
        * examples/Threads/Threads.mpc
        * examples/Timer_Queue/Timer_Queue.mpc
        * tests/acetest.mpb
        * tests/tests.mpc
        * tests/RMCast/RMCast_Fragment_Test.cpp
        * tests/RMCast/RMCast_Membership_Test.cpp
        * tests/RMCast/RMCast_Reassembly_Test.cpp
        * tests/RMCast/RMCast_Reordering_Test.cpp
        * tests/RMCast/RMCast_Retransmission_Test.cpp
        * tests/RMCast/RMCast_UDP_Best_Effort_Test.cpp
        * tests/RMCast/tests.mpc
        * tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp
        * tests/SSL/tests.mpc

          Added some missing project files.
          Updated all ACE tests to use the common test library.
          Updated ACE test mpc files to use a common base project.
          Fixed mpc files for broken examples.
          Added base projects rtnotify and valuetype.

Wed Jul  2 13:16:14 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-doxygen.h:
          Added define of __ACE_INLINE__ so that inlining will be turned
          on in order to help identify unwanted inter-header dependencies.

Tue Jul  1 20:47:35 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/os_include/os_limits.h:
          Added include of os_stdio.h.  This picks up FILENAME_MAX on
          Windows and fixes an alignment problem with ACE_PI_Control_Block
          due to differing definitions for MAXNAMELEN.  Thanks to
          Serge Kolgan <skolgan@trigraph.com> for help figuring this out.


Tue Jul  1 19:39:16 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-vxworks5.x.h:
          Added ACE_LACKS_SYS_UN_H and ACE_LACKS_PTHREAD_H.

        * ace/os_include/sys/os_mman.h:
          Added !defined (ACE_WIN32) to the initial #if for the PROT_*
          define section so Windows can make it to the #ifelse section.

Sun Jun 29 01:31:52 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/UNIX_Addr.h:
          Added include of ace/os_include/sys/os_un.h to fix compile
          problems on VxWorks.

Sat Jun 28 15:26:11 2003  Douglas C. Schmidt  <schmidt@ace.cs.wustl.edu>

        * ace/OS_Dirent.inl (readdir_r): Added defined (__FreeBSD__)
          here.  Thanks to Karim Fodil-Lemelin <kfl@xiphos.ca> for
          submitting a patch.

Fri Jun 27 12:52:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Process.h:
          Added forward declaration of ACE_Time_Value to fix compile
          erros in Jaws server app.

Thu Jun 26 21:34:43 2003  Chris Cleeland  <cleeland_c@ociweb.com>

        * ace/QtReactor.cpp: Removed precompiled header include residue
          from OCI version.

Thu Jun 26 17:35:00 2003  Justin Michel  <michel_j@ociweb.com>

        * Kokyu/Kokyu.mpc:
        * bin/create_ace_build.pl:
        * bin/MakeProjectCreator/config/kokyu.mpb:
        * bin/MakeProjectCreator/config/rtkokyuevent.mpb:

          Fixes for mpc generated builds.
          create_ace_build won't link .opt files.

Thu Jun 26 16:31:51 2003  Chris Cleeland  <cleeland_c@ociweb.com>

        * ace/QtReactor.h:
        * ace/QtReactor.cpp:

          The QtReactor works by semi-unifying the Qt Event loop with the
          Reactor event loop.  Most of the time, the Qt Event loop is the
          dominant loop, but occasionally, when wait_for_multiple_events
          gets called, the reactor loop becomes the dominant loop.

          Previous QtReactor implementations only overloaded
          register_handler, caused them to never notice when an
          application changed the mask on a previously-registered handler,
          e.g., via ACE_Reactor::schedule_wakeup.  Thus, the Qt event loop
          never knew about the new interest or lack thereof, and didn't
          call it back.

          This newer version overloads ACE_Reactor::bit_ops, and tweaks
          the registrations with the Qt event loop according to bit_ops'
          arguments' mask operations.  This *should* allow us to catch
          every twiddling of masks, although there is no comprehensive
          regression test for this for any kind of reactor.

          From inspection, it appears as if the XtReactor might need
          similar changes.

Thu Jun 26 02:22:42 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * etc/ace.doxygen:
          Added ace/pre.h and ace/post.h to the exclude list.  This will
          clean up the file dependency graphs a bit and make the more
          complex ones a bit easier to read.

Thu Jun 26 01:47:03 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-freebsd.h:
          Added #define ACE_LACKS_STDINT_H.

Wed Jun 25 17:00:00 2003  Justin Michel  <michel_j@ociweb.com>

        * Kokyu/Kokyu.mpc:
        * bin/MakeProjectCreator/config/ciao_client.mpb:
        * bin/MakeProjectCreator/config/ciao_component.mpb:
        * bin/MakeProjectCreator/config/idl_compiler.mpt:
        * bin/MakeProjectCreator/config/idl_compiler_win32.mpt:
        * bin/MakeProjectCreator/config/iorinterceptor.mpb:
        * bin/MakeProjectCreator/config/messaging_only.mpb:
        * bin/MakeProjectCreator/config/objreftemplate.mpb:
        * bin/MakeProjectCreator/config/portableserver.mpb:
        * bin/MakeProjectCreator/config/tao_output.mpb:
        * bin/MakeProjectCreator/config/valuetype.mpb:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc7.mpd:

          Fixes for various mpc generation problems.

Wed Jun 25 13:14:00 2003  Justin Michel  <michel_j@ociweb.com>

        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc7.mpd:

          Forgot to rename the dllflag keyword.

Wed Jun 25 12:45:44 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * bin/topinfo_iorsize_stats.sh (s_id):
        * bin/topinfo_simple_stats.sh: We used 'top' to determine the
          runtime memory used by the process. A better way to get this
          done is to use /proc/processid/status. The scripts have been
          changed to use the proc info instead of 'top'.

Wed Jun 25 11:00:00 2003  Justin Michel  <michel_j@ociweb.com>

        * nightly.mwc:
        * ACEXML/ACEXML.mwc:
        * ACEXML/common/common.mpc:
        * ACEXML/parser/parser/parser.mpc:
        * ASNMP/asnmp.mwc:
        * Kokyu/Kokyu.mpc:
        * ace/ace.mpc:
        * ace/ace.mwc:
        * ace/QoS/qos.mpc:
        * ace/RMCast/rmcast.mpc:
        * ace/SSL/ssl.mpc:
        * apps/apps.mwc:
        * apps/gperf/src/gperf.mpc:
        * apps/mkcsregdb/mkcsregdb.mpc:
        * bin/create_ace_build.pl:
        * bin/MakeProjectCreator/README
        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/aceexe.mpb:
        * bin/MakeProjectCreator/config/acelib.mpb:
        * bin/MakeProjectCreator/config/acexml.mpb:
        * bin/MakeProjectCreator/config/avstreams.mpb:
        * bin/MakeProjectCreator/config/avstreamsexe.mpb:
        * bin/MakeProjectCreator/config/bidir_giop.mpb:
        * bin/MakeProjectCreator/config/ciao_client.mpb:
        * bin/MakeProjectCreator/config/ciao_component.mpb:
        * bin/MakeProjectCreator/config/ciao_servant.mpb:
        * bin/MakeProjectCreator/config/ciao_server.mpb:
        * bin/MakeProjectCreator/config/client.mpb:
        * bin/MakeProjectCreator/config/concurrency.mpb:
        * bin/MakeProjectCreator/config/dslogadmin.mpb:
        * bin/MakeProjectCreator/config/dynamicany.mpb:
        * bin/MakeProjectCreator/config/dynamicinterface.mpb:
        * bin/MakeProjectCreator/config/etcl.mpb:
        * bin/MakeProjectCreator/config/event.mpb:
        * bin/MakeProjectCreator/config/ftorb.mpb:
        * bin/MakeProjectCreator/config/global.features
        * bin/MakeProjectCreator/config/global.mpb:
        * bin/MakeProjectCreator/config/ifr_client.mpb:
        * bin/MakeProjectCreator/config/ifrservice.mpb:
        * bin/MakeProjectCreator/config/iorinterceptor.mpb:
        * bin/MakeProjectCreator/config/iormanip.mpb:
        * bin/MakeProjectCreator/config/iortable.mpb:
        * bin/MakeProjectCreator/config/lifecycle.mpb:
        * bin/MakeProjectCreator/config/loadbalancing.mpb:
        * bin/MakeProjectCreator/config/messaging.mpb:
        * bin/MakeProjectCreator/config/messaging_only.mpb:
        * bin/MakeProjectCreator/config/naming.mpb:
        * bin/MakeProjectCreator/config/namingexe.mpb:
        * bin/MakeProjectCreator/config/notification.mpb:
        * bin/MakeProjectCreator/config/notify.mpb:
        * bin/MakeProjectCreator/config/notifytest.mpb:
        * bin/MakeProjectCreator/config/objreftemplate.mpb:
        * bin/MakeProjectCreator/config/orbsvcs_output.mpb:
        * bin/MakeProjectCreator/config/orbsvcsexe.mpb:
        * bin/MakeProjectCreator/config/orbsvcslib.mpb:
        * bin/MakeProjectCreator/config/portablegroup.mpb:
        * bin/MakeProjectCreator/config/portableserver.mpb:
        * bin/MakeProjectCreator/config/property.mpb:
        * bin/MakeProjectCreator/config/qos.mpb:
        * bin/MakeProjectCreator/config/qt_moc.mpb:
        * bin/MakeProjectCreator/config/rmcast.mpb:
        * bin/MakeProjectCreator/config/rt_client.mpb:
        * bin/MakeProjectCreator/config/rt_server.mpb:
        * bin/MakeProjectCreator/config/rtcorba.mpb:
        * bin/MakeProjectCreator/config/rtcorbacommon.mpb:
        * bin/MakeProjectCreator/config/rtcorbaevent.mpb:
        * bin/MakeProjectCreator/config/rtevent.mpb:
        * bin/MakeProjectCreator/config/rteventexe.mpb:
        * bin/MakeProjectCreator/config/rtoldevent.mpb:
        * bin/MakeProjectCreator/config/rtportableserver.mpb:
        * bin/MakeProjectCreator/config/rtsched.mpb:
        * bin/MakeProjectCreator/config/rtschedevent.mpb:
        * bin/MakeProjectCreator/config/security.mpb:
        * bin/MakeProjectCreator/config/server.mpb:
        * bin/MakeProjectCreator/config/smart_proxies.mpb:
        * bin/MakeProjectCreator/config/ssl.mpb:
        * bin/MakeProjectCreator/config/strategies.mpb:
        * bin/MakeProjectCreator/config/svc_utils.mpb:
        * bin/MakeProjectCreator/config/tao_output.mpb:
        * bin/MakeProjectCreator/config/taoclient.mpb:
        * bin/MakeProjectCreator/config/taoexe.mpb:
        * bin/MakeProjectCreator/config/taolib.mpb:
        * bin/MakeProjectCreator/config/taolib_with_idl.mpb:
        * bin/MakeProjectCreator/config/taoserver.mpb:
        * bin/MakeProjectCreator/config/taoversion.mpb:
        * bin/MakeProjectCreator/config/time.mpb:
        * bin/MakeProjectCreator/config/trading.mpb:
        * bin/MakeProjectCreator/config/typecodefactory.mpb:
        * bin/MakeProjectCreator/config/valuetype.mpb:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/TemplateParser.pm:
        * bin/MakeProjectCreator/modules/VA4ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/VC6ProjectCreator.pm:
        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/bordll.mpt:
        * bin/MakeProjectCreator/templates/borexe.mpt:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/em3vcpdll.mpt:
        * bin/MakeProjectCreator/templates/em3vcpdllexe.mpt:
        * bin/MakeProjectCreator/templates/em3vcplib.mpt:
        * bin/MakeProjectCreator/templates/em3vcplibexe.mpt:
        * bin/MakeProjectCreator/templates/gnu.mpd:
        * bin/MakeProjectCreator/templates/gnudll.mpt:
        * bin/MakeProjectCreator/templates/gnuexe.mpt:
        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/makedll.mpt:
        * bin/MakeProjectCreator/templates/makeexe.mpt:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/nmakedll.mpt:
        * bin/MakeProjectCreator/templates/nmakeexe.mpt:
        * bin/MakeProjectCreator/templates/va4icc.mpd:
        * bin/MakeProjectCreator/templates/va4iccdll.mpt:
        * bin/MakeProjectCreator/templates/va4iccdllexe.mpt:
        * bin/MakeProjectCreator/templates/va4icclib.mpt:
        * bin/MakeProjectCreator/templates/va4icclibexe.mpt:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc6dspdll.mpt:
        * bin/MakeProjectCreator/templates/vc6dspdllexe.mpt:
        * bin/MakeProjectCreator/templates/vc6dsplib.mpt:
        * bin/MakeProjectCreator/templates/vc6dsplibexe.mpt:
        * bin/MakeProjectCreator/templates/vc7.mpd:
        * bin/MakeProjectCreator/templates/vc7dll.mpt:
        * bin/MakeProjectCreator/templates/vc7exe.mpt:
        * bin/PerlACE/Process_Unix.pm:
        * bin/PerlACE/Process_Win32.pm:
        * examples/example_base.mpb:
        * examples/examples.mwc:
        * examples/ASX/CCM_App/ASX_CCM_App.mpc:
        * examples/ASX/Message_Queue/ASX_Message_Queue.mpc:
        * examples/C++NPv1/C++NPv1.mpc:
        * examples/C++NPv2/C++NPv2.mpc:
        * examples/ConfigViewer/ConfigViewer.mpc:
        * examples/Connection/blocking/Connection_Blocking.mpc:
        * examples/Connection/misc/Connection_Misc.mpc:
        * examples/Connection/non_blocking/Connection_Non_Blocking.mpc:
        * examples/DLL/DLL.mpc:
        * examples/Export/Export.mpc:
        * examples/IOStream/client/IOStream_Client.mpc:
        * examples/IOStream/server/IOStream_Server.mpc:
        * examples/IPC_SAP/ATM_SAP/atm_sap.mpc:
        * examples/IPC_SAP/DEV_SAP/reader/dev_sap_reader.mpc:
        * examples/IPC_SAP/DEV_SAP/writer/dev_sap_writer.mpc:
        * examples/IPC_SAP/FIFO_SAP/fifo_sap.mpc:
        * examples/IPC_SAP/FILE_SAP/file_sap_client.mpc:
        * examples/IPC_SAP/SOCK_SAP/sock_sap.mpc:
        * examples/IPC_SAP/SPIPE_SAP/SPIPE_SAP.mpc:
        * examples/IPC_SAP/SSL_SAP/SSL_SAP.mpc:
        * examples/IPC_SAP/TLI_SAP/TLI_SAP.mpc:
        * examples/IPC_SAP/UPIPE_SAP/UPIPE_SAP.mpc:
        * examples/Log_Msg/Log_Msg.mpc:
        * examples/Logger/Acceptor-server/Logger_Acceptor_Server.mpc:
        * examples/Logger/client/Logger_client.mpc:
        * examples/Logger/simple-server/Logger_Simple_Server.mpc:
        * examples/Mem_Map/IO-tests/Mem_Map_IO_Tests.mpc:
        * examples/Mem_Map/file-reverse/Mem_Map_File_Reverse.mpc:
        * examples/Misc/Misc.mpc:
        * examples/Naming/Naming.mpc:
        * examples/OS/Process/OS_Process.mpc:
        * examples/QOS/Change_Receiver_FlowSpec/QOS_Change_Receiver_FlowSpec.mpc:
        * examples/QOS/Change_Sender_TSpec/QOS_Change_Sender_FlowSpec.mpc:
        * examples/QOS/Diffserv/QOS_Diffserv.mpc:
        * examples/QOS/Simple/QOS_Simple.mpc:
        * examples/RMCast/Send_File/RMCast_Send_File.mpc:
        * examples/Reactor/Dgram/Reactor_Dgram.mpc:
        * examples/Reactor/FIFO/Reactor_FIFO.mpc:
        * examples/Reactor/Misc/Reactor_Misc.mpc:
        * examples/Reactor/Multicast/Reactor_Multicast.mpc:
        * examples/Reactor/Ntalker/Reactor_Ntalker.mpc:
        * examples/Reactor/Proactor/Proactor.mpc:
        * examples/Reactor/WFMO_Reactor/WFMO_Reactor.mpc:
        * examples/Service_Configurator/IPC-tests/client/Service_Configurator_IPC_Client.mpc:
        * examples/Service_Configurator/IPC-tests/server/Service_Configurator_IPC_Server.mpc:
        * examples/Service_Configurator/Misc/Service_Configurator_Misc.mpc:
        * examples/Shared_Malloc/Shared_Malloc.mpc:
        * examples/Shared_Memory/Shared_Memory.mpc:
        * examples/Smart_Pointers/Smart_Pointers.mpc:
        * examples/System_V_IPC/SV_Message_Queues/SV_Message_Queues.mpc:
        * examples/System_V_IPC/SV_Semaphores/SV_Semaphores.mpc:
        * examples/Threads/Threads.mpc:
        * examples/Timer_Queue/Timer_Queue.mpc:
        * examples/Web_Crawler/Web_Crawler.mpc:
        * performance-tests/perf.mwc:
        * tests/acetest.mpb:
        * tests/tests.mpc:
        * tests/tests.mwc:
        * tests/RMCast/tests.mpc:
        * tests/SSL/tests.mpc:

          Updated MPC with the latest features and changes from OCI's repo. Created
        new mpb base projects to make mpc files as simple as possible, and updated
        existing mpb base projects. Added and updated mpc files to use the latest
        features and make use of base projects.
          Added the create_ace_build.pl script that is more MPC friendly and works
        on Windows.
          Removed unused nightly.mwc.
          Note : The new MPC base projects will now output all library files to
        consistent locations across platforms. This is controlled by the three
        files acelib.mpb, tao_output.mpb, and orbsvcs_output.mpb using the
        libout keyword. Currently all of these are set to output to $ACE_ROOT/lib.
        All libraries will be placed in this directory, including .dll files on
        Windows. This means that Windows users will have to add %ACE_ROOT%\lib to
        their %PATH%. This is analogous to %LD_LIBRARY_PATH% on Unix.

Wed Jun 25 10:20:15 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * THANKS: Added missing doc_group folks at Vanderbilt.

Wed Jun 25 13:36:51 UTC 2003  Don Hinton  <dhinton@dresytems.com>

        * ace/Service_Object.h:
          Rolled back change from Sun Jun 22 03:27:10 UTC 2003  Don Hinton
          <dhinton@dresystems.com> which made ACE_DLL member variable a
          reference as part of subsetting, which caused
          Service_Config_Test to fail.

Wed Jun 25 03:47:36 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-linux.h:
        * ace/os_include/os_pthread.h:
          Removed include of pthread.h from config-linux.h and moved the
          pthread_mutex_timedlock() declaration to os_pthread.h.

        * tests/Makefile.tests:
          Added special build rule when on hpux that changes the link
          order, i.e., main.o comes before x_Test.o.  Hopefully this
          will clear up linker errors on Hp with the gcc compiler that
          started appearing after the tests directory was reorganized.

Tue Jun 24 18:38:33 2003  Pradeep Gore  <pradeep@oomworks.com>

        * bin/tao_other_tests.lst:
          Added Notify Basic test for RT_Notification.
          Moved the Notify Lanes and Threadpool test with the other
          Notify tests.

Tue Jun 24 15:47:16 2003  Nanbor Wang  <nanbor@cs.wustl.edu>

        * bin/MakeProjectCreator/config/ciao_client.mpb: Added
          $(CIAO_ROOT)/ciao to idlflags.

          Added $(TAO_ROOT)/orbsvcs/orbsvcs to libpaths and linking
          Security to even a simple stub DLL because of the way
          components.idl is being set up.  (Hint: we really don't need
          them.)

        * bin/MakeProjectCreator/config/ciao_component.mpb: Reorganized
          the template since I moved some of the libraries to ciao_client
          to fix the components.idl definition problem.

        * bin/MakeProjectCreator/config/ciao_servant.mpb: Added this new
          template to isolate customize CIDL rules for servant DLLs.  It
          turned out they also requires the stuff defined in the
          Deployment module (thus, the CIAO_Server library.)

        * bin/MakeProjectCreator/templates/gnu.mpd: Added code to define
          CIAO_ROOT in Makefiles if it's not defined already.

          Thanks to Chad Elliott for helping me setting up the custom
          rules for CIDL compiler and answering my tons of questions.

Tue June 24 16:26:06 2003  Yamuna Krishnamurthy  <yamuna@oomworks.com>

         * ace/QoS/QoS_Session.h:
         * ace/QoS/QoS_Session_Impl.h:
         * ace/QoS/QoS_Session_Impl.cpp:
         * ace/QoS/QoS_Session_Impl.i: Added methods to set the source host
           and port that is used to populate the TSpec for the
           sending_qos.

Tue Jun 24 13:10:25 2003  Douglas C. Schmidt  <schmidt@tango.doc.wustl.edu>

        * ace/Cached_Connect_Strategy_T.cpp (cached_connect): Added
          a check for "|| errno == EADDRINUSE" to fix problems on Windows.
          Thanks to Valery Salamakha <ccapstan@bigpond.net.au> for
          reporting this.

Tue Jun 24 12:07:06 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Convert custom defined values to relative paths if possible.  If
          it isn't possible, continue to use environment variables.

        * bin/MakeProjectCreator/modules/TemplateParser.pm:

          Push the relative() method into the ProjectCreator, where it
          should have been in the first place.

Tue Jun 24 15:38:49 UTC 2003  Don Hinton  <dhinton@dresystems.h>

        * ace/Filecache.cpp:
          Added include of ACE.h.

        * ace/Global_Macros.h:
          Added include of ace/Trace.h when tracing is turned on.

        * ace/Typed_SV_Message.i:
          Added include of ace/Global_Macros.h to pick up ACE_TRACE.

Tue Jun 24 15:15:03 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/os_include/sys/os_socket.h:
          Removed ACE_HAS_CYGWIN32_SOCKET_H ifdef that included
          cygwin32/socket.h, which is no longer needed.  Thanks to "Johnny
          Willemsen" <jwillemsen@remedy.nl> for reporting this.

Tue Jun 24 14:40:43 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/String_Base.i:
          Added include of Min_Max.h.  Thanks to Olli Savia <ops@iki.fi>
          for reporting this and supplying the fix.

        * ace/config-lynxos.h:
        * ace/os_include/net/os_if.h:
          Added new macro ACE_NEEDS_IPC_1C_H used to include ipc_1c.h
          before net/if.h for LynxOS 3.1.0 and later.  Thanks to Olli
          Savia <ops@iki.fi> for reporting this and supplying the fix.

        * ace/os_include/os_signal.h:
        * ace/os_include/os_ucontext.h:
          Moved include of os_ucontext.h to bottom of os_signal.h and
          included os_signal.h in os_ucontext.h.  Thanks to John Michael
          Zorko <j.zorko@att.net> for reporting this.

Tue Jun 24 03:50:21 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/Based_Pointer_Repository.h:
          Added include of os_stddef.h to pick up size_t.

Tue Jun 24 02:00:02 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * etc/ace/doxygen:
          Added the subdirectories under os_include so they'll get
          included in the documentation.

Tue Jun 24 01:25:38 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h:
          Removed a set of defines, e.g.,  LPSECURITY_ATTRIBUTES, and
          ACE_OVERLAPPED struct in the ACE_PSOS that were missed before.

        * ace/OS.h:
        * ace/os_include/os_stdint.h:
        * ace/os_include/sys/os_types.h:
        * ace/Process.h:
          Moved typedefs for pid_t and ACE_exitcode and definition for
          ACE_INVALID_PID to os_types.h and included it in Process.h.

        * ace/os_include/sys/os_uio.h:
        * ace/os_include/os_limits.h:
          Moved ACE_IOV_MAX and IOV_MAX defines from os_uio.h to
          os_limits.h and included os_limits.h in os_uio,h.

Mon Jun 23 12:46:05 2003  Rich Seibel <seibel_r@ociweb.com>

        * bin/tao_other_tests.lst:
          Broke out the Naming Service flat-file persistence tests and
          added a new Redundant Naming Service test.  Both these tests
          are disabled on mininum CORBA.

Sun Jun 22 11:23:52 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * THANKS: Added our 1700th contributor to ACE+TAO.  It's amazing
          how many people have contributed to these open-source projects
          since 1992!

Mon Jun 23 11:51:13 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Added another MPC environment variable to allow a user to get an
          informational message about which projects were skipped due to the
          current set of features.

Sun Jun 22 13:58:08 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/Lib_Find.h:
          Added include of os_stdio.h to pick up FILE, needed by BCB and
          possibly other builds.

        * ace/Malloc_Allocator.i:
          Removed redundant define of ACE_ASSERT>

Sun Jun 22 04:54:45 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/Handle_Set.[i,cpp]:
          Moved include of Log_Msg.h from the cpp to the i file.

        * ace/INET_Addr.i:
        * ace/Malloc_Allocator.i:
          Added include of OS.h.

Sun Jun 22 04:32:15 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/Global_Macros.h:
          Place LPSECURITY_ATTRIBUTES within !defined (ACE_WIN32) guards.

        * ace/Asynch_IO.h:
        * ace/Malloc_Base.h:
          Added include of ace/os_include/sys/os_types.h.

        * ace/OS.h:
        * ace/os_include/sys/os_mman.h:
          Moved MS_SYNC definition from OS.h to here.

        * ace/Basic_Types.h:
        * ace/os_include/sys/os_types.h:
          Moved ssize_t typedef here from Basic_Types.h.

        * ace/config-win32-common.h:
          Add ACE_LACKS_PTHREAD_H.

        * ace/Malloc_Allocator.i:
          Fixed typo.

Sun Jun 22 03:27:10 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/ACE.h:
        * ace/ARGV.h:
        * ace/Array_Base.cpp:
        * ace/Array_Base.h:
        * ace/Asynch_Connector.h:
        * ace/Asynch_IO.cpp:
        * ace/Asynch_IO.h:
        * ace/Asynch_Pseudo_Task.h:
        * ace/Based_Pointer_Repository.h:
        * ace/DEV.cpp:
        * ace/DEV_Addr.h:
        * ace/DEV_Connector.cpp:
        * ace/DEV_IO.h:
        * ace/DEV_IO.i:
        * ace/DLL.h:
        * ace/DLL_Manager.cpp:
        * ace/DLL_Manager.h:
        * ace/Date_Time.h:
        * ace/Date_Time.i:
        * ace/Event_Handler.h:
        * ace/Event_Handler_T.i:
        * ace/FIFO.h:
        * ace/FIFO_Recv.h:
        * ace/FIFO_Recv.i:
        * ace/FIFO_Recv_Msg.h:
        * ace/FIFO_Send.h:
        * ace/FIFO_Send.i:
        * ace/FIFO_Send_Msg.h:
        * ace/FILE.cpp:
        * ace/FILE_Addr.h:
        * ace/FILE_IO.h:
        * ace/FILE_IO.i:
        * ace/Flag_Manip.h:
        * ace/Flag_Manip.i:
        * ace/Free_List.h:
        * ace/Functor.h:
        * ace/Functor.i:
        * ace/Get_Opt.cpp:
        * ace/Handle_Ops.cpp:
        * ace/Handle_Ops.h:
        * ace/Handle_Set.h:
        * ace/Lib_Find.h:
        * ace/Malloc_Allocator.h:
        * ace/Malloc_Allocator.i:
        * ace/Malloc_Base.h:
        * ace/Message_Block_T.cpp:
        * ace/OS.h:
        * ace/Parse_Node.cpp:
        * ace/Process.h:
        * ace/Read_Buffer.h:
        * ace/Service_Object.h:
        * ace/Sock_Connect.h:
        * ace/Thread_Control.h:
        * ace/Thread_Exit.h:
        * ace/Typed_SV_Message.h:
        * ace/Unbounded_Queue.h:
          Removed include of OS.h and/or ACE.h from headers and adjusted
          includes in headers and other files by including appropriate
          headers in order to reduce dependencies as part of the
          subsetting effort.

        * ace/OS.h:
        * ace/Asynch_IO.cpp:
        * ace/Asynch_IO.h:
          Changed u_long to unsigned long to help remove dependencies.
          Moved the typedef for TRANSMIT_FILE_BUFFERS here from OS.h.

        * ace/Functor.h:
        * ace/Functor.i:
          Changed u_long to unsigned long to help remove dependencies.

        * ace/OS.h:
        * ace/Global_Macros.h:
          Moved definitions for many macros including
          LPSECURITY_ATTRIBUTES and GENERIC_READ, etc... here from OS.h.
          Moved the ACE_ALLOCATOR_* macros here from OS.h.

        * ace/Makefile.ace:
          Added Date_Time so it will get build if
          ACE_LACKS_INLINE_FUNCTIONS is defined.

        * ace/os_include/os_pthread.h:
          Added include of ace/OS_Export.h if ACE_HAS_POSIX_SEM to pick up
          ACE_Export.

        * ace/OS.h:
        * ace/os_include/os_signal.h:
          Moved ACE_SIGRTMIN, etc., defines here from OS.h.

        * ace/OS.h:
        * ace/os_include/os_stdio.h:
          Moved ACE_OVERLAPPED typedef here from OS.h.

        * examples/IPC_SAP/FIFO_SAP/FIFO-Msg-client.cpp:
        * websvcs/lib/URL_Addr.i:
          Added include of OS.h.

        * tests/CDR_File_Test.cpp:
          Added include of ACE.h.

Sat Jun 21 13:47:28 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h:
          Fixed typo.

Sat Jun 21 12:05:42 UTC 2003  Johnny WIllemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-mingw.h:
          Added some more lacks defines that are needed

Fri Jun 20 17:57:10 2003  Gan Deng  <dengg@dre.vanderbilt.edu>

        * bin/performance_stats.sh

          Added the latency tests for sequences of various data types.

Fri Jun 20 13:32:21 2003  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * include/makeinclude/platform_linux.GNU (PLATFORM_SSL_CPPFLAGS):

          Some Linux OpenSSL installations compile in Kerberos support.
          Add the Kerberos include path to preprocessor include path.
          Fixes build problems on Red Hat 9 installations.  Note that this
          is an interim fix.

Fri Jun 20 10:07:39 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/qt_moc.mpb:

          Switch this to be a project instead of a feature.  It doesn't hurt
          to inherit from it if you don't use the MOC_Files component.

        * bin/MakeProjectCreator/modules/Parser.pm:

          Added + and - to the escape_regex_special() method.

Fri Jun 20 09:52:44 2003  Chad Elliott  <elliott_c@ociweb.com>

        * ace/ace.mpc:

          Added inheritance from qt_moc and qt_reactor.  These will only be
          processed if the 'qt' feature is enabled.

        * ace/qt_reactor.mpb:

          Added QtReactor_moc.cpp to the list of files.

        * bin/MakeProjectCreator/config/acedefaults.mpb:

          Added inheritance from the qt base project.

        * bin/MakeProjectCreator/config/qt.mpb:

          Contains the basic feature definition for qt libs and apps.

        * bin/MakeProjectCreator/config/qt_moc.mpb:

          Contains the custom definition for MOC files.

        * bin/MakeProjectCreator/modules/ArrayHandle.pm:

          Removed this file.  It isn't necessary anymore.

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Changed the way feature files are read.  This new way is better
          and less hacky.

        * bin/pch_cmd.pl:

          Don't modify the file if no precompiled header is found.

Fri Jun 20 14:28:12 UTC 2003  Johnny WIllemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-mingw.h:
          Updated this file because of the os splitting.

Fri Jun 20 09:08:05 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/pch_cmd.pl:

          Fixed the usage to display the correct options.

Fri Jun 20 08:54:29 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Added code to process type specific assignments that may be
          defined within a feature.

Fri Jun 20 08:10:11 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/README:

          Added documentation about the new feature project type.

        * bin/MakeProjectCreator/config/global.features:

          Defaulted the qt feature to disabled.

        * bin/MakeProjectCreator/modules/ArrayHandle.pm:
        * bin/MakeProjectCreator/modules/Creator.pm:
        * bin/MakeProjectCreator/modules/Parser.pm:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          The majority of the code for handling feature project went in
          here.  One main thing that was changed is that instead of using
          the <$fh> paradigm to read files, the following is used
          $_ = $fh->getline().  This is compatible with the new ArrayHandle
          module that I added.

        * bin/MakeProjectCreator/modules/Options.pm:

          Added a missing space in the completion command.

        * bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Changed the code to match some new methods added in Creator and
          ProjectCreator.

Thu Jun 19 13:03:49 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Fixed a bug where the BUILD target wouldn't be updated when the
          project had component requirements.

Thu Jun 19 12:14:31 2003  Gan Deng <gan.deng@vanderbilt.edu>

        * bin/tao_other_tests.lst

          Added the latency tests for sequences of various data types.

Thu Jun 19 11:36:14 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Updated the GNUACE template to issue information as to why a
          particular project wasn't built based on the comps, requires and
          avoids values.

Thu Jun 19 12:18:22 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h:
        * ace/config-vxworks5.x.h:
        * ace/os_include/os_dirent.h:
          Fixed typos in the VXWORKS ifdef'd sections.

        * ace/OS.h:
        * ace/os_include/os_stdio.h:
          Moved include of remLib.h to os_stdio.h, and uncommented
          sysLib.h since it is needed for sysClkRateGet().  Thanks to Rod
          Andzik <andzik@rtlogic.com> for help tracking this down.

        * ace/os_include/os_netdb.h:
          Removed the VXWORKS tests for hostent and servent.

        * ace/config-aix-4x.h:
          Added ACE_LACKS_STDINT_H.

        * ace/config-hpux-11.00.h:
          Added ACE_LACKS_STDINT_H and ACE_LACKS_SYS_SELECT_H.

Thu Jun 19 07:50:04 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Fixed a bug with multiple 'specific' scopes in a single project.

Thu Jun 19 07:13:16 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/README:

          Documented the existing 'specific' keyword.

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Added the ability to specify multiple project types with the
          'specific' scope.

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Removed ACESHLIB from the lit_libs assignment.

        * bin/MakeProjectCreator/templates/makedll.mpt:

          Added the ssl_libs definition.

Thu Jun 19 12:04:28 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/Default_Constants.h:
          Added guards around ACE_LD_LIBRARY_PATH and
          ACE_LD_SEARCH_PATH_SEPARATOR_STR.  Thanks to John Michael
          Zorko <j.zorko@att.net> for reporting the problem.

Thu Jun 19 07:01:57 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/config-lynxos.h: Since LynxOS lacks sys/select.h and
          dlfcn.h header files, config file needs ACE_LACKS_DLFCN_H
          and ACE_LACKS_SYS_SELECT_H to be defined. Thanks to  Olli Savia
          <ops@iki.fi> for the patch.

Thu Jun 19 06:35:26 2003  John Michael Zorko <j.zorko@att.net>

        * ace/config-macosx.h: Patches to get ACE building on OSX10.2
          again.

Thu Jun 19 00:27:38 2003  Stephen Torri <storri@cse.wustl.edu>

        * ace/Timeprobe.h:
        * ace/Timeprobe.cpp:
        * ace/Timeprobe_T.cpp:
        * ace/Timeprobe_T.h:

          Advanced new timeprobe. New features are a
          ring buffer for elements kept in data structure.
          This eliminates the ACE_ASSERT when an element
          is attempted to be inserted into a full data
          structure. Old data is overwritten until the
          cache is read and cleared.

          Timeprobes now include a second argument to
          allow for an ACE_ALLOCATOR. This allocator allows
          for the data structure that will contain the
          ACE_Timeprobes to be done in the constructor. A
          new function called 'increase_size' allows for
          the data structure to increase the number of
          measurements it can take. It does so by creating a
          new structure with the new size and copying the
          elements from the old structure.

        * ace/Makefile.ace:
        * ace/Metrics_Cache.cpp:
        * ace/Metrics_Cache.h:
        * ace/Metrics_Cache.i:
        * ace/Metrics_Cache_T.cpp:
        * ace/Metrics_Cache_T.h:
        * ace/Metrics_Cache_T.i:

          Added new Metrics Cache.

        * ACE/ace/OS.h:

          Added two new macros called ACE_NEW_MALLOC_ARRAY_RETURN
          and ACE_NEW_MALLOC_ARRAY. ACE_NEW_MALLOC_ARRAY_RETURN
          returns an array of class pointers with their space
          preallocated and each entry initialized. If there is
          an error the value contained in RET_VAL is returned.
          ACE_NEW_MALLOC_ARRAY is the same but there is no
          return of a value if there is an error.

Wed Jun 18 21:27:44 2003  Nanbor Wang  <nanbor@cs.wustl.edu>

        * docs/exceptions.html: Added documentation for the
          ACE_ENV_BKWD_COMPAT macro.

Wed Jun 18 17:28:25 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * include/makeinclude/platform_linux.GNU (CXX): Added some default
          options specified in the /usr/sys/features.h.

          Thanks to Keith Snively <ksnively@d-a-s.com> and J. Russell
          Noseworthy <j.russell.noseworthy@objectsciences.com> for
          providing these patches.

Wed Jun 18 17:20:28 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Log_Record.cpp:
        * ace/Log_Record.h (print): Changed the 3rd argument to be of type
          ACE_OSTREAM_TYPE instead of ostream.

        * ace/ace/config-sunos5.5.h: Added ACE_HAS_TEMPLATE_TYPEDEFS and
          removed ACE_TEMPLATES_REQUIRES_SOURCE.

          Thanks to Keith Snively <ksnively@d-a-s.com> and J. Russell
          Noseworthy <j.russell.noseworthy@objectsciences.com> for
          providing these patches.

Wed Jun 18 15:59:18 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h:
          Added includes of os_fcntl.h, os_netdb.h, os_semaphore.h,
          os_signal.h, os_stdio.h, os_stdlib.h, os_stropts.h, os_unistd.h,
          arpa/os_inet.h, sys/select.h, and sys/os_socket.h to the VxWorks
          section.  All the includes in OS.h will be reorganized once the
          builds stabalize.

Wed Jun 18 10:54:18 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Allow scoped assignments to be applied to directories as well as
          listed mpc files.

Wed Jun 18 15:19:17 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h:
        * ace/os_include/os_fcntl.h:
        * ace/os_include/os_netdb.h:
        * ace/os_include/os_semaphore.h:
        * ace/os_include/os_signal.h:
        * ace/os_include/os_stdio.h:
        * ace/os_include/os_stdlib.h:
        * ace/os_include/os_stropts.h:
        * ace/os_include/os_unistd.h:
        * ace/os_include/arpa/os_inet.h:
        * ace/os_include/sys/select.h:
        * ace/os_include/sys/os_socket.h:
          Moved the following VxWorks includes from OS.h as noted:
          semLib.h to os_semaphore.h; ioLib.h to os_fcntl.h, os_stdio.h,
          os_stropts.h, os_unistd.h; hostLib.h to os_netdb.h; sigLib.h to
          os_signal.h; envLib.h to os_stdlib.h; inetLib.h to
          arpa/os_inet.h; selectLib.h to sys/select.h; sockLib.h to
          sys/socket.h.

        * ace/OS.h:
          Commented out remLib.h and sysLib.h since they don't appear to
          be used by ACE at all.

        * ace/OS.h:
        * ace/os_include/sys/os_un.h:
          Moved sockaddr_un declaration to sys/os_un.h.

        * ace/OS.h:
        * ace/os_include/os_signal.h:
          Moved NSIG definition to os_signal.h.

        * ace/config-vxworks5.x.h:
          Added following ACE_LACKS_* defines: STDINT_H, INTTYPS_H,
          UNISTD_H, SYS_SELECT_H, SYS_TIME_H, SYS_RESOURCE_H, DLFCN_H,
          SYS_UIO_H, SYS_IPC_H, SYS_SEM_H, STROPTS_H, and SYS_MSG_H.

Wed Jun 18 14:00:00 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-openbsd.h:
          Added ACE_LACKS_STDINT_H and ACE_LACKS_STROPTS_H.

Wed Jun 18 13:47:01 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
          Also parse the new os_include subdirectory for doxygen docu

Wed Jun 18 08:11:35 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/NMakeProjectCreator.pm:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/VC6ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/VC7ProjectCreator.pm:

          For custom defined values, convert $(...) to the corresponding
          environment variable accessor, if it is required.  Custom builds
          done in the MS based IDE's are placed in a batch file and then
          executed.  For this particular case, $(...) doesn't work so we
          convert the values on assignment.

Wed Jun 18 07:38:26 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/pch_cmd.pl:

          This script can be used to edit c++ file generated by a given
          command to add a #include of a precompile header.

Wed Jun 18 07:35:22 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/Creator.pm:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Fixed a bug where scoped assignment additions for custom types
          would override the values given in the Define_Custom section.

Wed Jun 18 07:16:33 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-borland.h:
          Added ACE_LACKS_DIRENT_H, ACE_LACKS_SYS_IOCTL_H, ACE_LACKS_STROPTS_H
          and ACE_HAS_DIRENT

Wed Jun 18 06:21:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-borland.h:
          Added ACE_LACKS_STDINT_H

Wed Jun 18 03:22:15 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-borland-common.h:
        * ace/config-win32-borland.h:
          Moved ACE_LACKS that were added to config-borland-common.h in
          Tue Jun 17 18:34:39 UTC 2003  Don Hinton
          <dhinton@dresystems.com> to config-win32-borland.h.  Moved
          ACE_LACKS_STRRECVFD from config-borland-common.h to config-win32-borland.h.

Tue Jun 17 21:50:13 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/Synch.{h,i,cpp}: Changed the ACE_Recursive_Thread_Mutex's
          "recursive_mutex_" data member to "lock_" so that it would work
          with the ACE_Guard properly.  Thanks to Arturo Montes
          <mitosys@colomsat.net.co> for this fix.

Wed Jun 18 02:14:16 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/config-cywin32.h:
          Added following ACE_LACKS_* defines:  STDINT_H, INTTYPES_H,
          SYS_IPC_H, SYS_SEM_H, SYS_MSG_H, and STROPTS_H.  Thanks to Jeff
          Parsons for pointing this out.

Tue Jun 17 15:25:20 2003  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Sock_Connect.cpp (get_windows_version):
        * ace/WIN32_Asynch_IO.cpp (readv,writev): Fixed compilation errors
          when ACE_HAS_WINSOCK2=0.  Thanks to Raymond Hoofman
          <raymond@charm.nl> for submitting the patches.

Tue Jun 17 18:34:39 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/OS.h:
          Removed includes for os_dirent.h and os_errno.h since they are
          pulled in by OS_Dirent.h and OS_Errno.h.

        * ace/OS_Dirent.h:
        * ace/os_include/os_dirent.h:
          Moved all the typedefs to os_dirent.h and changed OS_Dirent.h
          include it.

        * ace/OS_Errno.h:
        * ace/os_include/os_errno.h:
          Moved all the typedefs, declarations, and defines to os_errno.h
          and included it in OS_Errno.h.

        * ace/OS_Log_Msg_Attributes.h:
          Include os_stdio.h instead of <stdarg.h> and <stdio.h>.

        * ace/OS_Memory.[h,inl,cpp]:
          Rearranged includes, and included os_* headers.

        * ace/OS_String.[h,inl]:
        * ace/config-all.h:
          Include os_* headers.

        * ace/config-psos-diab-mips.h:
          Added ACE_LACKS_STDLIB_H and ACE_LACKS_STRING_H.

        * ace/os_include/os_strings.h:
          Define ACE_LACKS_STRINGS_H if !ACE_HAS_STRINGS.

        * ace/config-borland-common.h:
          Added following ACE_LACKS_* defines INTTYPES_H,UCONTEXT_H,
          SYS_SELECT_H, SYS_TIME_H, SYS_RESOURCE_H, SYS_WAIT_H, DLFCN_H,
          SYS_MMAN_H, SYS_UIO_H, SYS_SOCKET_H, NETINET_IN_H, NETDB_H,
          NET_IF_H, SYS_IPC_H, and SYS_SEM_H.

Tue Jun 17 13:44:09 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/README:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/templates/bor.mpd:
        * bin/MakeProjectCreator/templates/em3vcp.mpd:
        * bin/MakeProjectCreator/templates/gnu.mpd:
        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/MakeProjectCreator/templates/nmake.mpd:
        * bin/MakeProjectCreator/templates/vc6dsp.mpd:
        * bin/MakeProjectCreator/templates/vc7.mpd:

          Added a new custom definition keyword 'pch_option' to allow the
          custom build command to possibly generate code that is compatible
          with precompiled headers.

Tue Jun 17 14:42:25 2003  Gautam H. Thaker  <gthaker@atl.lmco.com>

        * performance-tests/SCTP/Options_Manager.cpp:

          Change was necessary for build on RH 9.0 to work properly.
          Change consisted of moving the definition of IPPROTO_SCTP
          to after all the other includes.

Tue Jun 17 13:26:58 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          When matching possible output files for custom builds, check for
          forward slashes and back slashes.

Tue Jun 17 17:28:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SSL/Makefile:
          Set ACE_SSL_BUILD_DLL when building a shared lib

Tue Jun 17 11:47:52 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/Future.{h,cpp}: Changed all uses of ACE_Thread_Mutex to
          ACE_Recursive_Thread_Mutex and also changed the
          ACE_Condition_Thread_Mutex to
          ACE_Condition_Recursive_Thread_Mutex.  This should fix bugs with
          deadlock.  Thanks to Thomas Groth <groth.th@nord-com.net> for
          providing these patches.

        * ace/DLL_Manager.cpp (symbol): Added missing newlines in
          debug/error messages.  Thanks to Rick Ohnemus
          <rick.ohnemus@systemware.com> for reporting this.

Tue Jun 17 15:49:32 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        * ace/os_include/aio.h:
        * ace/os_include/assert.h:
        * ace/os_include/complex.h:
        * ace/os_include/cpio.h:
        * ace/os_include/ctype.h:
        * ace/os_include/dirent.hd:
        * ace/os_include/lfcn.h:
        * ace/os_include/errno.h:
        * ace/os_include/fcntl.h:
        * ace/os_include/fenv.h:
        * ace/os_include/float.h:
        * ace/os_include/fmtmsg.h:
        * ace/os_include/fnmatch.h:
        * ace/os_include/ftw.h:
        * ace/os_include/glob.h:
        * ace/os_include/grp.h:
        * ace/os_include/iconv.h:
        * ace/os_include/inttypes.h:
        * ace/os_include/iso646.h:
        * ace/os_include/langinfo.h:
        * ace/os_include/libgen.h:
        * ace/os_include/limits.h:
        * ace/os_include/local.h:
        * ace/os_include/math.h:
        * ace/os_include/monetary.h:
        * ace/os_include/mqueue.h:
        * ace/os_include/ndbm.h:
        * ace/os_include/netdb.h:
        * ace/os_include/nl_types.h:
        * ace/os_include/poll.h:
        * ace/os_include/pthread.h:
        * ace/os_include/pwd.h:
        * ace/os_include/regex.h:
        * ace/os_include/sched.h:
        * ace/os_include/search.h:
        * ace/os_include/semaphore.h:
        * ace/os_include/setjmp.h:
        * ace/os_include/signal.h:
        * ace/os_include/spawn.h:
        * ace/os_include/stdarg.h:
        * ace/os_include/stdbool.h:
        * ace/os_include/stddef.h:
        * ace/os_include/stdint.h:
        * ace/os_include/stdio.h:
        * ace/os_include/stdlib.h:
        * ace/os_include/string.h:
        * ace/os_include/strings.h:
        * ace/os_include/stropts.h:
        * ace/os_include/syslog.h:
        * ace/os_include/tar.h:
        * ace/os_include/termios.h:
        * ace/os_include/tgmath.h:
        * ace/os_include/time.h:
        * ace/os_include/trace.h:
        * ace/os_include/ucontext.h:
        * ace/os_include/ulimit.h:
        * ace/os_include/unistd.h:
        * ace/os_include/utime.h:
        * ace/os_include/utmpx.h:
        * ace/os_include/wchar.h:
        * ace/os_include/wctype.h:
        * ace/os_include/wordexp.h:
        * ace/os_include/arpa/inet.h:
        * ace/os_include/net/if.h:
        * ace/os_include/netinet/in.h:
        * ace/os_include/netinet/tcp.h:
        * ace/os_include/sys/ipc.h:
        * ace/os_include/sys/mman.h:
        * ace/os_include/sys/msg.h:
        * ace/os_include/sys/resource.h:
        * ace/os_include/sys/select.h:
        * ace/os_include/sys/sem.h:
        * ace/os_include/sys/shm.h:
        * ace/os_include/sys/socket.h:
        * ace/os_include/sys/stat.h:
        * ace/os_include/sys/statvfs.h:
        * ace/os_include/sys/timeb.h:
        * ace/os_include/sys/time.h:
        * ace/os_include/sys/times.h:
        * ace/os_include/sys/types.h:
        * ace/os_include/sys/uio.h:
        * ace/os_include/sys/un.h:
        * ace/os_include/sys/utsname.h:
        * ace/os_include/sys/wait.h:
          Removed these file--they were replaced by the ones below with
          the "os_" prefix.

Tue Jun 17 15:21:36 UTC 2003  Don Hinton  <dhinton@dresystems.com>

        Merged in the following subsetting changes.

        * ace/*:
        * ace/os_include/*:
          Added "os_" prefix to all the new include file names, and
          modified the includes to match the new names.

        Sat May 17 13:41:38 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/config-freebsd.h:
            Added ACE_LACKS_STROPTS_H.

        Fri May 16 18:26:11 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/os_include/aio.h:
          * ace/os_include/iconv.h:
          * ace/os_include/pthread.h:
          * ace/os_include/signal.h:
          * ace/os_include/stddef.h:
          * ace/os_include/stdint.h:
          * ace/os_include/ucontext.h:
          * ace/os_include/sys/stat.h:
            Nuked trailing whitespace.

        Fri May 16 18:03:09 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/config-all.h:
            Cosmetic changes.

          * ace/os_include/*.h:
            Added extern "C" begin and end brackets to all files, even those
            with not additions, and places all additions inside the extern
            "C" {}'s.  Rearranged some of the #ifdef's and moved includes to
            the top of the files so that only those headers that need to be
            are couched in extern "C".

        Thu May 15 17:01:28 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Adding #include of ace/os_include/sys/sem.h and
            ace/os_include/errno.h/

          * ace/config-win32-msvc.h:
            Added ACE_LACKS_DIRENT_H, ACE_LACKS_DLFCN_H,
            ACE_LACKS_NETDB_H, and ACE_LACKS_NET_IF_H defines.

          * ace/os_include/dlfcn.h:
          * ace/os_include/sys/mman.h:
            Rearranged ACE_WIN32 #ifdef's.

          * ace/os_include/limits.h:
            Fixed a typo.

        Thu May 15 00:12:34 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/os_include/limits.h:
          * ace/os_include/dirent.h:
          * ace/os_include/netdb.h:
            Moved MAXNAMLEN define from limits.h to dirent.h, and
            MAXHOSTNAMELEN from limits.h to netdb.h to clear up
            warnings on Solaris.

        Wed May 14 17:40:28 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Moved more code, as listed below.

          * ace/Default_Constants.h:
            Moved ACE_DIRECTORY_SEPERATOR_*, ACE_PLATFORM_*,
            ACE_LD_SEARCH_PATH_*, ACE_DLL_*, ACE_DEFAULT_SVC_CONF,
            ACE_DEFAULT_[LOCAL|GLOBAL]NAME_*, ACE_DEFAULT_NAMESPACE_*,
            ACE_DEFAULT_THREAD_PRIORITY, and ACE_MAX_DEFAULT_PORT
            defines here.

          * ace/Global_Macros.h:
            Moved the Service Configurator macros here.

          * ace/Handle_Set.h:
          * ace/os_include/sys/select.h:
            Moved the fd_mask typedef from ace/Handle_Set.h to
            ace/os_include/sys/select.h.

          * ace/config-all.h:
            Moved ACE_OSTREAM, ACE_DEFAULT_LOG_STREAM, ACE_SYNCH_*,
            ACE_WSOCK_VERSION, _REENTRANT, ACE_USING, ACE_TYPENAME_*,
            and ACE_TEMPLATE_SPECIALIZATION defines here.

          * ace/config-psosim-g++:
            Moved the size_t define here.

          * ace/config-win32-msvc.h:
            Moved the pragma warning disable's and ACE_HAS_STRICT here.

          * ace/os_include/*h:
            Changed the @file and include guards to include an OS/os
            prefix.  The file names will be changed when we merge to
            the main trunk.

          * ace/os_include/dlfcn.h:
            Moved extern "C" {} wrapper around the include of dlfcn.h when
            ACE_HAS_DLFCN_H_BROKEN_EXTERN_C defined, ACE_SHLIB_*,
            ACE_DEFAULT_SHLIB_MODE, and RTLD_* defines here.

          * ace/os_include/errno.h:
            Moved the ACE_PSOS and ACE_WIN32 E* defines here.

          * ace/os_include/fcntl.h:
            Moved the ACE_WIN32 O_* and ACE_NONBLOCK defines here.

          * ace/os_include/limits.h:
            Added POSIX NAME_MAX and HOST_NAME_MAX.  Moved MAXNAMLEN,
            MAXNAMELEN, and MAXHOSTNAMELEN here.

          * ace/os_include/netdb.h:
            Move queue define when ACE_HAS_STL_QUEUE_CONFLICT is defined here.
            Added extern "C" {} around netdb.h include.  Moved hostent,
            servent structs and ACE_[HOSTENT|SERVENT|PROTOENT]_DATA*
            defines here.

          * ace/os_include/pthread.h:
            Added extern "C" {} wrapper around pthread.h include.

          * ace/os_include/signal.h:
            Moved siginfo_t typedef here.  Added extern "C" {} wrapper
            around signal.h include and moved sigset_t typedef here.  Moved
            ACE_SignalHandler and ACE_SignalHandlerV function typedefs
            and sigaction struct definition here.

          * ace/os_include/stdint.h:
            Moved ACE_PSOS typedefs here.

          * ace/os_include/stdlib.h:
            Moved alloca.h include here.

          * ace/os_include/string.h:
            Changed extern to extern "C" to the strdup() declaration.

          * ace/os_include/unistd.h:
            Changed extern to extern"C" to the getopt() declaration.

          * ace/os_include/arpa/inet.h:
            Added extern "C" {} around arpa/inet.h include.

          * ace/os_include/net/if.h:
            Move map define when ACE_HAS_STL_MAP_CONFLICT is defined here.
            Added extern "C" {} around net/if.h include.  Moved
            IFF_LOOPBACK define here.  Moved struct ifafilt declare when
            ACE_HAS_BROKEN_IF_HEADER is defined.

          * ace/os_include/netinet/in.h:
            Move queue define when ACE_HAS_STL_QUEUE_CONFLICT is defined here.
            Added extern "C" {} around netinet/in.h include.  Moved
            IPPORT_RESERVED, IPPORT_USERRESERVED, INADDR_LOOPBACK,
            INADDR_NONE, INET_ADDRSTRLEN, and INET6_ADDRSTRLEN defines here.

          * ace/os_include/netinet/tcp.h:
            Moved TCP_NODELAY define here.

          * ace/os_include/sys/ipc.h:
            Moved ACE_INVALID_SEM_KEY and the IPC_* defines here.

          * ace/os_include/sys/mman.h:
            Moved extern "C" {} around sys/mman.h when ACE_HAS_BROKEN_MMAP_H
            is defined.  Moved the PROT* and MAP_* defines here.

          * ace/os_include/sys/sem.h:
            Moved union semun definition here.

          * ace/os_include/sys/socket.h:
            Moved cygwin32/socket.h include here.  Moved __cplusplus
            undef/def around sys/socket.h include when
            ACE_HAS_AIX_BROKEN_SOCKET_HEADER is defined.  Moved AF_*, PF_*,
            ACE_ADDRESS_FAMILY_INET and ACE_PROTOCOL_FAMILY_INET defines
            here.

          * ace/os_include/sys/stat.h:
            Added undef ACE_LACKS_SYS_STAT_H if ACE_PSOS is defined (should
            go in the ACE_PSOS headers, eventually).  Changed umask(),
            mkfifo(), and mkdir() declarations from extern to extern "C".

          * ace/os_include/sys/uio.h:
            Moved iovec definition for ACE_WIN32 here.  Moved
            ACE_[READ|WRITE]_TYPE typedefs here.

        Sun May 11 14:42:23 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Moved more code, as listed below.

          * ace/Basic_Types.h:
            Changed #includes to use new headers.  Moved MAXPATHLEN
            to ace/os_include/limits.h.

          * ace/Malloc.h:
          * ace/Default_Constants.h:
            Moved ACE_DEFAULT_BASE_ADDR here.

          * ace/os_include/limits.h:
            Added conditional include of <sys/param.h>.  Moved howmany
            macro and MAXPATHLEN here.  Added POSIX PATH_MAX.

          * ace/os_include/time.h:
            Moved timespec_t typedef for ACE_PSOS here.

        Sat May 10 21:39:05 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Removed commented and moved more code, as listed below.

          * ace/Handle_Set.h:
            Moved ACE_FD_SETSIZE and ACE_DEFAULT_SELECT_REACTOR_SIZE
            defines here.

          * ace/Malloc.h:
            Moved ACE_DEFAULT_BASE_ADDR define here.  Fixed #ifdef
            indentation.

          * ace/Timer_Queue_T.cpp:
            Moved ACE_TIMER_SKEW define here.

          * ace/os_include/pthread.h:
            Moved a large section of pthread defines and typedefs here.

          * ace/os_include/stdio.h:
            Moved ACE_PSOS_SNARFS_HEADER_INFO decl's for fdopen(), tempnam(),
            and fileno() here.

          * ace/os_include/stdlib.h:
            Moved ACE_PSOS_SNARFS_HEADER_INFO decl for putenv() here.

          * ace/os_include/string.h:
            Moved ACE_PSOS_SNARFS_HEADER_INFO decl for strdup() here.

          * ace/os_include/unistd.h:
            Moved ACE_PSOS_SNARFS_HEADER_INFO decl's for getopt() and
            isatty() here.

          * ace/os_include/sys/stat.h:
            Moved ACE_PSOS_SNARFS_HEADER_INFO decl's for umask(), mkfifo(),
            and mkdir() here.

          * apps/gperf/src/Vectors.h:
            Moved ACE_ASCII_SIZE, ACE_EBCDIC_SIZE, and
            ACE_STANDARD_CHARACTER_SET_SIZE defines here.

        Sat May 10 18:59;32 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/config-cygwin32.h:
            Added ACE_LACKS_SYS_IPC_H ACE_LACKS_SYS_MSG_H.

        Sat May 10 16:18:24 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Commented and moved more code, as listed below.

          * ace/SV_Semaphore_Simple.h:
            Moved ACE_DEFAULT_SEM_KEY define here.

          * ace/os_include/fcntl.h:
            Moved O_NDELAY, ACE_NONBLOCK, and O_* defines for __BORLANDC__
            here.

          * ace/os_include/signal.h:
            Moved SIG* and ACE_SIG* defines here.

          * ace/os_include/stddef.h:
            Moved size_t for ACE_PSOS_DIAB_MIPS here.

          * ace/os_include/stdio.h:
            Moved ACE_MAX_USERID, BUFSIZ, ACE_STRBUF_SIZE, and ACE_STD*
            defines here.

          * ace/os_include/string.h:
            Moved str[n]imp() for __BORLANDC__ and ACE_SPRINTF_ADAPTER
            defines here.

          * ace/os_include/unistd.h:
            Moved _SC_AIO_MAX, chdir(), access(), getcwd(), and isatty()
            defines for __BORLANDC__ here.

          * ace/os_include/sys/mman.h:
            Moved PROT_RDWR define here.

          * ace/os_include/sys/socket.h:
            Moved CMSG_DATA define here.

          * ace/os_include/sys/stat.h:
            Moved stat(), umask(), and fstat() defines for __BORLANDC__ here.

          * ace/os_include/sys/timeb.h:
            Moved ftime() and timeb defines for __BORLANDC__ here.

          * ace/os_include/sys/types.h:
            Moved longlong_t, key_t, and pid_t here.

        Sat May 10 19:19:09 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Commented and moved more code, as listed below.

          * ace/os_include/sys/types.h:
            Added ACE_LACKS_SYS_MMAN_H define.

          * ace/os_include/sys/types.h:
            Moved nlink_t, uid_t, gid_t, and caddr_t typedefs for
            ACE_WIN32 here.

        Fri May  9 22:45:24 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Commented and moved more code, as listed below.

          * ace/os_include/signal.h:
            Moved ACE_HAS_SIG_MACROS and ACE_HAS_SIG_ATOMIC_T ifdefs,
            sigemptyset undefs, and SCO SIGIO def and include of
            sys/regset.h here.

          * ace/os_include/stdlib.h:
            Move rand_r() declaration here.

          * ace/os_include/string.h:
            Moved strtok_r() declaration here.

          * ace/os_include/time.h:
            Moved strptime() declaration here.

          * ace/os_include/unistd.h:
            Moved ualarm(), pread/pwrite(), getpgid(), and lseek64/llseek()
            declarations here.

          * ace/os_include/sys/mman.h:
            Moved MAP_* and PROT_* defines for ACE_WIN32 here.

          * ace/os_include/sys/msg.h:
            Moved struct msqid_sh declaration for ACE_WIN32 here.

          * ace/os_include/sys/resource.h:
            Moved struct rusage declaration for ACE_WIN32 here.

          * ace/os_include/sys/select.h:
            Moved NFDBITS define for ACE_WIN32 here.

          * ace/os_include/sys/shm.h:
            Moved struct shmaddr declaration for ACE_WIN32 here.

          * ace/os_include/sys/socket.h:
            Moved struct msghdr and related declarations here.

          * ace/os_include/sys/uio.h:
            Moved [ACE_]IOV_MAX defines here.

        Fri May  9 16:10:50 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Commented and moved more code, as listed below.

          * ace/config-sunos5.5.h:
            Added ACE_LACKS_STDINT_H.

          * ace/os_include/stropts.h:
            Moved includes of [sys/]timod.h, sys/filio.h, and sys/sockio.h
            here.

          * ace/os_include/sys/msg.h:
            Moved ACE_HAS_BROKEN_MSG_H and ACE_LACKS_SYSV_MSQ_PROTOS
            #ifdef's here.

        Fri May  9 01:20:49 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/config-cygwin32.h:
            Added ACE_LACKS_SYS_SEM_H macro.

        Fri May  9 00:20:32 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/config-win32-msvc.h:
            Added following ACE_LACKS macros: INTTYPES_H, STROPTS_H,
            SYS_IOCTL_H, SYS_IPC_H, and SYS_SEM_H.

          * ace/SV_Semaphore_Complex.cpp:
          * ace/SV_Semaphore_Simple.cpp:
            Added #include "ace/os_include/sys/sem.h".

          * ace/SPIPE_Stream.h:
            Added #include "ace/os_include/stropts.h".

        Thu May  8 23:24:43 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Commented out a ton of code and moved it into the following
            files as noted.  The commented out code will be removed once the
            other platforms have been tested and we are ready to commit to
            the main trunk.

          * ace/Thread.h:
            Moved struct cancel_state here.

          * ace/os_include/pthread.h:
            Moved pthead_self() declaration here.

          * ace/os_include/semaphore.h:
            Moved struct ACE_sema_t and SEM_FAILED here.

          * ace/os_include/stdint.h:
            Moved BSD style types, e.g., u_char, here.

          * ace/os_include/stropts.h:
            Moved struct strrecvfd declaration here.

          * ace/os_include/time.h:
            Moved ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R define and
            undef of ctime when ACE_HAS_BROKEN_CTIME here.

          * ace/os_include/sys/msg.h:
            Moved struct msgbuf declaration here.

          * ace/os_include/sys/resource.h:
            Moved rlimit typedef here.

          * ace/os_include/sys/sem.h:
            Moved struct sembuf declartion here.

          * ace/os_include/sys/stat.h:
            Moved ACE_LACKS_MODE_MASK, e.g., S_IRWXG, definitions
            and struct stat here.

          * ace/os_include/sys/types.h:
            Moved clockid_t and dev_t typedefs and conditional include
            of <types.h> here.

          * ace/os_include/sys/uio.h:
            Moved struct iovec and related typedefs here.

        Thu May  7 02:04:00 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.h:
            Replaced Windows specific includes for ws2tcpip.h, direct.h,
            process.h, and io.h with the appropriate new headers listed
            below.

          * ace/config-cygwin32.h:
            Added following ACE_LACKS macros:  STDINT_H, INTTYPES_H,
            STROPTS_H, and UCONTEXT_H.

          * ace/config-win32-msvc.h:
            Added several ACE_LACKS macros: UCONTEXT_H, STDINT_H,
            SYS_SELECT_H, TIME_H, SYS_RESOURCE_H, SYS_WAIT_H,
            SYS_UIO_H, SYS_SOCKET_H, and NETINET_IN_H.

          * ace/os_include/unistd.h:
            Added include for <process.h> and <io.h> on Windows,
            but not WINCE.

          * ace/os_include/sys/stat.h:
            Added include for <direct.h> on Windows, but not WINCE.

          * ace/os_include/netinet/in.h:
            Added include for <ws2tcpip.h> when ACE_HAS_WINSOCK2 is
            defined and != 0.

        Wed May  7 00:02:10 UTC 2003  Don Hinton  <dhinton@dresystems.com>

          * ace/OS.{i,h}:
          * ace/os_include/signal.h:
          * ace/os_include/stropts.h:
            Modified most of the #includes of systems headers to use the
            ace/os_include/*.h headers, and started moving some of the
            #ifdef'd code to the new headers.

          * ace/config-linux-common.h:
            Removed #define ACE_LACKS_STRRECVFD and added #define
            ACE_HAS_STRBUF_T.

Tue Jun 17 06:36:39 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/VC6ProjectCreator.pm:

          Removed a hack in the VC6 projects which originally appended EXE,
          DLL and LIB to the end of the project names.  This caused problems
          with exe dependencies and wasn't necessary in the first place.

        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Changed value from undef to '' to avoid using an undefined
          reference in case a referenced environment variable doesn't
          exist.

Tue Jun 17 06:42:33 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS.h:
          Only define ACE_DLL_SUFFIX and ACE_DLL_PREFIX when they are not
          defined yet. This makes it easy to overrule them in the config
          files like below.

        * ace/config-cygwin32.h:
          Set ACE_DLL_SUFFIX to .dll for Cygwin.

        * ace/config-win32-mingw.h:
          Set ACE_DLL_PREFIX to lib for MinGW.

Tue Jun 17 05:37:12 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Added remedy info

        * ace/DLL.cpp:
          Removed duplicate space in debug line

        * ace/DLL_Manager.cpp:
          Corrected incorrect classname in debug line and when having problems
          loading a DLL, report also the name of the dll.

        * ace/Filecache.cpp:
          Corrected incorrect comment

        * ace/config-win32-borland.h:
          Added define ACE_NEEDS_DL_UNDERSCORE

        * ace/Lib_Find.cpp:
          Removed special borland check because for borland we set now
          ACE_NEEDS_DL_UNDERSCORE

Mon Jun 16 22:24:25 2003  Balachandran Natarajan  <bala@dre.vanderbilt.edu>

        * ace/Priority_Reactor.h: Fixed typos in the operator= and copy
          constructor. Thanks to Douglas A Stuart
          <douglas.a.stuart@boeing.com> for reporting the problem.

        * THANKS: Added Doug A Stuart to the hall of fame.