1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
|
Sun Mar 28 18:02:54 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in:
Enabled the C++ libtool support mentioned below. Removed all
references to CXXCPPFLAGS since the CPPFLAGS variable is used
by autoconf for both C and C++.
* ltconfig:
Added my experimental libtool C++ support. The hacks I made
allow it to build C++ shared libraries.
* m4/acinclude.m4:
* m4/threads.m4:
Renamed some variables. Namespace pollution was breaking most
of the tests.
Sun Mar 28 12:20:44 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h:
* ace/CORBA_macros.h: Moved ACE_NEW_THROW* and ACE_GUARD_THROW*
macros from OS.h to CORBA_macros.h. Also added
ACE_*GUARD_THROW_EX which has the new ACE try macros semantics.
CORBA_macros.h needs to include "OS.h" to source in the correct
platform configuration macros.
Sun Mar 28 13:27:15 1999 Balachandran Natarajan <bala@cs.wustl.edu>
* docs/exceptions.html:
Added a new example
Fri Mar 26 23:35:28 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/config-freebsd-pthread.h: Added ACE_NEEDS_SCHED_H.
* ace/config-irix6.x-g++.h:
* ace/config-irix6.x-kcc.h:
* ace/config-irix6.x-sgic++.h:
* ace/OS.h: Reverted changes about ACE_LASKS_SCHED_H.
* ace/config-dgux-4.x-ghs.h:
* ace/config-irix6.x-sgic++.h:
* ace/README:
* ace/OS.h: Renamed ACE_LACKS_SCHED_H with ACE_NEEDS_SCHED_H to
refect what it really means. The original name was quite
confusing.
Fri Mar 26 18:16:25 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/config-irix6.x-g++.h:
* ace/config-irix6.x-kcc.h:
* ace/config-irix6.x-sgic++.h:
There is no need to explicitly include <sched.h> or to define
ACE_LACKS_SCHED_H the file is present in IRIX 6.4.
Fri Mar 26 17:57:25 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/config-freebsd-pthread.h: Defined cuserid as an extern "C"
function.
* ace/OS.h: <sched.h> should only be included when !defined
(ACE_LACKS_SCHED_H).
Thanks to Eric Eide <eeide@cs.utah.edu> for sending the patch.
Fri Mar 26 17:12:21 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ace/Profile_Timer.{h,i,cpp}: On Win32 platforms that
support RUsage, Profile_Timer will use both that and
High Resolution Timers for measurements. Depending
on the method, one or the other will be used.
Fri Mar 26 17:02:00 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in:
Improved ACE_HAS_USING_KEYWORD test so that it works for platforms
that support the `using' keyword but don't have the `std' namespace.
Updated ACE_HAS_TEMPLATE_SPECIALIZATION test so that it works for
compilers that require the "template<>" syntax for specialization.
Improved ACE_HAS_ONLY_SCHED_OTHER by checking for run time errors
when a thread scheduling policy other than SCHED_OTHER is set.
Thanks to David for suggesting this modification.
* m4/acinclude.m4:
Added support for converting warnings to errors for Sun C++.
* m4/threads.m4:
Added test to check if `-Kthread' compiler flag enables thread
support. SCO UnixWare 7 uses this flag.
Fri Mar 26 07:21:33 1999 David L. Levine <levine@cs.wustl.edu>
* tests/Reactor_Performance_Test.cpp (handle_input): wrapped
final return statement with ACE_NOTREACHED.
Thu Mar 25 20:16:49 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* bin/make_release: I wasn't using $bin_files for the
ACE+TAO.zip creation, so now that is fixed. Thanks to
Greg Ross <gwross@west.raytheon.com> for pointing this out.
Thu Mar 25 16:31:27 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/OS.h:
Added new macros for byte swapping, this are rather evil. They
add the correct padding to use a single long to represent a
short or char, but in such a way that the first bytes of the
long contain the required data.
Nobody should need that, but the IDL compiler does.
Thu Mar 25 16:25:46 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in: Added test for ACE_HAS_BROKEN_MAP_FAILED.
* ace/OS.h: Added __USLC__ to list of macros in the conditional that
keeps the compiler from complaining about parameters which are not
used. This is needed for the C++ compiler on SCO UnixWare 7.
Thanks to Roland for letting me know about this.
Thu Mar 25 14:55:37 1999 David L. Levine <levine@cs.wustl.edu>
* tests/Basic_Types_Test.cpp: print out ACE version
information even with ACE_HAS_MINIMAL_ACE_OS.
Thu Mar 25 13:52:57 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* tests/Reactor_Performance_Test.cpp (handle_input): This code
wasn't entirely correct. Well actually, I think where was some
change in the semantics of Windows. Previously, once the handle
was close, it seems that the application still got notified if
there was data on the socket. With WinNT SP4, it seems that
once the handle was closed, no additional FD_READs were issued
by the OS, even if data was available on the socket.
In ACE, both FD_READ and FD_CLOSE get mapped to handle_input().
The way to know when the connection was closed is to do a recv()
in handle_input() and check for a zero return. When told of new
data, the old code in handle_input() only did one recv() of
BUFSIZ bytes. If there was more than BUFSIZ bytes of data on the
socket, there would be some data left on the socket. Hence,
when notified of FD_CLOSE, it did another recv() which
succeeded, and handle_input() never returned -1, making the test
hang.
The change made was to make handle_input() call recv() until
EWOULDBLOCK occurs (note that the socket is in non-blocking
mode). Hence, when FD_CLOSE occurred, the socket did not have
any data left, recv() returned 0 and handle_input() returned -1,
which finally closed the test down correctly.
Thu Mar 25 13:13:51 1999 Ossama Othman <othman@cs.wustl.edu>
* Makefile.am (ACE.ifnames):
Placed rule generation of ACE.ifnames within a MAINTAINER_MODE
automake conditional. If a `--enable-maintainer-mode' option
isn't given on the configure script command line then don't
generate a new `ACE.ifnames' file.
* configure.in:
Added AM_MAINTAINER_MODE so that maintainer level Makefile
features are disabled by default.
* acconfig.h:
* ace/OS.h:
* ace/README:
Added ACE_HAS_BROKEN_MAP_FAILED macro for platforms that do not
cast MAP_FAILED to a (void *). Defining this macro prevents
compilers on those platforms from complaining about assigning
an int to a (void *). Thanks to Roland Gigler
<roland@mch.pn.siemens.de> for providing feedback about this.
Thu Mar 25 11:30:44 1999 Balachandran Natarajan <bala@cs.wustl.edu>
* docs/exceptions.html:
Corrected a couple of links...
Thu Mar 25 01:04:00 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* ace/OS.h (ACE_OS): Added ACE_DEFAULT_TEMP_DIR_ENV to be "TEMP"
for WIN32 and "TMP" for Unix.
Wed Mar 24 18:30:18 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* performance-tests/TTCP/ACE-C++/wrapper-new-ttcp.cpp: Added a new
version of this program that fixes a number of bugs with the old
one. Thanks to Hao Ruan <hruan@lucent.com> for these fixes.
Wed Mar 24 15:31:27 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* High_Res_Timer.cpp:
* High_Res_Timer.h:
* OS.i:
Changed the implementation of the High Resolution Timer on
Win32 to use QueryPerformanceCounter instead of assembly code.
The docs also say that this is MP-safe. Thanks to Gregory D.
Fee <gdf2@cec.wustl.edu> for suggesting this.
* Profile_Timer.cpp:
* Profile_Timer.h:
* Profile_Timer.i:
Now uses the High Res Timer on Win32 instead of rusage.
Wed Mar 24 14:36:12 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/OS.cpp (ACE_OS_PREALLOCATE_OBJECT): Initialized obj_p to zero
to make egcs happy.
Wed Mar 24 13:23:36 1999 David L. Levine <levine@cs.wustl.edu>
* ACE-INSTALL.html: removed note about building netsvcs before
running the one-button test on WIN32. Thanks to Nanbor for
hacking run_tests.bat :-)
Wed Mar 24 13:16:17 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/WFMO_Reactor.i (handler):
* ace/Select_Reactor_T.cpp (handler_i): Made sure we can safely
pass out the event handler before we do so. Thanks to Michael
Preobrazhensky <mikep@xpedite.com> for reporting this.
* tests/run_tests.bat: Do not run Time_Service_Test if
netsvcs/servers/main.exe doesn't exist. Thanks to
Jeffrey_Franks@i-o.com for reporting the problem and David for
suggesting the fix.
Wed Mar 24 12:47:56 1999 David L. Levine <levine@cs.wustl.edu>
* ACE-INSTALL.html: added note to build netsvcs on Win32
before running run_tests.bat. Thanks to Jeff Franks
<Jeffrey_Franks@i-o.com> for suggesting this.
Wed Mar 24 06:53:57 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (thr_create): SunOS 5.7 allows thread priority of 0,
so we no longer need to work around that.
Tue Mar 23 22:49:15 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in: Added a test for ACE_NEEDS_DEV_IO_CONVERSION.
Tue Mar 23 22:29:20 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.7.h: undef ACE_HAS_ONLY_SCHED_OTHER, because
other scheduling policies are supported by SunOS 5.7. Thanks
to Ossama and autoconf for noticing this.
Tue Mar 23 20:42:44 1999 Ossama Othman <othman@cs.wustl.edu>
* tests/Cache_Manager_Test.cpp (main): Added missing ACE_START_TEST
and ACE_END_TEST macros.
* m4/threads.m4: Modified UNIX International threads check to include
check for rwlock_destroy() in -lthread since thr_create() was
found without explicitly linking to -lthread on Solaris 2.5.1.
rwlock_destroy() should be found only by linking to -lthread which
will cause the configure script to add -lthread to the library link
list.
Tue Mar 23 16:25:39 1999 David L. Levine <levine@cs.wustl.edu>
* docs/ACE-subsets.html: added FOR_TAO subset sizes.
Tue Mar 23 15:15:20 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Map_Manager.{i,cpp} (ACE_Map_Iterator_Base::operator*):
Moved this function to .cpp file to avoid compilation problem on
SunOS 5.6 with SunCC 4.2. Once we know a patch that will fix
the problem, we should move it back to .i file again. Thanks to
James Megquier <jmegq@bbn.com> for reporting the problem.
Tue Mar 23 14:56:58 1999 Ossama Othman <othman@cs.wustl.edu>
* acconfig.h:
* configure.in:
* ace/OS.h:
* ace/TLI.cpp:
* ace/config-osf1-4.0.h: Removed all references to
ACE_HAS_BROKEN_T_ERRNO and removed the definition of the _terrno()
function from TLI.cpp since it isn't a standard TLI function (at
least not the Steven's books that I've read). This also fixes a
problem on Solaris that was causing an autoconfigured build of
TLI.cpp to fail.
* ace/Makefile.am: Make sure template source files get installed for
all cases. Previously, they only got installed if the template
source is required by the compiler. However, they are still needed
by compilers that don't explicitly require template sources to
be included in a file that references them.
* configure.in: Fixed the test for ACE_TEMPLATES_REQUIRE_SOURCE.
Thanks to Carlos for his help on this. Removed the test for
ACE_HAS_BROKEN_T_ERRNO since it is no longer needed due to the
above change.
* README: Added Konstantinos Margaritis <kmargar@cc.uoa.gr> to the
ACE contributor list.
Tue Mar 23 12:57:40 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* netsvcs/lib/Client_Logging_Handler.cpp: Split off the logging to
an ostream from the logging for STDERR. Thanks to Bill Rizzi
(rizzi@softserv.com) for pointing out this problem.
* netsvcs/lib/Client_Logging_Handler.cpp: Changed the default from
ACE_STDOUT to ACE_STDERR to be consistent. Thanks to Bill Rizzi
(rizzi@softserv.com) for pointing out the problem.
Tue Mar 23 12:06:04 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h (ACE_THROW_SPEC): Added prgama to disable reporting
warning 4290 on MSVC. MSVC "supports" the exception
specification but doesn't provide an implementation for it.
Instead, it warns you the specification is ignored.
Mon Mar 22 21:34:06 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_sunos5_g++.GNU: use -m uname
option instead of -i, because GNU uname doesn't support -i.
Mon Mar 22 18:59:55 1999 Steve Huston <shuston@riverace.com>
* ace/NT_Service.cpp (state): Changed the (DWORD *, ACE_Time_Value *)
version to reliably return -1 on any error. Thanks to Martin
Krumpolec <krumpo@pobox.sk> for keeping me honest here, and for
sending in better code.
Mon Mar 22 14:16:04 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.{h,cpp} (cleanup_tss): added tss_close (), to enable
deleting the native key on program termination. That's not
implemented yet, because it requires a separate
ACE_OS::thr_keyfree (ACE_OS_thread_key_t).
* ace/OS.cpp (fini), README, ace/config-linux-lxpthreads.h:
removed ACE_FINI_HOOK support. It wasn't helping.
Mon Mar 22 11:14:16 1999 Ossama Othman <othman@cs.wustl.edu>
* Makefile.am:
Various minor updates.
* configure.in:
* m4/platform.m4
Moved known platform specific macro checks from `configure.in'
to `platform.m4'.
* tests/Makefile.am:
Updated to build the DLL_Test shared library. Support for the
test is still broken (my fault :).
* aclocal.m4:
* configure:
These are automatically generated so they shouldn't be under
CVS control. I Removed them from the CVS repository.
Mon Mar 22 09:42:26 1999 David L. Levine <levine@cs.wustl.edu>
* docs/ACE-subsets.html: added current status section.
Mon Mar 22 01:04:23 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.cpp (free_all_keys_left): Changed to remove left-over
keys using TlsFree on Win32. We can't use ACE_OS::thr_keyfree
here because it tries to update the TSS in_use_ information
which has already been deleted at this point.
(cleanup_tss): Uncommented free_all_keys_left.
Sun Mar 21 21:26:46 1999 David L. Levine <levine@cs.wustl.edu>
* bin/make_release: fixed error status when building ACE+TAO.
Thanks to Doug for reporting this.
Sun Mar 21 21:16:02 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.31 released.
Sun Mar 21 20:45:57 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.30 released.
Sun Mar 21 18:39:16 1999 Ossama Othman <othman@cs.wustl.edu>
* ACE.ifnames:
Updated with new macro list.
* Makefile.am:
Added the m4 directory to the distribution list and made some
minor updates.
* ace/Makefile.am:
* m4/subsets.m4:
Subsetting updates/corrections.
* configure.in:
Added work around for buggy glibc2.1 when including both
<ucontext.h> and <sys/procfs.h>. Added check for auto_ptr class
declaration since some platforms have <memory> but may not
declare the auto_ptr class. Shortened some of the "checking"
messages.
* ace-config.1.in: ace-config script man page template
* aceConf.sh.in: ace-config "unknown" library script
Added these files to the CVS repository.
* config.guess:
* config.sub:
* ltconfig:
* ltmain.sh:
Updated these files to the ones in the latest libtool.
* libtool:
Removed this since it is automatically generated for each platform.
It shouldn't be under CVS control.
Sun Mar 21 17:59:22 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/CDR_Stream.cpp:
Fixed a problem with ACE_OutputCDR::write_octet_array_mb, thanks
to Dave Meyer <dmeyer@std.saic.com> for isolating and reporting
this bug again [it was fixed in TAO and somehow it crept to the
ACE version of the CDR classes].
Sun Mar 21 17:42:08 1999 Ossama Othman <othman@cs.wustl.edu>
* netsvcs/lib/Server_Logging_Handler_T.cpp (handle_logging_record):
Use ACE_NTOHL macro instead of system ntohl() to get around bug
in egcs-2.91.6x.
Sun Mar 21 16:07:24 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/config-g++-common.h (ACE_HAS_USING_KEYWORD):
Define ACE_HAS_USING_KEYWORD for egcs 1.1.x.
Sun Mar 21 09:44:30 1999 David L. Levine <levine@cs.wustl.edu>
* tests/Timeprobe_Test.cpp: don't test ACE_Singleton
creation during static construction if ACE_HAS_PURIFY
is enabled, because it notices the memory-in-use.
* examples/Naming/Makefile: changed SRC to PSRC.
* examples/Naming/Makefile,performance-tests/Misc/Makefile,
tests/Makefile:
Use ace_components instead of the current ACE_COMPONENTS
setting to determine what should be built.
Sat Mar 20 19:10:37 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Connector.h:
* ace/Connector.cpp:
* ace/Strategies_T.h:
* ace/Strategies_T.cpp:
Added new methods to the ACE_Connector, ACE_Strategy_Connector,
ACE_Connect_Strategy and ACE_Cached_Connect_Strategy.
The motivation for this new method is a bit convoluted:
In TAO we store the Svc_Handler returned from connect() as a
hint for later Cached_Connector lookups. But the location
where we store it could be shared between multiple threads.
To minimize the number of locks this hint is only modified and
examined by the Cached_Connector, while the lock in the
connection map is beign held.
The problem arises when the hint is returned: another thread
could try to use the same hint location, detect that the hint
is in use and replace it before the thread that just requested
the object has a chance to read the hint value.
The solution is to use two variables: one is the hint
location, carefully protected by the Cached_Connector lock,
the other is a variable in the thread stack, they return the
same thing, but the second variable is not affected by changes
done by other threads.
In short: we addeda connect() method that takes two arguments,
the first is just intented to update the cached connector
hint, the second is where the real connection gets returned.
* tests/Makefile:
David discovered that using SRC to list the sources does not
work under some platforms. But using PSRC does.
Sat Mar 20 15:51:14 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in:
Added tests for: ACE_HAS_BROKEN_NAMESPACES
ACE_HAS_BROKEN_CONVERSIONS
ACE_HAS_BROKEN_CONDITIONAL_STRING_CASTS
ACE_HAS_PTHREAD_CONDATTR_SETKIND_NP
ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP
ACE_HAS_PTHREAD_PROCESS_ENUM
Added some minor updates and corrections.
Sat Mar 20 09:06:10 1999 David L. Levine <levine@cs.wustl.edu>
* tests/Map_Manager_Test.cpp: changed index () to slot_index ()
and generation () to slot_generation (), to correspond to
Active_Map_Manager interface change.
* examples/ASX/Message_Queue/Makefile: changed LSRC to PSRC.
* ace/Object_Manager.{h,cpp}: removed complex support from
ACE_Object_Manager for cleanup of some ACE_Singleton locks
during static construction/destruction, only. The affected
lock types are ACE_Thread_Mutex, ACE_Mutex, and
ACE_RW_Thread_Mutex. ACE_Recursive_Thread_Mutex and
ACE_Null_Mutex will still be cleaned up if used to create
ACE_Singletons during static construction/destruction. As
noted in ace/Singleton.h, those are the best type of locks
to use with ACE_Singleton, anyways.
This support was tricky to get right, and increased the size of
the Object_Manager object file by 46 to 59 percent. Now, if
ACE_Singletons are created during static construction or
destruction, with either an ACE_Thread_Mutex, ACE_Mutex, or
ACE_RW_Thread_Mutex lock, those locks will be dynamically
allocated and leaked.
Sat Mar 20 02:03:53 1999 Ossama Othman <othman@cs.wustl.edu>
* acinclude.m4:
Split acinclude.m4 into several M4 macro files and moved those
files into the new `m4' subdirectory, includind acinclude.m4.
* m4/acinclude.m4:
* m4/compiler.m4:
* m4/subsets.m4:
* m4/threads.m4:
Added these M4 files.
* bin/autogen:
Script to regenerate auto{conf,make} and libtool related files.
Additional functionality may be added to this script in the
future.
* Makefile.am:
* ace/Makefile.am:
* apps/gperf/src/Makefile.am:
* apps/gperf/tests/Makefile.am:
* apps/gperf/Makefile.am:
* apps/Makefile.am:
* netsvcs/clients/Logger/Makefile.am:
* netsvcs/clients/Naming/Client/Makefile.am:
* netsvcs/clients/Naming/Dump_Restore/Makefile.am:
* netsvcs/clients/Naming/Makefile.am:
* netsvcs/clients/Tokens/collection/Makefile.am:
* netsvcs/clients/Tokens/deadlock/Makefile.am:
* netsvcs/clients/Tokens/invariant/Makefile.am:
* netsvcs/clients/Tokens/manual/Makefile.am:
* netsvcs/clients/Tokens/mutex/Makefile.am:
* netsvcs/clients/Tokens/rw_lock/Makefile.am:
* netsvcs/clients/Tokens/Makefile.am:
* netsvcs/clients/Makefile.am:
* netsvcs/lib/Makefile.am:
* netsvcs/servers/Makefile.am:
* netsvcs/Makefile.am:
* man/man3/Makefile.am: ( NOT ADDED YET )
* man/Makefile.am: ( NOT ADDED YET )
* tests/log/Makefile.am:
* tests/Makefile.am:
Added Automake makefile templates for ACE.
* configure.in:
* m4/subsets.m4:
* ace/Makefile.am:
Added support for David's ACE subsetting work.
Fri Mar 19 23:36:37 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Active_Map_Manager.h (ACE_Active_Map_Manager_Key): Changed
method index() to slot_index() and generation() to
slot_generation(). These changes were motivated by the
OpenEdition platform/compiler, which defines a macro called
index(). Also, changed the type of <index_> and <generation_>
from u_long to ACE_UINT32 to get consistent size across
platforms.
Fri Mar 19 22:50:19 1999 David L. Levine <levine@cs.wustl.edu>
* bin/ace_ld: inserted ^['"]? at beginning of patterns that check
for -l and -L, to make sure they're at the beginning of arguments.
Thanks to Henric Jungheim <junghelh@pe-nelson.com> for
suggesting this.
* tests/Makefile: removed SRC, because it caused link problems
on DU 4.0.
Fri Mar 19 18:56:26 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* Fixed several makefiles that did not have a SRC or LSRC variable
defined.
* Re-generated the dependencies for both ACE and TAO, this time on
a platform that includes the template code.
* include/makeinclude/rules.local.GNU:
Now we can run make depend inside a build directory.
Removed any $(ACE_ROOT)/ace/config*.h files from the dependency
list, those are not used.
Fri Mar 19 18:05:27 1999 Ossama Othman <othman@cs.wustl.edu>
* netsvcs/lib/Server_Logging_Handler_T.cpp (handle_logging_record):
Reverted change that was thought to work around egcs compiler bug.
The call to ntohl() within the templates still causes the compiler
to complain.
Fri Mar 19 17:31:57 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/CDR_Stream.cpp:
Fixed silly error in the InputCDR constructor taking an
ACE_Message_Block.
Fri Mar 19 15:41:30 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/config-win32-common.h: Added CE fix.
Fri Mar 19 15:03:54 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/CDR_Stream.h:
* ace/CDR_Stream.i:
* ace/CDR_Stream.cpp:
Changed CDR to ACE_CDR.
Fixed ACE_InputCDR constructor when receiving a linked list of
Message_Blocks.
* tests/CDR_Test.cpp:
Added a test for the constructor above.
Fri Mar 19 10:29:17 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Singleton.cpp (instance): removed at_exit () calls
from both ACE_Singleton and ACE_TSS_Singleton, only
when the ACE_Object_Manager hasn't started or has already
shutdown. In those cases, the singletons will leak.
* ace/Object_Manager.cpp (ACE_Object_Manager ctor),
ace/OS.cpp (ACE_OS_Object_Manager ctor): allow
newer instances to overwrite older ones, in case an application
#defines ACE_HAS_NONSTATIC_OBJECT_MANAGER and uses the
Object_Manager during construction of static objects.
* tests/Timeprobe_Test.cpp: added test of ACE_Singleton
creation during construction of static objects. Timeprobes
can do that, when they're enabled.
* ace/OS.cpp (fini), README: added ACE_FINI_HOOK support.
Applications can #define ACE_FINI_HOOK to any executable code,
and it will be executed on program termination.
* ace/config-linux-lxpthreads.h: with ACE_HAS_TSS_EMULATION,
#define ACE_FINI_HOOK to insert a one-second sleep at
program termination. It's necessary to avoid occasional
segfaults of unknown origin, but they appear to be in the
LinuxThreads library.
* bin/ace_components: added. It is used to record/access
which components were built into the ACE library. See next
entry for files that have been updated to use it.
* ace/Makefile,tests/Makefile,tests/run_tests.sh: use
ace_components to record which components are in the ACE library.
Suppress build/run of tests that use Token and Other.
* netsvcs/{clients,servers}/Makefile: use ace_components instead of
the current ACE_COMPONENTS setting to determine what should be built.
Fri Mar 19 03:24:34 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Singleton.cpp (instance): Commented out the call to
ACE_Object_Manager::at_exit(). Currently, this is causing
multiple instances of ACE_Object_Manager to get created, and
hence causing all sorts of problems.
* ace/OS.cpp (cleanup_tss): Removed the call to
free_all_keys_left() (WIN32 only), because it causes
segmentation faults at shutdown.
Fri Mar 19 00:15:21 1999 Nanbor Wang <nanbor@cs.wustl.edu>
The following changes are specific to WindowsCE. They are
required to remove MFC dependency from CE port. Thanks to Eric
Covington <eric@nowsol.com> for motivating this.
* ace/config-WinCE.h: We no longer enfoce the use of MFC with ACE
CE port anymore.
* ace/config-win32-common.h: When not using MFC, CE needs to
include <windows.h> and <wce.h> explicitly.
* ace/Log_Record.cpp (print):
* ace/OS.{h,cpp} (ACE_CE_Bridge): Changed to use HWND to record
target window handle instead of CWnd. Also, we stop passing
output string in a CString anymore. The string is now created
using ACE_OS::strdup and must be released by the target window
using ACE_OS::free.. A small smart pointer class will be added
later. Notice that if you used ACE CE port before, the wParam
can no longer be casted to a CString*, it should be casted to
LPTSTR now.
* WindozeCE/WindozeCEDlg.cpp: <wParam> should be casted to LPTSTR
and it should be freed using ACE_OS::free.
* ace/ace_ce_dll.dsp: CE programs (or DLL only?) not using MFC
must specify all libraries used by the program, even msvcrt.
Thu Mar 18 22:21:39 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_vxworks5.x_g++.GNU: changed
ACE_QUOTE to '"', instead of "", on win32 hosts. "" just
evaporates to nothing; we really need one double quote.
Thanks to Hans Rohnert for verifying this.
Thu Mar 18 18:49:32 1999 Marina Spivak <marina@cs.wustl.edu>
* ace/SString.i (compare): fixed the function to work properly in
case strings have different lenghts.
* ace/SString.cpp: fixed code to gracefully handle failed memory
allocations.
* ace/SString.h: added comments about strings with release=0, not
necessarily being null terminated.
Thu Mar 18 14:31:29 1999 Steve Huston <shuston@riverace.com>
* tests/DLL_Test.cpp: Use the new DLL_Test.h file that contains the
class defs - needed for AIX xlC. This should have been done
with the Mar 15 changes but slipped through the cracks.
* include/makeinclude/platform_hpux_aCC.GNU: Added support for
building HP-UX 11 distributions with both 32 and 64 bits.
* docs/tutorials/006/client_handler.cpp (Client_Handler::open): Changed
arg name to void_acceptor to avoid redefining it inside the function.
* docs/tutorials/007/client_acceptor.cpp (Client_Acceptor(Thread_Pool&)
Fixed initialization of concurrency_.
* docs/tutorials/018/Test_T.cpp (open): Fix ACE_UNUSED_ARG(arg).
* ace/Message_Queue.h (ACE_Message_Queue_Base): Removed "= 0" from
~ACE_Message_Queue_Base. AIX xlC warns that pure virtual dtor
needs an out-of-line definition to be a base of another class.
There is already a definition for the dtor in Message_Queue.i.
Thu Mar 18 14:30:04 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.i (timezone): Removed the leading '::' to cope with VC
5. Thanks to Lan Yaolong <lyaolong@cs.sunysb.edu> for reporting
this.
Wed Mar 17 17:23:43 1999 Vishal Kachroo <vishal@merengue.cs.wustl.edu>
* ace/OS.i (timezone): Added support for timezone () on CHORUS
Wed Mar 17 14:06:24 1999 Ossama Othman <othman@cs.wustl.edu>
* acconfig.h: Some characters got removed so I put them back.
Wed Mar 17 13:59:42 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in:
* acconfig.h:
Added autoconf check for rename() system call.
Wed Mar 17 07:55:38 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* include/makeinclude/platform_freebsd_pthread.GNU: Made some
adjustment for building ELF executables which are the default on
FreeBSD 3 and above. I'll incoporate Russell's LinuxThread
change later.
Wed Mar 17 13:36:32 1999 David L. Levine <levine@cs.wustl.edu>
* bin/make_release: return non-zero exit status on failure.
Wed Mar 17 12:47:04 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Config.cpp (open_i): Also delete the parse buffer
before exiting the function for it is no longer needed. We
still need to deallocate the buffer at close method to prevent
the case when uses manipulate Service_Config directly using
process_directives.
Wed Mar 17 12:33:35 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/OS.i: Reenabed ACE_OS::rename() and we'll see which
platforms need to have ACE_LACKS_RENAME. Thanks to Susan
Liebeskind <shl@cc.gatech.edu> for reporting this.
Wed Mar 17 10:46:26 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Message_Block.i (space): Moved ACE_Message_Block::space()
after inline declarations of ACE_Message_Block::end() and
ACE_Message_Block::wr_ptr() to prevent "used before it was
declared inline" warnings on end() and wr_ptr().
Wed Mar 17 10:24:26 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (argv_to_string): initialized temp to 0 to avoid warnings
from VxWorks g++.
ace/OS.i (strenvdup): initialized temp to 0 to avoid warnings from
VxWorks g++. Thanks to Hans Rohnert for reporting these.
* include/makeinclude/platform_vxworks5.x_g++.GNU (RANLIB):
replaced /bin/true with @true, to avoid build warning on
NT hosts. Thanks to Hans Rohnert for reporting this.
Wed Mar 17 09:58:43 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Svc_Conf.l (yy_delete_parse_buffer): Added a check for NULL
to avoid freeing buffers multiple times. Thanks to Tom Arbuckle
<arbuckle@uran.informatik.uni-bonn.de> for this fix and to
Nanbor for noticing the problem in the first place!
Wed Mar 17 08:30:58 1999 David L. Levine <levine@cs.wustl.edu>
* ACE version 4.6.29 released.
Wed Mar 17 03:12:43 1999 James C. Hu <jxh@entera.com>
* ace/Message_Block.i: Changed the definition of space () to be
something more useful than it was. Thanks to Bill Rizzi
(rizzi@softserv.com) for pointing out the problem.
* ace/Cache_*: Removed by popular decree. Can be found in
JAWS/PROTOTYPE.
Wed Mar 17 03:06:20 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Config.cpp (close): Re-enabled cleaning up the lex
buffer.
* ace/Svc_Conf_l.cpp (ace_yy_delete_parse_buffer): We should not
remove uninitialize buffer.
Tue Mar 16 19:48:57 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Makefile and tests/Makefile: Reverted these files to the
pre-Cache_Manager state. The Cache_Manager files don't compile
on g++ and vxworks and we need to make a release now.
* ace/Map_T.h (class ACE_Noop_Key_Generator): Added new class.
This class makes it easy to use the map adapters when you don't
care about generating new keys.
Tue Mar 16 11:36:41 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/config-freebsd-pthread.h: FreeBSD 2.2 and above also support
threads, but siginfo_t is only supported on FreeBSD 3.0 and
above. Thanks to Goldshtain Dmitry <goldshtain.dmitry@usa.net>
for pointing these out.
Tue Mar 16 16:46:04 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Hash_Bucket_T.h: added class to friend
ACE_Hash_Bucket_DLCStack_Iterator declaration.
Tue Mar 16 16:35:39 1999 David L. Levine <levine@cs.wustl.edu>
* docs/ACE-guidelines.html: never use TRUE, true, FALSE, false, etc.
Tue Mar 16 15:58:07 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Config.cpp (close): Don't call the
ace_yy_delete_parse_buffer for now. It is causing access
violation.
Tue Mar 16 15:15:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/ACE.{cpp, i}
ace/OS.{cpp, h, i}
ace/FIFO.cpp
ace/Log_Record.cpp
ace/SOCK_Dgram_Mcast.cpp
ace/SPIPE_Connector.cpp
ace/TLI_Acceptor.cpp
ace/config-psos-diab-mips.h (new)
ace/config-psos-diab.h
ace/config-psos-tm.h
ace/streams.h: integrated pSOS/MIPS changes into ACE. Thanks to
Jaepil Kim (jpkim@lgsoft.com) for completing the ACE pSOS port
for the MIPS platform, and for sending these modifications.
Tue Mar 16 14:25:03 1999 Steve Huston <shuston@riverace.com>
* ace/ACE.cpp (get_ip_interfaces, count_interfaces, get_bcast_addr):
On AIX, use CSIOCGIFCONF instead of SIOCGIFCONF to retrieve
interface information. Thanks to Eric Newton <ecn@smart.net> for
figuring this out.
Tue Mar 16 12:20:53 1999 Balachandran Natarajan <bala@cs.wustl.edu>
* ace/Service_Config.h (ACE_Service_Config):
Added documentation for the parse_args () method. This was in
request to Bill Rizzi <rizzi@softserv.com>.
Tue Mar 16 10:57:46 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Svc_Conf.l: Added a new method ace_yy_delete_parse_buffer()
that frees up FLEX buffers when the program is done. Thanks to
Tom Arbuckle <arbuckle@uran.informatik.uni-bonn.de> for
this fix.
* examples/ASX/Message_Queue/buffer_stream.cpp (main): Changed pm
to cm and vice versa to be consistent. Thanks to Rainer Blome
<rainer_blome@de.ibm.com> for reporting this.
Tue Mar 16 10:50:42 1999 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_aix4_cset++.GNU: New file to cover
all AIX 4.x versions with the C Set++ (xlC) compiler.
* include/makeinclude/platform_aix.GNU, platform_aix4.2.GNU: These
files are deprecated; they simply include the new file above,
platform_aix4_cset++.GNU.
Tue Mar 16 10:38:35 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Hash_Bucket_T.cpp:
Removed default parameter declaration from the constructor for
ACE_Hash_Bucket_Manager definition. Default parameter
declarations can only show up in the function declaration.
Tue Mar 16 10:25:53 1999 Steve Huston <shuston@riverace.com>
* ace/config-aix-4.1.x.h, config-aix-4.2.x.h: These now simply
include config-aix-4.x.h. All further changes for any AIX 4.x
version should go in config-aix-4.x.h.
Tue Mar 16 08:12:54 1999 Steve Huston <shuston@riverace.com>
* ace/Thread_Manager.cpp: In thread_within(ACE_thread_t), replaced use
of '==' with ACE_OS::thr_equal. In hthread_within (ACE_hthread_t),
replaced use of '==' with ACE_OS::thr_cmp. Thanks very much to
Peter Windle <peterw@ugsolutions.com> for pointing this out.
* README: Added Peter Windle to the list of distinguished contributors.
Tue Mar 16 03:05:22 1999 James Hu <jxh@entera.com>
* ace/Cache_Hash_T.{cpp,h}:
* ace/Cache_Heap_T.{cpp,h}:
* ace/Cache_List_T.{cpp,h}:
* ace/Cache_Manager.{cpp,h}:
* ace/Cache_Manager_T.{cpp,h}:
* ace/Cache_Object.{cpp,h}:
* ace/Hash_Bucket_T.{cpp,h}:
Incorporated fixes from purify and benchmarking sessions at Entera.
Cosmetic changes coming soon (documentation strings and removal
of magic numbers).
* ace/Makefile: Added above files to Makefile.
* ace/OS.i: FreeBSD does not support the timezone() function as
documented by Vishal below. Using Chris Gill's implementation
for LynxOS.
* tests/Makefile:
* tests/Cache_Manager_Test.cpp: Added this test to illustrate
Cache_Manager. Still needs changes to use ACE_DEBUG instead of
cerr.
Mon Mar 15 19:05:22 1999 Steve Huston <shuston@riverace.com>
* ace/config-aix-4.x.h: New config file that covers all of the AIX 4.x
versions with C Set++ (xlC) and g++. Many thanks to Susan
Liebeskind <shl@cc.gatech.edu> for doing to port to AIX 4.3 and
testing, providing needed changes!
* ace/OS.i (wait): Fixed to handle ACE_HAS_UNION_WAIT case correctly,
without depending on AIX - thanks to Susan Liebeskind for this too!
* ace/ACE.cpp (fork, with zombie avoidance): Fixed to work right
with ACE_HAS_UNION_WAIT (ala AIX 4.2).
* include/makeinclude/rules.lib.GNU: New template instantiation
scheme for AIX with C Set++ (xlC); goes with...
* etc/xlc_dummy.cpp: New file, purpose of which is to help with AIX
xlC template instantiation. This is the new, improved method from
IBM suport. It still generates a zillion duplicate definition
warnings, but IBM doesn't have any better solution.
* include/makeinclude/platform_aix4.2.GNU: This will work with both
AIX 4.2 and 4.3 now. I'll take care of the naming soon.
* tests/Map_Test.(cpp h): Moved template defs to new file, Map_Test.h
to satisfy AIX xlC. Thanks to Susan for this too.
* tests/DLL_Test.(cpp h): Moved template defs to new file, DLL_Test.h
to satisfy AIX xlC.
* tests/Makefile, Makefile.DLL: Fixed to build libDLL_Test correctly
on AIX w/ xlC.
* tests/run_tests.sh: Sets LIBPATH correctly for AIX (4.2 at least).
Mon Mar 15 00:26:31 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* netsvcs/ACE-netsvcs.html: Updated this to document the current
version. Thanks to Bill Rizzi <rizzi@softserv.com> for
reporting this.
* netsvcs/lib/Client_Logging_Handler.cpp: Make sure that debug
messages go to stderr and log messages go to stdout. Thanks to
Bill Rizzi <rizzi@softserv.com> for reporting this.
* netsvcs/lib/Client_Logging_Handler.cpp (fini): Oops, fixed a
minor buglet with return values. Thanks to David for reporting
this.
* netsvcs/lib/Client_Logging_Handler.cpp (send): Added a check to
make sure we don't crash if the ostream is NULL. Thanks to Bill
Rizzi <rizzi@softserv.com> for reporting this.
Sun Mar 14 22:54:41 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* netsvcs/lib/Client_Logging_Handler.cpp (init): Added an
ACE_OS::unlink() to prevent STREAM pipes from getting confused
if this application doesn't shutdown gracefully. Thanks to Bill
Rizzi <rizzi@softserv.com> for reporting this.
Sun Mar 14 19:51:25 1999 Ossama Othman <othman@cs.wustl.edu>
* configure.in: Added real-time support library `-lrt' check to
asynchronous IO functions/libraries checks.
GNU glibc 2.1 adds support for the POSIX 1b real-time
specification in the library `librt'. The POSIX asynchronous IO
functions may be found in that library. Currently, `-lpthread'
must also be linked to in addition to `-lrt'.
Sun Mar 14 17:20:09 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Log_Msg: Generalized the enable_debug_messages() and
disable_debug_messages() methods so they can be used to enable
or disable arbitrary priorities. Thanks to Susan Liebeskind
<shl@janis.gtri.gatech.edu> for suggesting this.
Sun Mar 14 14:46:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/OS.i (tzset,timezone): pSOS doesn't support these two
functions.
* ace/OS.{cpp, h}: added comments clarifying usage for
ACE_Time_Value::max_time, use of ACE_PSOS_TM in ACE_OS::signal ().
Sun Mar 14 01:30:43 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.i (tzset,timezone): WinCE doesn't support these two
functions.
Sat Mar 13 12:14:34 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Thread_Manager: Changed the following methods:
int task_list (..)
int thread_list (...)
int hthread_list (..)
int thread_grp_list (...)
int hthread_grp_list (...)
to return actual number of fetched values.
* ace/Thread_Manager: Added two new methods, task_all_list() and
thread_all_list(), which return lists of all the tasks and
threads in a Thread_Manager, respectively. Thanks to Zoran
Ivanovic <zorani@pathcom.com> for contributing this.
* ace/Shared_Memory_{MM,SV}.h: Clarified the relationship of
these classes to the more powerful ACE_Malloc<> abstraction.
Thanks to Ti Z <tiz@cisco.com> for suggesting this.
Sat Mar 13 13:27:55 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.i (timezone,tzset): not supported on VxWorks.
* include/makeinclude/ platform_osf1_4.0.GNU: added suppression
of msg 1180, statement causes unreachble return, with cxx 6.2
and later. It doesn't like ACE_OSCALL_RETURN and
ACE_NOTSUP_RETURN, though it seems to be going overboard.
The warnings appeared with cxx 6.2-009. If someone uses
6.2-007, they might have to manually remove the 1180 suppression.
* examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp (handle_events),
C-inserver.cpp (main),
netsvcs/lib/Server_Logging_Handler_T.cpp (handle_logging_record),
apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp (svc):
replaced NOTREACHED comment with ACE_NOTREACHED macro. DU cxx
started complaining about the unreached return statement.
Sat Mar 13 16:16:13 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/021: Added some comments to page04 about the
template parameters and the use of the ACE_LOCK parameter in
particular. (Thanks to Bala for the suggestion.)
Sat Mar 13 00:37:17 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.28 released.
Fri Mar 12 20:17:47 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Select_Reactor_Base.cpp (handle_input):
* ace/WFMO_Reactor.cpp (handle_signal): Added support for
dispatching QOS_MASK and GROUP_QOS_MASK.
Fri Mar 12 19:13:11 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/OS.i:
Implemented ACE_OS::timezone() for LynxOS.
Fri Mar 12 16:31:19 1999 Ossama Othman <othman@cs.wustl.edu>
* ACE-INSTALL.html (Linux): added note about non-thread safe
glibc 2.0 dynamic loader. The dynamic loader in glibc 2.1 is
thread safe.
Fri Mar 12 13:44:54 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* tests/DLL_Test.cpp (main): Fixed the errors on VxWorks and
LynxOS by shifting the START_TEST before the #ifdefs began.
Fri Mar 12 12:53:17 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.5.h: with CC 5.0, replaced ACE_LACKS_ACE_IOSTREAMS
with ACE_USES_OLD_IOSTREAMS.
* include/makeinclude/platform_sunos5.5_sunc++.GNU: with CC 5.0,
added -library=iostream,no%Cstd to CCFLAGS.
Thanks to Diethard Ohrt <Diethard.Ohrt@siemens.at> for the
above two updates to support CC 5.0.
Fri Mar 12 12:09:14 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.h: fixed comment after #endif to match its #ifdef.
Fri Mar 12 11:46:55 1999 Vishal Kachroo <vishal@merengue.cs.wustl.edu>
Added two new functions tzset () and timezone (). The former sets the
timezone information based on an environment variable TZ which is
set when the user logs on. (For St. Louis TZ=US/Central and
timezone = 360 minutes or 6 hrs. from GMT.). timezone () retrieves
the timezone value in seconds.
* ace/OS.h (ACE_OS): Added a wrapper for timezone () and tzset ().
* ace/OS.i (ACE_OS): Added Implementation for the above functions.
The timezone information is being used in the Time Service.
Thu Mar 11 20:11:13 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Get_Opt.cpp (operator): Reverted the following change since
it will break documented behavior. Thanks to Jon Biggar for
reporting this.
* ace/Get_Opt.cpp (operator): When the getopt encountered an
unknown option or an option with a missing required argument, it
returned '?' and continues to allow processing with the next
argument (no problem so far). However, if it encountered an
argument that is not an option (i.e. no '-' in front) or if it
encounters a double dash (i.e. '--') it returns EOF which
disallows further processing. Now, it returns a '?' after
advancing optind to allow further processing. Thanks to Mark
Laffoon <mark.laffoon@centraxcorp.com> for reporting this.
Thu Mar 11 15:34:24 1999 David L. Levine <levine@cs.wustl.edu>
* ace/ACE.cpp: removed unnecessary #includes of ace/IPC_SAP.h,
ace/Process.h, and ace/SString.h. Thanks to Elias Sreih
<sealstd1@nortelnetworks.com> and Liang Chen
<chenl@nortelnetworks.com> for suggesting this.
* ace/OS.cpp (ACE_OS::thr_setspecific): on ACE_WIN32 with
ACE_HAS_TSS_EMULATION, don't register the one native key
with ACE_TSS_Cleanup::instance (). There's no need, because
it doesn't have a destructor. And, it prevents startup
because the ACE_TSS_Cleanup structures haven't been set up
completely when it is called. Thanks to Terry Rosenbaum
<Terry.Rosenbaum@Radiology.MSU.edu> for reporting this.
Thu Mar 11 14:04:15 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_chorus_ghs.GNU: added protection
to not reset exceptions flag if it was defined.
Thu Mar 11 12:53:41 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Thread_Manager.i:
The method to return the number of threads was using thr_lists_
as a pointer, but it isn't.
Thu Mar 11 10:12:51 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Thread_Manager: Added a method to return the current number
of threads in the ACE_Thread_Manager. Thanks to Zoran Ivanovic
<zorani@pathcom.com> for suggesting this.
Thu Mar 11 10:27:51 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* tests/DLL_Test.cpp (main): Allowed the main to be accessible on
all platforms by shifting the #ifdefs inside the main. The
problem arose due to the main being declared an undefined
reference on LynxOS.
Wed Mar 10 13:31:37 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/config-linux-common.h:
Commented out ACE_HAS_DLFCN_H_BROKEN_EXTERN_C, ACE_LACKS_MSYNC and
ACE_LACKS_MADVISE. They are no longer needed for recent revisions
of glibc 2.x. Thanks to <nbecker@fred.net> for pointing this out.
Wed Mar 10 11:05:39 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Thread.h,ace/Thread_Manager.h (exit): added comment
that exit () should not be called by main thread.
* ace/OS.h: added an ACE_OS_thread_key_t typedef on WIN32
with ACE_HAS_TSS_EMULATION. Thanks to Terry Rosenbaum
<Terry.Rosenbaum@Radiology.MSU.edu> for reporting that
it was missing.
* include/makeinclude/platform_osf1_4.0.GNU: disable msg 1136 with
cxx 6.1-029. Thanks to Doug Anderson <doug@clark.net> for
reporting this.
Wed Mar 10 10:57:16 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Basic_Types.h:
Fixed minor problem that would show up if sizeof(int)==2; thanks
to Cristian Ferretti <cfs@mat.puc.cl> for reporting this
problem.
Wed Mar 10 10:13:52 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Message_Block.i (reference_count): Made sure the inline
function is defined before used. Thanks to David for noticing
this.
Wed Mar 10 08:52:59 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_chorus.GNU: fixed
exceptions=1 support. Thanks to Wei Chiang for
reporting this.
* include/makeinclude/wrapper_macros.GNU: added exceptions=1
support for pre-2.8 g++. It's not recommended, because pre-2.8
g++ doesn't support exceptions well. It's provided for
completeness.
* include/makeinclude/platform_chorus.GNU: removed
exceptions=1 support, because now it's in wrapper_macros.GNU.
Tue Mar 09 21:54:39 1999 David L. Levine <levine@cs.wustl.edu>
* netsvcs/Makefile,netsvcs/clients/Makefile: updated
ACE_COMPONENTS check to allow everything to be built
in the default case, when ACE_COMPONENTS isn't set.
Thanks to Carlos for noticing this.
* netsvcs/Makefile,netsvcs/servers/Makefile: moved
netsvcs/server build suppression, when ACE_COMPONENTS
lacks Other, from netsvcs/Makefile to netsvcs/servers/Makefile.
* examples/Naming/Makefile: suppress build if ACE_COMPONENTS
is defined and doesn't contain Other.
* performance-tests/Misc/Makefile: don't build test_naming
if ACE_COMPONENTS is defined and doesn't contain Other.
* ace/Log_Record.i (length): cast the long argument to ACE_UINT32,
to avoid warning message if long is greater than 4 bytes.
Thanks to Hao Ruan <hruan@lucent.com> for reporting this.
Tue Mar 9 20:56:35 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* include/makeinclude/rules.nested.GNU:
If the DIRS macro is not set we simply do not recurse. Before
this change we got an error from the shell.
* bin/auto_compile:
If there are no errors then send a message when a warning was
detected during compilation.
Tue Mar 09 15:15:19 1999 David L. Levine <levine@cs.wustl.edu>
* bin/create_ace_build: check for ace/ and include/ directories
in top level directory, instead of ace/, examples/ and netsvcs/.
This allows use with trimmed-down workspaces. Thanks to Jeff
for suggesting this.
* include/makeinclude/platform_chorus_ghs.GNU: added exceptions
make option support. Thanks to Wei Chiang for reporting that
it wasn't supported.
Tue Mar 9 12:59:09 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* docs/ACE-subsets.html: Updated the subsets to reflect what's
actually in the ACE Makefile.
* ace/Message_Block.h: Changed the private section in both
ACE_Message_Block and ACE_Data_Block to protected allowing
derived classes to access data members of the parent class;
Thanks to Alexander Davidovich <sasha@ms.com> for suggesting
this.
* ace/Message_Block: Added new reference counting accessor methods
to Message_Block and Data_Block. Thanks to Alexander Davidovich
<sasha@ms.com> for suggesting this.
Tue Mar 09 11:21:49 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Message_Block.h: For some reason, default ctor and operator=
must be declared private instead of protected if they are not to
be accessable. Otherwise, VC complains.
Tue Mar 09 01:06:44 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.27 released.
Tue Mar 09 00:39:23 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.26 released.
Mon Mar 08 23:23:35 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Thread_Manager.{h,cpp} (thread_within,hthread_within,
thread_grp_list,hthread_grp_list): Added new functions to
check if a thread is managed by the thread manager and collect
the thread ids/handles in a thread group. Thanks to XuYifeng
<wj@puclic.hz.zj.cn> for motivating the addition.
Mon Mar 08 22:23:33 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Makefile: added FOR_TAO short-cut to ACE_COMPONENTS.
If the ACE_COMPONENTS variable is set to FOR_TAO, then
only the components necessary to support TAO will be
built into libACE.
* netsvcs/clients/Makefile: suppress build if Other
ACE_COMPONENT isn't built.
* netsvcs/Makefile: suppress server build if Other and Token
ACE_COMPONENT aren't built.
Mon Mar 8 17:35:04 1999 Gonzalo Diethelm <gonzo@tango.cs.wustl.edu>
* ace/NT_Service.cpp:
* ace/NT_Service.h:
Now the handle_control method calls separate protected virtual
methods to do its work. That way, it is easier to override what
must be done on each case, just by overriding one of the new
methods.
Mon Mar 08 15:41:08 1999 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_hpux.GNU: Added -DACE_LACKS_PRAGMA_ONCE.
Thanks to Hao Ruan for reporting this.
* README: Added Hao Ruan to the list of contributors.
Mon Mar 08 12:27:54 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Service_Config.cpp (handle_signal): added ACE_UNUSED_ARG (sig)
if ACE_NDEBUG is defined, to avoid compilation warning about
unused argument with debug=0.
* docs/ACE-subsets.html: added subset characterizations on
several platforms.
* include/makeinclude/platform_sunos5_ghs.GNU: fixed AR and
ARFLAGS to use CC to build static libs. It looks like GreenHills
no longer supplies a separate archiver with 1.8.9.
Mon Mar 08 11:58:03 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Task.cpp (activate): Made sure we don't mess with the passed
in grp_id if the task was not previously actived. Thanks to
XuYifeng <wj@puclic.hz.zj.cn> for noticing this.
Fri Mar 05 14:15:46 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (ACE_TSS_Cleanup (),free_all_keys_left ()):
with ACE_TSS_Emulation only, don't free the TSS key that
ACE_TSS_Cleanup uses internally for its in_use_ member.
The key doesn't get freed in ACE_OS::thr_key_detach (),
because that gets called during shutdown. So,
free_all_keys_left () would attempt to free it. But,
the dynamic memory associated with it had already been
deleted by ACE_TSS_Cleanup::exit (). And, there
aren't any other resources associated with it. So,
free_all_keys_left () can just skip over it.
* ace/OS.cpp (cleanup_tss): disabled call to
free_all_keys_left () with ACE_HAS_TSS_EMULATION, because
we can't safely access the TSS values that were created by
the main thread. They were destroyed when the ACE_TSS_Cleanup
instance exit () function was called. There don't seem to
be any leaks if free_all_keys_left () isn't called, anyways.
Fri Mar 5 11:05:04 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* examples/Log_Msg/Log_Msg.dsw: Fixed the path to Callback.dsp.
Thanks to Zoran Ivanovic <zorani@pathcom.com> for reporting
this.
* performance-tests/Misc/Makefile: Removed test_guard from the
Makefile. This test requires having
ACE_USES_OBSOLETE_GUARD_CLASSES defined in order to compare
ACE_Guard to ACE_Thread_Mutex_Guard (obsolete).
* ace/OS.h: Removed ACE_THREAD_GUARD*.
* ace/config-psos-{diab,tm}.h: Removed
ACE_LACKS_METHOD_DEFINITIONS_IN_CLASS_TEMPLATE. It is no longer
needed.
* ace/Synch_T.{h,i}: One would assume compilers are smart enough
to treat _all_ in-class functions as inline. Not for template
member functions. This is true at least for SunCC, egcs, gcc,
and MSVC. These functions seems to impose extra overhead.
After removing the in-class definitions for ACE_Guard, the cost
of using ACE_Guard is now as good as using
ACE_Thread_Mutex_Guard (which, by the way, is depricated.) So,
there's no need for a ACE_THREAD_MUTEX_GUARD class. Afterall,
the "ACE Way[TM]" of defining inline functions is the "Right
Way[TM]". The motto of the change is, always put inline
functions in .i files (even for template specialization)
otherwise, they'll become regular functions. If you really need
to put function definitions within class definitions, mark
inline function explicitly.
Thanks to Andy Marchewka <AndyM@who.net> for noticing the
performance differences between ACE_Thread_Mutex_Guard and (old)
ACE_Guard.
Fri Mar 5 11:06:12 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Svc_Conf.y: Always print out an error message when we
increment yyerror. Thanks to Ulf Jaehrig <jaehrig@desys.com>
for reporting this.
Thu Mar 4 12:26:47 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* tests/Message_Queue_Notifications_Test.cpp (svc): Made increment
of <role_> thread-safe.
Thu Mar 04 07:00:20 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-aix-4.2.x.h: added ACE_LACKS_PRAGMA_ONCE
to xlC section. Thanks to Rainer Blome <rainer_blome@de.ibm.com>
for reporting this.
* ace/config-osf1-4.0.h: added ACE_LACKS_PRAGMA_ONCE to
cxx section, with __DECCXX_VER < 60090010. This should
help avoid compilation warnings from cxx 5.x. Thanks
to Oliver M. Kellogg <Oliver.Kellogg@vs.dasa.de> for
reporting this.
* ACE-INSTALL.html: corrected name of ace/config-linux-lxpthreads.h.
Thanks to Barry Hoggard <hoggard@cfx.com> for reporting this.
* tests/Makefile,Makefile.DLL: instead of always running a
recursive make to build libDLL_Test.so, only do that if it
needs to be built. And, added dependencies to Makefile.DLL.
* ace/Makefile: commented out use of TEMPLATE_FILES. I don't
believe that it's needed.
* ace/CLASSIX/Makefile: removed unused TEMPLATE_FILES and
LSRC2 macros, and gethrtime build rule.
* docs/ACE-subsets.html: updated, and added documentation for
ACE_COMPONENTS and the ACE_OS adapation layer.
Wed Mar 3 22:30:02 1999 James CE Johnson <jcej@lads.com>
* ace/IOStream_T.{cpp|h|i}: Those last changes break (at least)
examples/IOStream/server. I'm backing them out and restoring
the 4.6.25 versions of these files until Chris can get back to
me about what's going on.
Wed Mar 03 21:49:58 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (socket_init,socket_fini): replaced use of
cerr with ACE_OS::fprintf.
* ace/OS.h: conditionally #include Object_Manager.h, only
if ACE_HAS_MINIMAL_ACE_OS is not defined. Merged main ()
#defines for Unix/NT and WinCE, to ease maintenance.
* ace/config-minimal.h: removed undef of
ACE_HAS_NONSTATIC_OBJECT_MANAGER, because OS.h now conditionally
#includes Object_Manager.h. Added ACE_MAIN_OBJECT_MANAGER #define,
to only instantiate the ACE_OS_Object_Manager.
* ace/config-WinCE.h: added ACE_MAIN and ACE_MAIN_OBJECT_MANAGER
#defines, to support merging of the main () #defines in OS.h.
* ace/OS.{h,cpp}: added ACE_OS_Object_Manager::starting_up ()
and shutting_down (). (ACE_TSS_Cleanup::remove): replaced
use of ACE_Object_Manager::shutting_down () with
ACE_OS_Object_Manager::shutting_down (). Thanks to Irfan
for reporting that, otherwise, ace/Object_Manager.h had
to be #included by OS.cpp on NT, if ACE_NONSTATIC_OBJECT_MANAGER
wasn't #defined.
* tests/Basic_Types_Test.cpp: hacked a bit to support building,
and running, with ACE_HAS_MINIMAL_ACE_OS. Don't look,
unless you want to forever ruin all of your good coding habits.
Wed Mar 03 19:08:52 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Map_T.h (ACE_Map): Further degraded my code to make it
compile with lame compilers ;-) This time it was the lame pSOS
diab compiler that could not recongnize a typedef in the base
template class.
Wed Mar 03 11:31:00 1999 David L. Levine <levine@cs.wustl.edu>
* docs/ACE-guidelines.html: added guideline to try to limit
the length of source code lines to less than 80 characters.
And, reverted to the previous version of the file. The
last version was apparently committed by mistake.
* include/makeinclude/wrapper_macros.GNU (ACE_HAS_GNUG_PRE_2_8):
added support for eg++. Assume that it's egcs, and therefore
ACE_HAS_GNUG_PRE_2_8 is set to 0. Thanks to Russell L. Carter
<rcarter@consys.com> for supplying a patch.
Wed Mar 3 09:35:20 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Memory_Pool.cpp (handle_signal): Added a check to see if the
current mapping is up to date so that faults caused by other
mappings will be passed on. Thanks to
Joseph Weihs <joseph-w@Orbotech.COM> for reporting this and for
providing a fix.
Wed Mar 3 05:48:24 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/ACE.cpp (fork): Added an extra pair of parens within the
WIFE*() macros to work around GCC bugs. Thanks to Alexandre
Karev <Alexandre.Karev@cern.ch> and Andre Folkers
<folkers@informatik.mu-leubeck.de> for reporting this.
Tue Mar 2 22:50:18 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* ace/POSIX_Asynch_IO.h:
* ace/POSIX_Proactor.cpp:
Added forward declaration for ACE_Proactor_Impl. Using static cast
to down cast from <aiocb *> to
<ACE_POSIX_Asynch_Result *>. Thanks to John.Mulhern@lawson.com for
reporting the warnings in HP UX.
Tue Mar 02 21:17:19 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.{h,cpp},Object_Manager.{h,cpp}: changed Object_Manager
state to be per-instance, instead of global. This makes
it easier to enforce startup and shutdown ordering,
regardless of whether the Object_Managers are static,
created on the stack of main (), or dynamically allocated.
* ace/IOStream_T.h: fixed a couple more line breaks.
* Makefile: added support for suppressing man page regeneration
on make release command line.
* include/makeinclude/platform_osf1_4.0.GNU: added automated
support for warning 1136. It's only supported by cxx 6.2.
Thanks to James CE Johnson <jcej@lads.com> for reporting
this, and to Andrew Hobson <ahobson@eng.mindspring.net> for
diagnosing the problem.
* ace/OS.i (thr_getspecific): added #else clause w/ACE_NOTSUP_RETURN
to support ACE_HAS_MINIMAL_ACE_OS.
* ace/config-minimal.h: added #undef of
ACE_HAS_NONSTATIC_OBJECT_MANAGER, to avoid #include of
Object_Manager.h. And, added #define ACE_USE_THREAD_MANAGER_ADAPTER
so that ACE_Thread_Adapter::invoke () won't use any
ACE_Thread_Exit functions.
* ace/OS.cpp (ACE_Thread_Adapter::invoke): removed
ACE_HAS_MINIMAL_ACE_OS conditional compilation, because
config-minimal.h now #defines ACE_USE_THREAD_MANAGER_ADAPTER.
And, added #else clauses to three TSS-related functions.
Tue Mar 02 14:43:29 1999 Steve Huston <shuston@riverace.com>
* ace/Map_T.(h i): Qualified types inherited from template base
classes; qualified with ACE_TYPENAME where needed. Now aC++
is happy.
* ace/config-hpux-10.x-hpc++.h: Added ACE_HAS_TYPENAME_KEYWORD for
aC++.
* tests/DLL_Test.cpp: Enable on HP-UX. Generalize the library
prefix/suffix with the platform definitions from OS.h.
Tue Mar 2 12:41:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/IOStream_T.{cpp, h}: Fixed some line breaks that were
inadvertently introduced when these files were last checked in.
Tue Mar 2 10:54:16 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* Cache_{Hash,Heap}_T.{h,cpp}:
* Cache_Manager[_T].{h,cpp}:
* Cache_Object.cpp:
* Hash_Bucket_T.{h,cpp}: Fixed erroneous include directives.
Thanks to Christian.Destor@alcatel.fr for reporting this.
Tue Mar 2 10:33:47 1999 James CE Johnson <jcej@lads.com>
* ace/IOStream_T.{cpp|h|i}: Christopher Healey
<chealey@entera.com> noticed occasional core dumps from
~ACE_IOStream on heavily loaded systems. It turns out that
streambuf_ was being deleted out from under the object. These
three files include his patches for this problem.
Tue Mar 2 02:28:54 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CDR_Stream.h (do_byte_swap): This accessor function should
be public accessible. Otherwise it's useless. Reorder class
declaration so the protected members appear before private
members/functions.
Mon Mar 1 23:26:41 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* tests/DLL_Test.cpp (ACE_HAS_SVR4_DYNAMIC_LINKING):
Added this check to prevent this test from being run
separately.
Mon Mar 01 17:02:48 1999 David L. Levine <levine@cs.wustl.edu>
* ACE version 4.6.25 released.
Mon Mar 01 16:54:02 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp,Object_Manager.cpp: fixed ObjMan state logic to
ensure that the ACE_Object_Manager is fini'd before the
ACE_OS_Object_Manager, even when both are static objects.
Thanks to Carlos for reporting this problem.
Mon Mar 01 14:05:46 1999 David L. Levine <levine@cs.wustl.edu>
* ACE version 4.6.24 released.
Mon Mar 01 13:04:53 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.*,Object_Manager.{h,cpp},ACE.cpp: added class
ACE_OS_Object_Manager. It manages the three preallocated
locks that ACE_OS uses. Many thanks to Nanbor for
suggesting the scheme to avoid dependency on Synch_T.h
for the ACE_Guard instantiations: OS.cpp now has a
couple of lightweight guards for its internal use.
* ace/ACE.{i,cpp},OS.*: moved ACE::strecpy () and
ACE::unique_name () from class ACE to ACE_OS. That
allows ACE_OS to be self-contained. The ACE versions
were left for backward compatibility; they now just
wrap the ACE_OS versions.
With these changes, a stand-alone ACE OS adaptation layer
can now be built. The ace/config-minimal.h config file
should be included in ace/config.h if you want to build
the ACE OS adaptation layer.
Two deficiencies remain with the ACE OS adaptation layer:
the dependencies on ACE_Log_Msg have been conditionally
compiled out by config-minimal.h. Similarly, there is
a conditional dependency of ACE_Thread_Adapter::invoke ()
on ACE_Thread_Exit. It would probably be best to move
that to ACE Thread_Manager, if possible.
* ace/config-minimal.h: suppress ACE_HAS_TSS_EMUATION, because
it requires other ACE headers to be #included.
* ace/Synch.{i,cpp} (~ACE_Recursive_Thread_Mutex): added
a call to this->remove (). Without it, the mutex wasn't
being destroyed. Uninlined both the destructor to avoid
code bloat if there are multiple returns in a function
that instantiates an ACE_Recursive_Thread_Mutex locally.
And, uninlined the remove () function, to save code space,
because it's non-trivial and not expected to be time critical.
Sun Feb 28 20:21:05 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* tests/Makefile.DLL (realclean): Added the realclean target to
the makefile.
* tests/run_tests.sh (ace_version): Disabled DLL_Test for chorus,
LynxOS, Unicos platforms as they dont support shared libraries.
Sun Feb 28 20:08:54 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* ace/POSIX_Proactor.cpp:
* ace/POSIX_Asynch_IO.h:
* ace/POSIX_Asynch_IO.cpp:
Fixed to pass <ACE_POSIX_Asynch_Result *> wherever <aiocb *> is being
passed, since it is ok to pass the derived class pointer in place of
base class pointer.
Defined the fields <bytes_transferred_> and <error_> in
<ACE_POSIX_Asynch_Result> so that they can be used instead of
<AIO_SYSERROR> and <AIO_SYSRETURN>. Because <aiocb:;aio_return> and
<aiocb::aio_error> fields are not supported on HP yet.
Sun Feb 28 14:22:38 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_linux_kcc.GNU: added
-D_GNU_SOURCE to CFLAGS, because it's needed with
glibc 2.1. It can't go into the config file, because
it needs to be #defined before the #include of
features.h. But, features.h #defines the glibc version.
Thanks to Ben Eng <bet@jetpen.com> for reporting this.
* ace/config-minimal.h: disable ACE_ASSERT, ACE_DEBUG, and ACE_ERROR.
Sun Feb 28 12:57:53 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Thread_Manager.cpp (terminate): The condition for handling
joining thread was wrong. Thanks to Terry Rosenbaum
<Terry.Rosenbaum@Radiology.MSU.edu> for reporting the bug.
Sun Feb 28 08:37:44 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (ACE_Thread_Adapter::invoke): replaced call
to ACE_Thread::self () with call to ACE_OS::thr_self (),
so that we don't need to #include ace/Thread.h. Thanks
to Russ Noseworthy for reporting this.
Sat Feb 27 17:25:52 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Makefile: updated dependencies. They didn't have
any .shobj dependencies, just .obj.
* tests/Makefile: ran make depend. It didn't have any
dependencies.
* include/makeinclude/platform_linux_kcc.GNU: added note that
evaluation copies of KCC might come with libraries that were
built with exception handling support. To use them, ACE must be
built with exception handling support
(exceptions=1). Thanks to John Lindal <jafl@cco.caltech.edu>
for reporting this.
Also, added support for the exceptions make flag.
Sat Feb 27 13:31:17 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/OS.i: Fixed the remaining problems with ACE_OSCALL_RETURN
macro usage for sem_wait(), sem_post(), and sem_trywait().
Thanks to David Levine for reporting this.
* ace/OS.h: Added a set of ACE_THREAD_GUARD macros that use
ACE_Thread_Mutex_Guard. These seem to be faster on many
platforms than the ACE_Guard<ACE_Thread_Mutex>. Thanks to
Andy Marchewka <AndyM@who.net> for reporting this.
* ace/Dump.cpp: Moved the explicit template instantiation of
ACE_Guard<ACE_Thread_Mutex> out of dump and put it into
Synch.cpp, where it's with the other instantiations.
Fri Feb 26 23:58:46 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR_Stream.{h,i,cpp}:
Added some read- and write-pointer alignment
functions, as proposed by Carlos. Also deleted some
ACE_OutputCDR members that weren't being used.
Checked the build on NT and suncc. Must come up with
some kind of test for these new functions.
Fri Feb 26 21:56:05 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Makefile: moved ACE_COMPONENTS to after include
of wrapper_macros.GNU, so that users can set it in
their platform_macros.GNU. Also, added ACE_LACKS_ACE_OTHER
to CFLAGS if Other ACE_COMPONENT is not built.
Fri Feb 26 17:48:32 1999 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_hpux_aCC.GNU: Added OCFLAGS
value for optimize=1 builds; added support for distrib=1
builds to build for off-site distribution.
Fri Feb 26 12:38:00 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp: added #include "ace/Thread_Manager.h" on
WIN32, for ACE_Thread_Descriptor declaration. Thanks
to Barry Hoggard <hoggard@cfx.com> for reporting this.
* ace/Managed_Object.h: fixed comments in description.
Fri Feb 26 11:56:08 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Log_Priority.h (ACE_Log_Priority): Removed all references to
ACE_HAS_BROKEN_ENUMS since it has been deprecated (see David's
ChangeLog entries from Feb 5).
Fri Feb 26 11:09:47 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/OS.i (sema_destroy): ACE_OSCALL and ACE_OSCALL_RETURN macro
calls for sem_destroy, sem_unlink and sem_close had too few
arguments. Added the missing arguments for the macros.
Fri Feb 26 10:59:45 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* examples/Reactor/WFMO_Reactor/test_talker.cpp (main): Fixed to
use the new proactor interface.
Thu Feb 25 22:17:58 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (spa, for VxWorks only): updated comment about
::sp () default values, and added comments for each argument
to ::taskSpawn (). Thanks to Tad Jarosinski <tadj@qualcomm.com>
for asking about spa ().
Thu Feb 25 20:10:06 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Synch.h:
* ace/Synch.i:
* ace/Synch_T.h:
Added an ACE_Null_Semaphore class. Thanks to Irfan for his guidance
on this. Also fixed ACE_SYNCH_SEMAPHORE to be ACE_Null_Semaphore
when ACE is built without thread support.
Thu Feb 25 18:37:27 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/WFMO_Reactor (cancel_wakeup and masks_ops): Fixed the
cancel_wakeup() method. It was doing too much, i.e., if the
masks were reduced to null, it was removing the event handler
entry. The new version behaves more like the Select Reactor in
that it simply plays with the masks without removing the event
handler.
Also, implemented the mask_ops() operation.
Thanks to Douglas C. Schmidt <schmidt@cs.wustl.edu> and Zoran
Ivanovic <zorani@pathcom.com> for helping in pinpointing the
problem.
* ace/Service_Config.cpp (fini_svcs and close): Since the reactor
and proactor singletons potentially call user code (in
handle_close()), we must shut them down *before* the log msg is
destroyed. Therefore, moved the close_singletons() call from
close() to fini_svcs().
* ace/Select_Reactor_Base.cpp (bit_ops): Since we return the old
masks everytime, find the old reactor masks at the start of the
method. This automatically does the work of the GET_MASK
operation.
* ace/Proactor.cpp: Added #include "ace/Object_Manager.h"
* examples/Reactor/WFMO_Reactor/test_prerun_state_changes.cpp:
handle_close() was getting called twice; changed code to prevent
double deletion.
* examples/Reactor/WFMO_Reactor/test_handle_close.cpp: Added the
ability to cancel reads, change masks, and check for existing
reactor masks.
Thu Feb 25 17:35:10 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* tests/DLL_Test.cpp:
Changed the OBJ_SUFFIX to ".so" as on Linux the .o file cannot
be a shared object. Also the OBJ_PREFIX is now "./lib" for
non-Win32 platforms.
* tests/Makefile:
Additional option DLL_TEST added so that a .so can be produced
for DLL_Test.
* tests/Makefile.DLL:
This is the makefile which produces libDLL_Test.so for DLL_Test.
Wed Feb 24 23:47:22 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* examples/Reactor/Proactor/test_proactor.cpp:
* ace/WIN32_Asynch_IO.h:
* ace/Proactor.cpp:
* ace/WIN32_Proactor.cpp:
* ace/Proactor.h:
* ace/Proactor_Impl.h:
* ace/POSIX_Proactor.h:
Changed the return values of the <ACE_Proactor::handle_events> API to
return -1 on error, 0 on timeout, 1 on success. This has been done so
that it looks like the <ACE_Reactor::handle_events>. Previously
<ACE_Proactor::handle_events> was returning -1 on error, 0 on success
and 0 on timeout also.
Fixed the <ACE_POSIX_AIOCB_Proactor::handle_events> and
<ACE_POSIX_SIG_Proactor::handle_events> to do indefinite blocking when
ACE_INFINITE is passed. <sigwaitinfo> is used instead of
<sigtimedwait>.
Renamed the <ACE_AIO_Accept_Handler> class to more appropriate
<ACE_Notify_Pipe_Manager>.
Wed Feb 24 22:08:50 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/OS.i: Fixed all the sem_* calls so that they no longer use
the ACE_ADAPT_RETVAL() macro, which was broken since these calls
all return -1 on failure. Thanks to John E. Bossom
<John.Bossom@cognos.com> for reporting this.
Wed Feb 24 17:40:49 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/combine:
* docs/tutorials/colorize:
A few enhancements to make the colorization better. Also, when
#include "ace/something.h" is seen by the colorizer, it will
create a link to ../../../ace/something.h. That should give
direct links from the tutorial pages to the ACE headers.
Wed Feb 24 16:56:51 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/017/barrier2.cpp: Added this to show how you can
change the thread count while threads are still active.
* docs/tutorials/017/*.html: Regenerated due to the new file.
* docs/tutorials/018/*.html: Added Kirthika's abstract &
regenerated.
* docs/tutorials/018/token.cpp: Typo in the comments...
Wed Feb 24 14:57:10 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h (ASYS_ONLY_WIDE_STRING): New UNICODE macros to convert
char* to wchar* when UNICODE is defined but not on CE.
* ace/Service_Config.cpp (parse_args): Convert getopt.optarg using
ASYS_ONLY_WIDE_STRING.
Wed Feb 24 13:54:15 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-minimal.h: changed #include protection to
ACE_CONFIG_MINIMAL_H, so that this config can be #included
by others.
* ace/OS.{h,cpp},Thread_Manager.h: moved ACE_Thread_Control and
ACE_Thread_Exit class definitions from Thread_Manager.h to OS.h,
so that Task.h no longer needs to be #included by OS.cpp.
* ace/OS.cpp: protected #include of Containers_T.h with
defined (ACE_WIN32) || defined (ACE_HAS_TSS_EMULATION).
Wed Feb 24 05:30:59 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Message_Queue_T.i (dequeue): Replaced the improper
self-recursive call to dequeue() with dequeue_head(). Thanks to
Marc Engel <engelm@tlse.sofreavia.fr> for reporting this.
Tue Feb 23 20:58:17 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/OS.i: Make sure to do the right thang if we're compiling the
ACE recursive thread mutexes on platforms that lack threading.
* ace/Service_Object: Added a new ACE_Service_Object constructor
that takes an ACE_Reactor * and passes this down to the
ACE_Event_Handler base class.
* ace/Event_Handler: Added a new ACE_Event_Handler constructor
that takes an ACE_Reactor * and an int priority that default to
the right values.
Tue Feb 23 21:53:32 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.h,README: added ACE_HAS_MINIMAL_ACE_OS support.
* ace/config-minimal.h: added this config file. It defines
ACE_HAS_MINIMAL_ACE_OS. It is designed to build only
the minimal ACE_OS adaptation layer.
Tue Feb 23 20:28:45 1999 Marina Spivak <marina@cs.wustl.edu>
* ace/SString.{h,i,cpp}: Added a private member <buf_len_> to the
ACE_CString class to keep track of the size of data buffer, and
avoid unnecessary memory reallocations. Updated class methods
to use buf_len_.
Tue Feb 23 19:54:55 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* ace/POSIX_Asynch_IO.h:
* ace/POSIX_Asynch_IO.cpp:
Fixed the potential dominance warnings in POSIX
implementation. Updated the documentation.
Tue Feb 23 18:11:11 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* examples/DLL/DLL.dsw:
examples/DLL/Main.dsp:
examples/DLL/Newsweek.dsp:
examples/DLL/Today.dsp:
Added extra include and linker options to the projects.
* tests/DLL_Test:
Added OBJ_PREFIX to cater to the problem which arose due to the fact
that the .o is produced under the .obj directory on SunOS.
* tests/run_tests.sh:
tests/run_tests.bat:
Made an entry for DLL_Test.
Tue Feb 23 16:54:33 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/OS.i (recursive_mutex_trylock and recursive_mutex_lock):
Removed the "abandoned" versions of these routines. Abandoned
mutexes are only supported for process mutexes, but not for
thread mutexes.
Tue Feb 23 15:50:40 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* ace/Proactor.cpp:
* ace/Proactor.h:
* ace/Proactor_Impl.h:
* ace/POSIX_Proactor.h:
* ace/POSIX_Proactor.cpp:
* ace/POSIX_Asynch_IO.h:
* ace/POSIX_Asynch_IO.cpp:
* ace/WIN32_Proactor.cpp:
Implemented <post_completion> for POSIX platforms. Thanks to Irfan
for the cool design. This API has been changed a little bit for
portability. <post_completion> API now exists at
<ACE_Asynch_Result_Impl> class. To post completions, users will have
to get hold of an <ACE_Asynch_Result_Impl> class (either get it from
the predefined factory methods at the Proactor or derive from
<ACE_WIN32_Asynch_Result> or <ACE_POSIX_Asynch_Result>, then call
<post_completion> on it passing in the <Proactor_Impl *> which can
be got through <implementation> method in the <ACE_Proactor>.
The need for RTTI has been avioded in this design.
Tue Feb 23 15:19:33 1999 Steve Huston <shuston@riverace.com>
* ace/NT_Service.(h cpp): Added two new methods:
state (DWORD *, ACE_Time_Value * = 0) as an alternate way to get the
service's state, with definite indication of error. Also changed
comments on the other state() method to clarify the return value.
test_access (DWORD) tests caller's access to the service.
Thanks to Martin Krumpolec <krumpo@pobox.sk> for these ideas and
suggestions!
Tue Feb 23 14:12:52 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Active_Map_Manager_T.h (npos): Added a new static member
function that returns a key that cannot be found in the map.
Thanks to Fernando D. Mato Mira <matomira@acm.org> for
suggesting this.
Tue Feb 23 12:15:09 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Svc_Conf.y:
* ace/Svc_Conf_y.cpp:
* ace/Parse_Node.cpp (symbol):
* ace/OS.cpp (fork_exec):
* ace/INET_Addr.cpp (ACE_INET_Addr): More Unicode fixes.
Tue Feb 23 12:00:21 1999 Steve Huston <shuston@riverace.com>
* examples/NT_Service/main.cpp: Allow -i option without a value, and
default to AUTO_START. Also, added a README file to explain how to
use the program. Thanks to Zoran Ivanovic <zorani@pathcom.com> for
the change and the README file!
Mon Feb 22 22:03:47 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* bin/auto_compile_win32.pl: Perl script for compiling all the
million different config. combination on Win32. Hey, it also
works on Alpha. Thanks to Darrell Brunsch for testing it on
Alpha/NT.
* ace/ace_{dll,lib}.dsp: Fixed broken project settings.
Mon Feb 22 21:56:27 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Sched_Params.cpp: removed #include of ACE.h because it's
not necessary.
* ace/Makefile: added ACE_COMPONENTS default definition.
Moved Sched_Params from THREADS_FILES to OS_FILES because
OS.cpp needs it. It only contributes 172 bytes to libACE
on VxWorks and 248 on LynxOS.
Sun Feb 21 18:52:17 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.23 released.
Sun Feb 21 08:46:09 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.i (recursive_mutex_{init,lock,trylock}: added some
ACE_UNUSED_ARGS.
* ace/OS.{i,cpp} (cond_*): uninlined the ACE_OS:cond_* function
versions with ACE_LACKS_COND_T. Most are too big to be
good candidates for inlining. And the others cause use-before-
definition problems in OS.i.
Sun Feb 21 00:17:58 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* websvcs/lib/URL_Addr.i: Can now copy null Addrs. Also added
hash function implementation.
* websvcs/lib URL_Addr.h: Added hash function.
* websvcs/lib/URL_Addr.cpp: Fixed a bug with
ACE_HTTP_Addr::create_relative_address and urls beginning with
"/". It used to copy the first '/', which wasn't needed.
Sat Feb 20 15:39:16 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.{h,cpp},Object_Manager.{h,cpp}: changed ACE_OS::exit ()
to call an exit hook that is registered by the ACE_Object_Manager,
instead of directly calling ACE_Object_Manager::fini ().
* ace/OS.i (thr_self): moved definitions to before first use.
Sat Feb 20 11:50:30 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.i (thr_equal): Moved the body of ACE_OS::thr_equal before
recursive_mutex methods to avoid "function redefined as inline"
problem. Thanks to David Levine for reporting this.
Sat Feb 20 09:05:20 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/OS.cpp: Changed the ACE_static_cast() in ACE_OS_Wstring to
first use an ACE_const_cast(). Thanks to Andy Gokhale for
reporting this.
Sat Feb 20 02:53:38 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.cpp (ACE_OS_WString): Need to add a statis cast when
converting from wchar to char to eliminate a warning from Win98.
* ace/config-win32-common.h: Do not check for library type on CE.
* ace/config-WinCE.h: Defined ACE_HAS_WINCE as 1.
Fri Feb 19 22:54:18 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/OS.h:
Fixed the return types for ACE_OS_WString and ACE_OS_CString
assignment operators, even though they are not defined they
should be declared to return something, otherwise egcs give us a
ton of warnings.
Fri Feb 19 21:02:49 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/config-win32-common.h: #define'd ACE_HAS_RECURSIVE_MUTEXES
for Win32.
* ace/OS.cpp: Removed the SString.h dependency in OS.cpp!
Fri Feb 19 21:44:31 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ace/OS.i: Was using two many arguments to thread_mutex_lock ()
and ACE_OS::thread_mutex_trylock ().
* ace/Synch.i: Typo in comment
Fri Feb 19 18:18:13 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.{h,i,cpp}: Added ACE_OS_WString and ACE_OS_CString which
should only be used within ACE_OS to perform conversion between
wchar strings and char string.
Changed the wide/multibyte conversion macros to use
ACE_OS_?String classes and removed dependencies to Auto_Ptr.h
and SString.h.
* ace/config-win32-common.h: Removed checked for (_DLL) if
ACE_HAS_DLL = 0. Otherwise, the static build won't compile.
* ace/Token_Manager.cpp (release_token):
* ace/Service_Manager.cpp (list_services): Changed
ASYS_MULTIBYTE_STRING to ASYS_ONLY_MULTIBYTE_STRING. Because
the new conversion classes have stronger type checking, these
errors weren't found until now.
Fri Feb 19 17:01:08 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Makefile: moved ACE from OS_FILES to UTILS_FILES.
Fri Feb 19 15:44:23 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/OS,
ace/Synch: Moved the implementation of the
ACE_Recursive_Thread_Mutex from the Synch.* files to
the OS.* files in order to reduce coupling in OS.* and
other parts of ACE.
Fri Feb 19 12:36:43 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/OS.i:
Fixed missing ACE_INLINE for ACE_OS::strenvdup()
Fri Feb 19 11:35:57 1999 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_sunos5_sunc++.GNU: Added new option
"distrib". If you do a "make distrib=1" the -R options won't be
given when linking, which produces dynamic load records requiring
objects/libraries in standard places, or use of LD_LIBRARY_PATH.
The default is distrib=0, which is the existing behavior.
Fri Feb 19 11:22:48 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.cpp (open): Don't call CreateFileA with FILE_SHARE_DELETE
when compiled on Win95 because it doesn't support the flag. The
implication of this change is that unlink before close will not
work on Win95. So programs that are targeted to both NT and
Win95 cannot depend on it. Thanks to Rod Joseph
<rodjoseph@adt.com> for reporting the bug.
Thu Feb 18 21:10:45 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/OS.cpp (string_to_argv): We no longer have to special case
for WinCE since this logic has been moved into
ACE_OS::strenvdup().
* ace/ACE.cpp: Implemented ACE::strenvdup() using
ACE_OS::strenvdup().
* ace/OS: Move the implementation of strenvdup() from ACE to
ACE_OS to remove another dependency from the OS wrappers.
* ace/ARGV.cpp: Rewrote the ACE_ARGV::string_to_argv() and
ACE_ARGV::argv_to_string() methods to use the new
ACE_OS::string_to_argv() and ACE_OS::argv_to_string().
* ace/OS.h: Added string_to_argv() and argv_to_string() methods to
ACE_OS to remove the dependency on ACE_ARGV.
Thu Feb 18 19:21:03 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/005/client_handler.cpp: Replaced the leading '_'
in the open() method so that we can cast _acceptor to acceptor.
Thu Feb 18 14:12:28 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* netsvcs/clients/Naming/Client/svc.conf: Changed to start up
ACE_Naming_Context as dynamic service. Thanks to Darren
Whobrey <whobrey@fecit.co.uk> for reporting this problem.
* ace/Name_Proxy.cpp (open): The timeout value was set upp
ACE_Time_Value::zero accidentally when we want blocking
connect. Thanks to Darren Whobrey <whobrey@fecit.co.uk> for
reporting the bug.
* ace/CDR_Stream.{h,i} (ACE_InputCDR::do_byte_swap): Added
accessor function for Flick.
* ace/CORBA_macros.h (ACE_THROW_INT): This should return a new
instance of the exception. Thanks to Andy for pointing this
out.
Wed Feb 17 16:40:56 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h (ACE_NEW_THROW_EX): A new ACE_NEW_THROW macro which
makes ACE_NEW_THROW_EX behave like a exception-throwing
function. I.e., you need to follow ACE_NEW_THOW_EX with
appropriate ACE_CHECK* macros. The use of ACE_NEW_THROW,
ACE_NEW_THROW_RETURN, ACE_NEW_TRY_THROW are deprecated.
* docs/exceptions.html: Added documentation for
ACE_DECLARE_NEW_CORBA_ENV.
* ace/config-WinCE.h: Automatically define ACE_HAS_WINCE if it is
not already defined.
* ace/Synch.cpp: I had to shuffle the location of .i file around
to avoid a warning from SH compiler for CE.
* ace/config-win32-common.h: Disabled checking for DLL run-time,
WIN32, and multi-threaded run-time on Windows CE.
* ace/CORBA_macros.h (ACE_DECLARE_NEW_CORBA_ENV): Added this macro
for declaring a new CORBA_Environment called ACE_TRY_ENV.
ACE_TRY_NEW_ENV should now be avoided because it won't work if
multiple try blocks are needed in the top-most functions.
Instead, you can use the new macro to define the environment
variable and use ACE_TRY/ACE_TRY_EX as usually. This is even
more intuitive than ACE_TRY_NEW_ENV. ;) Thanks to Andy for
reporting the problem.
Wed Feb 17 10:44:29 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* examples/Reactor/Proactor/test_proactor.dsp:
* examples/Reactor/Proactor/test_proactor.cpp:
* examples/Reactor/Proactor/Makefile:
rtagged these files with "new_proactor"
Tue Feb 16 17:08:53 1999 Steve Huston <shuston@riverace.com>
* examples/ASX/Event_Server/Transceiver: Moved Event_Transceiver
class definition to new file, transceiver.h, to build ok on AIX (P15)
and fixed core dump if ctor fails to connect.
* examples/Connection/misc: Moved some class definitions from
test_upipe.cpp to new file test_upipe.h to build ok on AIX (P17).
Same thing with Connection_Handler - new file Connection_Handler.h.
* examples/Connection/misc/Makefile: Clean out tempinc directory
between program compiles so AIX xlC doesn't freak out.
Tue Feb 16 16:42:23 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CORBA_macros.h (ACE_PRINT_EXCEPTION): A new macro that deal
with printing out the exception for debugging. Thanks to Lothar
Werzinger <lwerzinger@krones.de> for suggesting this.
* docs/exceptions.html: Added documentation for the new macro
ACE_PRINT_EXCEPTION. Since there's no portable way to print out
the content of a CORBA_Exception, we use this macro to deal with
differences among various ORB implementations. This macro is
user definable.
Thanks to Eric Covington <eric@nowsol.com> for figuring out the
following.
* ace/ace_ce_dll.dsp: Added Functor.cpp and Message_Queue.cpp.
* ace/High_Res_Timer.cpp (dump): Fixed Unicode problem.
* ace/OS.i (truncate): WinCE does not have char* version of
truncate.
Tue Feb 16 00:39:35 1999 Alexander Babu Arulanthu <alex@cs.wustl.edu>
* ace/ace_dll.dsp:
* examples/Reactor/Proactor/test_proactor.dsp:
* examples/Reactor/Proactor/test_proactor.cpp:
Updated the files.
* ace/WIN32_Asynch_IO.h:
* ace/WIN32_Asynch_IO.cpp:
* ace/WIN32_Asynch_IO.i:
Added the files
* ace/ace_dll.dsp:
* ace/ace_lib.dsp:
Updated these files
* examples/Reactor/Proactor/Makefile:
New make file which also compiles the test_aiosig_ace.cpp
program.
* ace/POSIX_Asynch_IO.i:
Added the file.
rTagged the ACE_wrappers repository with <before_proactor>
After the following changes rtagged the repository with
<after_proactor>
* ace/
Proactor.h
Asynch_IO.cpp
Asynch_IO.h
Makefile
Proactor.cpp
Proactor.h
config-lynxos.h
config-sunos5.6.h
config-sunos5.7.h
POSIX_Asynch_IO.{h,CPP}
POSIX_Proactor.{h,cpp}
WIN32_Asynch_IO.{h,cpp}
Asynch_IO_Impl.{h,cpp,i}
Proactor_Impl.h
Applied Bridge pattern to the POSIX implementation of the Proactor
code. ACE_POSIX_AIOCB_Proactor works fine on Solaris
2.6. ACE_POSIX_SIG_Proactor works on LynxOS. Take a look at the tests
at the $(ACE_ROOT)/examples/Reactor/Proactor/ and the README.
* tests/
Aio_Platform_Test.cpp
*examples/Reactor/Proactor/:
test_proactor.cpp
test_aiocb.cpp
test_aiosig.cpp
test_aiosig_ace.cpp
README
Test files for testing out the platforms.
Mon Feb 15 13:17:15 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.22 released.
Sun Feb 14 15:25:27 1999 Ossama Othman <othman@cs.wustl.edu>
* ACE-configuration.txt:
* ACE.ifnames:
* acconfig.h:
* ace-config.in:
* ace-diff-config.in:
* acinclude.m4:
* aclocal.m4:
* config.guess:
* config.sub:
* configure:
* configure.in:
* install-sh:
* libtool:
* ltconfig:
* ltmain.sh:
* missing:
* mkinstalldirs:
* ace/config.h.in:
Started to introduce the work done by the ACE Configuration
Project into the official ACE distribution.
To help speed development, the work being done by the ACE
Configuration Project is being slowly introduced into the official
ACE distribution. Some of the functionality in the work created by
the ACE Configuration Project has been removed so that ACE may be
built in the usual fashion. Once the ACE Configuration Project
work stabilizes on more platforms that removed functionality may be
added to ACE.
Currently the configure script contains most of the tests that are
necessary to properly configure ACE on most platforms. However,
there are still some autoconf tests that are missing. As such, you
may encounter and most likely will have compilation problems.
The `configure' script that is currently being used has been
modified from the ACE Configuration Project's `configure' script to
prevent makefiles from being automatically generated since there are
still some issues that must be addressed before automatically
generated makefiles are incorporated into the official ACE
distribution.
Sun Feb 14 14:09:11 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/015/server.cpp (main): Force the singleton to use
the Select Reactor instead of the OS-default. This should fix the
problem this tutorial has on Win32 due to blocking vs non-blocking
socket configuration.
* docs/tutorials/015/Protocol_Task.h : Removed the ability to
activate this task. The code is now a little simpler and less
likely to behave in unpredicatable ways.
* docs/tutorials/015/* : A few typos fixed but mostly fallout from
removing the ability to activate the Protocol_Task.
* docs/tutorials/016/page01.html : Added Kirthika's abstract.
* docs/tutorials/016/condition.cpp : Made max_threads_ a
non-static member variable that is set by open().
* docs/tutorials/017/page01.html : Added Kirthika's abstract.
Sun Feb 14 12:47:03 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/CDR_Stream.h:
* ace/CDR_Stream.i:
* ace/CDR_Stream.cpp:
Minor cosmetic changes, mostly trailing spaces.
Sat Feb 13 22:06:17 1999 Nanbor Wang <nanbor@cs.wustl.edu>
The following changes are based on the patch Eric Covington
<eric@nowsol.com> submitted. Thanks very much to Eric for
bringing ACE/CE up-to-date.
* ace/ace_ce_dll.dsp: Updated.
* ace/OS.cpp: (open): CE doesn't support opening files with
attribute FILE_SHARE_DELETE.
* ace/OS.i (abort): CE doesn't support abort.
* ace/Stats.cpp (print_summary): CE doesn't support strerror.
* ace/Stats.i (dump): Changed to use ACE_DEBUG.
* tests/Thread_Manager_Test.cpp (main):
* ace/tests/SOCK_Connector_Test.cpp (find_another_host):
* ace/Log_Msg.cpp (log):
* ace/INET_Addr.cpp (addr_to_string): Fixed Unicode problems.
Fri Feb 12 16:14:47 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Remote_Tokens.cpp: Replaced the typedef for
ACE_TSS_CONNECTION_MUTEX with #define ACE_TSS_CONNECTION_MUTEX.
Thanks to Arturo for reporting this.
Fri Feb 12 18:41:22 1999 Steve Huston <shuston@riverace.com>
* ace/SString.cpp: Added "ace/" to #include "Auto_Ptr.h" to conform
to conding guidelines.
Fri Feb 12 17:16:17 1999 David L. Levine <levine@cs.wustl.edu>
* tests/run_tests.vxworks: commented out Message_Queue_Test and
Timeprobe_Test, because they lockup the machine. And,
fixed string length of DLL_Test printout.
Fri Feb 12 17:06:30 1999 Arturo Montes <mitosys@colomsat.com.co>
* ace/config-sco-5.0.0-CC-fsu-pthread.h: removed this config
file, because it's not used.
Fri Feb 12 16:36:55 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/SOCK_IO.{h,i,cpp} (send,recv): Added back the iovec version
of send/recv back to maintain backward compatibility. Thanks to
Steve for pointing this out.
Fri Feb 12 15:37:10 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Makefile: split FILES up into subsets. See
docs/ACE-subsets.html for more information.
Fri Feb 12 12:31:29 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Makefile: Removed blank line that was added when troubleshooting
the cvs log problem. The extra line cause Digital Unix's make to
complain about a missing separator.
Fri Feb 12 09:19:21 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.5.h: added ACE_HAS_STANDARD_CPP_LIBRARY and
ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB #defines with Sun CC 5.0.
Thanks to Diethard Ohrt <Diethard.Ohrt@siemens.at> for
providing these.
Thu Feb 11 15:05:42 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ACE-INSTALL.html: Reworded the first step of the Windows
NT installation to be a bit clearer.
Thu Feb 11 14:30:35 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ace/ace_dll.dsp: Fixed Alpha Configuration.
Thu Feb 11 03:48:50 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CORBA_macros.h: Added #pragma once and ACE_CORBA_MACROS_H to
prevent duplicate inclusion of this file.
Added a new macro ACE_ANY_EXCEPTION to denote the name of the
CORBA exception caught by the ACE_CATCHANY. Thanks to Lothar
Werzinger <lwerzinger@krones.de> for suggesting this.
Wed Feb 10 23:01:16 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ace/config-win32-common.h: Made a better effort at finding out
if the files are compiled against the correct run-time
libraries. Now _DLL is checked to see if it is defined for
ACE_HAS_DLL != 0 builds, and if it is not defined for static
builds.
This should help diagnose the problem of not using (Debug)
Multithreaded DLL run-time libraries in clients that use DLL
versions of ace (one symptom of this mistake is errno not
working correctly because of one copy being defined in the DLL
and one in the program itself).
Wed Feb 10 22:19:33 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/014/stream.cpp : Removed the __LINE__ displays.
* docs/tutorials/014/page01.html : Added Kirthika's abstract
* docs/tutorials/015/page01.html : Added Kirthika's abstract
* docs/tutorials/015/page12.html : Oops... Wrong intro text.
* docs/tutorials/015/Protocol_Stream.cpp : Typos fixed
* docs/tutorials/015/Protocol_Task.cpp : Typos fixed
Wed Feb 10 15:04:26 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Makefile: added Pair_T.cpp and Template_Instantiations.cpp
to the TEMPLATE_FILES list/variable. They were missing.
* tests/Conn_Test.cpp (spawn_processes): initialized
pid_t *children_ptr to zero to prevent "uninitialized"
warnings from egcs 1.1.1.
Wed Feb 10 14:16:25 1999 Ossama Othman <othman@cs.wustl.edu>
* tests/Message_Queue_Test.cpp (performance_test): initialized
ACE_Message_Block **send_block to zero to prevent "uninitialized"
warnings from egcs 1.1.1.
Wed Feb 10 14:02:46 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/ACE.cpp (get_ip_interfaces): initialized struct ifreq * ifs
to zero to prevent "uninitialized" warnings from egcs 1.1.1.
Wed Feb 10 10:53:59 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* examples/IPC_SAP/TLI_SAP/ftp-server.cpp:
Fixed several minor syntax errors.
Tue Feb 09 16:54:10 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR_Stream.cpp:
Put the 'XXX_DISABLE_SWAP_ON_READ' code back into the
ACE_INputCDR methods read_array(), read_2(), read_4(),
read_8() and read_16(). I didn't realize at first how
crucial that is to the Boeing folks. Thanks to Carlos
for bringing this to my attention.
Tue Feb 09 16:07:32 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Synch.{h,i,cpp}: Removed classes ACE_Null_Mutex_Guard and
ACE_Thread_Mutex_Guard since there doesn't seem any need for
them any more. They should be replaced by
ACE_Guard<ACE_Null_Mutex> and ACE_Guard<ACE_Thread_Mutex>. If
by any chance you still need to use them, add
ACE_USES_OBSOLETE_GUARD_CLASSES into your config.h file.
* ace/Local_Tokens.h: Replaced ACE_Null_Mutex_Guard and
ACE_Thread_Mutex_Guard with ACE_Guard<ACE_Null_Mutex> and
ACE_Guard<ACE_Thread_Mutex>.
Tue Feb 9 16:12:42 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/{010|011}/task.{h|cpp} : barrier_ doesn't need to be a
pointer since Doug moved n_threads to the ctor. Minor typos
corrected also.
* docs/tutorials/010/message_queue.cpp : Typos...
* docs/tutorials/002/server.cpp: Added call to notify() in the
signal handler so that ^C will exit as expected.
Tue Feb 09 13:57:23 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* tests/DLList_Test.cpp (main): The test should log the result to
DLList_Test.log, not ACE_DLList_Test.log.
* tests/run_tests.{sh,vxworks,psosim}: Added DLList_Test.
* tests/run_tests.bat: Removed DLL_Test.
* ace/ACE.cpp (ldfind): Win32 only. Made sure we always look for
the DLL at the current directory first on Win32 which is the
default behavior on Win32.
* ace/ace_{dll,lib}.dsp: Removed entries of Service_Record.{h,i}.
Thanks to David for noticing this.
Tue Feb 09 10:21:33 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Service_Types.{i,cpp},README: removed obsolete references to
Service_Record.
* tests/MT_Reactor_Timer_Test.cpp (main): added printout with numbers
of expected and actual events, if result is not ACE_MAX_TIMERS + 2
* include/makeinclude/wrapper_macros.GNU: added BUILD line with both
shared_libs and static_libs enabled, so that individual Makefiles
don't need a BUILD line.
* docs/ACE-subsets.html: updated to reflect current ACE status.
Mon Feb 08 14:32:43 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* docs/exceptions.html: Added guidelines of switching from TAO try
macros to ACE try macros. Other cosmetic changes.
Mon Feb 8 13:54:32 1999 Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
* docs/tutorials/011/task.cpp :
In the open return this->activate (THR_NEW_LWP,
this->n_threads_); was taking an udefined variable threads.
* docs/tutorials/011/message_queue.cpp:
Corrected Compilation error due to a typo (static misspelt as
statuc!!!)
Mon Feb 8 09:21:10 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Map_T.h,
ace/Pair_T.h: Aded parens around the #pragma implementation file
names so the AIX compiler would be happy. Thanks to Martin
Krumpolec <krumpo@pobox.sk> for reporting this.
Mon Feb 08 00:39:49 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.21 released.
Sun Feb 7 22:48:01 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CORBA_macros.h (ACE_THROW_RETURN): The second macro argument
was missing.
Sun Feb 7 22:32:21 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/CORBA_macros.h: It wasn't clear why the ACE_THROW_RETURN
macro for non-NT platforms wasn't taking a second RETV
parameter. I've fixed this, however.
Sun Feb 07 13:55:15 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_sunos5_sunc++.GNU: added
comment about possibly needing -compat=4 with Sun CC 5.0.
Thanks to Sush Bankapura <Sush.Bankapura@sylantro.com> for
reporting success with it.
Sun Feb 7 00:43:32 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR_Stream.cpp:
Turns out that read_boolean_array was declared, but
the body was missing (?).
Sat Feb 6 22:38:40 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ACE_wrappers/tests/CDR_Test.cpp:
Changed #include file name to ace/CDR_Stream.h (the new
source file name).
Sat Feb 6 22:21:14 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/CDR_Stream.h:
* ace/CDR_Stream.cpp:
Fixed the write_boolean_array() method; it only needs a const
array of booleans.
Sat Feb 6 22:07:45 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR.{h,i,cpp}: Renamed these as...
* ace/CDR_Stream.{h,i,cpp}: Mustn't have files with the
same name (the TAO files) for the sake of some compilers.
* Makefile:
* ace_dll.dsp:
Changed to reflect the renaming above.
Sat Feb 6 20:30:51 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/CDR.h:
* ace/CDR.i:
* ace/CDR.cpp:
Fixed some indentation and style problems.
Sat Feb 06 07:47:20 1999 David L. Levine <levine@cs.wustl.edu>
* tests/test_config.h (~ACE_Test_Output): wrapped use of
cerr with #ifndef ACE_LACKS_IOSTREAM_TOTALLY.
Sat Feb 06 02:41:07 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* tests/Map_Test.cpp: The hell of explicit template instantiation.
Someone please save me from these stupid compilers.
* ace/Map: Broken g++ (2.7) has deformed my beautiful code based
on typedefs and forced me to use their basic form. However,
users should continue to use the typedefs provided as I do in
the Map_Test.
Fri Feb 05 21:57:24 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Map_T: Added a new Map mini framework to ACE. The classes
in this mini framework allows the Map interface to be used
without caring about the specific Map implementation being used.
There is the class hierarchy of the framework:
forwards
ACE_Iterator --------> ACE_Iterator_Impl (abstract)
ACE_Iterator_Impl is subclassed by:
- ACE_Map_Impl_Iterator_Adapter<IMPLEMENTATION>
- ACE_Active_Map_Manager_Iterator_Adapter
- ACE_Hash_Map_Manager_Ex_Iterator_Adapter
- ACE_Map_Manager_Iterator_Adapter
forwards
ACE_Reverse_Iterator --------> ACE_Reverse_Iterator_Impl (abstract)
ACE_Reverse_Iterator_Impl is subclassed by:
- ACE_Map_Impl_Reverse_Iterator_Adapter<IMPLEMENTATION>
- ACE_Active_Map_Manager_Reverse_Iterator_Adapter
- ACE_Hash_Map_Manager_Ex_Reverse_Iterator_Adapter
- ACE_Map_Manager_Reverse_Iterator_Adapter
ACE_Map is subclassed by:
- ACE_Map_Impl<IMPLEMENTATION>
- ACE_Active_Map_Manager_Adapter
- ACE_Hash_Map_Manager_Ex_Adapter
- ACE_Map_Manager_Adapter
Also included in the framework is a Key Generator class and a
Key Adapter class. The Key Generator class is used by some map
adapters to generate keys since the maps they adapt do not
generate keys. The Key Adapter class is used by the active map
adapter to allow encoding and decoding of active keys into user
keys.
Note that the iterators use the bridge pattern while the map
class uses an abstract base class based inheritance approach.
The reason for this is that STL containers return the iterators
by value. An abstract base class cannot be returned by value.
An alternative design would be to add an abstract base class
that the ACE maps would derive from. Unfortunately, this would
break many things including the ability to add these maps to
shared memory and explicit template instantiations.
This mini framework would have been idle to apply the external
polymorphism pattern. However, the ACE map classes are
different enough that adaption was necessary. This turned out
to be a blessing in disguise since I was able to add extra
common functionality such as the key generator and key adapter
to the map adapters. I did add the external polymorphic
subclasses to the framework for future use.
The classes in this framework are as close STL containers as I
would dare to make them ;) Thanks to Carlos for helping design
them.
* tests/Map_Test: New test to illustrate and test the workings of
the new ACE Map classes. There are two aspect to this test:
(a) functionality testing includes testing the iterators and
various operations, and (b) performance testing to compare the
relative performance of the maps.
* ace/Pair: Added new Pair class to ACE that holds instances of
the template arguments. Also, added a Reference_Pair class that
only hold references of the template arguments.
* ace/Hash_Map_Manager_T.* (ACE_Hash_Map_Manager_Ex):
* ace/Map_Manager.* (Map_Manager):
Added new rebind() methods to make interface compatible with
other maps. Also, fixed the constness of some functions.
* ace/Hash_Map_Manager.h: Fixed order of inclusion of template
code.
* ace/Active_Map_Manager_T.h (ACE_Active_Map_Manager): Added new
versions of bind, find, and unbind to reduce the number of data
copies.
* ace/Active_Map_Manager.h (ACE_Active_Map_Manager_Key): Added the
ability for the active key to encode and decode into and out of
a data stream. This relieves the developer from concerning
herself about the internal structure of the active key.
* ace/config-win32-common.h: Define WIN32 if not already defined.
* tests/SString_Test.cpp: Added testing for substring creation and
comparisons.
* ace/OS.h (ACE_dynamic_cast_*_ptr and ACE_dynamic_cast_*_ref):
Added new macros to handle casting of template class.
* tests/test_config.h: Removed global KEY class that was not being
used anymore anyway.
Fri Feb 05 21:12:56 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.20 released.
Fri Feb 05 12:02:31 1999 Steve Huston <shuston@riverace.com>
* tests/run_tests.sh: Added SHLIB_PATH support for HP-UX. Fixed
the LD_LIBRARY_PATH setting to work if there was no path set
on entry to the script.
* ace/config-hpux-9.x.h, config-hpux-(10,11).x-hpc++.h:
Removed ACE_HAS_BROKEN_ENUMS. This affects the HP C++ compiler, not
aC++. I made this change based on David's experience with the
enums and Green Hills, below. If it causes any problems, let me
know and I'll reset it.
Fri Feb 05 10:11:18 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Log_Priority.h: changed ENSURE_32_BITS to LM_ENSURE_32_BITS,
and its value from 0xffffffff to 0x7fffffff. Green Hills 1.8.9
properly complained that 0xffffffff doesn't fit into an int.
* ace/config-sco-5.0.0-CC-fsu-pthread.h,config-sunos5.5.h,
config-vxworks5.x.h: removed ACE_HAS_BROKEN_ENUMS, because
it's not necessary with 0x7fffffff.
Thu Feb 4 23:11:26 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* websvcs/lib/URL_Addr.h:
* websvcs/lib/URL_Addr.i:
Added operator= to the ACE_URL_Addr classes.
* websvcs/lib/URL_Addr.cpp:
Fixed minor memory allocation problem for invalid HTTP
addresses.
It removes './' when creating relative addresses.
Wed Feb 03 21:50:09 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-vxworks5.x.h: added ACE_HAS_BROKEN_ENUMS with
Green Hills, because it's needed with 1.8.9. And, added
ACE_HAS_STANDARD_CPP_LIBRARY #define to 1, for Green Hills 1.8.9
(with __STANDARD_CXX #defined) only, because it doesn't work with
1.8.8. Thanks to Jacob Jones <Jacob.J.Jones@notesmta.gd-is.com> for
reporting these.
* ace/config-sunos5.5.h: with Green Hills 1.8.9 (with
__STANDARD_CXX #defined), added ACE_HAS_STANDARD_CPP_LIBRARY
#define to 1.
Wed Feb 03 14:57:21 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Thread_Manager.h (ACE_At_Thread_Exit[_Func]): Added
ACE_Export keywords. Thanks to Terry Rosenbaum
<Terry.Rosenbaum@Radiology.MSU.edu> for pointing this out.
* ace/Service_Config.{h,i,cpp}: Added one more argument to open
methods that allows ignoring the default svc.conf file. You can
still open svc.conf files using the -f option.
Wed Feb 03 10:12:14 1999 David L. Levine <levine@cs.wustl.edu>
* bin/make_release: fixed release_filter so that it doesn't put
CVS files into the release.
* ace/Object_Manager.h: updated comments to reflect that
ACE_HAS_NONSTATIC_OBJECT_MANAGER is now #defined in
several ace/config files, including that for Win32.
Thanks to Dave Meyer <dmeyer@std.saic.com> for pointing
that out.
Wed Feb 3 09:30:11 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* websvcs/lib/URL_Addr.cpp:
Fixed some memory leaks.
HTTP_Addr::create_relative_address supports the #label syntax.
Wed Feb 03 07:02:49 1999 David L. Levine <levine@cs.wustl.edu>
* tests/CDR_Test.cpp: commented out ACE_Auto_Basic_Array_Ptr<CDR:Char>
explicit instantiation, because it's in ace/Memory_Pool.cpp.
Tue Feb 2 21:35:21 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/007/client_handler.h:
* docs/tutorials/007/thread_pool.h:
A couple of syntax goofs. I'm surprised it compiled for anyone!
* docs/tutorials/007/thread_pool.h:
Changed ACE_Time_Value(0.25) to ACE_Time_Value(0,250000)
* docs/tutorials/*/Makefile:
Added '.depend' to the list of files removed by the CLEAN
target. I shoulda' done this the other day.
Tue Feb 2 20:02:22 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* bin/make_release: Added .gz to the list of binary file extensions.
Tue Feb 2 19:28:46 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* docs/tutorials: ACE-ified the first 11 tutorials. I hope
James still recognizes this stuff now ;-)
Tue Feb 2 19:12:50 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/001/logger.h (class Logging_Handler):
Incorporated Pradeep's suggestion to get rid of the memset() and
use the recv() return value to drop in the null-termination.
Tue Feb 2 14:19:30 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* websvcs/websvcs.dsw:
* websvcs/lib/websvcs.dsw:
* websvcs/lib/websvcs.dsp:
* websvcs/tests/tests.dsw:
* websvcs/tests/Test_URL_Addr.dsp:
Added MSVC project files for the websvcs library.
* websvcs/lib/URL_addr.cpp:
Now correctly exports classes in DLLs.
Tue Feb 2 12:48:34 1999 Jeff Parsons <parsons@cs.wustl.edu>
* tests/CDR_Test.cpp:
Changed the template type of the auto_ptr for char. We were
getting a Purify FMR message on Unix.
Tue Feb 2 12:27:13 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/ACE.cpp: Added an ACE_UNUSED_ARG for program_name for
ACE::daemonize(). Thanks to David Levine for reporting this.
* ace/OS.h: Generalized the WIF* macros so that they will be
defined on any platform that lacks them, not just NT. Thanks to
David Levine for reporting this.
Tue Feb 02 08:58:32 1999 Steve Huston <shuston@riverace.com>
* tests/MT_Reactor_Timer_Test.cpp: Moved definition of status outside
of ACE_HAS_THREADS condition since it's used in either case. Thanks
to Frederic Andres <andres@rd.nacsis.ac.jp> for this fix.
Mon Feb 01 23:16:34 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.19 released.
Mon Feb 01 22:06:40 1999 David L. Levine <levine@cs.wustl.edu>
* bin/make_release (create_kit): fixed typo, bin_files
instead of binfiles.
Mon Feb 01 21:24:45 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.18 released.
Mon Feb 1 21:02:26 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ace/ace_dll.dsp: Some template files were being compiled
in the Release/Unicode/Alpha configs. This is now not the
case.
Mon Feb 1 13:49:11 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/config-linux-common.h:
Added a definition for ACE_TIMER_SKEW, apparently it is only
needed in multiple CPU machines (with SMP enabled); but it did
solve the problems with MT_Reactor_Timer_Test.
Mon Feb 01 13:08:11 1999 Jeff Parsons <parsons@cs.wustl.edu>
* tests/CDR_Test.cpp:
Used an auto_ptr to manage a string sent to string_read(). I
had included the .h file for auto ptrs (Carlos corrected my
typo, see below), but had never checked in the code using
auto_ptr.
Mon Feb 01 12:54:11 1999 Steve Huston <shuston@riverace.com>
* ace/NT_Service.(h i): Some fixes provided by Martin Krumpolec
<krumpo@pobox.sk> - thanks to Martin for these!
- Supplied missing ctor for name/desc variant.
- svc() method is not pure virtual any longer to prevent SCP-type
applications from having to override it and never use it.
Mon Feb 1 12:04:35 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* bin/make_release: Added zip and gif to the binary files in
zips.
Mon Feb 01 12:00:55 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.5.h: With CC 5.0, enabled explicit template
instantiation and added ACE_LACKS_ACE_IOSTREAM. Early versions
of CC 5.0 seem to have problems with automatic template
instantiation and ACE_IOStream.
* include/makeinclude/platform_sunos5_sunc++.GNU: added CC 5.0
support to enable explicit template instantiation, and disable
inlining by default.
Thanks to Diethard Ohrt <Diethard.Ohrt@siemens.at> for confirming
that above fixes allow ACE and TAO to build with CC 5.0.
* include/makeinclude/platform_sunos5_{g++,ghs}.GNU: removed -lw
from libs. It's not necessary, and apparently causes problems
on Solaris 2.6, because libc now includes the code that was
formerly in libw. Thanks to Steve Coleman <Steve.Coleman@jhuapl.edu>
for reporting this.
Mon Feb 1 10:41:09 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* tests/CDR_Test.cpp:
There was a typo in a included filename.
Mon Feb 1 08:39:15 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Synch.h: Clarified that the ACE_Semaphore::acquire() is in
absolute, rather than relative, time. Thanks to Jacques
Salerian <Jacques.Salerian@era.ericsson.se> for reporting this.
Sun Jan 31 20:10:23 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/OS.h:
Just renamed the CDR byte order macros to something more
reasonable.
Sun Jan 31 18:19:45 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* docs/tutorials/Makefile: Now we can build the UNSHAR SHAR HTML
right from the top-level. Thanks James!
* tests/Process_Strategy_Test: Updated the test to use ACE::fork()
and the new "avoid zombies" feature of ACE_Process_Strategy.
* ace/ACE: Added a new version of fork() that can avoid creating
zombies. Thanks to Garry Brother <gmbroth@romulus.ncsc.mil> for
this code.
* ace/Strategies_T: Changed the ACE_Process_Strategy so that
programmers can designate to not create zombies. Thanks to
Garry Brother <gmbroth@romulus.ncsc.mil> for this suggestion.
* ace/ACE.cpp (daemonize): Only do a chdir if pathname != 0.
* ace/ACE: Added a "program_name" argument to daemonize() so that
we can set the program name.
* docs/tutorials: Reformatted all the header files to conform
to the ACE programming style.
Sun Jan 31 16:09:55 1999 Jeff Parswons >parsons@cs.wustl.edu>
* ACE_wrappers/tests/CDR_Test.cpp:
Plugged a memory leak in a string read from the CDR stream.
Thanks to Sangwoo Jin <swjinjin@sei.co.kr> for pointing this out.
* ace/CDR.{h,i,cpp}:
Changed the name of the "base" class holding the constants to
'CDR' from 'ACE_CDR'. In leveraging this code in the TAO cdr
classes, I've discovered that there are many files that
use these constants, so probably best to keep the original
name. Also made minor changes to read_string, read_wstring,
append_string and append_wstring to prevent a memeory leak
if the operation fails.
Sun Jan 31 11:58:32 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/{010|011|012|013|017}:
In all of these, I'd overridden open() as open(int) to specify
the number of threads in a thread-pool. Steve Huston pointed
out that this causes grief with some compilers. I've changed
all of these open(int) overrides to start(int) instead.
* docs/tutorials/017/Barrier_i.cpp (threads):
The thr_equal() call was changed to !thr_equal().
* docs/tutorials/010/taks.cpp:
Vishal recommended some extra commentation to make things a bit
more clear WRT barrier synch.
* docs/tutorials/013/page01.html:
Added Kirthika's abstract.
Sat Jan 30 16:03:23 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* websvcs/lib/URL_Addr.h:
* websvcs/lib/URL_Addr.cpp:
The HTTP address class can create an URL_Addr from a path
relative to it. This is useful when interpreting an address
inside an HTML document.
Sat Jan 30 13:34:00 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* examples/Connection/non_blocking/test_sock_connector.cpp (main):
Prevent the program from executing if compiled on non-NT Win32
platform without Winsock2 installed. Thanks to Greg Harrison
<harrisog@erinet.com> for reporting ths problem.
1999-01-29 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Mem_Map.cpp (map_it): NT makes no claims about replacing
previous mapping at the specified address. Therefore, I have
added a new macro ACE_LACKS_AUTO_MMAP_REPLACEMENT which is
defined if there is no system support for replacing any previous
mappings. In this case, we unmap() before (potentially) mapping
to the same location. ACE_LACKS_AUTO_MMAP_REPLACEMENT is
defined on NT.
Fri Jan 29 17:40:34 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* websvcs/lib/URL_Addr.h:
* websvcs/lib/URL_Addr.cpp:
We were not checking against nil strings in several places, also
fixed some uninitialized members in the HTTP_Addr constructors.
* bin/auto_compile:
Added protection against simultaneous executions of the script;
it checks for .disable file on the $LOGDIR directory, if present
it does not execute; if not present it creates one; the file is
deleted at program termination.
Fri Jan 29 16:25:22 1999 Steve Huston <shuston@riverace.com>
* ace/config-hpux-10.x-hpc++.h: Added ACE_HAS_GPERF.
* apps/gperf/src/List_Node.cpp (ctor): Added ACE_const_cast to
a char * initializer.
* apps/gperf/src/Options.cpp: Fixed -j processing (typo).
* docs/tutorials/017/barrier.cpp: Can't init a long with a thread ID.
On HP-UX 10.20, it's a struct.
* docs/tutorials/017/Barrier_i.cpp: Use ACE_OS::thr_equal to check
equality of thread IDs.
* docs/tutorials/019/server/cpp: Removed redefinition of char *s from
'for' loop. Works around a compiler issue, but isn't needed anyway.
* include/makeinclude/platform_hpux_aCC.GNU: On HP-UX 10.20, suppress
(future)error 667 and warning 495 to stop hearing about the problems
with the system-supplied header files. The compiler still says
there was 1 future error, but at least it's easy to scan the output
for real errors now.
Fri Jan 29 14:49:37 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/ACE.cpp:
* ace/Basic_Types.h:
* ace/INET_Addr.cpp:
* ace/Memory_Pool.cpp:
* ace/OS.cpp:
* ace/OS.h:
* ace/OS.i:
* ace/SOCK_Dgram_Bcast.cpp:
* ace/config-cray.h:
* examples/IPC_SAP/SOCK_SAP/C-inserver.cpp:
* examples/System_V_IPC/SV_Semaphores/Semaphores_1.cpp:
* examples/System_V_IPC/SV_Semaphores/Semaphores_2.cpp:
* include/makeinclude/platform_cray.GNU:
* tests/Basic_Types_Test.cpp:
* tests/Handle_Set_Test.cpp:
* tests/Message_Queue_Test.cpp:
* tests/SV_Shared_Memory_Test.cpp:
* tests/run_tests.sh:
Thanks to Doug Anderson <doug@clark.net> for this port of ACE to
Cray machines.
Fri Jan 29 13:51:40 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h: Removed definition of ACE_Thread_State.
* ace/Thread_Manager.*: Changed the ACE_Thread_State as a bunch of
bit-masks so we don't overwrite the thread states accidentally.
Thanks to Tom Dobridge <dobridge@persimmon.com> for reporting
the bug.
1999-01-28 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Hash_Map_Manager_T.cpp (open): this->close_i() must be
called *before* the allocators are changed.
* ace/Map_Manager.cpp (open): Close the old map (if any) before
creating the new map. This also make open() reentrant. Thanks
to Zoran Ivanovic <zorani@pathcom.com> for reporting this bug.
Thu Jan 28 19:08:25 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Active_Map_Manager_T.h:
Steve's change didn't make it, so I changed BASE to
ACE_AMM_BASE, I don't know about the pragma.
Thu Jan 28 16:43:17 1999 Steve Huston <shuston@riverace.com>
* ace/Active_Map_Manager_T.(h i): Renamed BASE to ACE_AMM_BASE - BASE
conflicted with something in AIX xlC. Also fixed #pragma
implementatation to work on xlC.
Thu Jan 28 10:04:39 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Hash_Map_Manager_T.cpp:
Reverted to version 4.2, thanks to Kirthika for helping find
this one.
Thu Jan 28 09:11:29 1999 Andreas Tobler <toa@pop.agri.ch>
* ace/config-linuxppcr5.h: added this config file, for
LinuxPPC R5 platforms.
Thu Jan 28 08:55:21 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-mklinux.h: replaced ACE_HAS_SOCKLEN_T, removed
__USE_XOPEN. Thanks to Andreas Tobler <toa@pop.agri.ch> for
these clarifying this.
Wed Jan 27 19:12:48 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/008/*:
* docs/tutorials/009/*:
* docs/tutorials/011/*:
* docs/tutorials/012/*:
Updates from the reviewers.
Wed Jan 27 17:06:38 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Makefile: removed some unprintable characters.
Wed Jan 27 16:31:01 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/Makefile: Added LOCK_SOCK_Acceptor to TEMPLATE_FILES list.
Wed Jan 27 14:50:13 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* examples/Service_Configurator/Misc/main.cpp: Changed to open the
Service_Config object with ignore_static_svc set to 0. That
allows this example to use static service. (By default, static
services are not loaded.) Thanks to Arturo Montes
<mitosys@colomsat.com.co> for reporting this.
Wed Jan 27 13:47:00 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_vxworks5.x_g++.GNU: use
double double quotes around COMPILE argument to ace_ld,
but only on WIN32 hosts. Thanks to Peter Weat <weatp@syntron.com>
for figuring this out.
Wed Jan 27 13:04:55 1999 David L. Levine <levine@cs.wustl.edu>
* ACE version 4.6.17 released.
Wed Jan 27 12:32:22 1999 David L. Levine <levine@cs.wustl.edu>
* ACE-INSTALL.html,include/makeinclude/platform_vxworks5.x_g++.GNU:
default PERL_PATH to "perl", and added notes to set it to the full
perl path if perl is not on your path.
Wed Jan 27 10:16:06 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* docs/ACE-guidelines.html:
Added an entry for the creation of files containing template
code.
Tue Jan 26 20:44:36 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/SOCK_IO.cpp (send,recv): Changed to use sendv/recvv to
handle variable arguments send/recv.
* ACE-INSTALL.html: Fixed the dead link to CE-status. Thanks to
Mike Preradovic <michael_preradovic@epicdata.com> for reporting
this.
Tue Jan 26 14:38:11 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_vxworks5.x_g++.GNU: expanded
the information on the PERL_PATH environment variable for
NT hosts. Thanks to Peter Weat <weatp@syntron.com> for
reporting this.
Tue Jan 26 13:40:51 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/High_Res_Timer.cpp (elapsed_time_incr): Rearranged the
formula to avoid compilation errors for platforms without
ULONGLONG. Thanks to David for the tip.
Tue Jan 26 12:01:19 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ACE_wrappers/tests/CDR_Test.dsp:
* ACE_wrappers/tests/CDR_Test.cpp:
Added lines to the test code to send the output to
the log file, and deleted the unnecessary Header
Files folder in the project.
* ace/CDR.{i,cpp}:
Relocated the longdouble comparison operators'
definitions, and moved a misplaced '}', which
were causing build errors.
Tue Jan 26 10:55:02 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/Active_Map_Manager.h:
The _T.h file has to be included *after* the inclusion of the .i
file, otherwise the template may not see the inline functions;
the problem only showed up on IRIX.
Mon Jan 25 22:11:36 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ACE_wrappers/tests/CDR_Test.dsp:
* ACE_wrappers/tests/tests.dsw:
* ACE_wrappers/tests/versions_tests/CDR_Test.dsp:
* ACE_wrappers/tests/versions_tests/version_tests.dsw:
* ACE_wrappers/tests/run_tests.sh:
* ACE_wrappers/tests/run_tests.psosim:
* ACE_wrappers/tests/run_tests.bat:
* ACE_wrappers/tests/run_tests.vxworks:
Fixed the project files (they had incorrrect project
settings, I think) and updated the workspace files.
Also, on a tip from Nanbor, added CDR_Test to the
various run_tests files.
Mon Jan 25 20:22:01 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR.{h,i,cpp}:
* ace/Basic_Types.h:
* ACE_Wrappers/tests/CDR_Test.cpp:
Better design of ACE CDR, compiles and runs on NT, g++
and CC.
Mon Jan 25 09:35:42 1999 Steve Huston <shuston@riverace.com>
* ace/ACE.cpp (handle_timed_complete): If connect times out, set
errno to ETIMEDOUT, not ETIME. Matches what will happen if a
simple blocking connect times out.
* ace/OS.i (ACE_OS::accept, ACE_OS::recv): (only non-Win32), if
call fails and errno is EAGAIN, change it to EWOULDBLOCK.
* tests/MT_SOCK_Test.cpp: Remove EAGAIN hacks; above changes fix
this for all programs.
Sun Jan 24 22:04:42 1999 David L. Levine <levine@cs.wustl.edu>
* docs/ACE-guidelines.html: added operator==/!= guideline.
Sun Jan 24 20:25:44 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace: When a class provides operator==, it must also provide
operator!=. Also, both these operators should be const.
Fixed the above violations in:
ACE_TSS_Ref
ACE_Thread_ID
ACE_Registry::Binding
ACE_Registry::Name_Component
ACE_Active_Map_Manager_Key
* ace/Map_Manager: Renamed methods that may become identical if
INT_ID is the same as size_t. Thanks to Ossama for helping with
this.
Sun Jan 24 19:46:55 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR.{h,i,cpp}:
* ace/Basic_Types.h:
Made some fixes to make DEC cxx happy, but I'm going to
undo many of the typedefs and change the design. These
changes will hopefully lead to a clean build with cxx,
but the CDR classes are not yet in finished form.
Sun Jan 24 19:26:34 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/SString.cpp (set): Fixed usage case of when the incoming
string is not zero but the length specified is zero.
* tests/SString_Test.cpp (main): Added zero sized strings and
single character strings to the test.
Sun Jan 24 19:09:45 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/config-win32-common.h
(ACE_HAS_WORKING_EXPLICIT_TEMPLATE_DESTRUCTOR): VC apparently
does it right.
Sun Jan 24 17:22:02 1999 Ossama Othman <othman@cs.wustl.edu>
* ace/SString.cpp (substring): the variable "length" was misspelled
on one of the lines in the method.
Sun Jan 24 16:17:58 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/README:
* ace/OS.h:
* ace/config-g++-common.h:
* ace/config-osf1-4.0.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h: Replace ACE_HAS_BROKEN_EXPLICIT_DESTRUCTOR
with ACE_HAS_WORKING_EXPLITCIT_TEMPLATE_DESTRUCTOR to reflect
the true problem. Thanks to Ossama for suggesting the name.
Sun Jan 24 16:20:17 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/ACE-FMM:
Added an entry about the DONT_CALL flag to remove_handler().
* docs/tutorials/00[45789]:
* docs/tutorials/01[012]:
Many changes from Yamuna, Pradeep, Kirthika and Ossama. In all,
there were 62 files changed. Mostly the .html's due to
recombination and colorization.
Sun Jan 24 14:23:07 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/SString.cpp: The substring() method did not check for zero
length. Thanks to Mike Goldman for this fix.
Sun Jan 24 02:08:57 1999 Carlos O'Ryan <coryan@cs.wus...tl.edu>
* websvcs/lib/URL_Addr.cpp:
* websvcs/lib/URL_Addr.h:
* websvcs/lib/URL_Addr.i:
* websvcs/tests/Test_URL_Addr.cpp:
Added support for mailto: URLs
Sat Jan 23 23:53:29 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* websvcs/Makefile:
* websvcs/lib/Makefile:
* websvcs/lib/URL_Addr.h:
* websvcs/lib/URL_Addr.i:
* websvcs/lib/URL_Addr.cpp:
* websvcs/tests/Makefile:
* websvcs/tests/Test_URL_Addr.cpp:
Added a small library to keep basic Web related wrappers. The
first set is a small collection of URL address classes,
including HTTP and FTP representations.
Sat Jan 23 23:26:17 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/High_Res_Timer.{h,cpp} (elapsed_time_incr): Added a new
function to access the incremental timer in nanosecond.
Sat Jan 23 23:08:27 1999 Jeff Parsons <parsons@cs.wustl.edu>
* ace/CDR.{h,i,cpp}:
Caught numerous inline ordering errors and mistakes in
long double functions (not defined on NT) with g++.
Sat Jan 23 21:13:47 1999 Jeff Parsons <jp4@cs.wustl.edu>
* tests/tests.dsw:
* tests/CDR_Test.dsp:
* tests/Makefile:
* tests/CDR_Test.cpp:
New test in the suite for the new ACE CDR classes (see below).
* TAO/TAOACE.dsw:
* TAO/TAOACE_static.dsw:
* ace/Makefile:
* ace/CDR.{h,i,cpp}:
* ace/OS.h:
* ace/Basic_Types.h:
CDR stuff modified from TAO library. Typedefs, default
constants and macros added to OS.h and Basic_Types.h.
There is now complete CDR functionality in ACE, except
for the interpreter, and thus also no handling of Any
or TypeCode types.
Sat Jan 23 17:50:22 1999 Steve Huston <shuston@riverace.com>
* tests/MT_SOCK_Test.cpp: 1. Check for EAGAIN as well as EWOULDBLOCK
after an accept fail (this change will probably be removed at some
point when we figure out how to handle EAGAIN/EWOULDBLOCK).
2. Close the ACE_SOCK_Acceptor in the server before going into
the "reap children" loop so any half-connected clients will get
closed.
Sat Jan 23 17:25:48 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* ace/Hash_Map_Manager_T.{h,cpp}: Reverted changes made since the
ACE_Hash_Map_Manager_Ex was getting used in shared memory and
hence could not have "virtual" methods.
Sat Jan 23 04:53:12 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Active_Map_Manager: Added a new associative container (map
abstraction) that associates system generated keys with user
specified values. Since the key is system generated, searches
are very fast and take a constant amount of time. This map uses
a key that keeps information of the index and the generation
count of the slot it represents. Since the index information is
part of the key, lookups are super fast and predictable.
This performance of this map is truely awesome:
- inserts O(1) worse case
- lookups O(1) worse case
- deletes O(1) worse case
* ace/Map_Manager: Completely reworked the internals of the
Map_Manager. A number of problems were addressed:
(a) Finding an empty slot took O(n). New code takes O(1).
(b) Resizing was lame as it increased by ACE_DEFAULT_MAP_SIZE
everytime. The new scheme is cool since it grows
exponentially up to 64K and after that grow in chunks of
32K.
(c) Old scheme used a simple but inefficient <is_free_> flag.
The new scheme uses two doubly linked list to track used and
free slots. Note that this scheme still uses an array to
manage the search structure but manages the two linked list
on top of the array. Thanks to Carlos for this cool idea.
(d) current_size() was broken. This is fixed in the new code.
(e) Inlined a bunch of small functions.
* tests/SString_Test.cpp: Added empty string test.
* ace/Containers_T.h (operator=): ACE_Array_Base must be fully
qualified: ACE_Array_Base<T>. Thanks to Susan Liebeskind
<shl@janis.gtri.gatech.edu> for pointing this out.
* tests/Map_Manager_Test.cpp (test_map_manager): Added
Active_Map_Manager to the test.
Fri Jan 22 21:27:14 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* ace/Hash_Map_Manager_T.h
(class ACE_Hash_Map_Entry): Modified the destructor to be
"virtual" so that it gets invoked on the destruction of its
derived class objects.
(class ACE_Hash_Map_Manager_Ex): Modified the destructor to be
"virtual" so that it gets invoked on the destruction of its
derived class objects.
Modified shared_find () to be "virtual" so that it can be
defined in its derived classes.
Declared a virtual method for creating new entries for the map
called create_entry ().
* ace/Hash_Map_Manager_T.cpp
(create_entry): Added this virtual method which creates a new
map entry. This is necessary to allow the map to contain various
types of map entries.
(bind_i):
(trybind_i):
(unbind_i):
Used create_entry () to obtain a new entry object.
* ace/Hash_Purgable_Map_Manager_T.{h,i,cpp}:
The ACE_Hash_Purgable_Map_Manager_Ex derives from
ACE_Hash_Map_Manager_Ex and provides the feature of purging
K entries from the map. The default purging algorithm is Least
Recently Used, which has been implemented using a virtual timer
that increments whenever an entry is looked up or used. Each
entry has a purge_tag which is the timestamp updated by the
timer value whenever it is referenced. The entry is an object of
ACE_Hash_Purgable_Map_Entry class which is derived from
ACE_Hash_Map_Entry.
(purge): This is the method which flushes K entries from the
map. Locks are held.
(purge_i): This method also flushes K entries but w.o. locks
being held.
(create_entry): Creates an ACE_Hash_Purgable_Map_Entry object.
(shared_find): This method is used to lookup and verify whether
an entry is present in the map. Also, the purge_tag of the entry
is updated with the current timer value.
* tests/Purgable_Map_Manager.cpp: Added this test which
illustrates the use of the Hash_Purgable_Map_Manager to maintain
a cache map. Also displays the change in the map size on
purging.
Fri Jan 22 16:10:35 1999 Steve Huston <shuston@riverace.com>
* ace/Select_Reactor_Base.cpp (ACE_Select_Reactor_Notify::handle_input)
EAGAIN is also a legit errno value (not only EWOULDBLOCK) for end
of data on pipe. Makes count of dispatches returned from
ACE_Select_Reactor's handle_events correct in the presence of
notifications.
* ace/OS.i (ACE_OS::sema_init): Always init s->name_ to 0, else it
might be non-zero (and junk) when deleted.
* ace/config-hpux11.h: Added an overrideable ACE_TIMER_SKEW of 10 msec.
Fri Jan 22 15:07:08 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Containers_T.cpp: Yikes, don't delete the fixed stack since
it wasn't allocated dynamically! Thanks to Mike Goldman
<whig@by.net> for this fix!
Fri Jan 22 13:08:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/ACE.{cpp, h}: added static methods ACE::gcd, which computes the
greatest common divisor of two u_longs using Euclid's algorithm, and
ACE::minimum_frame size, which computes the minimum enclosing frame
size for two u_longs.
Thu Jan 21 20:45:09 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/006/client_acceptor.h
* docs/tutorials/006/client_handler.cpp
* docs/tutorials/006/client_handler.h
* docs/tutorials/006/page01.html
* docs/tutorials/006/page02.html
* docs/tutorials/006/page03.html
* docs/tutorials/006/page04.html
* docs/tutorials/006/page05.html
Integrated changes from Vishal and Kirthika
* docs/tutorials/008/combine.shar
* docs/tutorials/008/page02.html
* docs/tutorials/008/page03.html
* docs/tutorials/008/page04.html
* docs/tutorials/009/combine.shar
* docs/tutorials/009/directed_client.cpp
* docs/tutorials/009/page01.html
* docs/tutorials/009/page02.html
* docs/tutorials/009/page03.html
* docs/tutorials/009/page04.html
* docs/tutorials/009/page05.html
* docs/tutorials/009/server.cpp
Changes from Kirthika plus colorization.
Thu Jan 21 16:01:50 1999 James CE Johnson <jcej@lads.com>
* docs/tutorials/007/Makefile:
* docs/tutorials/007/combine.shar:
* docs/tutorials/007/page01.html:
* docs/tutorials/007/page02.html:
* docs/tutorials/007/page03.html:
* docs/tutorials/007/page04.html:
* docs/tutorials/007/page05.html:
* docs/tutorials/007/page06.html:
* docs/tutorials/007/page07.html:
* docs/tutorials/007/page08.html:
* docs/tutorials/007/page09.html:
* docs/tutorials/007/thread_pool.cpp:
* docs/tutorials/008/Makefile:
* docs/tutorials/008/combine.shar:
* docs/tutorials/008/directed_client.cpp:
* docs/tutorials/008/page01.html:
* docs/tutorials/008/page02.html:
* docs/tutorials/008/page03.html:
* docs/tutorials/008/page04.html:
* docs/tutorials/008/page05.html:
* docs/tutorials/008/server.cpp:
* docs/tutorials/009/Makefile:
Included Kirthika's abstract.
Colorized both tutorials & convereted to new format.
Thu Jan 21 14:25:58 1999 David L. Levine <levine@cs.wustl.edu>
* ace/SString.h: changed !ACE_HAS_WINCE wrap of ostream
operators to !ACE_LACKS_IOSTREAM_TOTALLY.
* ace/OS.i (getuid): added static cast of -1 to uid_t on
Chorus, to avoid compiler warning about change in sign.
* ace/OS.h: moved (protected) MAXHOSTNAMELEN #define from
pSOS and NT-only code to where its visible on all platforms.
When we removed the #include of rpc.h, we lost the
#define of MAXHOSTNAMELEN on Chorus.
Thu Jan 21 15:19:26 1999 James CE Johnson <jcej@lads.com>
* docs/tutorials/001/Makefile:
* docs/tutorials/001/page01.html:
* docs/tutorials/001/page02.html:
* docs/tutorials/001/page03.html:
* docs/tutorials/001/page04.html:
* docs/tutorials/001/page05.html:
* docs/tutorials/005/client_handler.cpp:
* docs/tutorials/005/page02.html:
* docs/tutorials/005/page03.html:
* docs/tutorials/005/page04.html:
* docs/tutorials/005/page05.html:
* docs/tutorials/005/page06.html:
* docs/tutorials/006/client_handler.cpp:
* docs/tutorials/006/page01.html:
* docs/tutorials/006/page02.html:
* docs/tutorials/006/page03.html:
* docs/tutorials/006/page04.html:
* docs/tutorials/006/page05.html:
Incorporated new comments from Vishal, Yamuna and Pradeep.
Thu Jan 21 13:05:31 1999 Steve Huston <shuston@riverace.com>
* docs/tutorials/Makefile: Removed include .depend to allow the
whole set of tutorials to be built from the top. Thanks to James
Johnson for guiding this fix.
Wed Jan 20 19:47:16 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.{h,i,cpp} (fopen): Reimplement fopen using Win32 APIs so
ACE_OS::unlink behaves the same as it does on UNIX platforms.
Both ACE_OS::open and ACE_OS::fopen have been corrected.
There's also a ACE::open_temp_file which should be the prefered
method to open temp files when ACE_HANDLE is used. That's
because Win32 tries to map the file opened by
ACE::open_temp_file to memory.
* ace/Parse_Node.cpp (symbol): <func> need to be initialized.
Thanks to David for reporting the bug.
Wed Jan 20 17:37:21 1999 Steve Huston <shuston@riverace.com>
* ace/Log_Msg.h: Added "do {} while (0)" as defs for ACE_HEX_DUMP,
ACE_ERROR, ACE_DEBUG when ACE_NLOGGING is defined. Having null defs
for these caused MSVC some problems. Thanks to Doug Schmidt for
giving (and explaining) the correct definitions.
Wed Jan 20 13:38:03 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.i (readdir_r): added ACE_UNUSED_ARG (entry)
without ACE_HAS_REENTRANT_FUNCTIONS.
* docs/ACE-guidelines.html: added guideline for calling
ACE_OS::unlink () immediately after opening a temporary file.
* *.h: replaced () around #pragma implementation argument. Thanks
to Susan Liebeskind <susan.liebeskind@gtri.gatech.edu> and
Steve Huston for reporting and confirming that it's necessary
on AIX.
Wed Jan 20 01:48:21 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Parse_Node.cpp (symbol): Remembered to pass down the
"gobbler" in a Static_Function_Node. Thanks to Eric C. Newton
<ecn@smart.net> for reporting and providing the fix.
Tue Jan 19 17:52:49 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/SString.h: Clarified the role of the <release> argument for
the <set> method. Thanks to Sudhanshu Garg
<sg2@ladybug.cec.wustl.edu> for suggesting this.
Tue Jan 19 16:15:26 1999 David L. Levine <levine@cs.wustl.edu>
* OS.i,README,config-cygwin32-common.h,config-linux-common.h,
config-psos-diab.h,config-psos-tm.h,config-psosim-g++.h,
config-sco-5.0.0-mit-pthread.h,config-sco-5.0.0.h,
config-tandem.h: removed removed include of rpc/rpc.h, and
ACE_LACKS_RPC_H. Thanks to Susan Liebeskind
<susan.liebeskind@gtri.gatech.edu> for initially suggesting this,
and to Russ Noseworthy for reporting another problem (on
SunOS 5.6 w/o threads) with it. ACE doesn't need it.
* bin/g++dep: removed /project/doc/pkg/gnu/bin from PATH so that
I can run make depend on Linux.
Tue Jan 19 12:14:09 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* Makefile (CONTROLLED_FILES): Added ChangeLog-98b to the
CONTROLLED_FILES macro. Thanks to Susan Liebeskind
<susan.liebeskind@gtri.gatech.edu> for suggesting this.
Tue Jan 19 10:24:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* apps/JAWS/PROTOTYPE/HTTPU/HTTPU.{dsp, dsw}: converted to MSVC++ 6.0
(and backward compatible) format.
* apps/JAWS/PROTOTYPE/HTTPU/http_headers.{cpp, h}: fixed ACE_RB_Tree
templates, template instantiations. Thanks to Sridhar Sabella
(ssabbella@cemax.com) for pointing this out.
Tue Jan 19 00:42:44 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* examples/Log_Msg/test_callback.cpp (log): Removed the use of
cerr and used ACE_OS::printf() instead.
* ace/Log_Record.cpp (print): Fixed comparison between signed and
unsigned. Thanks to David Levine for pointing this out.
Mon Jan 18 23:55:03 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
* ACE-INSTALL.html: Added more info on Alpha configuration
problems and fixes.
Mon Jan 18 23:07:38 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.cpp (open): Files opened with CreateFileA (on Win32 of
course,) are now opened with FILE_SHARE_DELETE flag set. This
allows ACE_OS::unlink to work as it should. However, I haven't
figured out how to make unlink work with file opened with fopen
yet. Apparently, fopen does not open file with
FILE_SHARE_DELETE.
Mon Jan 18 22:54:18 1999 Darrell Brunsch <brunsch@cs.w...ustl.edu>
* ace/ace_dll.dsp:
* ace/ace_lib.dsp:
Updated NT Alpha configurations.
* apps/gperf/src/gperf.dsp:
* apps/gperf/src/gperf_lib.dsp:
Added NT Alpha configurations.
Mon Jan 18 22:14:00 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/011/message_queue.cpp:
* docs/tutorials/011/page02.html:
ACE_Message_Block::copy() will advance the wr_ptr() for us.
Previously, I was doing that myself in run_test(). The test only
worked because I never wrote data to the block after that. If I
had, things would have broken horribly.
Mon Jan 18 20:41:48 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Message_Block.h: Clarified that the wr_ptr() is incremented
by n as a result of the copy operation. Thanks to Zoran
Ivanovic <zorani@pathcom.com> for suggesting this.
* ace/INET_Addr.h (ACE_INET_Addr): Changed the default for
ipaddr_format to 1 (which is what it had been originally) rather
than 0 since the original way is faster since it doesn't use
DNS. Thanks to Zoran Ivanovic <zorani@pathcom.com> for finding
this.
Mon Jan 18 20:31:47 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/006/client_handler.cpp:
Typo...
* docs/tutorials/006/*.html:
* docs/tutorials/006/combine.shar:
Colorized, added Kirthika's abstract.
Mon Jan 18 16:19:56 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.cpp (open): If a file is open with _O_TEMPORARY flag set
on Win32, we also set the FILE_ATTRIBUTE_TEMPORARY so OS will
try to cache it in memory to speed up access.
* ace/ACE.cpp (open_temp_file): On Win32, temporary file should be
opened with _O_TEMPORARY flag set, not FILE_DELETE_ON_CLOSE.
* include/makeinclude/wrapper_macros.GNU: My previous fix of
avoiding multiple definition of ACE_NDEBUG was not correct. Now
the macro check where should the definition go to. Thanks to
David for showing me the right way to do this.
Mon Jan 18 11:23:06 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* include/makeinclude/platform_irix6.x-sgic++.GNU:
Added the -multigot flag when building shared libraries,
otherwise TAO/orbsvcs is too big.
Mon Jan 18 09:54:54 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.5.h: moved ACE_HAS_PRIOCNTL #define so
that it's defined even without threads. Thanks to
Russ Noseworthy for reporting this.
* ace/OS.cpp (lwp_getparams): removed ACE_MT_SAFE check
that Doug added Saturday. It's not necessary with the
above fix to config-sunos5.5.h.
* examples/Log_Msg/test_ostream.cpp: don't try to create the
ofstream if ACE_LACKS_IOSTREAM_TOTALLY. Also, removed
declarations of unused argc/argv arguments because some
g++ versions complain about them.
Mon Jan 18 08:17:49 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/SOCK_IO.cpp,
ace/SOCK_Dgram.cpp: Added
ACE_UNUSED_ARG (timeout);
to the #else part of the recv (iovec *) methods. Thanks to Mike
Goldman for reporting this.
Mon Jan 18 01:13:57 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CORBA_macros.h: ACE_TRY_NEW_ENV also needs to define a new
CORBA::Environment even with native exceptions. Mark exception
caught by ACE_CATCH as unused arg to avoid compilation warnings.
Mon Jan 18 00:12:13 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.16 released.
Sun Jan 17 16:40:22 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* tests/Reactor_Exceptions_Test.cpp (main): Changed the LM_INFO
message to indicate that C++ exception support isn't ENABLED on
a platform, rather than saying that it's not supported at all...
Sun Jan 17 15:16:35 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/SString.cpp (operator<<): The operator<< used to print out
ACE_WString caused an infinite loop on platform without UNICODE
defined because we didn't convert the wide string on these
platform. However, since an ACE_WString always contains a wide
string, the conversion from wide string to char string should
always be done here. Thanks to Scott Snyder
<snyder@d0sgif.fnal.gov> for noticing this bug.
(operator<<): Changed the ACE_SString and ACE_CString version to
check against the case when the internal <rep_> contains 0.
The ACE_CString version was printing out the string one char a
time. Can't see any reason why this is done like this. Changed
to print out the underlying <rep_> directly.
Sun Jan 17 14:42:39 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/001/*:
* docs/tutorials/002/*:
* docs/tutorials/003/*:
* docs/tutorials/004/*:
* docs/tutorials/005/*:
Converted to the new (colorized) format used by T13 and beyond.
I will convert the remaining tutorials (6-12) as each is reviewed.
* docs/tutorials/005/fix.Makefile:
* docs/tutorials/006/fix.Makefile:
* docs/tutorials/007/fix.Makefile: Replaced by ../fix.Makefile.
* docs/tutorials/010/Makefile:
* docs/tutorials/011/Makefile:
* docs/tutorials/012/Makefile:
* docs/tutorials/013/Makefile:
* docs/tutorials/014/Makefile:
* docs/tutorials/016/Makefile:
* docs/tutorials/017/Makefile:
These all referenced ../007/fix.Makefile. They now reference
../fix.Makefile instead.
Sun Jan 17 13:50:16 1999 James CE Johnson <jcej@chiroptera.tragus.org>
* docs/tutorials/002/handler.h:
* docs/tutorials/002/handler.h:
* docs/tutorials/002/page03.html:
* docs/tutorials/003/client.cpp:
* docs/tutorials/003/page01.html:
* docs/tutorials/004/page01.html:
* docs/tutorials/005/client_handler.h:
* docs/tutorials/005/page02.html:
* docs/tutorials/005/page04.html:
* docs/tutorials/005/page05.html:
* docs/tutorials/005/server.cpp:
More improvements from Doug's class (and Ossama). Each "page2"
includes an abstract by Kirthika.
Reviewers to date:
Yamuna Krishnamurthy <yamuna@cs.wustl.edu>
Kirthika Parameswaran <kirthika@cs.wustl.edu>
Balachandran Natarajan <bala@cs.wustl.edu>
Pradeep Gore <pradeep@cs.wustl.edu>
Ossama Othman <othman@cs.wustl.edu>
Sat Jan 16 19:08:12 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/High_Res_Timer.cpp: Added #ifdef so high-res timers work
correctly on KCC. Thanks to Scott Snyder
<snyder@d0sgif.fnal.gov> for contributing this.
* tests/test_config.h: Updated randomize() so that it uses a
"fixed" seed, so that it will produce "reusable" random numbers.
* include/makeinclude/platform_linux_kcc.GNU (LD): Added the -lm
flag. Thanks to Scott Snyder <snyder@d0sgif.fnal.gov> for
contributing this.
* tests/run_tests.sh: Added an
LD_LIBRARY_PATH=../netsvcs/lib:$LD_LIBRARY_PATH so that we can
use a relative name for the svc.conf files used in the
Time_Service_Test and Tokens_Test.
* ace/config-irix6.x-common.h: Added support for long double for
KCC. Thanks to Scott Snyder <snyder@d0sgif.fnal.gov> for
contributing this.
* ace/config-irix6.x-kcc.h: Added KCC support. Thanks to Scott
Snyder <snyder@d0sgif.fnal.gov> for contributing this.
* ace/config-osf1-4.0.h: Added KCC support. Thanks to Scott
Snyder <snyder@d0sgif.fnal.gov> for contributing this.
* ace/IOStream.h: Fixed up the PUT_CODE and GET_CODE macros so
that they work with KCC. Thanks to Scott Snyder
<snyder@d0sgif.fnal.gov> for contributing this.
* ace/Env_Value_T.h (ACE_Convert): Added a new ACE_Convert
constructor for u_int so that TAO compiles correctly with KCC.
Thanks to Scott Snyder <snyder@d0sgif.fnal.gov> for contributing
this.
* include/makeinclude/platform_osf1_4.0_kcc.GNU: Added a new
platform config file for KCC. Thanks to Scott Snyder
<snyder@d0sgif.fnal.gov> for contributing this.
Sat Jan 16 18:13:29 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* include/makeinclude/wrapper_macros.GNU: Commented out adding
ACE_NDEBUG to CCFLAGS to avoid defining it twice. Most (if not
all) platforms include CFLAGS into CCFLAGS. So, if "make
debug=0" no longer work on your platform, then, you may need to
add "CCFLAGS += $(CFLAGS)" into your platform_xxx.GNU.
Sat Jan 16 13:40:40 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Proactor.cpp (schedule_timer): Had to add an
ACE_SYNCH_RECURSIVE_THREAD_MUTEX in place of
ACE_Recursive_Thread_Mutex to avoid problems when threads=0.
* ace/OS.cpp (lwp_getparams): For some reason we had to
add
# if defined (ACE_HAS_STHREADS) || (defined (sun) && (ACE_MT_SAFE != 0))
instead of
# if defined (ACE_HAS_STHREADS) || defined (sun)
to avoid problems when threads=0.
* ace/Asynch_IO.cpp: Replaced some ACE_Thread_Mutex decls with
ACE_SYNCH_MUTEX to avoid problems with threads=0.
* ace/config-sunos5.6.h: If defined(_POSIX_C_SOURCE) &&
_POSIX_C_SOURCE >= 199506L) || defined (__EXTENSIONS__) then
#define ACE_HAS_SIGWAIT to avoid compilation errors. Thanks to
Russ Noseworthy for reporting this.
* ace/OS.i: Fixed the ACE_OS::readdir_r() so that it doesn't fail
if threads are disabled via "make threads=0". Thanks to Russ
Noseworthy for reporting this.
* ace/FILE_Connector.h (ACE_FILE_Connector): Added the O_CREAT
flag to the list of flags passed to connect(). This ensures
that the file is created if it doesn't already exist. Thanks to
Pradeep Gore <pradeep@cs.wustl.edu> for reporting this.
Fri Jan 15 21:28:04 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Log_Msg (ACE_Log_Msg_Callback): Added an interface class
used for getting logging callbacks. Users who are interested in
getting the logging messages directly, can subclass this
interface and override the log() method. They must then register
their subclass with the Log_Msg class and make sure that they
turn on the ACE_Log_Msg::MSG_CALLBACK flag.
Your log() routine is called with an instance of
ACE_Log_Record. From this class, you can get the log
message, the verbose log message, message type, message
priority, and so on.
Remember that there is one Log_Msg object per thread.
Therefore, you may need to register your callback object with
many Log_Msg objects (and have the correct synchronization in
the log() method) or have a separate callback object per
Log_Msg object.
Thanks to Chris Lahey <clahey@ix.netcom.com> for suggesting this
and send patches.
* examples/Log_Msg/test_callback.cpp: Added new example for
Log_Msg. This program tests the Log_Msg abstraction wrt writing
to user defined callback objects.
Fri Jan 15 21:10:25 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CORBA_macros.h: Made sure ACE_CORBA_HAS_EXCEPTIONS always
gets set properly. Added ACE_ADPOT_CORBA_ENV to reuse a
existing CORBA::Environment variable.
Fri Jan 15 17:05:12 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Log_Record: Factored out the redundant formatting code. The
new scheme also allows the end user to get to verbose formatted
string. Thanks to Nanbor for helping out with this.
Fri Jan 15 17:15:18 EST 1999 James CE Johnson <jcej@lads.com>
* docs/tutorials/templates.html
docs/tutorials/001/acceptor.h
docs/tutorials/001/logger.h
docs/tutorials/001/page01.html
docs/tutorials/001/page02.html
docs/tutorials/001/page03.html
docs/tutorials/001/page04.html
docs/tutorials/001/page05.html
docs/tutorials/001/server.cpp
docs/tutorials/003/page01.html
Many changes from Ossama plus a new abstract (for T3) from
Kirthika.
Fri Jan 15 14:40:26 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/SOCK_IO,
ace/SOCK_Dgram: Modified the recv(iovec *) and recvv(iovec *)
methods so that they use select() to avoid spinning if no data
is available. Thanks to Mike Goldman <whig@by.net> for this
fix.
Fri Jan 15 10:47:26 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Service_Repository.cpp: If a service being removed from the
Service_Repository used the Service_Repository while being
removed it could access objects that had already been deleted.
Fix this by decrementing the current_size_ member in
"real-time". Thanks to Eric Newton for reporting this.
Fri Jan 15 08:08:31 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.15 released.
Fri Jan 15 07:20:46 1999 Chris Gill <cdgill@cs.wustl.edu>
* ace/OS.i: Fixed variable names in isatty () on NT
Fri Jan 15 03:45:46 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* docs/exceptions.html: Rewrote the exception handling guildlines
based on ACE's try macros.
Fri Jan 15 01:32:55 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.14 released.
Fri Jan 15 00:03:32 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* examples/Log_Msg/test_ostream.cpp: Added new example for
Log_Msg. This program tests the Log_Msg abstraction wrt writing
to stderr and to a file.
Thu Jan 14 21:50:22 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/CORBA_macros.h: Added a new set of try macros which help
application developers write portable code that handles
CORBA::Exception portably. The macros will work with any ORB.
The total number of macros has reduces significantly and they
should be much easier to use because the rules all follow the
same style.
The new try macros should be prefered over the original try
macro in $TAO_ROOT/TAO/try_macros.h because those macros will
soon be *DEPRICATED* once we finished convert TAO to use the new
macros.
Please see ACE_wrappers/docs/exceptions.html for guidelines and
rules of using ACE's try macros.
Thu Jan 14 20:41:33 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/OS: Moved some code around to consolidate the getuid() and
isatty() functions.
* ace/OS: Added support for the setuid() call. Thanks to Susan
Liebeskind <susan.liebeskind@gtri.gatech.edu> for suggesting
this.
Thu Jan 14 16:18:37 EST 1999 James CE Johnson <jcej@lads.com>
* docs/tutorials/001/page02.html:
docs/tutorials/001/page03.html:
Included Kirthika Parameswaran's <Kirthika@cs.wustl.edu>
abstract and analogy. Thanks Kirthika!
* docs/tutorials/001/Source.tgz:
docs/tutorials/001/acceptor.h:
docs/tutorials/001/logger.h:
docs/tutorials/001/server.cpp:
docs/tutorials/001/page[345].html:
* docs/tutorials/002/page0[23].html:
docs/tutorials/002/handler.h:
Added improvements from Kirthika, Pradeep and Yamuna
Thu Jan 14 11:46:25 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Synch_T.h: Pointed out that we can only parameterize
ACE_Condition<> with ACE_Thread_Mutex and ACE_...Null_Mutex.
Thanks to Knut-Havard Aksnes <knut@orion.no> for reporting
this.
Thu Jan 14 02:33:37 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.13 released.
Thu Jan 14 00:07:34 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* docs/tutorials/014/stream.cpp: Added #include "ace/streams.h".
Wed Jan 13 23:18:03 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h:
* config-g++-common.h:
* config-osf1-4.0.h:
* config-psos-diab.h:
* config-psos-tm.h: Revert my previous change. Removed the
ChangeLog entry about the change.
Wed Jan 13 22:30:49 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_chorus_ghs.GNU: removed
explicit link with libedgnoe.a, because GreenHills adds
that implicitly.
* ace/OS.h: added quick hack to ACE_HAS_BROKEN_EXPLICIT_DESTRUCTOR
logic to allow compilation with g++.
Wed Jan 13 18:48:30 EST 1999 James CE Johnson <jcej@lads.com>
* docs/tutorials/004/client.cpp:
docs/tutorials/010/message_queue.cp:
docs/tutorials/011/message_queue.cpp:
docs/tutorials/012/message_queue.cpp:
docs/tutorials/013/message_queue.cpp:
docs/tutorials/014/EndTask.h:
docs/tutorials/019/client.cpp:
docs/tutorials/019/client2.cpp:
docs/tutorials/019/server.cpp:
docs/tutorials/019/server2.cpp:
docs/tutorials/019/shmem.cpp:
docs/tutorials/020/client.cpp:
docs/tutorials/020/server.cpp:
docs/tutorials/021/client.cpp:
docs/tutorials/021/mpool.cpp:
docs/tutorials/021/mpool.h:
docs/tutorials/021/server.cpp:
Fixed many NT issues found by Irfan. Most are related to the
fact that NT doesn't have SysV shared memory.
Wed Jan 13 04:45:59 1999 James C Hu <jxh@cs.wustl.edu>
* ace/Cache_Object.{h,cpp}:
* ace/Cache_Manager.{h,cpp}:
* ace/Cache_Manager_T.{h,cpp}:
* ace/Cache_Hash_T.{h,cpp}:
* ace/Cache_Heap_T.{h,cpp}:
* ace/Hash_Bucket_T.{h,cpp}:
Supporting infrastructure for the new Filecache. These classes
form the basis of a generic in memory cache engine.
Wed Jan 13 02:17:57 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/OS.cpp (writev): This function should use ACE::write_n
instead of ACE::send_n. Similarly, readv() should use
ACE::read_n instead of ACE::recv_n.
* ace/ACE.cpp (send): This function should use ACE_OS::sendv
instead of ACE_OS::writev. Similarly, recv() should use
ACE_OS::recvv instead of ACE_OS::readv.
* docs/tutorials: Fixed all the NT project files.
Tue Jan 12 22:41:05 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/config-freebsd.h: Uncommented ACE_HAS_SIGWAIT. This is
required for FreeBSD 2.2.8. Thanks to John Aughey
<jha@FreeBSD.ORG> for reporting this.
* ace/SOCK_IO.{h,i}:
* ace/SOCK_Stream.{h,i} (sendv_n/recvv_n): Moved these functions
from SOCK_IO to SOCK_Stream where it makes more sense to have
the semantic of sending/receiving <n> bytes.
Tue Jan 12 19:52:26 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ACE-INSTALL.html: Added more info on dynamically linking
run-time libraries.
* ace/SOCK_IO.{h,i,cpp} (sendv,recvv,sendv_n,recvv_n): Renamed
vector send_n/recv_n. There were name clashing since these
methods have similar signatures to some send_n/recv_n in
ACE_SOCK_Stream, they got hidden by the derived methods.
Renaming them solve the problem.
Tue Jan 12 10:59:58 1999 David L. Levine <levine@cs.wustl.edu>
* include/makeinclude/platform_chorus_ghs.GNU: fixed location of
libedgenoe.a, so that a symlink in $(GHS_DIR) is no longer necessary.
Thanks to Steve Kay for reporting this.
* ace/config-mklinux.h: removed ACE_HAS_SOCKLEN_T, added __USE_XOPEN.
Thanks to Andreas Tobler <toa@pop.agri.ch> for these updates.
Tue Jan 12 08:44:11 EST 1999 Aniruddha Gokhale <gokhale@sahyadri.research.bell-labs.com>
* ace/Acceptor.cpp (handle_close):
Since the reactor_ data member is made private, we need to use
its accessor method to retrieve it.
Tue Jan 12 02:12:38 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h (ACE_DES_NO_FREE,ACE_DES_FREE): These two macros
shouldn't be treated differently no matter
ACE_HAS_BROKEN_EXPLICIT_DESTRUCTOR is defined or not.
Otherwise, virtual destructor won't work in one of the original
definitions.
There shouldn't be different different definitions for calling
template destructor explicitly either. However, we need to find
that out. The meaning of ACE_HAS_BROKEN_EXPLICIT_DESTRUCTOR
seems to be reversed. That needs to be fixed also.
Tue Jan 12 00:18:15 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Event_Handler.h: Moved the priority_ and reactor_ data
members into the private section of the class since these can
always be accessed via their accessor methods. Thanks to Mike
Goldman <whig@by.net> for reporting this.
Mon Jan 11 15:30:26 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Process.{h,i} (get_process_attributes,get_thread_attributes):
Removed the constness from the return value to avoid Intel C++
warnings. Thanks to Karel Zuiderveld
<kzuiderveld@vitalimages.com> for reporting this.
* bin/ADDIDL.DSM: A VB script to add new IDL files into DevStudio
projects. Thanks to Peter <weatp@syntron.com> for contributing
this nice tool.
Mon Jan 11 12:54:26 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/SOCK_IO: Added const qualifiers to all the send*() and
recv*() methods that take ACE_Time_Value values. Thanks to Jody
Hagins <jody@atdesk.com> for reporting this.
* ace/SOCK_IO: Added a new send_n() method that uses the new
ACE::sendv_n() method!
* ace/ACE: Added a new sendv_n() and writev_n() method that sends
all the bytes in the iovec!
* ace/ACE.h (ACE): Added default values of 0 for ACE::writev() and
ACE::readv().
* examples/NT_Service: Tidied up the formatting to conform to the
ACE programming guidelines.
Mon Jan 11 10:23:06 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/config-freebsd-pthread.h: Added ACE_LACKS_READDIR_R.
* ace/config-freebsd.h: Added ACE_LACKS_READDIR_R,
ACE_HAS_NONCONST_MSGSND, ACE_LACKS_MALLOC_H. ACE_HAS_SIGINFO_T
only applies to 3.0 and above. Thanks to Ivan Pascal
<pascal@info.tsu.ru> for reporting the change.
Sun Jan 10 21:52:57 1999 David L. Levine <levine@cs.wustl.edu>
* tests/Message_Queue_Notifications_Test.cpp (iterator_test):
added comment explaining why a message queue size of 32 Kb
is used, instead of the default of 16 Kb.
* docs/ACE-guidelines.html: added guidelines for boolean types
and function return values.
Sun Jan 10 17:33:29 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* tests/Message_Queue_Notifications_Test.cpp: Replaced delete mb
with mb->release(). Thanks to Susan Liebeskind
<susan.liebeskind@gtri.gatech.edu> for reporting this
inconsistency.
* ace/Task_T.h,
ace/Message_Queue_T.h: Clarified the fact that the
ACE_Time_Value arguments to the Message_Queue methods
use absolute, rather than relative, time. Thanks to
Stanford S. Guillory <sguillory@vignette.com> for pointing out
the need for this clarification.
Sun Jan 10 09:18:41 1999 Martin Krumpolec <krumpo@pobox.sk>
* ace/Log_Msg.cpp (log): only re-enable tracing if it had
not been explicitly disabled.
Sun Jan 10 01:06:18 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Log_Msg.cpp (log): Change call from exit() to abort().
* ace/OS.i (abort): Added new function.
Sat Jan 9 22:05:07 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* bin/tao_env.pl: A new perl script that help you translate _env
to TAO_IN_ENV.
Sat Jan 09 10:53:37 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Name_Proxy.cpp (open): swapped branches of conditional
so that options.time_value () is used if USE_TIMEOUT is enabled.
Thanks to Mike Goldman <whig@by.net> for reporting this.
Fri Jan 08 19:19:17 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.h: Applied ACE_TEXT to the definition of
ACE_DEFAULT_TEMP_FILE on Win32. Thanks to
<gwross@west.raytheon.com> for reporting this.
Fri Jan 08 13:24:12 1999 David L. Levine <levine@cs.wustl.edu>
* ace/Synch.h (ACE_Process_Mutex): made data members
private instead of public. Thanks to Peter Gross
<pgross@signalsoftcorp.com> for reporting this.
* examples/Threads/reader_writer.cpp: removed volatile
qualifier from declaration of "shared_thr_id", so that
the file will compile on DU 4.0 with DCE threads. The
volatile qualifier caused a type mismatch with
ACE_thread_t. And, it's not necessary, because all
access of the shared_thr_id is guarded.
* include/makeinclude/platform_chorus_ghs.GNU: added gnuch68
to -alttools, and removed bin from AR; use libedgnoe.a instead
of libedg.a with GHS 1.8.9.1.
* ace/config-sunos5.5.h: don't define ACE_HAS_XPG4_MULTIBYTE_CHAR
with ghs, because its version 1.8.9 doesn't seem to support it.
Also, with ghs, replaced the __ctype [] declaration with an
#include of <stdlib.h>, because that's cleaner. Finally,
added ACE_HAS_BROKEN_ENUMS for ghs (1.8.9).
Thu Jan 07 09:05:27 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.5.h: added ACE_HAS_SIG_C_FUNC with
Sun CC >= 4.2. Sun CC 5.0 needs it; Sun CC 4.2 doesn't
object to it on SunOS 5.5.1, 5.6, and 5.7. Thanks to
Neil Cohen <nbc@aikisoft.com> for figuring out how to
compile ACE with Sun CC 5.0.
* include/makeinclude/platform_sunos5_sunc++.GNU: only
use -features=castop and -rtti with Sun CC 4.2. CC 5.0
doesn't support them; I assume that it enables RTTI by
default. Thanks to Neil Cohen <nbc@aikisoft.com> for
reporting this.
* ACE-INSTALL.html: added ACE_HAS_REGEX #undef suggestion for
shared lib link problems with egcs 1.1.x on Solaris 2.5.x.
Thanks to Bob McWhirter <bob@werken.com> for reporting this
problem.
Thu Jan 07 04:45:36 1999 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ACE version 4.6.12 released.
Thu Jan 07 04:01:08 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Containers_T.cpp (max_size): No need to reallocate if the
new size is the same. Thanks to Mike Goldman <whig@by.net> for
pointing this out.
* ace/Strategies_T.cpp (check_hint_i and cleanup_hint_i):
purge_i() should be called after the entry is closed.
* Select_Reactor_Base.cpp (unbind): The next <max_handlep1_>
should be calculated not only based on the <wait_set> but also
the <suspend_set>.
Thanks to Mark L. Boriack <mboriack@std.saic.com> for providing
a description of this bug.
Wed Jan 06 21:42:11 1999 David L. Levine <levine@cs.wustl.edu>
* ace/OS.cpp (thr_create): moved #endif /* ACE_LACKS_SETDETACH */
outside of }, to allow compilation on DU 4.0/cxx with DCE threads.
* ace/config-osf1-4.0.h: with DCE threads only, added
ACE_LACKS_THREAD_PROCESS_SCOPING.
Wed Jan 06 16:36:21 1999 David L. Levine <schmidt@cs.wustl.edu>
* ACE version 4.6.11 released.
Wed Jan 06 15:15:37 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Config.cpp (process_directive,close): Moved the
deletion of <svc_conf_file_queue_> into close method.
Otherwise, there's no way to reconfigure the service
configuration once it get started. Thanks to Mike Goldman
<whig@by.net> for reporting the problem.
Wed Jan 6 14:27:24 EST 1999 James CE Johnson <jcej@lads.com
* docs/tutorials/021/*:
Completed the ACE_Malloc<> tutorial. It could be a lot better
than it is but I'm still new to ACE_Malloc...
* docs/tutorials/021/online-tutorials.html:
Added the link for #21
Tue Jan 05 22:55:07 1999 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Strategies_T.cpp (cleanup_hint_i and check_hint_i): Since we
are holding the connection cache lock in these methods, the
Svc_Handler should not call purge(). If it does, a deadlock
will occur (unless we have recursive locks) since we are already
holding the connection cache lock. Therefore, we zero out the
recycler before calling svc_handler->close() and purge out the
svc_handler entry ourself (through purge_i()).
Thanks to Mark L. Boriack <mboriack@std.saic.com> for providing
a precise example illustrating this bug.
Tue Jan 5 18:48:47 James CE Johnson <jcej@lads.com>
* docs/tutorials/templates.html: Fixed a number of problems here.
Thanks to Amos Shapira <Amos_Shapira@icomverse.com> for pointing
them out.
* docs/tutorials/colorize: I pulled out the colorization code from
combine into this standalone script. One of these days I'll fix
combine so that the code isn't duplicated...
Tue Jan 5 16:14:00 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* ace/config-irix6.x-common.h:
Added ACE_TIMER_SKEW definition.
* ace/FILE.cpp:
Fixed the seek() prototype, is was declared as taking a "off_t"
argument, but is was defined with a "long" argument,
unfortunately in most platforms this was not a problem.
Tue Jan 05 13:15:35 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Config.i (open): Be sure to pass down the
<ignore_static_svcs> argument down to the real open method.
Tue Jan 05 08:08:06 1999 David L. Levine <levine@cs.wustl.edu>
* tests/MM_Shared_Memory_Test.cpp (spawn): fixed syntax error
by moving ) to end of ACE_ERROR invocation.
* ace/config-osf1-4.0.h: added 10 ms ACE_TIMER_SKEW, so that
MT_Reactor_Timer_Test passes.
* ace/config-lynxos.h: added 10 ms ACE_TIMER_SKEW, so that
MT_Reactor_Timer_Test comes closer to passing. It now
chokes on the wait () near the end.
* ace/OS.i (thr_getspecific): moved return 0 statement inside
the Draft 7/STD #else block, to avoid warning about unreachable
statement with Draft 4/6.
* ace/config-osf1-4.0.h: with Draft 4 pthreads, added
ACE_LACKS_READDIR_R.
* tests/MT_Reactor_Timer_Test.cpp (main): added printout if
wait () fails.
Tue Jan 5 00:59:04 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Synch: Changed the remove() method of ACE_Thread_Mutex,
ACE_Mutex, ACE_Semaphore, ACE_RW_Mutex, ACE_Event,
ACE_Thread_Condition_Mutex, ACE_File_Lock, and
ACE_Recursive_Thread_Mutex so that they check a flag to see if
remove() has already been called. If it has, then the remove()
call does nothing. This avoids nasty problems on platforms like
Win95 that fail mysteriously if locks are destroyed multiple
times. Note that our solution isn't perfect since it won't
protect against race conditions if multiple threads call
remove() simultaneously. However, if this happens it's a sign
that the application was designed incorrectly... Thanks to Paul
Felix <pef@fluent.com> and Irfan for tracking this down....
* ace/FILE: Added new methods, seek() and tell(), that are more
intuitively named than the existing position() methods. The
position() methods have been retained for backwards
compatiblity, but are now marked as deprecated.
* ace/OS.h: Added a macro for ACE_DEFAULT_HTTP_PORT, which
is 80 of course...
* ace/INET_Addr.cpp: Make sure that addr_to_string() correctly
checks the length of its buffer before doing a sprintf(). In
addition, added an option to print the results in either ip-addr
format or ip-name format.
* ace/Mem_Map.cpp (map): where ace/Mem_Map.cpp mmap() will succeed
if the length of the file mapping is 0, which will be the case
if we've just created the file. This was the wrong place to
make this check.
* tests/MM_Shared_Memory_Test.cpp: Cleaned up a few things
in this test so that it'll be easier to maintain.
Mon Jan 04 08:45:45 1999 David L. Levine <levine@cs.wustl.edu>
* ace/config-sunos5.7.h: only use the g++ hacks if the
g++ version is prior to 2.8. Assume that later versions
were built on SunOS 5.7 host, and/or don't have header
files that are incompatible with the system headers.
* bin/create_ace_build: changed symlink creation failure from
error (with termination) to warning create_ace_build.
Mon Jan 4 03:15:57 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Mem_Map: If we're remapping an already-mapped file
(i.e., the base_addr_ != 0) && the addr parameter IS 0 (i.e.,
the user isn't trying to respecify where to map this file), then
we'll try to map over top of the existing region, which implies
"MAP_FIXED".
Sun Jan 03 23:21:46 1999 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Config.cpp (initialize): Both initialize methods now
remove the service object from the repository if its init()
method failed.
Sun Jan 3 14:39:49 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/ACE: Added a simple dirname() wrapper method.
* ace/SString: The set(const char *, size_t, int = 1) and
set(const c
|