summaryrefslogtreecommitdiff
path: root/ChangeLog-98b
blob: 833279946d306bb91111a73a992c4aa7100292a9 (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
Fri Jul 03 13:47:19 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.20 released.

Fri Jul 03 08:52:13 1998  Steve Huston  <shuston@riverace.com>

	* netsvcs/lib/Name_Handler.{cpp h}: Moved class Naming_Context from
	  .cpp to .h so that AIX xlC can find it when instantiating templates.

Thu Jul  2 11:49:16 1998  Alexander Babu Arulanthu  <alex@cs.wustl.edu>

        * ace/OS.h:
        * ace/OS.i: Added ACE_OS::fseek (). NT supports this too. Just
        defined SEEK_SET, SEEK_CUR etc, in case they are not defined. This
        is similar to what has been done for lseek.

Thu Jul 02 10:58:00 1998  Michael Kircher  <mk1@cs.wustl.edu>

        * tests/Upgradable_RW_Test.cpp: Totally new version,
          now we use linked lists on which we search to
          spend some time.

        * tests/Upgradable_RW_Test.dsp: Project file for this test.

        * tests/tests.dsw: Integrated this project.

        * tests/version_tests.dsw: Integrated this project.

        * tests/Upgradable_RW_Test.dsp: Project file for this test.

Thu Jul 02 09:14:20 1998  David L. Levine  <levine@cs.wustl.edu>

        * examples/Reactor/Misc/test_timer_queue.cpp (test_functionality):
          use timer_id outside of an assert, so that we don't get compile
          warnings with ACE_NDEBUG about it being unused.

        * ace/OS.cpp (thr_create): on VxWorks only, check if thr_id
          points to a zero char *.  If so, assign the VxWorks task
          name pointer to it (*thr_id).  Thanks to Bill Backstrom
          <backstr@anubis.network.com> for this suggestion.

        * ace/Thread_Manager.cpp (spawn_i): on VxWorks only, augmented
          comment to explain the various cases for t_id and *t_id values.

        * ace/Thread_Manager.h (spawn*): on VxWorks only, added comment
          explaining use of ACE_thread_t * argument.

        * tests/Barrier_Test.cpp: on VxWorks only, added test of
          an ACE_thread_t that points to a 0 char *.

        * tests/Barrier_Test.cpp,Thread_Manager_Test.cpp: moved
          VxWorks task name and stack size tests from Barrier_Test
          to Thread_Manager_Test.

        * tests/run_tests.vxworks: on VxWorks only, enabled
          Message_Queue_Test.  It's OK to run it on VxWorks, now
          that the iterator_test () is disabled in the test.

        * tests/SOCK_Connector_Test.cpp (succeed_nonblocking):
          if the connection completion fails, reset the status
          _before_ doing the printout.  The printout causes the
          errno to be overwritten on LynxOS 2.5.0, for example.

        * Makefile (releaseall): use $(MAKE) instead of make for
          recursive make.

Wed Jul 01 21:31:40 1998  Arturo Montes  <mitosys@colomsat.net.co>

        * ace/IOStream_T.i (recv_n, eof): fixed calculation of
          timeout_ and return value.

Wed Jul 01 08:51:33 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/Service_Types.cpp
          tests/Dynamic_Priority_Test.cpp: Moved explicit template
          instantiations for ACE_Dynamic_Message_Queue and
          ACE_Message_Queue_Factory from the test into the ACE library
          (next to where the ACE_Message_Queue instantiations resided).

Wed Jul 01 07:08:40 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Message_Queue.i,cpp (VxWorks only): removed args from a
          couple of unsupported functions, and added ACE_UNUSED_ARGS
          to others, to avoid compiler warnings.

        * tests/Message_Queue_Test.cpp (performance_test): allocate
          the send blocks in the main thread instead of in the sender.
          That way, the main thread can delete them after the
          receiver has finished.  Before this change, the sender would
          sometimes delete them before the reciever finished.  Thanks to
          Carlos and his friend Mr. SIGSEGV for helping to track this down.

Tue Jun 30 23:48:39 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Message_Queue.h: Added /**/ between #include and <> to
          prevent warnings from MSVC.

Tue Jun 30 22:05:01 1998  David L. Levine  <levine@cs.wustl.edu>

        * tests/Dynamic_Priority_Test.cpp: added template
          instantiations.

Tue Jun 30 18:55:45 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/Message_Queue_T.{cpp, h}

          Added methods to ACE_Message_Queue_Factory to
          create an ACE_Dynamic_Message_Queue with the
          deadline and laxity with cleanup strategies.

        * tests/Dynamic_Priority_Test.cpp

          Added tests for the new cleanup strategy factory methods

Tue Jun 30 18:03:15 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/Message_Queue_T.{cpp, h}
          ace/Message_Block.{cpp, h, i}

          Reorganized ACE_Dynamic_Message_Queue and related classes,
          fixed bugs that turned up in testing: it's ready to put
          on the road and see how it runs ;-)

        * tests/Dynamic_Priority_Test.{cpp, dsp}
          tests/tests.dsw
          tests/Makefile
          tests/run_tests.{bat, sh}

          Added a test for the static and dynamic (both deadline and laxity
          based) message queues, which assigns various message attributes,
          pushes messages into the queue, and makes sure the resulting
          dequeue order is correct for the given kind of queue.

Tue Jun 30 14:04:42 1998  Steve Huston  <shuston@riverace.com>

        * ace/Message_Queue_T.cpp: Fixed references to an undeclared
          priority_eval_func_ptr_ - I think I figured out what it was
          supposed to be doing, but I'm not quite sure.  It compiles ;-)

        * ace/Synch.h (ACE_Adaptive_Lock): Removed "= 0" (pure virtual) from
          destructor decl.  The function is defined in Synch.cpp.

Tue Jun 30 13:13:21 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/WFMO_Reactor.cpp (open): Made sure that size does not exceed
          MAXIMUM_WAIT_OBJECTS.  Thanks to Dr. Schmidt for pointing this
          out.

Tue Jun 30 11:45:12 1998  Steve Huston  <shuston@riverace.com>

        * ace/Message_Queue_T.cpp: Added explicit class names where needed
          for ANSI C++.  Fixed some compile errors.  Still needs more work to
          compile correctly on HP-UX aCC.

Tue Jun 30 09:27:25 1998  David L. Levine  <levine@cs.wustl.edu>

        * etc/ACE-guidelines.html: added a guideline about using ACE_Export.

        * ace/Message_Queue.cpp (ACE_Message_Queue_Vx::dtor; VxWorks only):
          added close () call to destructor, because the one in the parent
          class will never get called because head_ is always 0 in the derived
          class.

        * ace/Message_Queue.i (VxWorks only): finished implementing the
          ACE_Message_Queue_Vx inline member functions.

        * tests/Message_Queue_Test.cpp: added performance tests and
          tests of ACE_Message_Queue_Vx.

Tue Jun 30 03:39:15 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Synch.h (ACE_RW_Process_Mutex): This class no longer needs
          to inherit from ACE_Process_Mutex.

        * ace/Synch.cpp (ACE_RW_Process_Mutex): On non-Win32 platforms,
          the underlying ACE_File_Lock needs to be created with owner's
          read/write permission.  Otherwise, other process won't be able
          to access the lock.

        * Makefile (CONTROLLED_FILES): Added ChangeLog-98a and
          ChangeLog-97b into release.  Thanks to Ivan Murphy
          <Ivan.Murphy@med.siemens.de> for pointing this out.

Tue Jun 30 00:51:32 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.19 released.

Tue Jun 30 00:07:39 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * examples/Service_Configurator/Misc/main.dsp: Added macro
          definition ACE_SVC_HAS_DLL=0 in this project.  DLL linkage is
          not used in this example (yet.)  Thanks to Joe Covalesky
          <joe@nowsol.com> for noticing this.

Mon Jun 29 21:16:39 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/OS.cpp (invoke): wrapped final return with ACE_NOTREACHED.
          "It's the right thing to do."

Mon Jun 29 19:42:12 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Timeprobe_T.cpp (ACE_Timeprobe): Changed __TEXT to ASYS_TEXT.

Mon Jun 29 14:48:58 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.h: Added UNICODE macros for non-Win32 platforms.  Thanks
          to Jeff Greif <jmg@trivida.com> for pointing this out.

        * ace/OS.cpp (invoke): Added a return at the end to keep AIX
          happy.  Thanks to CLahey@cccis.com for reporting this.

Mon Jun 29 11:37:28 1998  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp: Added a 'const' to initialized ASYS_TCHAR * - string
          literal conversion to char * is deprecated in C++.

Sun Jun 28 22:16:51 1998  David L. Levine  <levine@cs.wustl.edu>

        * examples/Service_Configurator/Misc/main.cpp (main): removed
          argc declaration because it was unused.

        * examples/Threads/task_five.cpp (work): added
          ACE_UNUSED_ARG (stack_size).

        * ace/Message_Queue_T.h: fully qualify the DEFAULT_[HL]WM
          references so that it will compile with aCC 1.07 on HPUX 10.20.
          Thanks to Avi Nash <anash@RedBrick.COM> for reporting this
          problem.

        * acer/Message_Queue.{h,cpp} (ACE_Message_Queue_Vx:enqueue_head/tail):
          implement these for VxWorks.  enqueue_head_i just calls
          enqueue_tail_i.

Sat Jun 27 18:13:05 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Timeprobe_T.cpp (ACE_Timeprobe - copy constructor): Stupid
          MSVC is forcing me to define this and make it public; it should
          really be protected; please don't use it.

        * TAO/tests/POA/Explicit_Activation/server.cpp (main):

        * ace/Timeprobe.h: Added ACE_SINGLETON_DECLARATION; otherwise all
          compilation units would get a different instantiation of the
          time probe class.  Also, changed ACE_TIMEPROBE_SINGLETON to a
          #define instead of a typedef; otherwise the compiler bitched
          when it was use in ACE_SINGLETON_DECLARATION.

        * SINGLETON_INSTANTIATION: Removed this flag from all files in
          ACE. It is causing duplicate declaration errors.

Sat Jun 27 11:29:50 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.18 released.

Sat Jun 27 11:27:28 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Basic_Types.h: use ACE_CAST_CONST instead of const in
          ACE_CU64_TO_CU32.

Sat Jun 27 11:03:52 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * README: Updated the list of people who have contributed to TAO.

Sat Jun 27 07:07:43 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.17 released.

Sat Jun 27 00:27:29 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Timeprobe:

          - Added back ACE_COMPILE_TIMEPROBES.  David pointed out that
            without this flag, size of ACE increases even when time probes
            are not being used. Therefore, users must compile ACE with
            this flag defined if they want to use time probes.  This can
            be achieved by doing one of the following:

            . Use make probe = 1, if you are using the make utility.

            . Define ACE_COMPILE_TIMEPROBES in config.h

            . Define ACE_COMPILE_TIMEPROBES in the VC project file.

            . Other regular methods will also work.

            It is not necessary to define ACE_COMPILE_TIMEPROBES when
            using time probes, you simply need ACE_ENABLE_TIMEPROBES.  You
            can use the ACE_TIMEPROBE_* macros to program the time probes,
            and use the ACE_ENABLE_TIMEPROBE to enable the time probes.
            If you define ACE_ENABLE_TIMEPROBE in your code, but forget to
            compile ACE with ACE_COMPILE_TIMEPROBES, you will end up with
            linker errors.

            Remember that ACE_COMPILE_TIMEPROBES means that the ACE
            library will contain code for time probes.  This is only
            useful when compiling ACE. ACE_ENABLE_TIMEPROBES means that
            the ACE_TIMEPROBE_* macros should spring to life.

          - Added inclusion of OS.h.  This way the ACE_COMPILE_TIMEPROBES
            can be specified in the config file.

        * include/makeinclude/wrapper_macros.GNU: probe = 1 no longer
          means ACE_ENABLE_TIMEPROBE.  It only means
          ACE_COMPILE_TIMEPROBES.  This was changed because defining
          ACE_ENABLE_TIMEPROBE here is too broad.  ACE_ENABLE_TIMEPROBE is
          cleverly designed so that it allows only some time probes to be
          enabled (where ACE_ENABLE_TIMEPROBE is defined), while others to
          be disabled (where ACE_ENABLE_TIMEPROBE is not defined).

          Example: IDL_Cubit time probes can be enabled without enabling
          TAO time probes. Or TAO time probes can be enabled without
          enabling IDL_Cubit time probes. TAO time probes are controlled
          through TAO/tao/Timeprobes.h.

        * tests/Timeprobe_Test.cpp:

          - Defining ACE_ENABLE_TIMEPROBES is not forced. Users can
            uncomment this at the top of the file.  This relieves us from
            trying to include the symbols of ACE_Timeprobes from ACE if
            ACE was compiled without using ACE_COMPILE_TIMEPROBES (the
            #include ace/Timeprobe.cpp trick did not work on all 8
            different ways of compiling ACE on NT).

          - Made the registration of the description arrays similar to the
            real use cases (in TAO).

          - Introduced enums and took the magic numbers out.

Fri Jun 26 14:52:33 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/test_config.h: Don't close the ofstream before opening the
          log stream in ACE_APPEND_LOG on Win32.  It it not necessary
          because Win32 doesn't have fork anyway and it somehow confuses
          Win32 (becuase no file was openen at that point.)

        * performance-tests/Makefile: Temporarily removed Synch-Benchmark
          from the targets.  It should be added back once the work is
          done.

Fri Jun 26 11:50:03 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/OS.h: map ACE_dynamic_cast to static_cast with Sun C++,
          without RTTI, to avoid warning about using dynamic_cast
          without RTTI.  Thanks to J. Russell Noseworthy
          <rnosewor@objectsciences.com> for reporting this.

        * include/makeinclude/wrapper_macros.GNU,ACE-INSTALL.html:
          added rtti make option.

        * ace/Message_Queue.*: on VxWorks, added ACE_Message_Queue_Vx,
          which wraps native VxWorks messages queues.  See the header
          file for limitations.

        * ace/Message_Queue_T.*,Makefile: split Message_Queue into
          template and non-template files.

        * ace/Basic_Types.h: added ACE_CU64_TO_CU32 conversion macro,
          for converting const ACE_UINT64 to const ACE_UINT32.  The old
          ACE_U64_TO_U32 wouldn't work with Sun C++'s ANSI casts.

        * performance-tests/Misc/basic_perf.cpp (per_iteration): use
          ACE_CU64_TO_CU32 for narrowing the const ACE_UIN64 argument.

        * ace/config-sunos5.5.h: added ACE_HAS_ANSI_CASTS with Sun C++ 4.2.

        * include/makeinclude/platform_sunos5_sunc++.GNU: added
          -features=castop to CCFLAGS, to enable use of ANSI casts.

          Thanks to  J. Russell Noseworthy <rnosewor@objectsciences.com>
          for recommending the above two changes.

        * include/makeinclude/platform_sunos5_sunc++.GNU: Added
          support for rtti=1 option to make, to optionally enable RTTI.

Fri Jun 26 11:39:49 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ACE-INSTALL.html: Added more infomation in {Free,Net}BSD.

Fri Jun 26 10:51:07 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/OS.h:
          Fixed problem in ACE_DES_* macros, some preprocessors were
          tokenizing ::~CLASS as ":: ~CLASS" and we wanted ":: ~ CLASS"
          (were class in a macro argument).

Fri Jun 26 09:48:55 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * VERSION: Updated this file to direct bug reports to
          the ACE mailing list.

Fri Jun 26 10:43:02 EET DST 1998 Wei Chiang <wei.chiang@ntc.nokia.com>

        * ace/CLASSIX/CLASSIX_OS.cpp:
        ACE_CLASSIX_OS::ACE_CLASSIX_OS()
        After created an CLASSIX reactor as an actor-wide singleton
        reactor, delete the original reator singleton, if any.

Fri Jun 26 02:18:05 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * performance-tests/Synch-Benchmarks/Benchmark[_Base].{h,cpp}:
        * performance-tests/Synch_Benchmarks/Makefile: Added a new class
          Benchmark_Base so we can not only load the test items
          but also the test methods dynamically.

Wed Jun 24 21:37:22 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Message_Queue.cpp (refresh_queue): fixed syntax
          error: extraneous ;.

Wed Jun 24 19:52:30 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/IPC_SAP.cpp (enable,disable): Fixed #define nesting.

Wed Jun 24 15:36:18 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
        (Peer_Router_Context): For some reason, MSVC can't grop the
        temporary objects.  Therefore, I changed the ACE_INET_Addr object
        in the constructor to a local variable.

Wed Jun 24 17:10:06 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Timeprobe: Removed ACE_COMPILE_TIMEPROBE.  ACE library will
          always contain ACE_Timeprobe code.

Wed Jun 24 16:20:02 1998  James CE Johnson  <jcej@lads.com>

        * ace/IOStream.cpp (underflow,overflow): added protection against
          errors, when get/put buffers can be set to 0.

Wed Jun 24 14:42:50 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/Message_Queue.{cpp,h}: added =TITLE/=DESCRIPTION
          and method comments to ACE_Message_Queue_Factory

        * ace/Message_Block.h: fixed comment in ACE_Laxity_Message_Strategy

Wed Jun 24 13:35:15 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/Message_Queue.{cpp,h,i}
          ace/Message_Block.{cpp,h,i}: Fixed ACE_UNIMPLEMENTED_FUNC
          declarations in ACE_Dynamic_Message_Queue, moved the
          ACE_Dynamic_Message_Strategy, ACE_Laxity_Message_Strategy,
          and ACE_Deadline_Message_Strategy classes from the
          Message_Queue.* files into the respective Message_Block.*
          files (fixes link errors on platforms such as NT which
          require template source).

Wed Jun 24 11:38:00 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/Message_Block.{cpp,h,i}: Added worst case execution time and
          deadline absolute time ACE_Time_Value members to ACE_Message_Block.
          These default to ACE_Time_Value::zero in the constructors and
          initialization methods.

        * ace/Message_Queue.{cpp,h,i}: Added ACE_Dynamic_Message_Queue,
          ACE_Dynamic_Message_Strategy, ACE_Deadline_Message_Strategy,
          ACE_Laxity_Message_Strategy, and ACE_Message_Queue_Factory
          classes to facilitate adaptive use of statically or dynamically
          prioritized message queues.

Wed Jun 24 10:23:27 1998  David L. Levine  <levine@cs.wustl.edu>

        * bin/make_release: 1) inserted /pkg/gnu/bin at head of
          PATH, if it exists.  That way, cvs diff will use GNU diff.
          Thanks to Doug for tripping over that.
          2) changed grep -E to egrep.

        * ace/OS.i,gethrtime.cpp (gethrtime): with Pentium and g++ or ghs,
          only; fixed load of 64-bit tick count into two 4-byte ints.

        * performance-tests/Misc/basic_perf.cpp (iteration_time): check
          for elapsed_time_ less than empty_iteration_time_, and return 0
          if so.

Wed Jun 24 10:02:14 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * examples/ASX/Event_Server/Transceiver/transceiver.cpp
          (parse_args): Fixed a warning about control reaching the end of
          a method.  Thanks to David Levine for reporting this.

        * .cvsignore: Added "build" to make CVS happy.  Thanks to
          David for this info.

        * ace/CLASSIX: Reran "make depend."


Wed Jun 24 13:34:32 EET DST 1998 Wei Chiang <chiang@horizon.ntc.nokia.com>

        * tests/CLASSIX/*
          Attached "CLASSIX_" to all the file names in this directory
          Added Imakefile

        * ace/CLASSIX/CLASSIX_Select_Reactor.*
          test/CLASSIX/CLD_Connector_Test.cpp
          get_current_info() is now renamed to current_info() in compliant
          with ACE_Reactor_Impl class.

Wed Jun 24 08:17:25 EET DST 1998 Wei Chiang <chiang@horizon.ntc.nokia.com>

        * Renamed ace/CLASSIX/CLASSIX_Reactor.* to
          ace/CLASSIX/CLASSIX_Select_Reactor.* and adujsted other files
          accordingly.

        * ace/CLASSIX/CLASSIX_Reactor.*
          make naming reference consistenet: all the references to
          ACE_CLASSIX_Reactor are now to ACE_CLASSIX_Select_Reactor

Wed Jun 24 02:39:35 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.16 released.

Wed Jun 24 00:00:44 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * examples/ASX/Event_Server/Transceiver/transceiver.cpp: Cleaned
          up the Event_Transceiver code a bit.

        * examples/ASX/Event_Server/Event_Server/event_server.cpp (main):
          Cleaned up the code a bit.


Wed Jun 24 06:54:00 EET DST 1998 Wei Chiang <chiang@horizon.ntc.nokia.com>

        * Attached "CLASSIX_" to all the file names in ace/CLASSIX.

        * Modified include statments in ace/CLASSIX/* to reflect the
          name changes.

        * Added Makefile in ace/CLASSIX

        * ace/CLASSIX/CLASSIX_Reactor.h:
          ACE_CLASSIX_Reactor_Notify is now derived from ACE_Reactor_Notify
          The private data member, select_reactor_, is now an
          ACE_CLASSIX_Reactor class instead of an ACE_Select_Reactor class.

        * ace/CLASSIX/CLASSIX_Reactor.cpp:
          in open()
          uses ACE_dynamic_cast() to cast <theReactor>
          parameter from  ACE_Reactor_Impl to ACE_CLASSIX_Reactor

Tue Jun 23 22:18:42 1998  Douglas C. Schmidt  <schmidt@cumbia.cs.wustl.edu>

        * examples/Mem_Map/file-reverse/file-reverse.cpp: Fixed a minor
          bug where the program would ungraciously core dump if the file
          given on the command-line doesn't exist.  Thanks to William
          S. Lear <rael@dejanews.com> for reporting this.

Tue Jun 23 20:33:30 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Synch.h (ACE_Adaptive_Lock): Added ACE_Export.

Tue Jun 23 18:59:31 1998  Steve Huston  <shuston@riverace.com>

        * ace/Acceptor.cpp (ACE_Strategy_Acceptor<>::resume()): Don't
          suspend() the object; resume() it - looked like a cut/paste error.

Tue Jun 23 16:41:35 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Synch.{h,cpp} (class ACE_Adaptive_Lock): Added the new Lock
          class which allows its subclass to determine the actual locking
          mechanism it uses at run time.  Notice that all subclasses must
          provide their own contructor/destructor implementation.

Tue Jun 23 06:40:35 1998  David L. Levine  <levine@cs.wustl.edu>

        * examples/Map_Manager/test_hash_map_manager.cpp (main):
          replaced use of cerr with and ACE_ERROR_RETURN.  Thanks
          to Philippe Klein <Philippe_Klein@vocaltec.com> for reporting
          this.

        * netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp:
          added #include of ace/streams.h.  Thanks to Philippe Klein
          <Philippe_Klein@vocaltec.com> for reporting this.

        * tests/TSS_Test.cpp (worker): declare "u" globally so that
          we don't quickly run out of TSS keys.

Mon Jun 22 09:25:32 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/XtReactor.cpp:
          The notify_handler_ is a pointer now, it was still deferenced as
          an object.

Mon Jun 22 09:04:21 1998  David L. Levine  <levine@cs.wustl.edu>

        * include/makeinclude/platform_osf1_4.0.GNU: removed suppression
          of warning 340, used reference to copied (temporary) value,
          because it's no longer needed.

        * ace/Message_Queue.cpp (ACE_Message_Queue_Iterator ctor):
          replaced "queue" with "q" to avoid problems with STL or on
          platforms that #define queue.  Thanks to Dave Meyer
          <dmeyer@std.saic.com> for reporting this.

        * ace/Synch_T.h: added adapter class ACE_TSS_Type_Adapter.
          It adapts built-in types for use with ACE_TSS.

        * tests/TSS_Test.cpp: demonstrate/test use of ACE_TSS_Type_Adapter.

        * ace/Timeprobe.h: added semicolon to end of
          ACE_TIMEPROBE_EVENT_DESCRIPTIONS definition, when it's non-null.

        * tests/Timeprobe_Test.cpp (main): removed trailing semicolon
          from ACE_TIMEPROBE_EVENT_DESCRIPTIONS, and added ACE_UNUSED_ARGs
          to avoid compilation warnings about unused variables.

Mon Jun 22 04:49:29 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * man/windex: Removed ACE_Service_Record from all the
          documentation since it is no longer relevant.  Thanks
          to Ivan Murphy for reporting this.

Mon Jun 22 02:59:42 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Process.cpp (setenv_i): Nedd to adjust the memory size to
          the actual string size.

Mon Jun 22 02:32:56 1998  Gonzalo Diethelm  <gonzo@tango.cs.wustl.edu>

        * ace/Thread_Manager.h:
        * ace/Thread_Manager.cpp:
        * ace/Thread_Manager.i:
        * ace/OS.cpp (uname):
        Moved a few things (comparison operators) from
        ACE_Thread_Descriptor to ACE_Thread_Descriptor_Base, to satisfy
        Borland compilers.
        Enabled a conditional compilation for all Borland compilers.
        Thanks to Valik Solorzano Barboza <valik@xs4all.nl> for pointing
        these things out.

Mon Jun 22 01:14:36 1998  Gonzalo Diethelm  <gonzo@tango.cs.wustl.edu>

        * ace/ACE.bpg:
        * ace/ACED.bpr:
        * ace/ACER.bpr:
        Contained ^M characters.
        I also made sure there were no absolute paths pointing to "gonzo"
        directories...

        * ace/ACED.cpp:
        * ace/ACER.cpp:
        Added Stats.cpp as a module in the right place.

        * ace/OS.h:
        Added a ACE_NOOP macro to avoid compilation warnings when "if" is
        used as a noop in certain macros.

        * ace/Hash_Map_Manager.cpp:
        * ace/Map_Manager.cpp:
        Replaced the use of "if" as a noop with ACE_NOOP.

        * ace/Signal.cpp:
        For some obscure reason, Borland needs a blank line between the
        #if and the extern "C" void ace_sig_handler_dispatch()
        definition. Don't ask...

        * ace/Asynch_IO.h:
        Changed (again) inheritance for ACE_Asynch_Result from protected
        to public.

        * tests/Aio_Platform_Test.bpr:
        * tests/Atomic_Op_Test.bpr:
        * tests/Barrier_Test.bpr:
        * tests/Basic_Types_Test.bpr:
        * tests/Buffer_Stream_Test.bpr:
        * tests/Conn_Test.bpr:
        * tests/Enum_Interfaces_Test.bpr:
        * tests/Env_Value_Test.bpr:
        * tests/Future_Test.bpr:
        * tests/Handle_Set_Test.bpr:
        * tests/Hash_Map_Manager_Test.bpr:
        * tests/IOStream_Test.bpr:
        * tests/MM_Shared_Memory_Test.bpr:
        * tests/MT_Reactor_Timer_Test.bpr:
        * tests/MT_SOCK_Test.bpr:
        * tests/Map_Manager_Test.bpr:
        * tests/Mem_Map_Test.bpr:
        * tests/Message_Block_Test.bpr:
        * tests/Message_Queue_Notifications_Test.bpr:
        * tests/Message_Queue_Test.bpr:
        * tests/Naming_Test.bpr:
        * tests/Notify_Performance_Test.bpr:
        * tests/OrdMultiSet_Test.bpr:
        * tests/Pipe_Test.bpr:
        * tests/Priority_Buffer_Test.bpr:
        * tests/Priority_Reactor_Test.bpr:
        * tests/Priority_Task_Test.bpr:
        * tests/Process_Mutex_Test.bpr:
        * tests/Process_Strategy_Test.bpr:
        * tests/Reactor_Exceptions_Test.bpr:
        * tests/Reactor_Notify_Test.bpr:
        * tests/Reactor_Performance_Test.bpr:
        * tests/Reactor_Timer_Test.bpr:
        * tests/Reactors_Test.bpr:
        * tests/Reader_Writer_Test.bpr:
        * tests/Recursive_Mutex_Test.bpr:
        * tests/SOCK_Connector_Test.bpr:
        * tests/SOCK_Test.bpr:
        * tests/SPIPE_Test.bpr:
        * tests/SString_Test.bpr:
        * tests/SV_Shared_Memory_Test.bpr:
        * tests/Semaphore_Test.bpr:
        * tests/Service_Config_Test.bpr:
        * tests/Sigset_Ops_Test.bpr:
        * tests/Simple_Message_Block_Test.bpr:
        * tests/TSS_Test.bpr:
        * tests/Task_Test.bpr:
        * tests/Thread_Manager_Test.bpr:
        * tests/Thread_Mutex_Test.bpr:
        * tests/Thread_Pool_Test.bpr:
        * tests/Time_Service_Test.bpr:
        * tests/Time_Value_Test.bpr:
        * tests/Timer_Queue_Test.bpr:
        * tests/Tokens_Test.bpr:
        * tests/UPIPE_SAP_Test.bpr:
        * tests/tests.bpg:
        Contained ^M characters.
        I also made sure there were no absolute paths pointing to "gonzo"
        directories...

Mon Jun 22 01:33:12 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.h (ACE_SYNCH_{1,2}): These two macros were added back for
          backward compatibility.

Mon Jun 22 01:12:53 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/OS.i (dlerror): Just use FormatMessageA instead of
          FormatMessage.  The you don't have to worry about UNICODE being
          turned on.

Mon Jun 22 00:01:02 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.15 released.

Sun Jun 21 23:54:28 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/config-freebsd-pthread.h: Defined
          ACE_LACKS_MUTEXATTR_PSHARED and ACE_LACKS_CONDATTR_PSHARED.

Sun Jun 21 10:14:32 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * examples/IPC_SAP/SOCK_SAP/CPP-unserver.cpp (server): Fixed
          another ambiguity caused by the recent SOCK_IO changes.  Thanks
          to David for pointing this out.

Sun Jun 21 00:16:56 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.i (dlerror): Have to treat UNICODE differently because
          FormatMessage takes wchar when UNICODE is defined.

        * ace/WFMO_Reactor.{h,i,cpp}: Changed the parent class of
          ACE_WFMO_Reactor_Notify from ACE_Event_Handler to
          ACE_Reactor_Notify.
          (dump): Added this virtual function implementation for
          ACE_WFMO_Reactor_Notify.

        * Ace/Proactor.cpp (timeout): Fixed a typo.

Sat Jun 20 16:51:39 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * ace/Reactor*: Made a slew of changes to the Reactor and it's
          associated implementations so that we can integrate it
          seamlessly with Chorus ClassiX IPC.  Thanks to Wei Chiang for
          these changes.

        * ace/Acceptor.cpp: Added a flag that keeps track of whether we should
          use select() in the Acceptor.  This makes it easier to integrate
          this stuff with Chorus IPC.  Thanks to Wei Chiang for this.

        * examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp: Removed the trailing
          0 to the send() operation to (1) avoid overload ambiguity and
          (2) to use write() rather than send()!  Thanks to Chris Healey
          for reporting this.

        * ace/ACE: The default condition in the select switch in the
          enter_*_timed_wait functions assumed that all values returned
          from select if not 0 or 1 will be -1.  This is true in those
          functions due to only 1 file descriptor flag being set.  Thanks
          to Chris Healey for generalizing this a bit...

        * ace/SOCK_IO: Added the wrappers for the "non-flags" version of
          timed send()/recv().  Thanks to Chris Healey for this.

        * ace/FILE_Addr.cpp: Cleaned up the code a bit to be more
          consistent.  Thanks to Chris Healey for suggesting this.

        * ace/FILE_Addr.cpp (ACE_FILE_Addr): Removed the memset() in the
          constructor since this is overkill...

        * ace/ACE.cpp (send_n): Fixed a dump cut&paste bug in the timed
          version of send_n().  Thanks to Chris Healey
          <chealey@entera.com> for reporting this.

Sat Jun 20 14:58:21 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * bin/indent_macros.perl: Instead of hardcoding perl's location in
          the script, it now invokes perl according to user's environment
          setting.  Thanks to David for providing the improvement.

Sat Jun 20 01:24:28 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * include/makeinclude/platform_freebsd_pthread.GNU: Changed to use
          -Wall to report all warnings.

        * ace/OS.cpp (thr_create): Specify <priority> as an unused
          argument when ACE_LACKS_SETSCHED.

        * ace/OS.{h,i,cpp}: Rearrange macro indentations.

        * bin/indent_macros.perl: This little perl script rearrange the
          indentation of macros so they are a bit easier to debug.

        * ace/config-freebsd-pthread.h: Defined ACE_LACKS_PTHREAD_CANCEL.

Sat Jun 20 00:14:07 1998  Alexander Babu Arulanthu  <alex@merengue.cs.wustl.edu>

        * examples/Reactor/Proactor/test_proactor_with_aio.cpp: Test
        program for the Asynch_Transmit_File, Asynch_Read_File,
        Asynch_Read_Stream, Asynch_Write_File and Asynch_Write_Stream.

Fri Jun 19 23:58:35 1998  Alexander Babu Arulanthu  <alex@merengue.cs.wustl.edu>
        * ace/Proactor.h    :
        * ace/Proactor.cpp  :
        * ace/Asynch_IO.h   :
        * ace/Asynch_IO.cpp :
                - Implemented Asynch_Transmit_File for POSIX4 systems.
                - Added a new class "ACE_Asynch_Transmit_Handler", which is
                an auxillary handler class for Asynch_Transmit_File. This
                does the actual transmission doing file read and stream
                write asynchronously and finally calling the
                transmit_handler in the application.
                - Aiocb list is now of size RTSIG_MAX, the maximum number
                of RT signals that can be queued in a process at a time.

Fri Jun 19 22:17:35 1998  David L. Levine  <levine@cs.wustl.edu>

        * bin/make_release (check_workspace): use cvs checkout instead
          of update, to notice any new directories that have been added
          to the repository but not to the workspace.

          There are .cvsignore files in /project/adaptive/ACE_wrappers
          and /project/adaptive/ACE_wrappers/java.  They can be used
          to suppress tripping over any new, uncontrolled files, such
          as releases, that are added to these directories.

          Filter ^U from checkout output, so that release need not be
          based on the latest repository versions.  Instead, the release
          is based on the contents of the /project/adapative/ACE_wrappers
          workspace.  It need not be brought up-to-date with the repository,
          though it cannot contain any modified files.  This change allows
          other users to continue to check in files prior to or during the
          release.

        * examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp (read): added
          ACE_UNUSED_ARG (len).

        * Makefile: fixed build of .obj/gethrtime.o with ghs/VxWorks/i86.

        * tests/run_tests.vxworks:  added Timeprobe_Test, but commented
          out.  That test page faults when built with ghs for Pentium.
          It appears that the STL-style iterator usage in ACE_Timeprobe
          isn't handled properly by the compiler.

Fri Jun 19 16:51:05 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/config-freebsd-pthread.h (ACE_HAS_NONCONST_MSGSND): Macro
          definition added.

        * ace/OS.i (sigwait): Suppress compiler warnings on FreeBSD.
          (msgsnd):  Separated the case ACE_HAS_NONCONST_MSGSND out.

          Thanks to Russell L. Carter <rcarter@consys.com> for reporting
          the above fix.

Fri Jun 19 11:22:27 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.13 released.

Thu Jun 18 21:14:25 1998  David L. Levine  <levine@cs.wustl.edu>

        * examples/Threads/task_five.cpp: renamed global stack_size
          to default_stack_size, to avoid shadowing by stack_size in
          main ().

        * ace/OS.i (dlopen): added support for ACE_HAS_SGIDLADD.
          (dlerror): on WIN32, return a formatted message instead of 0.
          Thanks to Kent Watsen <kent@watsen.net> for the diffs.

        * ace/config-irix6.x-sgic++-nothreads.h: added ACE_HAS_SGIDLADD.
          Thanks to Kent Watsen <kent@watsen.net> for this addition.

        * Makefile: ACE-INSTALL is not a .PHONY target.

        * ace/Makefile: only regenerate Svc_Conf_[ly].cpp if at Wash. U.

Thu Jun 18 20:46:46 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * performance_tests/Misc/childbirth_time.cpp: Changed to use the
          variable MULTIPLY_FACTOR in statistic calculation.

        * ace/config-freebsd-pthread.h: Added the following definition:
               #define ACE_HAS_SIGINFO_T
               #define ACE_LACKS_SIGINFO_H
               #define ACE_LACKS_UCONTEXT_H
               #define ACE_LACKS_SI_ADDR

        * include/makeinclude/platform_freebsd_pthread.GNU:  Changed to
          invoke linker directly using g++.  Added -pthread flag for
          linker.  This implies programs will link against libc_r
          automatically now.  Removed -lc_r.  Other minor changes.

          Thanks very much for lots of help from FreeBSD team esp. Amancio
          Hasty <hasty@rah.star-gate.com> and John Birrell
          <jb@cimlogic.com.au>.

Thu Jun 18 19:32:30 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Token.cpp (dump): commented out print of owner_.  Is
          there a portable way to print an ACE_thread_t via ACE_DEBUG?

Thu Jun 18 18:46:00 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/Timeprobe.h:
        * ace/Timeprobe_T.h:
        * ace/Timeprobe_T.cpp:
          Added methods to print the absolute values, this can be used to
          mix the results of several processes: por example on Sparcs the
          high-res timer is a CPU register so the value is consistent
          across processes, there are some potential problems with
          multiple CPUs, but that's not our case.

Thu Jun 18 16:25:28 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * examples/Threads/task_five.cpp (main): Extracted out the body of
          the test loop so that the delete[] gets called everytime the
          body gets executed.

        * ace/Thread_Manager.cpp (ACE_EXECUTE_OP,kill): We need to guard
          against non-existing target thread after searching the thread
          table.  Thanks to Savas Parastatidis
          <Savas.Parastatidis@ncl.ac.uk> for noticing the problem.

Thu Jun 18 09:23:39 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/config-win32-common.h: Fixed the inclusion of winsock
          related files. Thanks to Ernesto Guisado
          <eguisado@saincotrafico.com> for suggesting this.

Wed Jun 17 22:47:50 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/OS.i (rw_trywrlock_upgrade): moved declaration of
          local "result" before the ACE_PTHREAD_CLEANUP_PUSH.
          PTHREAD_CLEANUP_PUSH/POP are macros that contain open/
          close braces on some platforms.  So, any declarations
          between them are not visible after the POP.

Wed Jun 17 19:01:53 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

          The following changes provide an interface for ACE programmers
          of more finer control over how Win32 structured exceptions are
          handled.  Thanks to Detlef Becker <Detlef.Becker@med.siemens.de>
          for contemplating the idea and passing it to us.

        * ace/Log_Msg.{h,cpp} (seh_except_{selector,handler}): Added
          new methods to retrieve/set structured exception handling
          behavior.  <Selector> is used to determine the "proper" action a
          thread should take upon a structured exception and <handler>
          performs the actual exception handling routine.  They are
          structured as below in ace_thread_adapter:

              __except (ACE_LOG_MSG->seh_except_selector () (0))
                {
                  ACE_LOG_MSG->seh_except_handler () (0);
                }

        * ace/OS.{h,cpp} (ACE_SEH_EXCEPT_HANDLER): New typedef used to
          define user win32 structured exception handler.

          (ACE_SEH_Exception_{Selector,Handler}): Default structured
          exception handler.  Two handlers ACE_Log_Msg are initialized to
          them by default.

          (ACE_Thread_Adapter,inherit_log_msg):  Added initializing and
          inheriting code to pass the spawning thread's structured
          exception handling behaviors.

        * ace/config-win32-common.h
          (ACE_SEH_DEFAULT_EXCEPTION_HANDLING_ACTION):  This macro defines
          the default action taken by ACE when a win32 structured
          exception occurs.  It is by default defined to
          EXCEPTION_CONTINUE_SEARCH, which does not handle the exception
          but simply pass the exception out.  Users can overwrite the
          default behavior by defining the macro in their config.h files.

Wed Jun 17 17:30:11 1998  Michael Kircher  <mk1@cs.wustl.edu>

        * ace/OS.h: Added a condition variable and a flag to
          the definition of reader/writer locks.

        * ace/OS.i: Implemented ACE_OS::rw_trywrlock_upgrade properly
          using one condition variable and a flag. The condition
          variable is used to get in front of all the possible
          waiting writers and to wait on still working readers
          on the rw_lock. The flag is used to indicate, that
          a reader is upgrading its lock. rw_unlock obeys one more
          case now.

        * ace/OS.cpp: The constructor for the Reader/writer locks
          has changed slightly to initialize and destroy the
          new members.

        * tests/Reader_Writer_Test.cpp: Added the use of the
          rw_mutex.tryacquire_write_upgrade () method to the test.

Wed Jun 17 07:34:11 1998  David L. Levine  <levine@cs.wustl.edu>

        * tests/IOStream_Test.cpp (server): fixed sign of constant
          used to check for valid double.  Thanks to Mark Kettner
          <m.kettner@elsevier.nl> for reporting this.

        * performance-tests/UDP/udp_test.cpp: added a few
          ACE_U64_TO_U32 explicit conversions.

        * tests/Priority_Buffer_Test.cpp (consumer): re-enabled the
          statement to suppress the ghs warning about unused variable
          cur_priority.

Tue Jun 16 20:29:32 1998  Steve Huston  <shuston@riverace.com>

        * ACE-INSTALL.html: Added some comments concerning MSVC 5.0 and SP3.
          Thanks to Bill Fulton for the excellent detective work.

Tue Jun 16 16:08:23 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Timeprobe_T.h (class ACE_Timeprobe): Fixed copy constructor
          signature. Thanks to Chuck R. Gehr
          (GehrCR@LOUISVILLE.STORTEK.COM) for pointing this out.

Tue Jun 16 16:18:08 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * ace/FILE_Addr.cpp (operator=): Check to make sure we
          NUL-terminate the memcpy'd filename correctly.  Thanks to Istvan
          Buki <ibuki@fedex.com> for reporting this.

Tue Jun 16 15:43:55 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ACE-INSTALL.html: Changed to instruct users to #include
          "ace/config-win32.h" instead of "config-win32.h" directly.
          Thanks to Gonzo <gonzo@ing.puc.cl> for noticing this.

Tue Jun 16 10:33:20 1998  David L. Levine  <levine@cs.wustl.edu>

        * os-patches/linux-patches.html: added RedHat 5.1 success
          report from Chanaka Liyanaarachchi <chanakal@ittc.ukans.edu>.

        * ace/Basic_Types.h,High_Res_Timer.cpp,
          performance-tests/Misc/basic_perf.cpp:
          added explicit ACE_U64_TO_U32 conversion macro.  WIN32's __int64
          and ACE_U_LongLong need an explicit narrowing to 32 bits.  This
          macro provides a consistent way to do that on all platforms.

        * ace/Asynch_IO.*: added trailing $ to CVS keyword string.

        * ace/Asynch_IO.cpp: fixed so that it will compile with Sun CC
          on Solaris 2.6.  Thanks to Frederic ANDRES <andres@rd.nacsis.ac.jp>
          for reporting this.

        * ACE-INSTALL.html: updated Linux RedHat info.

Mon Jun 15 23:17:27 1998  David L. Levine  <levine@cs.wustl.edu>

        * Makefile: added os-patches/ to distribution.

Mon Jun 15 23:07:45 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.12 released.

Mon Jun 15 13:58:17 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-chorus.h: replaced comment that said that the
          config is for CHORUS using MIT threads with comment that says
          that it uses the CHORUS POSIX threads interface.  Thanks to
          Leo Modica <lmodica@lucent.com> for questioning this, and Wei
          Chiang for confirming it.

        * os-patches/linux-patches.html: updated glibc info.  Thanks
          to Bob Scott <bob_scott@broder.com> for pointing out the
          glibc-2.0.7-7 is not available from sunsite.

Sat Jun 13 13:10:05 1998  David L. Levine  <levine@cs.wustl.edu>

        * tests/XtReactor_Test.cpp: moved explicit template instantiations
          inside ACE_HAS_XT, because the #includes are all inside
          ACE_HAS_XT also.

        * tests/XtReactor_Test.cpp: without ACE_HAS_XT, replaced
          ACE_ERROR_RETURN with ACE_ERROR.  This makes it consistent
          with other tests, and allows the following ACE_END_TEST
          statement to be reached.

        * tests/Process_Mutex_Test.cpp (main): specify full path to
          spawned children.  Removed Solaris/i386-specific code because
          it should no longer be needed now that the test is fixed by
          specifying the full path.  (acquire_release):  removed printout
          at top.

        * ACE+TAO.tgz,ACE.tgz,ACE-lib.tgz,FSU-threads.tgz: added these
          symlinks to their corresponding .tar.gz files.  Thanks to
          Gonzo and Darrell for suggesting this.

        * ace/RB_Tree.i (clear): removed extraneous ";" following the
          function definition.

        * ace/Process.cpp (spawn): added an ACE_DEBUG printout before each
          call to ACE_OS::exit ().

        * ace/Synch_T.cpp: removed the #pragma define_template for
          ACE_Condition<ACE_Mutex> on __osf__ with cxx.  It's no longer
          needed, and was causing multiply defined instantiations with
          cxx 6.1.

Fri Jun 12 17:04:14 1998  Alexander Babu Arulanthu  <alex@merengue.cs.wustl.edu>

        * ace/OS.h: Moved the #define's and typedef's (related to Proactor
        stuff, things like TRANSMIT_BUFFERS etc) under '#if defined
        (WIN32)' before OS.i. They were at the end of the file.

Fri Jun 12 16:31:13 1998  Aniruddha Gokhale  <gokhale@mambo.cs.wustl.edu>

        * ace/OS.h: (ACE_NTOHL, ACE_HTONL): Added macros for conversion
        between network and host byte order. Thanks to James Hu for
        contributing these.

Fri Jun 12 14:29:40 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * ace/OS.i (sema_wait): Changed the code so that it always treats
          the time value argument in absolute time, even for Win32.
          Thanks to Chuck Gehr for reporting this.

Fri Jun 12 14:12:25 1998  Carlos O'Ryan  <coryan@swarm.cs.wustl.edu>

        * include/makeinclude/wrapper_macros.GNU:
          The inclusion of the XtReactor is controlled on the
          platform_macros file (or the command line).
          Users simply type make xt_reactor=1 to enable this feature, or
          set xt_reactor to 1 in the platform_macros.GNU file.
          Some extra macros were added for platforms that require special
          CPP, LD or libraries when linking against X/Windows. The macros
          are described in this file.
          The platforms that already had XtReactor compiled by default
          still do.

        * ace/config-irix6.x-sgic++-nothreads.h:
        * include/makeinclude/platform_irix6.x-sgic++.GNU:
          Now the XtReactor configuration is controlled on the platform
          file.

        * ACE-INSTALL.html:
          Updated documentation for make flags.

        * tests/XtReactor_Test.cpp:
          Fixed a few typos.

        * tests/Conn_Test.cpp:
          Fixed some template instantiation pragmas.

Thu Jun 11 22:05:31 1998  David L. Levine  <levine@cs.wustl.edu>

        * tests/Process_Mutex_Test.cpp (main): kill children on
          Solaris/i386 instead of waiting for them.  (acquire_release):
          added printout at top.  It never appears, at least on
          g++/Solaris/i386.

        * ace/Malloc.cpp (instance): wrap declaration of local "assertion"
          with ifndef ACE_NDEBUG, to avoid warning about unused variable
          with debug=0.

1998-06-11  Alexander Babu Arulanthu  <alex@merengue.cs.wustl.edu>

        * ace/Proactor.h (ACE_Proactor): Put insert_aiocb_list () under
        ACE_HAS_AIO_CALLS so that it doesnt break in NT.

Thu Jun 11 1998 Alexander Babu Arulanthu  <alex@merengue.cs.wustl.edu>

        * ace/OS.h: Added typedef's, #define's  and #include's under the
        definition ACE_HAS_AIO_CALLS for the proactor porting.

        * ace/config-sunos5.6.h: Defined ACE_HAS_AIO_CALLS for
        solaris2.6.

        * ace/Asynch_IO.h:
        * ace/Asynch_IO.cpp: Added aio call support for Asynch_Read_File. See
        the code under #if defined (ACE_HAS_AIO_CALLS)

        * ace/Proactor.h:
        * ace/Proactor.cpp: Added support for AIO calls in Proactor. See
        the code under #if defined (ACE_HAS_AIO_CALLS)

        * examples/Reactor/Proactor/test_proactor_with_aio.cpp: The test
        program for Proactor doing aio stuff.

Thu Jun 11 13:34:26 1998  Darrell Brunsch <brunsch@cs.wustl.edu>

        * ace/OS.cpp: Made change to uname to use a different structure
          if certain Borland compilers are being used.  Thanks to
          Valik Solorzano <valik@geodan.nl> for this fix.

        * bin/make_release: create .zip files in addition to .tar.gz files.

Thu Jun 11 11:15:26 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/XtReactor.cpp:
          The notify_handler_ open method requires an extra argument.

Wed Jun 10 14:31:55 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Strategies_T.cpp (ACE_Recyclable ctors): reordered
          initializers to match declaration order.

        * tests/Conn_Test.cpp: fixed template instantiations:
          ACE_SYNCH_MUTEX instead of ACE_SYNCH_RW_MUTEX.

        * tests/XtReactor_Test.cpp (main): added ACE_UNUSED_ARGS for
          argc and argv without ACE_HAS_XT.

Wed Jun 10 12:34:25 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Strategies_T: Added two new template classes: ACE_Recyclable
          and ACE_Hash_Recyclable. ACE_Recyclable adds a recyclable flag
          to the class it is instantiated with.  ACE_Hash_Recyclable
          inherits from ACE_Recyclable and forces the class it is
          instantiated with to have a hash() method.

          Also, the Hash_Addr was fixed so that it does not have the
          recyclable flag anymore, since the Hash_Addr can be used even
          when there is no recycling.

          Also updated the ACE_Cached_Connect_Strategy to reflect these
          changes.

        * tests/Conn_Test.cpp: Fixed the template instantiations in lieu
          of the changes to Hash_Addr.

Wed Jun 10 11:05:39 1998  David L. Levine  <levine@cs.wustl.edu>

        * bin/make_release: replaced ACE_wrappers-repository/ with
          ACE_wrappers/ in diffs.  Thanks to James Risinger <jrisinge@cgi.com>
          for reporting this.

Wed Jun 10 01:31:46 1998  Gonzalo Diethelm  <gonzo@tango.cs.wustl.edu>

        * tests/Tokens_Test.cpp:
        Changed how the Borland template instantiations are protected.

        * tests/XtReactor_Test.cpp:
        test_config.h must be included before asking for ACE_HAS_XT.
        Was missing the Borland non-sense.

        * tests/UPIPE_SAP_Test.cpp:
        Protected the Borland template instantiations.

        * tests/Timeprobe_Test.cpp:
        * tests/Time_Value_Test.cpp:
        Added the Borland non-sense.

        * tests/Reactor_Timer_Test.cpp:
        Added a couple of casts to avoid warnings.

        * tests/Priority_Buffer_Test.cpp:
        Got rid of a (seemingly) useless piece of code.

        * tests/Naming_Test.cpp:
        Modified a test so that it won't give warnings.

        * tests/Conn_Test.cpp:
        Was missing the Borland non-sense.
        Modified an #if-protected section to get rid of a warning.
        Added a few extra Borland template instantiations.

        * ace/WFMO_Reactor.cpp:
        * ace/SOCK_Dgram.cpp:
        Under Borland, a couple of comparisons were always true (with a
        warning) because of unsignedness.

        * ace/Malloc.cpp:
        Assigned the consition of an assertion to a temporary variable to
        avoid a misleading warning.

        * ace/Get_Opt.cpp:
        Added an explicit comparison against 0 to avoid a warning.

        * ace/ACED.cpp:
        * ace/ACER.cpp:
        These files had been commited with ^M at the end of lines.

        * ace/ACE.cpp:
        Changed a couple of run time checks for
        ACE_DIRECTORY_SEPARATOR_CHAR into compile time tests; that got rid
        of a couple of warnings under BCB3 (Borland C++ Builder 3.0).

        * ace/ACE.cpp:
        * tests/Conn_Test.cpp:
        Used ACE_NOTREACHED to avoid further warnings.

        * ace/OS.h:
        Added Borland to the empty definition of ACE_NOTREACHED.
        The definition of ACE_SEH_FINALLY for the case of Borland C++
        Builder 3.0 now uses __finally. This allowed most of the tests
        that were hanging to complete ok. Thanks to David Tallman
        <tallman@acsys.com> for pointing this out.

Tue Jun  9 19:35:26 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * ace/XtReactor: Integrated the new XtReactor, which should now
          work for Windows NT!  Thanks to Kirill Rybaltchenko
          <Kirill.Rybaltchenko@cern.ch> for this.

        * tests: Added the new XtReactor_Test.cpp to test the features of
          the XtReactor.  Thanks to Kirill Rybaltchenko
          <Kirill.Rybaltchenko@cern.ch> for this test.

Tue Jun 09 16:18:54 1998  David L. Levine  <levine@cs.wustl.edu>

        * Makefile: removed old release targets.  They're no longer
          used, or maintained.

        * include/makeinclude/platform_sunos5_x86_g++.GNU: removed.
          Use platform_sunos5_g++.GNU instead, on both sparcs and x86.

Tue Jun 09 15:25:13 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.11 released.

Tue Jun  9 14:59:15 1998  Darrell Brunsch <brunsch@cs.wustl.edu>

        * ace/OS.cpp:  Made it so both Borland and Microsoft use the
          x.wProcessorArchitecture structure for system info.

Tue Jun 09 14:35:28 1998  David L. Levine  <levine@cs.wustl.edu>

        * tests/Tokens_Test.cpp,UPIPE_SAP_Test.cpp: only need the
          template instantiations with Borland C++.

        * bin/make_release: create version diffs, in background,
          when creating releases.

Tue Jun 09 12:50:49 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/ACE_Library.mak: Added Stats.cpp.

Tue Jun 09 11:51:17 1998 Chris Gill  <cdgill@tango.cs.wustl.edu>

        * tests/MM_Shared_Memory_Test: added a null pointer check so
          test complains rather than crashing when shared allocator fails.

Mon Jun  8 21:03:23 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * ace/Select_Reactor.cpp (any_ready): Fixed a more unrighteous bug
          where we were assigning the values in the wait_set_ rather than
          the ready_set_.  Thanks to Stefan Ericsson
          <Stefan.Ericsson@osd.uab.ericsson.se> for reporting this bug.

Mon Jun  8 19:15:38 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Malloc.h:
        * ace/Malloc_Base.h (ACE_Allocator): Moved the definition of
          abstract class ACE_Allocator from Malloc.h to a new file called
          Malloc_Base.h to resolve a circular dependency among a bunch of
          header files when compiling with UNICODE and inline enabled.

        * ace/SString.i: Changed to include "ace/Malloc_Base.h" to avoid
          circular inclusion.

Mon Jun 08 18:35:23 1998  Steve Huston  <shuston@riverace.com>

        * ACE-INSTALL.html: Added some updated HP-UX info (and a pointer to
          Riverace's HP-UX hints page) and removed the warning to not use
          MSVC 5.0 SP3 - per results from ace-users discussions last week,
          SP3 is getting used successfully.

Mon Jun 08 13:22:47 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Basic_Types.h: set ACE_SIZEOF_LONG_DOUBLE to 12 if
          LDBL_MAX_EXP is 16384 and LDBL_DIG is 18.  Thanks to
          Sree Oggu <dharani@sutmyn.com> for reporting this, on
          SolarisX86 with Sun C++.

        * ace/Malloc.cpp (instance): cleaned up comments.

Mon Jun  8 12:12:39 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * tests/UPIPE_SAP_Test.cpp:
          Template instantiation was not using the ACE_SYNCH macros.

Mon Jun  8 02:17:54 1998  Gonzalo Diethelm  <gonzo@tango.cs.wustl.edu>

        * ACE-INSTALL.html:
        Added a comment regarding the new port to Borland C++ Builder.

        * ace/ACE.bpg:
        * ace/ACED.bpr:
        * ace/ACED.cpp:
        * ace/ACER.bpr:
        * ace/ACER.cpp:


        * ace/ACE.cpp:
        Got rid of unused const int MAX_STRING_SZ = 4096.

        * ace/Asynch_Acceptor.cpp:
        * ace/Asynch_IO.cpp:
        * ace/Msg_WFMO_Reactor.cpp:
        * ace/config-win32-common.h:
        Replaced the use of _WIN32_WINNT with ACE_HAS_WINNT4. Borland C++
        Builder doesn't handle _WIN32_WINNT very well when building under
        Win95.

        * ace/Asynch_IO.h:
        Now ACE_Asynch_Result inherits publicly from OVERLAPPED;
        otherwise, Borland C++ Builder refuses to access OVERLAPPED
        members. I'm not sure who's right or wrong here.

        * ace/CORBA_Ref.h:
        Added an #include "ace/ACE.h".

        * ace/Future.h:
        Two cosmetic changes.

        * ace/LOCK_SOCK_Acceptor.cpp:
        Added an #include /**/ "ace/LOCK_SOCK_Acceptor.h".

        * ace/Log_Msg.cpp:
        Borland C++ Builder doesn't like extern int sys_nerr, so I
        protected against it.

        * ace/OS.cpp:
        A couple of hacks to handle FILETIMEs and SYSTEM_INFO structs,
        which are defined a little different under Borland C++ Builder.

        * ace/OS.h:
        Added support for Borland C++ Builder.

        * ace/OS.i:
        Borland C++ Builder handles a few functions differently: close,
        SetFilePointer, wfdopen.

        * ace/Synch_T.h:
        A comment on an #else spanned several lines and mixed // and /**/
        styles; hard to read.

        * ace/TTY_IO.cpp:
        A switch was not properly indented and, as a result, had an extra
        break that made Borland C++ Builder complain.

        * ace/WFMO_Reactor.cpp:
        Got rid of a couple of unused local variables called result.

        * ace/config-win32-common.h:
        Added a few defines for Borland C++ Builder. Don't know if
        this is the proper way to do it, but there it is.

        * tests/Aio_Platform_Test.bpr:
        * tests/Atomic_Op_Test.bpr:
        * tests/Barrier_Test.bpr:
        * tests/Basic_Types_Test.bpr:
        * tests/Buffer_Stream_Test.bpr:
        * tests/Conn_Test.bpr:
        * tests/Enum_Interfaces_Test.bpr:
        * tests/Env_Value_Test.bpr:
        * tests/Future_Test.bpr:
        * tests/Handle_Set_Test.bpr:
        * tests/Hash_Map_Manager_Test.bpr:
        * tests/IOStream_Test.bpr:
        * tests/MM_Shared_Memory_Test.bpr:
        * tests/MT_Reactor_Timer_Test.bpr:
        * tests/MT_SOCK_Test.bpr:
        * tests/Map_Manager_Test.bpr:
        * tests/Mem_Map_Test.bpr:
        * tests/Message_Block_Test.bpr:
        * tests/Message_Queue_Notifications_Test.bpr:
        * tests/Message_Queue_Test.bpr:
        * tests/Naming_Test.bpr:
        * tests/Notify_Performance_Test.bpr:
        * tests/OrdMultiSet_Test.bpr:
        * tests/Pipe_Test.bpr:
        * tests/Priority_Buffer_Test.bpr:
        * tests/Priority_Reactor_Test.bpr:
        * tests/Priority_Task_Test.bpr:
        * tests/Process_Mutex_Test.bpr:
        * tests/Process_Strategy_Test.bpr:
        * tests/Reactor_Exceptions_Test.bpr:
        * tests/Reactor_Notify_Test.bpr:
        * tests/Reactor_Performance_Test.bpr:
        * tests/Reactor_Timer_Test.bpr:
        * tests/Reactors_Test.bpr:
        * tests/Reader_Writer_Test.bpr:
        * tests/Recursive_Mutex_Test.bpr:
        * tests/SOCK_Connector_Test.bpr:
        * tests/SOCK_Test.bpr:
        * tests/SPIPE_Test.bpr:
        * tests/SString_Test.bpr:
        * tests/SV_Shared_Memory_Test.bpr:
        * tests/Semaphore_Test.bpr:
        * tests/Service_Config_Test.bpr:
        * tests/Sigset_Ops_Test.bpr:
        * tests/Simple_Message_Block_Test.bpr:
        * tests/TSS_Test.bpr:
        * tests/Task_Test.bpr:
        * tests/Thread_Manager_Test.bpr:
        * tests/Thread_Mutex_Test.bpr:
        * tests/Thread_Pool_Test.bpr:
        * tests/Time_Service_Test.bpr:
        * tests/Time_Value_Test.bpr:
        * tests/Timer_Queue_Test.bpr:
        * tests/Tokens_Test.bpr:
        * tests/UPIPE_SAP_Test.bpr:
        * tests/tests.bpg:
        Added these Borland C++ Builder project files.

        * tests/Aio_Platform_Test.cpp:
        * tests/Atomic_Op_Test.cpp:
        * tests/Barrier_Test.cpp:
        * tests/Basic_Types_Test.cpp:
        * tests/Buffer_Stream_Test.cpp:
        * tests/Enum_Interfaces_Test.cpp:
        * tests/Env_Value_Test.cpp:
        * tests/Future_Test.cpp:
        * tests/Handle_Set_Test.cpp:
        * tests/Hash_Map_Manager_Test.cpp:
        * tests/IOStream_Test.cpp:
        * tests/MM_Shared_Memory_Test.cpp:
        * tests/MT_Reactor_Timer_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/Map_Manager_Test.cpp:
        * tests/Mem_Map_Test.cpp:
        * tests/Message_Block_Test.cpp:
        * tests/Message_Queue_Notifications_Test.cpp:
        * tests/Message_Queue_Test.cpp:
        * tests/Naming_Test.cpp:
        * tests/Notify_Performance_Test.cpp:
        * tests/OrdMultiSet_Test.cpp:
        * tests/Pipe_Test.cpp:
        * tests/Priority_Buffer_Test.cpp:
        * tests/Priority_Reactor_Test.cpp:
        * tests/Priority_Task_Test.cpp:
        * tests/Process_Mutex_Test.cpp:
        * tests/Process_Strategy_Test.cpp:
        * tests/Reactor_Exceptions_Test.cpp:
        * tests/Reactor_Notify_Test.cpp:
        * tests/Reactor_Performance_Test.cpp:
        * tests/Reactor_Timer_Test.cpp:
        * tests/Reactors_Test.cpp:
        * tests/Reader_Writer_Test.cpp:
        * tests/Recursive_Mutex_Test.cpp:
        * tests/SOCK_Connector_Test.cpp:
        * tests/SOCK_Test.cpp:
        * tests/SPIPE_Test.cpp:
        * tests/SString_Test.cpp:
        * tests/SV_Shared_Memory_Test.cpp:
        * tests/Semaphore_Test.cpp:
        * tests/Service_Config_Test.cpp:
        * tests/Sigset_Ops_Test.cpp:
        * tests/Simple_Message_Block_Test.cpp:
        * tests/TSS_Test.cpp:
        * tests/Task_Test.cpp:
        * tests/Thread_Manager_Test.cpp:
        * tests/Thread_Mutex_Test.cpp:
        * tests/Thread_Pool_Test.cpp:
        * tests/Time_Service_Test.cpp:
        * tests/Time_Value_Test.cpp:
        * tests/Timer_Queue_Test.cpp:
        * tests/Tokens_Test.cpp:
        * tests/UPIPE_SAP_Test.cpp:
        Added the Borland non-sense to allow the tests to link against the
        ACE library under Borland C++ Builder. Major pain in the rear
        end...

        * tests/test_config.h:
        Added a couple of includes for the case of Borland C++ Builder.

        * tests/Hash_Map_Manager_Test.cpp:
        Changed variable name allocator to alloc, to avoid conflicts with
        STL allocators under Borland C++ Builder.

        * tests/Reactors_Test.cpp:
        Changed variable name tm to thr_mgr, to avoid conflicts with
        std::tm under Borland C++ Builder.

        * tests/Tokens_Test.cpp:
        * tests/UPIPE_SAP_Test.cpp:
        Added a few explicit template instantiations.

Sun Jun 07 09:51:02 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Timeprobe_T.cpp: added #include of ace/Timeprobe.h.
          It wouldn't compile on GreenHills without it.

        * STL/bool.h: only #define bool, etc., if _MSC_VER is #defined.
          Thanks to Stanley Leeson <STANLEY.D.LEESON@cdev.com> for
          reporting this.

        * tests/Timeprobe_Test.cpp: added #include of ace/Timeprobe.cpp
          to pick up template instantiations, if ACE_COMPILE_TIMEPROBES
          was not defined.  This allows the test to build on platforms
          that have explicit template instantiation when libACE was
          built without timeprobes enabled.

Sun Jun  7 01:06:12 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * ace/config-freebsd-pthread.h: Added the
          ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS flag to work around problems
          with pthreads on FreeBSD.  Thanks to Amancio Hasty
          <hasty@rah.star-gate.com> for reporting this.

Sat Jun  6 22:00:54 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/Message_Queue.cpp: Added code so that advance() is more
          thread-safe.

        * apps/gperf/src/Options.cpp (operator): Changed ACE_OS::exit()
          to ACE_OS::_exit() so we'll leave no trace...

        * apps/gperf/src/Key_List.cpp (output_switch): Fixed another bug
          where strcmp() should be generated instead of strncmp().

        * apps/gperf/src: We no longer call the inline option "GNU" but
          now call it "INLINE".

        * apps/gperf/src/{Options.h,Key_List.cpp,Gen_Perf.cpp}: Revised
          the LARGE_STACK_ARRAY code so that it only gets compiled if
          we're using GCC.

        * apps/gperf/src/Key_List.cpp (output_switch): Fixed a bug where
          strcmp() was being used instead of strncmp().  Thanks to C++
          for finding this!

        * apps/gperf/src/Key_List.cpp: Removed all uses of "register"
          since C++ compilers can do this automagically...

        * apps/gperf/tests/test.cpp (main): Modified the test program to
          use C++ rather than C (ugh!).

        * ace: Added two new files: Timeprobe_T.h and Timeprobe_T.cpp in
          order to solve problems with multiply defined symbols.  Thanks
          to Brian Mendel, David Levine, and Irfan for tracing this down.

Sat Jun  6 19:10:54 1998  Sergio Flores  <sergio@cs.wustl.edu>

        * ace/config-vxworks5.x.h: changes the default thread priority
        from 6 to 101.

Sat Jun 06 16:43:01 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Timeprobe.cpp (dtor): inserted missing "[]" in delete of
          array.

Fri Jun  5 11:53:18 1998  Darrell Brunsch <brunsch@cs.wustl.edu>

        * ace/Log_Msg.{h,cpp}: Added enable_debug_messages() to do
          the opposite of disable_debug_messages().

        * ace/Parse_Node.cpp: Got rid of all the checks of the
          Service Configurator's debug flag.  Instead, the checking
          will occur in the Service Configurator.

        * ace/Service_Config.cpp: Added to Stephen Coy's changes so
          that debug messages are turned back on after the Service
          Configurator is done.  That way, other code can still use
          debug messages.

Thu Jun  4 12:25:48 1998  Rajiv C. Gandhi  <gandhi@tango.cs.wustl.edu>

        * apps/gperf/src/Options.h: removing the option to stack
          allocate some large arrays as CC does not seem to like it.

        * apps/gperf/src/Key_List.cpp (output_lookup_array): removing
          the option to stack allocate some large arrays as CC does
          not seem to like it.

        * apps/gperf/src/Gen_Perf.cpp: removing the option to stack
          allocate some large arrays as CC does not seem to like it.

Thu Jun 04 05:03:09 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.10 released.

Wed Jun  3 02:24:47 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/config-win32-common.h: Instead of defining _MT for users if
          it's not defined, spit out an error message and stop the
          compilation.  Thanks to Barney Dalton
          <barneyd@cyllene.uwa.edu.au> for suggesting this.

Tue Jun 02 20:03:51 1998  Steve Huston  <shuston@riverace.com>

        * ace/config-hpux-1[01].x-hpc++.h: Added ACE_HAS_USING_KEYWORD for
          aC++ on both platforms.

Tue Jun 02 12:19:29 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Thread_Manager.cpp (wait_grp,wait_task):  These two were
          still copying thread_descriptors and deleting the copies
          directly.  This corrupted the cached thread_descriptor.
          Changing them to use Thread_Descriptor_Base solved the problem.
          Thanks to Zoran Ivanovic <zorani@pathcom.com> for finding
          this.

Tue Jun 02 08:29:20 1998  David L. Levine  <levine@cs.wustl.edu>

        * include/makeinclude/wrapper_macros.GNU,ACE-INSTALL.html:
          moved probe=1 support from individual Makefiles to
          wrapper_macros.GNU.

Tue Jun 02 08:09:41 1998  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-4.1.x.h: Removed ACE_HAS_THREAD_SELF.  It was
          causing compile failure.  Thanks to Lee Nash <rnash@gulfaero.com>
          for helping to work this out.

Mon Jun 01 16:19:52 1998  Steve Huston  <shuston@riverace.com>

        * examples/Reactor/Dgram/Dgram.mdp, Dgram.mak:  Added these files
          to build the examples with MSVC 4.2.

Mon Jun 01 13:01:14 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * examples/Reactor/Dgram/Dgram.cpp (run_test): Because of the
          delayed de-registration in WFMO_Reactor, WFMO_Reactor was trying
          to call handle_close on the Event Handler after it was
          destroyed.  Solution: dynamically created the Event Handler and
          call "delete this" in handle_close.  The other alternative was
          to call remove_handler with the DONT_CALL flag and to close the
          socket in the Event Handler's destructor.

        * ace/Timeprobe: The vxworks compiler is lame as it cannot handle
          operator placement new for arrays.  Therefore, ACE_Allocator was
          removed in favor of regular new and delete.

Mon Jun 01 09:54:51 1998  David L. Levine  <levine@cs.wustl.edu>

        * tests/Timeprobe_Test.cpp: removed trailing ; from template
          instantation pragmas.

        * tests/Conn_Test.cpp,MM_Shared_Memory_Test.cpp,
          Priority_Reactor_Test.cpp,SOCK_Test.cpp: replaced
          !defined (ACE_WIN32) && !defined (VXWORKS) with
          !defined (ACE_LACKS_FORK).

Sun May 31 23:05:10 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE-INSTALL.html,include/makeinclude/wrapper_macros.GNU:
          added repo=1 make option support.  It only helps when
          building ACE applications.  ACE and TAO still use explicit
          instantiation when building their libraries, because it's
          easiest to avoid link collisions that way.  And it already
          works.

Sun May 31 18:31:24 1998  James C Hu  <jxh@cs.wustl.edu>

        * ace/RB_Tree.i:
        * ace/RB_Tree.cpp: Changes suggested by Sergio to make it work
          with older version of GCC.  Referred to RB_Tree_Node_Color
          through the parent class RB_Tree_Node_Base.

Sat May 30 13:14:18 1998  James C Hu  <jxh@cs.wustl.edu>

        * ace/RB_Tree.h: Try to put enum into a class again.  This time,
          created a dummy base class to hold the RED and BLACK enums.

Sat May 30 08:01:31 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/RB_Tree.h (RB_Tree_Iterator::operator =): Added explicit
          return type to the declaration.  Wrapped with
          ACE_UNIMPLEMENTED_FUNC.

Fri May 29 23:06:02 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/RB_Tree.{h,i}: moved enum RB_Tree_Node_Color out of the
          (template) class declaration because g++ 2.7.2.3 couldn't
          find it there.

        * ace/Thread_Manager.cpp (remove_thr, VxWorks only): added [] to
          delete of tid array.  Thanks to Arturo Montes
          <mitosys@colomsat.net.co> for reporting this.

        * ace/RB_Tree.h (RB_Tree_Iterator::operator =): added explicit
          return type to the declaration.  Wrapped with
          ACE_UNIMPLEMENTED_FUNC.

Fri May 29 21:59:01 1998  James C Hu  <jxh@cs.wustl.edu>

        * RB_Tree.h:
        * RB_Tree.i:
        * RB_Tree.cpp: Debugged some minor typo errors, and changes
          related to internalizing the RED and BLACK enums.

Fri May 29 21:55:11 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/High_Res_Timer.cpp: don't use ACE_HAS_PENTIUM code on
          Solaris (ACE_HAS_HI_RES_TIMER) because it uses ::gethrtime ().
          (dump): on Solaris, print 64-bit ints with %llu format.  Other
          platforms may need that, also.

        * ace/Makefile: replaced .o with $(OBJEXT) in gethrtime.o target,
          so that make depend doesn't munge it.

        * ace/OS.h: only use the null versions of the
          ACE_DES_FREE_TEMPLATE* macros with LynxOS 3.0.0.

        * include/makeinclude/platform_lynxos.GNU: commented out -Winline,
          because it complains too much with -O2, and that's now the default.

Fri May 29 17:52:37 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.9 released.

Fri May 29 16:19:34 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/Synch_T.h (class ACE_Guard): ACE_Guard's destructor was
          changing the errno value.  Fixed this to avoid doing so...
          Thanks to Arturo Montes <mitosys@colomsat.net.co> for reporting
          this.

Fri May 29 15:33:41 1998  David L. Levine  <levine@cs.wustl.edu>

        * performance-tests/Misc/context_switch_time.cpp:
          added Synchronized Suspend-Resume Test.

Fri May 29 14:46:49 1998  James C Hu  <jxh@cs.wustl.edu>

        * ace/Makefile
        * ace/RB_Tree.h
        * ace/RB_Tree.cpp: Added changes to RB_Tree to enable overloading
          of the comparison method.  Added class RB_Tree to the UNIX
          Makefile.

        * ace/OS.cpp: Added some minor fixes to the difftime implementation.

        * ace/OS.cpp:
        * ace/OS.i:
        * ace/README:
        * ace/config-sunos4*:
          Added ACE_LACKS_DIFFTIME macro because SunOS4 does not support
          the Standard C difftime function.  Added a difftime
          implementation for when such is the case.

Fri May 29 08:22:36 1998  Steve Huston  <shuston@riverace.com>

        * ace/Log_Msg.cpp, Trace.cpp: Changed decision for
          order-of-include/inline from ACE_WIN32 to
          ACE_HAS_ONE_DEFINITION_RULE.  This completes the changes needed
          to be able to use the newer versions of HP aC++.

        * ace/config-win32.h: Set ACE_HAS_ONE_DEFINITION_RULE.

Thu May 28 16:17:41 1998  Steve Huston  <shuston@riverace.com>

        * ace/README: Added ACE_HAS_ONE_DEFINITION_RULE.
        * ace/config-hpux-10.x-hpc++.h:
        * ace/config-hpux-11.x-hpc++.h: Added ACE_HAS_ONE_DEFINITION_RULE
          for aC++.  This is part of a set of changes to make ACE work
          with HP aC++ A.01.09 (10.20) and A.03.05 (11.00).  The other
          changes are being tested still.  Thanks _very_ much to Steve Coy
          for digging through this with HP and working out a solution!

Thu May 28 15:55:48 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * Added new configuration files for SCO.  Thanks to Arturo for
          this.

Thu May 28 13:57:50 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Filecache.cpp: removed redundant template instantiations.

        * ace/config-lynxos.cpp: added undef ACE_HAS_TEMPLATE_SPECIALIZATION
          for LynxOS 3.0.0.

        * ace/Hash_Map_Manager.cpp,Map_Manager.cpp: replaced bare explicit
          destructor calls with ACE_DES_FREE_TEMPLATE{,2} macro invocations.

        * ace/OS.h: #define ACE_DES_FREE_TEMPLATE to be null on LynxOS.
          Without it, the g++ that's distributed with LynxOS 3.0.0 hopelessly
          chokes on explicit calls to template class destructors.  This
          hack could cause memory leaks, though currently ACE_DES_FREE_TEMPLATE
          is only used to call empty, non-virtual destructors (in
          Containers.cpp, Hash_Map_Manager.cpp, and Map_Manager.cpp).
          Also, added ACE_DES_FREE_TEMPLATE2 macro for use with two
          template arguments.  There's got to be a better way.

        * include/makeinclude/platform_lynxos.GNU: added LynxOS Version 3.0.0
          support.  It's optional at this point:  add VERSION=3.0.0 to your
          make invocation to enable.  Disabled -Wall with LynxOS 3.0.0.
          Enabled optimization.

Thu May 28 07:47:41 1998  Steve Huston  <shuston@riverace.com>

        * tests/SOCK_Connector_Test.cpp: Changed the "should succeed" test
          from port 25 (smtp) to 7 (echo) to try and get a higher success
          rate.  Thanks to David Levine for this suggestion.

Wed May 27 13:45:24 1998  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp (handle_timed_complete): Fixed problem where
          successful connect was being reported as a failure (P90).

        * tests/SOCK_Connector_Test.cpp: Added a test for a successful
          non-blocking connect (tests fix from above).

Wed May 27 07:04:42 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Service_Config.cpp: default debug_ to 1 instead
          of 0.  And the -d option now disables debug messages,
          instead of enabling them.  Thanks to Irfan for reporting
          that LM_DEBUG messages were lost without this fix.

        * ace/High_Res_Timer (calibrate): added calibrate () method
          to calculate the global scale factor on Pentiums.  It's
          called by the constructor for the first instantiation
          in a process.  (On WIN32, get_registry_scale_factor () is
          called instead of calibrate ().)

        * ace/Stats.cpp (sample): continue aggregating data even
          if there is overflow.  This allows, e.g., a mean to be
          calculated even if the standard deviation calculation overflow.

        * performance-tests/Misc/context_switch_time.cpp: don't run the
          Yield_Test on VxWorks because it takes too long.

        * ace/High_Res_Timer.*: moved calibration from constructor to
          global_scale_factor () accessor.

        * ace/Timeprobe.cpp: no longer need to explicitly calibrate the
          High_Res_Timer.

Tue May 26 22:25:18 1998  Stephen Coy  <stevec@wsa.com.au>

        * ace/Log_Msg.{h,cpp},Service_Config.cpp: added support for
          -d in Service_Config files to enable/disable LM_DEBUG messages.

Tue May 26 14:53:21 1998  Steve Huston  <shuston@riverace.com>

        * ace/SOCK_Dgram_Mcast.cpp (subscribe): Fixed use of uninitialized
          variable, nr_subscribed.  Thanks to Nanbor for finding this.

Tue May 26 13:39:21 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/Timeprobe.cpp:
        * tests/Timeprobe_Test.cpp:
          Now egcs and Sun/CC are happy with this files.

Tue May 26 00:35:49 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * tests/Timeprobe_Test.cpp: Added new test.

        * ace/Timeprobe: Added the ability to have multiple event tables
          for time probes. Multiple maps can be used to chunk up the time
          probes.  Each one can be added by calling event_descriptions().
          Different tables are used internally by consulting the
          minimum_id for each table.  It is up to the user to make sure
          that multiple tables do not share the same event id range.

Sat May 23 21:52:49 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/Message_Block.h:
        * ace/Message_Block.i:
          The rd_ptr() and wr_ptr() are const methods now.

Sat May 23 00:18:58 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/ace_ce_dll.dsp: Updated settings for MIPS CPU.

        * tests/WinCE/*.dsp: Updated settings for MIPS CPU.

Fri May 22 16:00:03 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * tests/MT_SOCK_Test.cpp (spawn): We must check for !defined
          (ACE_LACKS_FORK) rather test for VxWorks or Win32.  Thanks to
          Steven Coy for reporting this.

Fri May 22 20:01:40 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/OS.h: moved ACE_IO_Vector declaration ahead of OS.i #include.

        * ace/OS.i (ACE_IO_Vector::buffer): added static cast of new_buffer
          to char *.

        * ace/OS.i (writev): changed return type from int to ssize_t to
          match declaration in OS.h.

Fri May 22 12:20:11 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace: Other parts of ACE were modified to use the new
          ACE_IO_Vector class.

        * ace/OS.h (ACE_IO_Vector): Added a new class that inherits from
          the correct IO_Vector class provided by the platform.

          writev() and readv() were being emulated on Win32 in ACE.  A new
          ACE_OS::writev() and ACE_OS::readv() has been added to ACE
          that uses WSASend() and WSARecv() respectively.  However, in
          order for you to exploit these new functions, you must use
          ACE_IO_Vector instead of iovec.  The ideal situation would have
          been to totally replace iovec with ACE_IO_Vector but that would
          break too much code. So, if you keep using iovec, you will use
          the expenses and slow emulations.  If you want to use WSASend()
          and WSARecv(), switch over to ACE_IO_Vector. It will work on
          both Win32 and non-Win32 platforms.

Fri May 22 07:53:03 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-linux-pthread.h: removed two
          ACE_LACKS_CONDATTR_PSHARED #defines.  That leaves just
          one, that's commented out.

        * performance-tests/Misc/context_switch_time.cpp: create all
          threads as detached so they don't have to be joined.  They
          test was using up resources on LynxOS, if a high -c option
          was used, without this change.

        * ace/config-sunos5.5-{g++,sunc++-4.x}.h,config-sunos5.5.h:
          merged config-sunos5.5-g++.h and config-sunos5.5-sunc++-4.x.h
          into config-sunos5.5.h.  That new file should be maintained
          for both compilers from now on.  The old files have been
          retained for backward compatibility.  The just #include
          config-sunos5.5.h.

        * ace/config-sunos5.6.h: #include config-sunos5.5.h instead
          of the separate Sun C++ and g++ configs.

        * include/makeinclude/platform_sunos5_sunc++.GNU:
          updated comment to reflect change to config-sunos5.5.h.

Fri May 22 07:30:23 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.8 released.

Fri May 22 07:26:06 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Stats.cpp: added some casts to avoid MSVC++ warnings
          about narrowing.

        * ace/config-osf1-4.0.h: removed commented-out
          ACE_LACKS_{COND,MUTEX}ATTR_PSHARED.

Fri May 22 00:09:15 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Local_Tokens.{h,cpp} (ACE_Null_Token): Only defined default
          ctor/dtor explicitly when ACE_LACKS_INLINE_FUNCTIONS.

        * ace/Stats.cpp: Defined ACE_BUILD_DLL at the beginning.
          Win32 needs to define ULONGLONG literals as 999ui64.
          This is the only place that uses i64 literals.

Thu May 21 21:55:09 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.7 released.

Thu May 21 17:36:37 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-sunos5.6.h: added support for POSIX 199506
          extensions.  Thanks to J. Russell Noseworthy
          <rnosewor@objectsciences.com> for providing this support.

        * ace/Local_Tokens.{h,i}: inlined ACE_Null_Token ctor and dtor
          in class header because the clone () method needs the ctor
          inlined, and it's too difficult to get it right with macros.

        * tests/SString_Test.cpp (main): added ACE_ASSERT with s4 in
          it, because it was unused otherwise.

        * performance-tests/Synch-Benchmarks/Options.cpp (print_results):
          changed #else to #elif, because it has a condition after it.

Thu May 21 15:28:07 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/test_config.h: Modified to write output from tests into
          log file.  Notice that log files on CE have extension name
          ".txt" instead of ".log".

        * ace/OS.i (strrchr): Added UNICODE version of this function.

        * ace/Log_Record.{h,cpp}: Generalized message formatting on CE by
          adding a new method format_msg().

        * ace/Reactor_Impl.h: Removed an extra comma.

        * ace/XtReactor.cpp: Include "ace/Reactor.h"

        * tests/Recursive_Mutex_Test.cpp:
        * tests/Future.cpp: Removed iteration restriction on CE.

Thu May 21 12:13:36 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/ace_{dll,lib}.dsp: Added Stats.cpp into projects.

Wed May 20 23:02:41 1998  Steve Huston  <shuston@riverace.com>

        * ace/SOCK_Dgram_Mcast.cpp (subscribe): On Win32, if
          ACE::get_ip_interfaces finds less than 2 interfaces, call
          subscribe with "0.0.0.0".  This is sort of a hack and is meant
          only to help get things working again until ACE::get_ip_interfaces
          can be made to work correctly in all cases.

Wed May 20 10:42:12 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-mvs.h: enabled ACE_LACKS_CONDATTR_PSHARED and
          ACE_LACKS_MUTEXATTR_PSHARED.  Thanks to Chuck Gehr
          <GehrCR@LOUISVILLE.STORTEK.COM> for advising on this.

        * ace/config-linux-lxpthreads.h,config-lynxos.h: removed
          commented-out ACE_LACKS_{COND,MUTEX}ATTR_PSHARED #defines.

        * ace/config-sunos5.5-{sunc++-4.x,g++}.h: removed
          commented-out ACE_LACKS_{COND,MUTEX}ATTR_PSHARED.  Enabled
          ACE_HAS_CLOCK_GETTIME, because we always link with -lposix4.
          Thanks to J. Russell Noseworthy <rnosewor@objectsciences.com>
          for inspiring the ACE_HAS_CLOCK_GETTIME enable.

        * ace/config-osf1-4.0.h: removed uncommented
          ACE_LACKS_CONDATTR_PSHARED, so that we can test whether
          it's necessary.

        * ace/Stats.*,Makefile: added ACE_Stats class.

        * performance-tests/Misc/context_switch_time.cpp: use
          ACE_Stats to calculate standard deviations.

Tue May 19 21:24:50 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/Future_Test.cpp: Reduced the number of iterations on CE.

        * ace/Synch.i: Added #ifdef (ACE_HAS_THREADS) to make it compile
          on non-threaded platforms.

Tue May 19 10:05:07 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/SString.cpp (strlen): Renamed ACE_WString::wstrlen to
          ACE_WString::strlen.

        * ace/SString.i: Reordered functions to make g++ happy.

        * ace/ACE.cpp (hash_pjw): Changed ACE_OS::strlen to
          ACE_WString::strlen.

Tue May 19 09:52:08 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/config-irix6.x-g++.h:
        * ace/config-irix6.x-sgic++-nothreads.h:
        * ace/config-irix6.x-sgic++.h:
          Added ACE_LACKS_MUTEXATTR_PSHARED

Mon May 18 16:37:36 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/SString.h (ACE_CString): Added the ability to hold on to
          user supplied character strings without having to make a copy.

        * ace/OS.h (ACE_OS): Added implementations for strrchr, strnchr,
          strnstr, and strstr.

        * ace/ACE.cpp (hash_pjw): Added new versions of these that work
          with user specified string length.

Mon May 18 12:24:40 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/config-*.h: Commented out most of the
          ACE_LACKS_CONDATTR_PSHARED so we can see what platforms really
          DON'T support this...

        * ace/OS.i (mutex_init): Added support for
          pthread_mutexattr_setpshared() so we can initialize POSIX
          pthreads process-wide mutexes.  Thanks to Ki-hyun Yoon
          <abird@nextware.co.kr> for suggesting this.

        * ace/config-sunos5.6.h: Added an #define for
          ACE_THREAD_POSIX_SEM.  Thanks to Ki-hyun Yoon
          <abird@nextware.co.kr> for reporting this.

        * ace/config-sunos5*.h: Removed the ACE_LACKS_RWLOCK_T stuff since
          it's unnecessary.  Thanks to Chris Lahey for reminding me of
          this...

Mon May 18 13:48:14 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Synch.i: Added #ifdef (ACE_HAS_THREADS) to make it compile
          on non-threaded platforms.

Mon May 18 12:31:32 1998  Darrell Brunsch <brunsch@cs.wustl.edu>

        * ace/Service_Config.{h,i,cpp}: Added an accessor debug() for
          external access to the <debug_> variable.  More debug messages
          check this before displaying.

        * ace/Parse_Node.cpp: Checks Service_Config's debug flag before
          outputting debug messages.

Sun May 17 23:14:32 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/Wince/*.dsp: Disabled precompiled headers.  They ate up
          all my disk space.

        * ace/Service_Config.cpp: <process_directive> takes a string of
          type ASYS_TCHAR.  Use ACE_WIDE_STRING to do the conversion.

        * ace/Log_Msg.{h,cpp} (ACE_ASSERT): Use unicode in ACE_ASSERT.
          (log): Don't exit the program for now.  Exiting program here
          destroys all debugging message in the window.

        * tests/Reader_Writer_Test.cpp: Reduced the number of iterations
          on WinCE.

        * ace/OS.i: Added ACE_OS::time () implementation for CE.

Sun May 17 21:45:07 1998  David L. Levine  <levine@cs.wustl.edu>

        * performance-tests/Misc/childbirth_time.cpp: changed type of
          MULTIPLY_FACTOR from int to size_t to avoid signed/unsigned
          comparison.

        * tests/Tokens_Test.cpp: synchronize start of thread svc ()
          routines.  Occasionally, the first thread would finish before
          any others had started.  The TSS objects would get cleaned
          up.  Then, the remaining threads would start up and make a big
          mess.

Sat May 16 15:10:46 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/Service_Config.h (ACE_Service_Config): Moved the
          process_directive() into the public part of the class so this
          can be called by applications one the Service Configurator is
          open.  Thanks to Tom Arbuckle
          <arbuckle@uran.informatik.uni-bonn.de> for suggesting this.

Sat May 16 14:12:09 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Thread_Manager.{h,i,cpp} (class ACE_Thread_Descriptor_Base):
          Extract thread handle and thread creation flags out from
          Thread_Descriptor into this new class.  This is necessary
          because after my last round of changes to improve
          ACE_Thread_Manager, I changed the <terminated_queue_> from
          holding Thread_Descriptor's to holding pointers to descriptor.
          This was a bad move because the address of these pointers had
          already been "freed."  The <terminated_queue_> now holds
          ACE_Thread_Descriptor_Base which contains only the information
          needed for manipulating <terminated_queue_>.  Thanks to Arturo
          for noticing this.

Sat May 16 03:23:35 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * performance-tests/Misc/childbirth_time.cpp (main): Added a new
          function to test the performance of ACE_Thread_Mutex in single
          thread _without_ any contention.

Fri May 15 22:55:51 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/Recursive_Mutex_Test.cpp: Only iterate the test 50 times
          on CE as on Chorus.  Otherwise, as I'm using a CEdit to hold the
          test output, CEdit would overflow.

        * ace/OS.i (thr_getspecific): Don't check for return value of
          TlsGetValue on CE because CE doesn't seem to set the LastError
          correspondingly.
          (strchr): Added implementation on CE.

        * Added Activation_Queue.i and Strategies.i.

        * Combed thru all these files and added difinitions for ctor/dtor
          for a bunch of classes explicitly.  CE needs them.

          Activation_Queue.cpp Activation_Queue.h Dynamic.h Dynamic.i
          Event_Handler.h Event_Handler.i Get_Opt.h Get_Opt.i Handle_Set.h
          Handle_Set.i High_Res_Timer.h High_Res_Timer.i INET_Addr.h
          INET_Addr.i IO_SAP.h IO_SAP.i IPC_SAP.h IPC_SAP.i Local_Tokens.h
          Local_Tokens.i Log_Record.h Log_Record.i Malloc.h Malloc.i OS.h
          OS.i Obstack.cpp Obstack.h Obstack.i Parse_Node.h Parse_Node.i
          Pipe.h Pipe.i Process_Manager.h Process_Manager.i SOCK.h SOCK.i
          SOCK_Acceptor.cpp SOCK_Acceptor.h SOCK_Acceptor.i SOCK_CODgram.h
          SOCK_CODgram.i SOCK_Connector.h SOCK_Connector.i SOCK_Dgram.h
          SOCK_Dgram.i SOCK_Dgram_Bcast.h SOCK_Dgram_Bcast.i
          SOCK_Dgram_Mcast.h SOCK_Dgram_Mcast.i SOCK_IO.h SOCK_IO.i
          SOCK_Stream.h SOCK_Stream.i SString.h SString.i Sched_Params.h
          Sched_Params.i Select_Reactor.h Select_Reactor.i
          Service_Manager.h Service_Manager.i Service_Repository.h
          Service_Repository.i Service_Types.h Service_Types.i
          Shared_Object.h Shared_Object.i Signal.h Signal.i Strategies.cpp
          Strategies.h Strategies.i Strategies_T.cpp Strategies_T.h
          Synch.cpp Synch.h Synch.i Synch_Options.cpp Synch_Options.h
          Synch_Options.i Timer_Heap_T.cpp Timer_Heap_T.h Timer_List_T.cpp
          Timer_List_T.h Timer_Queue_T.cpp Timer_Queue_T.h
          Timer_Wheel_T.cpp Timer_Wheel_T.h.

Fri May 15 16:55:34 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/config-sunos5*.h: Automatically enable ACE_LACKS_RWLOCK_T if
          we're NOT using Solaris threads (since pthreads doesn't support
          readers/writer locks).

        * ace/Service_Config.cpp: Removed a duplicate template
          instantiation of template class
          ACE_Unbounded_Queue_Iterator<ACE_CString>.  Thanks to Ben Eng
          <ben@jetpen.com> for reporting this.

        * ace/OS: Fixed a number of problems that occurred when trying to
          use the PTHREAD implementation on Solaris without using
          ACE_HAS_STHREADS.  The problems related primarily to the
          ACE_OS::rw*() functions.  To fix the problems, the following
          changes were made.

          Remove the #if defined (ACE_HAS_STHREADS) from the case where we
          have the native rw*() functions.  We just use the
          ACE_LACKS_RWLOCK_T compile flag to determine whether we have the
          native functions.

          Without the ACE_HAS_STHREAD flag, ACE_rwlock_t comes up
          undefined.  To fix this, moved the definition at approx. line
          1868 above the #else at approx. line 1865 as the following:

          #if ! defined (ACE_LACKS_RWLOCK_T)
          #include <synch.h>
          typedef rwlock_t ACE_rwlock_t;
          #endif  // ! ACE_LACKS_RWLOCK_T

          Finally, the ACE_idtype_t type was also undefined.  To fix this,
          moved the typedef from within the #if defined (ACE_HAS_STHREADS) ||
          defined (DIGITAL_UNIX) block and create a new ifdef block:

          #if defined (ACE_HAS_IDTYPE_T)
          typedef idtype_t ACE_idtype_t;
          #else
          typedef int ACE_idtype_t;
          #endif

          Thanks to Chris Lahey <CLahey@cccis.com> for his through help at
          recognizing and fixing these problems.

Fri May 15 09:38:37 1998  David L. Levine  <levine@cs.wustl.edu>

        * bin/make_release: redirect cvs tag output to /dev/null.

        * performance-tests/Misc/context_switch_time (main): fixed
          printout of yield test time for other than the default
          number of iterations.

Fri May 15 09:29:57 1998  David L. Levine  <levine@cs.wustl.edu>

        * ACE version 4.5.6 released.

Fri May 15 08:25:19 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Service_Config.cpp: fixed and added template instantations.

        * ace/Svc_Conf_y.cpp,etc/Svc_Conf_y.cpp.diff: removed compile
          warnings.

        * include/makeinclude/platform_sunos5_g++.GNU: use PIC instead of pic,
          because the TAO orbsvcs lib needs it.

        * Makefile: added .PHONY for phony targets.

Fri May 15 02:47:35 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.5 released.

Fri May 15 02:42:06 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.4 released.

Thu May 14 15:28:42 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/config-kcc-common.h: Added the ACE_HAS_USING_KEYWORD to the
          config file.  Thanks to Ben Eng <ben@jetpen.com> for reporting
          this.

        * examples/Service_Configurator/Misc: Updated the Timer_Service
          test to demonstrate the new service configurator feature.  It's
          AWESOME!

        * ace/Svc_Conf.h,
          ace/Svc_Conf.l:
          Added a super-cool new feature that allows us to parse service
          configurator directives from a string rather than from a
          svc.conf file.

        * ace/Svc_Conf.l (yywrap): Free up ace_yy_current_buffer in yywrap
          to prevent a memory leak.  Thanks to Paul Motuzenko
          <p_motuzenko@hotmail.com> for reporting this.

        * examples/IPC_SAP/SOCK_SAP/CPP-inserver-poll.cpp: Enhanced the
          implementation to make it easier to follow and to support the
          latest features of CPP-inclient.cpp.

        * ace/OS.h (ACE_OS): Added a wrapper for strcspn(3s).

        * examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp: Added more
          cool changes to the CPP-inserver.cpp example and renamed it.

Thu May 14 14:46:02 1998  Irfan Pyarali <irfan@cs.wustl.edu>

        * ace/OS.h: Moved the definition of ACE_Export before it is used.

Thu May 14 13:22:46 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/Message_Block.h:
        * ace/Message_Block.cpp:
          The static duplicate() method can take pointer to a const
          Message_Block.

Wed May 13 18:46:28 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * examples/IPC_SAP/SOCK_SAP/CPP-{inserver,inclient}.cpp: Added
          profile timing to the server so we can compute socket
          performance metrics.  Also generalized the tests so we can
          experiment with both oneway and twoway calls.

Wed May 13 19:20:27 1998  James C Hu  <jxh@cs.wustl.edu>

        * ace/OS.h:
        * ace/OS.i:
        * ace/OS.cpp: Added a substitute gets implementation for when
          ACE_LACKS_GETS.  The substitute is actually safer than gets, so
          I may end up making gets call the new routine instead of
          Standard C's.

        * ace/config-g++-common.h: Changed the g++ common file so that
          2.8.1 acts like EGCS does.  This worked on Solaris 2.5.1.  We'll
          see how other's fare.

Wed May 13 18:13:12 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.3 released.

Wed May 13 11:29:56 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * performance-tests/Synch-Benchmarks/Options.cpp (print_results):
          My previous change to add print_results functionality when
          ACE_HAS_GETRUSAGE broke this on Win32.

        * ace/config-g++-common.h (ACE_HAS_GNUC_BROKEN_TEMPLATE_INLINE_FUNCTIONS):
          Made this macro defined for all versions of g++.

Wed May 13 09:26:48 1998  David L. Levine  <levine@cs.wustl.edu>

        * many *.{h,i,cpp,idl} files:  inserted RCS keyword string.

Wed May 13 00:35:25 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace: Added ACE_Export to a bunch of class in ACE.  Thanks to
          Gonzalo A. Diethelm (gonzo@ing.puc.cl) for pointing this out.

Tue May 12 15:16:04 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/config-WinCE.h:
        * ace/OS.h: Stopped using non-static object manager for CE.  This
          is causing some problem at process shutdown.

        * ace/Acceptor.cpp: Made CE friendly.

        * ace/Process.cpp ([~]ACE_Process_Options): Moved things around to
          avoid compilation errors on CE.  Secret: CE doesn't have
          environment variables.

Tue May 12 13:28:05 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/OS.h:
          The ACE_INLINE_FOR_GNUC macro must be defined (as the null
          token) if ACE_HAS_GNUC_BROKEN_TEMPLATE_INLINE_FUNCTION is not
          defined.

Tue May 12 12:30:55 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/README:
        * ace/config-g++-common.h (ACE_HAS_GNUC_BROKEN_TEMPLATE_INLINE_FUNCTIONS):
          Added this new macro to get around a bug which only happens in
          GNUC 2.7.xx.  It mistakenly refers to the template definition as
          the place where a function is used.

        * ace/OS.h (ACE_INLINE_FOR_GNUC): Added the macro to fix the GNUC
          bug.

        * ace/Thread_Manager.h: Added above macro to set_next and
          get_next.

Tue May 12 12:11:36 1998  Bob Laferriere  <laferrie@gsao.med.ge.com>

        * ace/Process.{h,cpp}: modifications to make the environment buffer
          and number of environment variables tunable in the constructor.
          I also fixed a logic error which previously attempted to write
          beyond an array bounds of the array of pointers into the
          environment buffer. I made the environment_argv_ buffer tunable
          as well. The new constructor takes the old hardcoded static sizes
          as the default dynamic sizes for backwards compatiblity.
          The behavior is to return -1 if the maximum buffer size or
          maximum number of environment arguments has been reached in
          following with the prior behavior. I opted not to make the members
          grow as needed so the class would still follow it's prior behavior.
          This would be simple to add, however.

Tue May 12 08:29:50 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/Malloc.cpp (ACE_Allocator::instance): replaced dynamic
          allocation of the default ACE_Allocator with allocation from
          the data segment.  Thanks to Ben Eng <ben@jetpen.com> for
          providing the stack trace that revealed the problem.

        * ace/Malloc.h: added comments to not add data members to
          ACE_Allocator or ACE_New_Allocator.

        * bin/g++dep: changed PATH to pick up /project/doc/pkg/gnu/bin/g++,
          and removed GNUG_INCLUDE.  Thanks to Ganesh Pai <gpai@voicetek.com>
          for reporting problems with the old version on Linux.

Tue May 12 02:59:27 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * performance-tests/Misc/childbirth_time.cpp: Added ACE_OS::sleep
          (0) before all timing sections start.  This ensures we own a
          fresh time slice when the timing begin and reduce the chances of
          getting preempted

Tue May 12 00:42:05 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * bin/dsp2dsp.pl: This file clones a new MSVC 5.0 dsp file based
          on setting from another dsp file.  It is most useful in adding
          new project files into tests/.

        * tests/WinCE/*: New project files.  Updated the workspace.
          Please see CE-status for the current progress.

        * tests/Buffer_Stream_Test.cpp:
        * tests/Conn_Test.cpp:
        * tests/Enum_Interfaces_Test.cpp:
        * tests/Handle_Set_Test.cpp:
        * tests/Hash_Map_Manager_Test.cpp:
        * tests/Message_Block_Test.cpp:
        * tests/Reactors_Test.cpp:
        * tests/Thread_Manager_Test.cpp:
        * tests/Thread_Mutex_Test.cpp: Made CE friendly.

        * tests/test_config.h: Moved some common definitions shared among
          CE and other platforms out.

        * ace/Acceptor.cpp:
        * ace/Acceptor.h:
        * ace/Connector.cpp:
        * ace/Connector.h:
        * ace/Stream.cpp:
        * ace/Svc_Handler.cpp:
        * ace/Svc_Handler.h:
        * ace/Synch.h:
        * ace/Synch.i: CE stuff.

        * ace/config-WinCE.h: Defined ACE_DEFAULT_SERVER_HOST in UNICODE
          here to overwrite the default setting.

        * ace/Synch.i (ACE_Lock): CE needs a default ctor here.

Mon May 11 15:43:01 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * tests/WinCE/ce_tests.dsw:
        * tests/WinCE/Atomic_Op_Test.dsp:
        * tests/WinCE/Barrier_Test.dsp:
        * tests/WinCE/Basic_Types_Test.dsp:
        * tests/WinCE/Map_Manager_Test.dsp: Added/Updated project files.

        * tests/Atomic_Op_Test.cpp:
        * tests/Barrier_Test.cpp:
        * tests/Basic_Types_Test.cpp: Made them CE friendly.

        * ace/config-WinCE.h: Only define ACE_LACKS_INLINE_FUNCTIONS when
          building debug version of ACE for SH series CPU.

        * WindozeCE/WindozeCEDlg.cpp: Updated the initial message after the
          display window but before ACE console progrm started.


Mon May 11 15:43:01 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.{i,cpp}: Moved CE's impelmentation of ACE_OS::fprintf to
          cpp file.

Mon May 11 15:15:24 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/Thread_Manager.h:
          Removed bogus ACE_INLINE macros in class declaration, they were
          making the SGI compiler *very* unhappy.

Mon May 11 15:11:11 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.cpp (ctime_r): Renamed the fmtstr to
          ACE_OS_CTIME_R_FMTSTR for we may need to use similar scheme to
          fix other bugs in the future.

Mon May 11 14:50:47 CDT 1998  Everett Anderson  <eea1@cs.wustl.edu>

        * ace/Name_Proxy.cpp: Changed one last recv to recv_n.

Mon May 11 13:14:22 1998  Chris Gill  <cdgill@cs.wustl.edu>

        * ace/RB_Tree.{cpp,h,i}: (new) Red-Black Tree data structure
          implementation.  A Red-Black Tree is an efficient
          self-balancing binary tree that uses recoloring to
          minimize rotations while rebalancing on insertion or
          deletion of a tree node.  Items in the tree are stored
          according to a key provided at insertion.  This
          implementation is an OO rendition of the ADT described
          in Cormen, Leiserson, Rivest, "Introduction to Algorithms"
          (c) 1990, MIT.

Mon May 11 12:31:41 1998  Steve Huston  <shuston@riverace.com>

        * ace/OS.h: Made ACE_LD_SEARCH_PATH, ACE_LD_SEARCH_PATH_SEPARATOR_STR,
          ACE_DLL_PREFIX, ACE_DLL_SUFFIX settable via config.h.

        * ace/config-hpux-10.x.h:
          ace/config-hpux11.h: Set ACE_LD_SEARCH_PATH, ACE_DLL_SUFFIX.
          Thanks to Kirill Rybaltchenko and David Levine for identifying
          this problem.

Mon May 11 12:27:05 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/ACE.cpp (send_n): retry if ACE::send () fails due to
          EWOULDBLOCK.  Thanks to Dave Brackman <dbrackma@OhioEE.com>
          for reporting this.

        * tests/Env_Value_Test.cpp (main): check return values of
          options.setenv () calls.  Thanks to Bob Laferriere
          <laferrie@gsao.med.ge.com> for recommending this.

        * include/makeinclude/platform_vxworks5.x_ghs.GNU: instead of
          using GNU ranlib386 after using GHS ax for i386 targets, just
          use GNU ar386.

        * ace/gethrtime.cpp: added some comments about GHS asm support.

        * java/netsvcs/{Logger,Time}/Makefile,
          java/tests/netsvcs/Logger/Makefile:
          replaced WRAPPER_ROOT with ACE_ROOT.

Mon May 11 05:14:18 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/config-WinCE.h: Added ACE_HAS_NON_STATIC_OBJECT_MANAGER.  CE
          console programs have to set this flag because the main
          functions is actually renamed and running in a threads.

        * tests/test_config.h: Excluded class and macros to redirect
          debugging messages to files under CE.  This make debugging a bit
          easier but we should eventually put them back under CE.

        * tests/Map_Manager_Test.cpp: Made CE friendly.

        * ace/Hash_Map_Manager.cpp: Some ACE_ERROR were not CE friendly.

        * ace/Profile_Timer.{h,i}:
        * ace/Synch.{h,i}: Moved inline function definitions to Synch.i
          file.  Windows CE can't grok any inline at all.

Mon May 11 02:43:45 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * performance-tests/Misc/childbirth_time.cpp (main): Added
          a new method for benchmarking ACE_Thread_Manager::spawn_n.
          Added other cosmetic changes.

Sun May 10 23:20:36 1998  Irfan Pyarali  <irfan@cs.wustl.edu>

        * ace/Token.cpp: Adding more debugging statements.

        * ace/Asynch_Acceptor.cpp (should_reissue_accept): Added template
          method that decides whether a new asynchronous accept should be
          issued.

Sun May 10 23:28:57 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.cpp(inherit_log_msg):
        * ace/Log_Msg.cpp (thr_desc): Wait on Thread_Descriptor's lock
          instead of the "global" Thread_Manager lock.

        * ace/Thread_Manager.cpp: Moved acquire_release() from
          ACE_Thread_Manager to ACE_Thread_Descriptor.  This method is
          called from ACE_Log_Msg::thr_desc to prevent a thread from using
          its thread descriptor before it is fully built.  The change
          relieve spwaned threads from waiting for other threads created
          in the same spwan_n call to be created before it can start
          running.

          (insert): Added an extra argument to control whether we want to
          insert the newly created thread into ACE_Thread_Manager's thread
          table or not.  Notice that it is default to 1 to remain the
          original behavior in case anyone is using this class/function
          directly in their code.  However, in ACE_Thread_Manager, we
          always prevent it from inserting because we always register
          thread descriptors from spawn_i.

Sun May 10 01:51:29 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.h: Renamed ACE_OS::Time_To_The_Beginning to
          ACE_OS::FILETIME_to_timval_skew.

        * ace/OS.cpp: Found the problem in ACE_OS::ctime_r.  An internal
          compiler bug (?) caused the bug.  The solution: move the format
          string out as a const string instead of putting it in sprintf
          directly.  Weird.

        * ace/Log_Record.{h,cpp}: Made priority_name_ and its access
          function CE friendly.

Sat May  9 20:09:13 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Thread_Manager.h: Changed the type of lock used by
          <thread_desc_freelist_> to ACE_SYNCH_MUTEX.  Or else, it won't
          compile on platforms that doesn't support thread.  Thanks to
          Woody Zenfell <woody@arl.wustl.edu> for reporting this.

Fri May 08 22:29:01 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/SOCK_Dgram_Mcast.cpp (subscribe): CE UNICODE related fix.

Fri May  8 14:18:46 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Thread_Manager.h (ACE_Thread_Descriptor): Added ACE_INLINE
          to declarations of set_next and get_next to get around a bug in
          a version of g++.

Fri May  8 11:57:23 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/Map_Manager.cpp: Fixed a bug where we weren't calling
          close_i() when resizing the buffer.

        * ace/Thread_Manager.cpp (set_grp): In
          ACE_Thread_Manager::{get,set}_grp we must check to see that we
          have a valid pointer after the ACE_FIND.  Otherwise a seg fault
          occurs.  Thanks to Chris Lahey <CLahey@cccis.com> for reporting
          this.

Fri May 08 09:47:50 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-linux-common.h: only use ACE_HAS_POLL with glibc2.
          Thanks to Saneyasu <sane@sail.t.u-tokyo.ac.jp> for reporting
          this.

        * ace/OS.i (sleep): On Linux without ::poll () (prior to glibc),
          copy the ACE_Time_Value argument because the system modifies it.

        * include/makeinclude/platform_osf1_4.0.GNU: moved -lm from LIBS
          to MATHLIB.

        * performance-tests/UDP/Makefile: added $(MATHLIB) to LDLIBS.

        * tests/Aio_Platform_Test.cpp (have_asynchio): use
          _SC_LISTIO_AIO_MAX instead of _SC_AIO_LISTIO_MAX if it's
          #defined.  It is on DU 4.0.

Fri May 08 08:43:42 1998  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_hpux_gcc.GNU: Added $(PIC) to
          definition of SOFLAGS.  Thanks to Kirill Rybaltchenko
          <Kirill.Rybaltchenko@cern.ch> for this fix.

        * ace/SOCK_Dgram_Mcast.cpp (subscribe): Added code for Win32 so that
          if a subscribe is done without specifying an interface, the mcast
          address is subscribed to on each non-loopback interface.  This works
          around a bug in NT's winsock in the presence of multiple IP
          interfaces.  Won't hurt 95 - will just run a bit slower than it
          otherwise would.

        * examples/Reactor/Multicast/Multicast.{mdp,mak}: Added MSVC 4.2
          workspace for this example.

Fri May  8 03:43:25 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Thread_Manager.{h,cpp}: Added yet one more member variable
          into Thread_Descriptor to keep track of registration of
          Thread_Descriptors.  By adding this variable, we can avoid an
          extra locking in remove_thr for most cases (normal cases ;-).
          Thanks to the inspiration from Arturo Montes
          <mitosys@colomsat.net.co>.

Thu May 07 22:06:13 1998  Ben Eng  <ben@jetpen.com>

        * ace/config-kcc-common.h,config-linux-{common,kcc}.h: updated
          KCC/Linux support, and integrated into config-linux-common.h.

Thu May  7 20:32:20 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp
          (main): Oops, we need to move the unlink() AFTER we create the
          file...  Thanks to Sandro Doro <doros@aureus.sublink.org> for
          reporting this.

Thu May 07 19:08:22 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.2 released.

Thu May  7 14:10:41 1998  Carlos O'Ryan  <coryan@cs.wustl.edu>

        * ace/Timer_Hash_T.h:
        * ace/Timer_Hash_T.cpp:
        * ace/Timer_Heap_T.cpp:
        * ace/Timer_Wheel_T.cpp:
          The classes had a INHERITED typedef for the base class, but
          Solaris defines a macro by the same name. This causes very weird
          problems with EGCS (and probably other g++ versions).

Thu May 07 04:15:23 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Profile_Timer.cpp (elapsed_time): Treat Win32 differently
          so I can use this function with WinCE Emulation build.  The
          problem is that Win32 can't convert __int64 to double.

        * ace/OS.{h,cpp} (ACE_Time_Value): (Win32 only) Added a new static
          const member (Time_To_The_Beginning) of type DWORDLONG (unsigned
          _int64) to adjust the time skew between FILETIME and POSIX time.
          Changed the type of _100ns to ULARGE_INTEGER to eliminate
          unnecessary computation.

Wed May  6 23:58:40 1998  Carlos O'Ryan  <coryan@swarm.cs.wustl.edu>

        * ace/XtReactor.cpp:
          The signature for the open() method of the notify pipe has been
          modified.

Wed May  6 23:28:47 1998  Douglas C. Schmidt  <schmidt@tango.cs.wustl.edu>

        * examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp:
          Fixed a couple of mistakes that were causing the UNIX domain
          sockets not to work.  Thanks to Sandro Doro
          <doros@aureus.sublink.org> for recommending this.

        * performance-tests/Misc/context_switch_time.cpp (svc): An 'i'
          was being defined twice, gorp!  It's fixed now!

Wed May 06 22:00:14 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-linux-common.h: only #define
          ACE_HAS_4_4BSD_SENDMSG_RECVMSG with __GLIBC__.  Thanks
          to Chanaka Liyanaarachchi <chanakal@ittc.ukans.edu> for
          reporting the lack of CMSG_DATA support on RedHat 4.2.

Wed May 06 18:35:21 1998  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp (get_ip_interfaces): Reset buf_len before each call to
          get_reg_key to get registry value for device's IP address.  It gets
          overwritten on each call to get_reg_key.

        * include/makeinclude/platform_mvs.GNU: Added definition for PIC.
          Though not related to position-independent-code, it is a switch that
          makes shared lib builds work right.  Removed the old SOBUILD def.
          Thanks to Chuck Gehr for helping with this strategy.

Wed May 06 16:32:53 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Filecache.h (ACE_Filecache_Handle): Removed
          ACE_EXPORT_DECLARE and specified ACE_Export directly for
          ACE_Filecache_Handle and ACE_Filecache in calss declarations.

        * ace/Thread_Manager.{h,i,cpp}: A bug was found by Arturo Montes
          <mitosys@colomsat.net.co> who noticed that when a thread was
          spawned and then exited immediately, its thread descriptor might
          get freed before even get registered into the thread table kept
          by the Thread_Manager.  Although it doesn't make any sense to
          spawn a thread just to let it return immediately, a middleware
          shouldn't restrict the way how users want to use it.

          I got around this problem by adding a lock into
          Thread_Descriptor.  Before spawning a thread, the Thread Manager
          will first grab the lock.  It won't release the lock until
          calling append thread, at which point, the Thread_Descriptor of
          the thread has been stashed into the table.  Removing the
          Thread_Descriptor also requires to hold this lock and release
          the lock before the Thread_Descriptor is "freed."  Therefore,
          if a thread exit before its Thread_Manager ever gets a chance to
          register it, it will block and waiting.

          The type of the lock is defined by ACE_DEFAULT_THREAD_MANAGER_LOCK
          which, by default, is ACE_Thread_Mutex.  User can change the
          definition by defining in their config.h file.  For example, if
          you can be sure that all your threads will run for an extended
          long time (which, in most case, should be true,) you can disable
          this feature by defining this as a ACE_Null_Mutex to speed up
          spawning and termination of threads.

          (thread_desc_freelist_): Added a free list to Thread_Manager to
          recycle Thread_Descriptor.  By default, this free list
          pre-allocate 0 Thread_Descriptor and has low-water-mark of 1,
          increment count 1 and a huge (25000) high water mark.  That is,
          if you use a Thread_Manager for an extended period of time, you
          won't have to dynamically allocate memory for Thread_Descriptor
          for every thread after your system is stable (the thread count
          fluctuates between some certain values.)

          There are two ways to change the settings.  First, by defining
          ACE_DEFAULT_THREAD_MANAGER_LWM, ACE_DEFAULT_THREAD_MANAGER_HWM,
          ACE_DEFAULT_THREAD_MANAGER_INC, and
          ACE_DEFAULT_THREAD_MANAGER_PREALLOC in your <config.h> file.
          This changes the default setting of your ACE.  (The global
          Thread_Manager use this setting.)  Or, you can specify these
          values when creating a Thread_Manager.

        * ace/Free_List.cpp (alloc,dealloc): Don't grab the lock in these
          two functions.  They only get called from add() and remove()
          which hold the lock before making the call.  Actually, they also
          gets called from the constructor and destructor.  But that
          shouldn't be a problem.

        * tests/Reactor_Notify_Test.cpp (run_test): Moved the #endif of
          ACE_HAS_THREADS down to avoid compilation error on non-threaded
          platforms.

Tue May  5 14:12:08 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * include/makeinclude/platform_sco5.0.0-fsu-pthread.GNU: Added a
          platform config file courtesy of Arturo Montes
          <mitosys@colomsat.net.co>.

Tue May 05 08:35:18 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-irix6.x-sgic++-nothreads.h: updated the determination
          of ACE_SIZEOF_LONG_DOUBLE.  Thanks to Bob Laferriere
          <laferrie@gsao.med.ge.com> for providing the fix.

        * include/makeinclude/platform_sunos5_g++.GNU: use -gstabs+ instead
          of -g on Solaris86.

        * etc/Svc_Conf_l.cpp.diff: updated.  It's magic, Nanbor :-)
          The problem seems to be due to an old version left in
          /tmp/Svc_Conf_l.cpp, which confuses flex.

        * ace/config-linux-common.h,config-g++-common.h: moved
          ACE_HAS_PENTIUM (with i386) from config-linux-common.h
          to config-g++-common.h.

        * ace/config-linux-common.h: added ACE_HAS_POLL, so we
          don't use ::select () in ACE_OS::sleep ().  Linux's
          ::select () modifies its timeout argument!

        * ace/OS.i (gethrtime): added RDTSC support for all g++
          _and_ ACE_HAS_PENTIUM platforms.

        * ace/config-vxworks5.x.h: added ACE_HAS_PENTIUM with GHS
          on Intel platforms.

        * ace/Makefile: for GHS on Intel 8086, build gethrtime.cpp.
          It's used to provide a high-resolution time using the
          Pentium RDTSC instruction.  I don't know how to get
          GHS' asm to do it, so it uses g++.

        * ACE-INSTALL.html: added note about carefully installing
          egcs on Linux.  Thanks to Kurt Sussman <kls@best.com> for
          tracking down the cause of mysterious link failures.

Tue May 05 02:15:49 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Svc_Conf_l.cpp: I know, I know.  I shouldn't mess with this
          file directly.  But I couldn't manufacture this file even with
          the stock Svc_Conf.l using Doug's flex.  So, I reckon I'll just
          check this in now and fix the Svc_Conf_l.diff later.

        * ace/Service_Config.{h,cpp} (process_directive): Standard CE
          stuff.

        * WindozeCE/WinAdapter*.*:
        * WindozeCE/WindozeCE*.*: Replaced the old adapter for CE with a
          new one.  The new version allows uses to scroll thru the
          "console" output.

Mon May 04 17:09:39 1998  David L. Levine  <levine@cs.wustl.edu>

        * performance-tests/Misc/context_switch_time.cpp: lots of
          cleanup.  The main changes were the use of ACE_THR_PRI_FIFO_DEF
          for the default therad priority, and removal of some
          unnecessary thr_yield () calls.

        * tests/Aio_Platform_Test.cpp: added arguments to main (),
          removed #includes that are already in ace/OS.h, and added
          ACE_START_TEST/ACE_END_TEST calls.

Mon May  4 13:08:18 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/config-sunos5.6.h: Removed a mysterious "30" at the end of
          an #undef.  Thanks to J. Russell Noseworthy
          <rnosewor@objectsciences.com> for reporting this problem.

Mon May 04 08:49:09 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/OS.cpp (ACE_Thread_Adapter::invoke): with ACE_NEEDS_LWP_PRIO_SET,
          added the call to ACE_OS::thr_setprio () so that the LWP priority
          will be set if running in the RT class.  Applications no longer
          have to be concerned with this.

        * performance-tests/Misc/preempt.cpp (svc): removed
          ACE_OS::thr_setprio () calls to set LWP priority, now that ACE
          handles that internally.

        * include/makeinclude/platform_*linux.GNU: added "s" to
          ARFLAGS, so that ranlib is no longer necessary.

Sun May 03 22:37:38 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Parse_Node.cpp (open_handle): WinCE doesn't support
          ExpandEnvironmentStringA.

        * ace/config-win32-common.h: Only define ACE_HAS_GETRUSAGE when
          ACE_HAS_WINNT4 != 0.  Thanks to Paul Motuzenko
          <p_motuzenko@hotmail.com> for reporting this.

Sun May 03 01:58:47 1998  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ACE version 4.5.1 released.

Sat May  2 14:35:04 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * tests/Reactor_Notify_Test.cpp: Factored out some common code to
          make the test more concise.

        * tests/Reactor_Notify_Test.cpp: Modified the test to check
          whether our new mechanism for disabling the notify pipe works
          correctly.

        * ace/{WFMO,Select}_Reactor[_Impl]: Added the
          "disable_notify_pipe" flag in the constructor in order to
          disable this feature and save on descriptors if they aren't
          required.  Thanks to Tom Venturella <tventurell@mdc.com> for
          motivating this.

Sat May 02  Alexander Babu Arulanthu  <alex@merengue.cs.wustl.edu>

        * tests/Aio_Platform_Test.cpp: Included this test program for
        testing a platform for Asynchronous I/O options.
        * tests/Makefile (BIN): Added Aio_Platform_Test.

Fri May 01 17:52:32 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/Arg_Shifter.{h,cpp}: Added macros ACE_Export and
          ACE_BUILD_DLL respectively.

        * ace/ACE_Library.mak:
        * ace/ace_{dll,lib}.dsp: Added Arg_Shifter.cpp into project.

Fri May  1 13:52:32 1998  Douglas C. Schmidt  <schmidt@flamenco.cs.wustl.edu>

        * ace/Addr: Made the destructor for ACE_Addr virtual so that
          subclasses can be deleted correctly.  Thanks to Wei Chiang
          <chiang@horizon.ntc.nokia.com> for reporting this.

        * ace: Added Arg_Shifter from TAO and renamed it to
          ACE_Arg_Shifter.

        * ace/IOStream_T.i (recv_n): ACE_IOStream<STREAM>::eof (void) had
          a subtle bug if it is called when a get operation (>>) has not
          failed.  Thanks to James CE Johnson <ace-users@lads.com> for
          reporting this bug.

        * examples/Connection/misc/Connection_Handler.cpp: Make sure to
          activate() each active object using THR_DETACHED so we don't run
          out of threading resources.  Thanks to Brad Walton
          <brad.walton@transnexus.com> for reporting this.

        * ace/Timer_Queue_Adapters.cpp: Rather than returning the result
          of schedule_ualarm(), the
          ACE_Async_Timer_Queue_Adapter<TQ>::schedule() method should
          return the timer id.  Thanks to James Garrison
          <jhg@austx.tandem.com> for reporting this.

        * examples/System_V_IPC/SV_Message_Queues: Renamed the so-called
          "ACE_Message_Block" to "Message_Block" so it wouldn't be as
          confusing.  Thanks to Ganapathi <guns@fs.IConNet.NET> for this
          suggestion.

Fri May 01 17:52:32 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/ACE_Library.mak:
        * ace/ace_{dll,lib}.dsp: Added Arg_Shifter.cpp into project.

Fri May 01 14:09:21 1998  Steve Huston  <shuston@riverace.com>

        * ace/OS.h: Changed ACE_hrtime_t from signed to unsigned on Win32
          to insure correct results from ACE_High_Res_Timer::elapsed_time
          calculations.  Fixes bug P87.

Fri May 01 11:52:47 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ace/OS.h: Forgot to redefine ASYS_INLINE after #undef it.

        * ace/OS.i (last_error): On Win32, this should also update errno
          after calling SetLastError ().  Thanks to Steve for pointing
          this out.  Fixes bug P88.

Fri May 01 10:01:09 1998  David L. Levine  <levine@cs.wustl.edu>

        * ace/config-sunos5.6.h: replaced config-sunos5.6-sunc++-4.x.h
          with this config file, which supports both Sun C++ and g++.

        * ace/OS.i (gethrtime): for the default (::gettimeofday) case,
          use 64-bit instead of 32-bit arithmetic by casting to ACE_hrtime_t.

        * ace/Basic_Types.{h,i}: added ACE_U_LongLong::operator *.

        * ace/Env_Value_T.cpp: added #include of Env_Value_T.h.

Fri May  1 00:35:40 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * include/makeinclude/wrapper_macros.GNU
          (ACE_LDSO_Version_Number): Fixed the problem of not able to
          parse a formal release number from ace/VERSION.

Thu Apr 30 15:53:58 1998  Nanbor Wang  <nanbor@cs.wustl.edu>

        * ACE.{h,i,cpp}:
        * DEV.{h,i,cpp}:
        * DEV_Connector.{h,i,cpp}:
        * DEV_IO.{h,i,cpp}:
        * Date_Time.{h,i,cpp}:
        * FIFO_Recv.{h,i,cpp}:
        * FIFO_Recv_Msg.{h,i,cpp}:
        * FIFO_Send.{h,i,cpp}:
        * FIFO_Send_Msg.{h,i,cpp}:
        * FILE.{h,i,cpp}:
        * FILE_Connector.{h,i,cpp}:
        * FILE_IO.{h,i,cpp}:
        * IO_SAP.{h,i,cpp}:
        * IPC_SAP.{h,i,cpp}:
        * LSOCK.{h,i,cpp}:
        * LSOCK_CODgram.{h,i,cpp}:
        * LSOCK_Connector.{h,i,cpp}:
        * LSOCK_Dgram.{h,i,cpp}:
        * LSOCK_Stream.{h,i,cpp}:
        * Log_Record.{h,i,cpp}:
        * Pipe.{h,i,cpp}:
        * SOCK.{h,i,cpp}:
        * SOCK_CODgram.{h,i,cpp}:
        * SOCK_Connector.{h,i,cpp}:
        * SOCK_Dgram.{h,i,cpp}:
        * SOCK_Dgram_Bcast.{h,i,cpp}:
        * SOCK_Dgram_Mcast.{h,i,cpp}:
        * SOCK_IO.{h,i,cpp}:
        * SOCK_Stream.{h,i,cpp}:
        * SPIPE.{h,i,cpp}:
        * SPIPE_Connector.{h,i,cpp}:
        * SPIPE_Stream.{h,i,cpp}:
        * SV_Message_Queue.{h,i,cpp}:
        * SV_Semaphore_Complex.{h,i,cpp}:
        * SV_Semaphore_Simple.{h,i,cpp}:
        * UPIPE_Acceptor.{h,i,cpp}:
        * UPIPE_Connector.{h,i,cpp}: Added inline control for these
          supposedly default inline functions.

        * ace/config-WinCE.h: Added ACE_LACKS_INLINE_FUNCTIONS.

        * ace/OS.h: Added a new macro ASYS_INLINE for platforms that don't
          support inline properly.  This is controlled by the macro
          ACE_LACKS_INLINE_FUNCTIONS.

          Walked thru all macros and indented them properly.

        * ace/README: Added documentation for ACE_LACKS_INLINE_FUNCTIONS.