1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
|
Tue Apr 18 08:54:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/SSL/SSL_Asynch_Stream_Test.cpp:
Fixed main signature to resolve link errors in the Cygwin build.
Tue Apr 18 07:58:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/SSL/SSL_Asynch_Stream_Test.cpp:
Fixed warning in solaris build
Tue Apr 18 07:55:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/SSL/SSL_Asynch_Stream_Test.cpp:
Fixed compile error in Cygwin build
Tue Apr 18 07:24:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added ImR_Client lib
Mon Apr 17 18:15:49 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/SSL/SSL_Asynch_Stream_Test.cpp: Fixed compile error correctly.
Mon Apr 17 14:47:23 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* ace/config-macosx-tiger.h
Added ACE_HAS_AIO_CALLS.
Mon Apr 17 10:06:23 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/SSL/SSL_Asynch_Stream_Test.cpp: Restrict building this test
to platforms with both threads and AIO support. Fixes Cygwin
build problem.
Sat Apr 15 10:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/SSL/SSL_Asynch_Stream_Test.cpp:
Fixed compile error
Fri Apr 14 15:53:21 UTC 2006 Steve Huston <shuston@riverace.com>
* NEWS: Updated to reflect the changes and fixes below.
* ace/Task.{h inl cpp}: Change ACE_Task::lock_ from ACE_Thread_Mutex
to ACE_Recursive_Thread_Mutex, and hold lock_ across call to
ACE_Task::close() in ACE_Task_Base::cleanup(). This guards against
multiple threads in close() seeing a 0 thr_count() and acting on it.
Thanks to Howard Finer <hfiner at sonusnet dot com> for this fix.
Fixes Bugzilla #2339.
* ace/SOCK_Stream.h: Explain more about how the *_n methods work and
how to use the timeout and bytes_transferred arguments.
* examples/Threads/task_three.cpp: Change name of the file static
ACE_Thread_Mutex from lock_ to Lock to avoid clashing with the
ACE_Task-inherited member lock_.
* ace/SSL/SSL_Asynch_Stream.{h cpp}: Changes that allow
ACE_SSL_Asynch_Stream objects to be instantiated; required adding
an implementation of the pure virtual implementation() method
inherited from ACE_Asynch_Operation.
Also moved the declaration of the ACE_SSL_Asynch_Read_Stream_Result,
ACE_SSL_Asynch_Write_Stream_Result, and ACE_SSL_Asynch_Result classes
from the .cpp file to the .h file so applications can see them.
Also corrected and enhanced a lot of the documentation.
* tests/SSL/tests.mpc:
* tests/SSL/Makefile.am:
* tests/SSL/SSL_Asynch_Stream_Test.cpp: Added a new test that at least
tests building an application to use ACE_SSL_Asynch_Stream.
Fri Apr 14 14:57:12 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/msvc_static_compile.pl:
Added a work-around for devenv using the solution file to build
additional projects even when the .vcproj is specified. This only
happens when using the -CORE option to this script. First, all
.sln files are temporarily renamed and then named back when the
build is done or a SIGINT or SIGTERM is detected.
Wed Apr 12 14:48:38 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_component_dnc.mpb
Fixes for linking errors in OS X.
Tue Apr 11 20:06:12 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/OS_NS_stdio.inl (rewind): Replaced SetFilePointer() with
fseek() on WinCE since it works better. Thanks to Andrey
Nechypurenko for reporting this.
Wed Apr 12 08:14:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb:
Added ciao_rtevent_dnc as base project to fix link errors in the
VxWorks static builds
Tue Apr 11 14:10:00 UTC 2006 Steve Huston <shuston@riverace.com>
* ASNMP/asnmp/transaction.cpp (handle_input): Return 0 on successful
socket read, not the number of bytes. Thanks to Jason Zhang for this
fix.
* THANKS: Added Jason Zhang to the Hall of Fame.
Tue Apr 11 13:12:36 UTC 2006 Simon McQueen <sm@prismtech.com>
* ace/Lib_Find.h:
aCC 3.31 seems to want an extra newline at the end of this file.
* ace/config-macros.h:
ACE_NOTREACHED is reached for aCC up to 3.31 at least.
* include/makeinclude/platform_hpux_aCC.GNU:
Define ACE_LACKS_MEMBER_TEMPLATES for aCC 3.31 because it does.
Tue Apr 11 12:41:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_config_handlers.mpb:
Added event config handles and add all projects to the after
to get the correct build order
Mon Apr 10 18:37:17 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* ace/ace_for_tao.mpc:
Added Capabilities.cpp into the lib.
Required by TAO/orbsvcs/examples/ImR/Advanced to
use the getline function. The ace_for_tao lib is
increased by 0.1M.
Mon Apr 10 18:04:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Don't run bug 2134 regression in a minimum build
Mon Apr 10 14:34:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Object_Manager_Test.cpp:
Fixed compile problem in single threaded no inline build
Mon Apr 10 12:28:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_server_dnc.mpb:
* bin/MakeProjectCreator/config/ciao_deployment_svnt.mpb:
Added ciao_events_dnc
Mon Apr 10 12:06:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_domainapplicationmanager_dnc.mpb:
New base project
Mon Apr 10 11:52:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_component_dnc.mpb:
* bin/MakeProjectCreator/config/ciao_container_dnc.mpb:
* bin/MakeProjectCreator/config/ciao_deployment_stub.mpb:
Changed base projects
Mon Apr 10 10:27:03 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* tests/Unload_libACE.cpp:
Set up a guard for WIN32 && ACE_USES_WCHAR.
Mon Apr 10 09:36:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_rtevent_dnc.mpb:
New base project
Mon Apr 10 09:13:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_events_base_dnc.mpb:
New base project
Mon Apr 10 06:23:00 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_container_dnc.mpb:
New file, matches library name
* bin/MakeProjectCreator/config/ciao_xml_utils.mpb:
Use exceptions as base project
* bin/MakeProjectCreator/config/ciao_servant_dnc.mpb:
Use ciao_events_dnc as base project
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb:
Add ciao_container_dnc and ciao_client_dnc to make things easier to
maintain. Also use the CIAO_Dnc_Events library instead of the
two seperate libs
* bin/MakeProjectCreator/config/ciao_deployment_svnt.mpb:
* bin/MakeProjectCreator/config/ciao_deployment_stub.mpb:
Removed CIAO_DnC_Events as seperate lib
Sun Apr 9 12:00:00 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* docs/ACE-bug-process.html: Updated this page to more accurately
reflect how the DOC group handles enhancement requests. Thanks
to David White <david dot white dot 7 at gmail dot com> for
motivating this.
Sat Apr 8 18:32:29 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Shared_Memory_MM.h (ACE_Shared_Memory_MM):
* ace/Shared_Memory_SV.h (ACE_Shared_Memory_SV):
Added comments that underscore that these classes should not be
used and instead ACE_Malloc or ACE_Mem_Map should be used.
Thanks to Qingbo Cai <qingbo dot cai at case dot edu> for motivating these
comments.
Fri Apr 7 19:56:03 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb
Modified to make CIAO_DnC_Events_Base and CIAO_RT_Event
libraries explicitly specified in "libs +=" to resolve
linking errors in BC compilers.
Fri Apr 7 13:13:06 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* tests/tests.mpc:
Add staticflags += ACE_AS_STATIC_LIBS for Library Unload
Fri Apr 7 07:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Token.{h,inl}:
Fixed compile problem in single threaded no online build. Thanks
to Ossama Othman for reporting this
Thu Apr 6 21:11:24 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/SSL/SSL_Context.cpp (private_key, context, dh_params): If setting
up the new file fails, reset the corresponding
ACE_SSL_Data_File member to allow retries to proceed.
* NEWS: Added user-visible items for 5.5.1.
Thu Apr 6 19:15:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Thread.cpp:
Fixed compile problem in single threaded no online build. Thanks
to Ossama Othman for reporting this
Thu Apr 6 15:58:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Thu Apr 6 10:07:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.lst:
* tests/tests.mpc:
* tests/Bug_2497_Regression_Test.cpp:
Added regression for bug 2497, we have to see what the best fix
is. Thanks to Sergey Zubarev <sergant128 at mail dot ru> for
providing reporting this.
Thu Apr 6 06:05:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-macosx-tiger.h:
Don't define ACE_SIZEOF_LONG_DOUBLE when it is already set. Can
happen when we build for OS X on Intel. Thanks to Ignacio Alvarez
<support at xentient dot com> for reporting this. This fixes bugzilla
2496.
Wed Apr 5 23:02:50 UTC 2006 Adam Mitz <mitza@ociweb.com>
* bin/tao_orb_tests.lst:
Added TAO/tests/Bug_2494_Regression.
Wed Apr 5 22:03:52 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb
Modify the project dependency so its built after
CIAO_DnC_Container project. This should fix the
errors on SuSE_FP_Stats build.
Wed Apr 5 19:32:19 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_deployment_stub.mpb
Added library dependency to CIAO_Events_DnC, so static
build could resolve symbols in this library.
Mon Apr 5 14:59:37 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/SSL/SSL_Context.cpp:
* ace/SSL/SSL_Context.h:
Addressed access to locks that have already been destroyed by
reintroducing some of the original static variable semantics.
Some, but not all, of the exception-safety fixes that introduced
the order of destruction problem were retained.
(random_seed, egd_file, seed_file):
Declared these methods "static" since they do not manipulate
internal ACE_SSL_Context members.
Wed Apr 5 14:58:12 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* tests/Unload_libACE.cpp:
Set up a guard for ACE_AS_STATIC_LIBS.
* tests/tests.mpc:
Add an empty Resource_Files section to the Library Unload project.
Wed Apr 5 14:25:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Wed Apr 5 13:10:00 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/CDR_Stream.cpp:
Initialise local pointer with 0
Wed Apr 5 11:55:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Tue Apr 4 18:51:41 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/SOCK_Acceptor.cpp (shared_open): If ACE_OS::listen() fails,
guard errno before closing the socket to prevent loss of the error
value, at least on Windows. Thank you to Aleksandar Vukajlovic
<vukajlo at finsoft dot co dot yu> for this fix.
* THANKS: Added Aleksandar Vukajlovic to the Hall of Fame.
Tue Apr 4 15:44:03 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
Reverting my change from Mon Apr 3 12:12:27 UTC 2006 and changing
the default from directory based building/dependencies to named
targets (which is the way that all other make based MPC project
types work). This is being done by request (RT #8510).
Tue Apr 4 15:28:00 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* tests/Unload_libACE.cpp:
Cope when log file cannot be opened.
Tue Apr 4 15:06:00 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* tests/Unload_libACE.cpp:
Add guards for __MINGW32__ and __CYGWIN32__.
Don't error if libACE isn't found.
Tue Apr 4 14:10:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Mon Apr 3 23:04:51 UTC 2006 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_aix_ibm.GNU: Removed the explicit
setting of ACE_TEMPLATES_REQUIRE_SOURCE in CCFLAGS introduced at
Wed Feb 22 16:26:43 GMT 2006 Rich Seibel <seibel_r@ociweb.com>.
ACE_TEMPLATES_REQUIRE_SOURCE is set (or not) from config-aix-4.x.h
depending on what template instantiation options were specified on
the command line.
Mon Apr 3 13:45:29 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/Basic_Types.inl:
Fixed versioned namespace related errors for configurations that
define ACE_LACKS_LONGLONG_T and/or ACE_LACKS_UNSIGNEDLONGLONG_T.
Mon Apr 3 13:45:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Mon Apr 3 12:12:27 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
Added support for a new workspace based setting that only makes
sense to the 'gnuace' project type called 'named_targets'. If
'named_targets' is set, the workspace (GNUmakefile) will be
generated such that each target can be built via it's project name
and directory location does not affect dependencies.
* bin/MakeProjectCreator/templates/gnu.mpd:
Support the new source component scoped keyword 'buildflags'.
Mon Apr 3 10:25:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_orb_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Mon Apr 3 09:38:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Remove PRISM_ONLY tests (again arg!)
Sat Apr 1 19:08:28 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/OS_NS_math.inl: Improved the computations for floor() and ceil().
Thanks to Abdullah Sowayan <abdullah.sowayan@lmco.com> for this
patch.
Sat Apr 1 17:14:59 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
* m4/compiler.m4:
Removed special cases for *freebsd*. Thanks to Thomas Girard
<thomas dot g dot girard at free dot fr> who sent patches for
Debian GNU/kFreeBSD systems (FreeBSD kernel / GNU libc). The
changes added *k*bsd-gnu patterns to override the special cases
matched by *freebsd*. However, further investigation has proved
that they were not needed for FreeBSD either.
Fri Mar 31 23:51:48 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Changed to #include <sys/param.h> in the <sys/sysctl.h>
feature test, avoiding the autoconf "present but cannot
be compiled" warning.
Fri Mar 31 15:00:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Fri Mar 31 13:59:04 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* tests/Unload_libACE.cpp:
Add guard for ACE_VXWORKS and declare local main().
* tests/tests.mpc:
Remove Main.cpp reference from the Library Unload project.
Fri Mar 31 11:41:54 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/OS_NS_Thread.h:
* ace/OS_NS_Thread.inl:
* ace/Recursive_Thread_Mutex.cpp: Reverted changes from
Thu Mar 30 18:51:13 UTC 2006 Steve Huston <shuston@riverace.com>
because they broke builds on many platforms.
Fri Mar 31 10:56:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Timer_List_T.cpp:
Use prefix increment instead of postfix
* ace/Timer_Hash_T.cpp:
Initialise pointer with 0
* ace/Reactor_Token_T.h:
Converted some documentation to doxygen style
* ace/Log_Record.cpp:
Initialise some pointers with 0, made some local variables const.
* ace/IOStream_T.h:
Fixed some doxygen warnings
Fri Mar 31 08:33:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/compiler.bor:
Added CPU_FLAG as possible flag, this can be -3/-4/-5/-6 to optimize
things for a certain CPU, see the Borland help for more info what
these flags do. When this is set, this is passed to the compiler
* ACE-INSTALL.html:
Document CPU_FLAG for Borland
* ace/config-win32-borland.h:
The Borland compiler can't handle assembly in inline methods or
template methods. We do have inline assembly when building for
pentium, so when we inlining enabled and do build for pentium
we set ACE_LACKS_INLINE_ASSEMBLY to disable the inline assembly.
Thanks to Steve Orner <saorner at rdainc dot com> for reporting
this.
Thu Mar 30 21:03:27 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/Event_Handler.cpp (read_adapter):
Fixed typo introduced in
Thu Mar 30 10:24:50 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
Thu Mar 30 10:24:50 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Event_Handler.cpp (read_adapter): It was possible for
handle_close() to "delete this" so we need to cache the reactor
pointer and use it here. Thanks to Yuan <yuanhp_china at
hotmail dot com> for this fix.
Thu Mar 30 18:51:13 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/Unload_libACE.cpp: Fixed broken fprintf() call.
* ace/OS_NS_Thread.h (ACE_thread_mutex_t):
* ace/OS_NS_Thread.inl: For Windows, replace CRITICAL_SECTION with a
struct including a CRITICAL_SECTION as well as a recursion count.
This allows us to properly do recursion in combination with a
condition variable across all Windows editions and versions.
* ace/Recursive_Thread_Mutex.cpp (get_nesting_level): This is now
possible for platforms with ACE_HAS_RECURSIVE_THREAD_MUTEX.
Thanks to Adrian Tulloch <my-ace-sub at reyes-tulloch dot com> for
these improvements.
* THANKS: Added Adrian Tulloch to the Hall of Fame.
Thu Mar 30 17:04:48 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_deployment_svnt.mpb
* bin/MakeProjectCreator/config/ciao_servant_dnc.mpb
Modified to support CIAO pub/sub service integration.
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb
Added this mpb file for pub/sub service integration
in CIAO.
Thu Mar 30 15:45:00 UTC 2006 Simon Massey <sma@prismtech.com>
* tests/Unload_libACE.cpp:
Corrected missing file handle.
Thu Mar 30 13:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp:
* examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp:
* examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp:
* apps/JAWS3/jaws3/Config_File.cpp:
Fixed value might be unitialized warnings
Thu Mar 30 12:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Configuration.cpp:
* ace/Shared_Memory_MM.cpp:
* ace/ARGV.cpp:
* examples/APG/Containers/Stacks.cpp:
* examples/APG/Containers/RB_Tree_Functors.cpp:
* examples/APG/Containers/Queues.cpp:
* ace/RB_Tree.inl:
* tests/Hash_Map_Manager_Test.cpp:
Fixed value might be unitialized warnings
Thu Mar 30 11:27:00 UTC 2006 Simon McQueen <sm@prismtech.com>
* include/makeinclude/platform_sunos5_sunc++.GNU:
Define variable ACE_CC_PREPROCESSOR to be 'cc' if the SunCC version
is 5.4. This fixes bug #2478.
See also: Thu Mar 30 11:26:45 UTC 2006 Simon McQueen <sm@prismtech.com>
in TAO/ChangeLog.
Thu Mar 30 11:16:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added BiDirectional_DelayedUpcall
Thu Mar 30 11:04:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Run BiDirectional_NestedUpcall also on VxWorks
Thu Mar 30 00:46:52 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/compiler.m4:
Change the default of --enable-symbol-visibility option from yes
to no.
Wed Mar 29 22:33:36 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Changed to #include <sys/types.h> in the <sys/sysctl.h>
feature test, avoiding the autoconf "present but cannot
be compiled" warning.
Wed Mar 29 19:26:37 UTC 2006 Olli Savia <ops@iki.fi>
* ace/TTY_IO.cpp:
Do not try to control DTR under LynxOS. It sets serial port
to non-functional state.
Wed Mar 29 14:14:06 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ACE-INSTALL.html:
* m4/ace.m4:
Changed --with-gperf to --enable-gperf to be consistant with the
intent of --with-* / --enable-* flags. Thanks to Vincent Joseph
<deskamess at yahoo dot com> for running into this.
Wed Mar 29 13:25:12 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* ace/Log_Msg.cpp:
* include/makeinclude/platform_lynxos.GNU
Add code to ensure cleanup in ACE_Log_Msg::close (void).
For some systems, e.g. LynxOS, we need to ensure that
any registered thread destructor action for this thread
is disabled. This is a revision of an earlier attempt to
achieve the same thing. The ACE tests pass with this edition.
* tests/Unload_libACE.cpp
This source does not use ACE functionality directly.
It tests that the ACE shared library can be safely loaded,
(and unloaded), by a non-ACE program exercising the
cleanup code above.
* tests/run_test.lst
* tests/tests.mpc
Build and run the new test
Wed Mar 29 07:04:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Log_Msg.cpp:
Initialise pointers with 0, small const changes
Wed Mar 29 06:44:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
Also expand ACE_ENV_ARG_DECL_NOT_USED and
ACE_ENV_SINGLE_ARG_DECL_NOT_USED
Tue Mar 28 21:30:01 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* ace/Log_Msg.{h,cpp}
* ace/Log_Record.{cpp,h,inl}:
Updated these files to solve the stack overflow problem in ACE_Log_Msg
and ACE_Log_Record. Moves buffers that can be large in stack in malloced
memory.
Thanks to qwerty <qwerty0987654321 at mail dot ru> for motivating and
suggesting the fix to this problem.
Tue Mar 28 18:34:26 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* bin/tao_other_tests.lst:
Added a missing semicolon.
Tue Mar 28 14:51:19 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/compiler.m4:
Added support for --disable-symbol-visibility flag so users
can explicitly disable symbol visibility in the cases where
it does not work (or does not work properly) but the feature
test selects it anyway.
Tue Mar 28 09:04:55 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/OS_NS_sys_resource.inl (setrlimit): Fixed a bug where
"resource" appeared twice in the call to setrlimit(). Thanks to
Vincent Joseph <deskamess at yahoo dot com> for reporting this.
Tue Mar 28 14:10:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_orb_tests.lst:
more !DISABLE_ToFix_LynxOS_* marks to tests
Mon Mar 27 19:06:52 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* bin/tao_other_tests.lst:
Added test
TAO/orbsvcs/tests/Security/MT_SSLIOP/run_test_harsh.pl to
test fix for bug in Bug 1647.
Mon Mar 27 16:39:41 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/tests.mpc: Added a "verbatim" to get the automake-needed
setup for running the scoreboard test script for the tests.
Mon Mar 27 14:16:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Mon Mar 27 07:46:33 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Acceptor.h: Updated the documentation to clarify that an
acceptor can only listen on one port at a time. Thanks to
Mockey Chen <mockey dot chen @ google dot com> for motivating
this.
Mon Mar 27 11:08:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_orb_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Mon Mar 27 09:18:07 UTC 2006 Simon McQueen <sm@prismtech.com>
* ace/Configuration.h:
Remove 'explicit' keyword from a two arg constructor. This is
upsetting aCC 331.
Mon Mar 27 03:57:38 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/compiler.m4:
Check whether "gcc" supports symbol visibility options by
invoking the compiler with those options. This addresses
configure failures due to icc's incomplete gcc emulation.
Should fix bugzilla issues 2338 and 2384.
Sun Mar 26 21:40:10 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/TSS_T.cpp: Added patches to silence the type-punning warning
from G++ 4.x. Thanks to Ken Sedgwick for contributing this
stuff!
Sun Mar 26 17:29:08 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/compiler.m4:
Add ACE_CHECK_CFLAGS and ACE_CHECK_CXXFLAGS autoconf macros
to verify if c/c++ compiler supports the specified command-
line options.
Fri Mar 24 12:05:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Thu Mar 23 16:20:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_orb_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Thu Mar 23 16:00:49 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/Svc_Conf_Lexer.cpp:
Fixed two bugs.
1) Line numbers were not calculated correctly as in most cases the
new line characters were thrown away but not counted.
2) Strings were not allowed to contain nested quotes. However,
the original lexer allowed this. Thanks to JR Andreassen
<janrune@io.com> for reporting this.
Thu Mar 23 14:37:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/vcl.mpb:
Also set specific options for the bds template
Thu Mar 23 14:37:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_limits.h:
Updated documentation why we have a VxWorks specific
workaround
Thu Mar 23 14:22:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
* bin/PerlACE/Run_Test.pm:
Add lynxos platform default timing configuration
Thu Mar 23 12:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/bor.mpd:
If linkflags are available, generate them into the project
file
* bin/MakeProjectCreator/config/vcl.mpb:
Added -aa to the link flags to indicate that we link a
windows application. This prevents a dosbox from appearing
when we start a vcl windows app.
Thu Mar 23 03:41:18 UTC 2006 Ciju John <john_c@ociweb.com>
* ace/Time_Value.inl (set):
timespec_t doesn't have a 'sec' member. Changed it to 'tv_sec'.
Wed Mar 22 18:42:36 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
From Russell Mora <russell_mora at symantec dot com>
* ace/Time_Value.inl:
With MSVC8 the type of time_t is by default 64-bit unless
_USE_32BIT_TIME_T is defined - changed #ifdef to recognise this
and also changed other set() methods to use the version that
knows how to handle the 64-bit type.
Wed Mar 22 17:55:48 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb
* bin/MakeProjectCreator/config/ciao_servant_dnc.mpb
* bin/MakeProjectCreator/config/ciao_deployment_dnc.mpb
Reverted my earlier change
"Tue Mar 21 21:58:17 UTC 2006 Gan Deng
<gan.deng@vanderbilt.edu>".
I will put earlier changes back in later when all the
libraries in CIAO to support pub/sub services have
been checked in.
Wed Mar 22 16:19:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-osf1-4.0.h:
Added ACE_HAS_NONCONST_SENDMSG
Wed Mar 22 15:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_osf1_4.x_g++.GNU:
Removed -fno-strict-prototypes from the CCFLAGS, thanks to
Karl Schmitt <Karl dot Schmitt at dfs dot de> for reporting this.
Tue Mar 21 21:58:17 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_events_dnc.mpb
* bin/MakeProjectCreator/config/ciao_servant_dnc.mpb
* bin/MakeProjectCreator/config/ciao_deployment_dnc.mpb
Added a base MPC project to support pub/sub integration
in CIAO.
Tue Mar 21 19:06:12 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
Committing on behalf of Adam Mitz <mitza@ociweb.com>.
* bin/PerlACE/Process_Win32.pm:
In some cases .EXE was not being added to the end of the
executable name. This change fixes that problem and also changes
Spawn() to return -1 on failure instead of exiting.
Tue Mar 21 15:30:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Tue Mar 21 14:29:29 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
If system lacks the cpu_set_t type, skip the feature tests for
sched_getaffinity() and sched_setaffinity(). The interface of
these system calls have changed three times, and ACE currently
only supports the latter two varients. The supported varients
both have arguments of type cpu_set_t.
On a system with the first varient, the feature tests detects
the existance of sched_getaffinity() and sched_setaffinity(),
it also detects that it's the not most current varient. This
results in feature test macros being defined for the second
varient, which causes a build failure in OS_NS_Thread.cpp.
By avoiding the feature tests, we avoid defining any processor
affinity related feature test macros, and ACE will be compiled
as if the system does not support any form of processor
affinity.
See bugzilla issue 2466 for details.
Tue Mar 21 11:03:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Misc/childbirth_time.cpp:
* examples/OS/Process/imore.cpp:
Fixed unicode build errors
Tue Mar 21 06:49:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Removed all PrismTech tests
Mon Mar 20 22:53:09 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/Makefile.am: Restored hand-inserted settings to allow running
the ACE tests during "make check". This needs to be added to the
mpc file, but we're discussing how to do this.
Mon Mar 20 08:58:26 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_other_tests.lst:
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Mon Mar 20 08:58:26 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ACE-INSTALL.html: Removed all references to egcs, which
is hopelessly out of date..
Mon Mar 20 14:54:23 UTC 2006 Olli Savia <ops@iki.fi>
* ace/Task_Ex_T.h:
Added a workaround for buggy LynxOS 3.x compiler.
Mon Mar 20 10:15:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TP_Reactor.cpp (post_process_socket_event):
Before acquiring the token, first check if we really have to do some
post processing, if not, then we just don't acquire the token. This
fixes the performance drop in the TAO thread pool performance test.
Thanks to Kobi Cohen-Arazi <kobi dot cohenarazi at gmail dot com>
for noticing this drop in the performance stats.
* ace/TP_Reactor.h:
Small documentation improvement
Sun Mar 19 21:30:39 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ACE-INSTALL.html (href): Rearranged the order of things
so that it explains how to build and install ACE before going
into all sorts of details about various platforms and compilers.
Thanks to Axter <google at axter dot com> for motivating this.
Sat Mar 18 15:20:45 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Timer_Queue_Adapters.cpp (activate): Set active_ to 1
in case we were deactivated. Thanks to Yauheni Akhotnikau
<eao197 at intervale dot ru> for reporting this.
Fri Mar 17 16:35:36 UTC 2006 Ossama Othman <ossama@dre.vanderbilt.edu>
* docs/Symbol_Versioning.html:
New document that describes how to use ACE's versioned namespace
support. [Bug 2458]
Fri Mar 17 15:50:00 UTC 2006 Simon Massey <sma@prismtech.com>
* tests/run_test.lst
Add more !DISABLE_ToFix_LynxOS_* marks to failing tests
Fri Mar 17 13:38:18 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciaocidldefaults.mpb:
New file, containing cidl-related stuff removed from
ciao_servant_dnc.mpb, which now inherits from the new
base project. These changes allow CIAO applications
to set up the build either in the existing way, where
the servant build executes the CIDL compiler, then the
IDL compiler on the resulting *E.idl file, then the
C++ compiler on all the results, or to have separate
builds for CIDL files (which executes first), then
IDL files, then generated and hand-written C++ files.
* bin/MakeProjectCreator/config/ciao_servant_dnc.mpb:
Changes described in the item above.
Fri Mar 17 13:37:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TP_Reactor.cpp:
Fixed variable not used warning
Fri Mar 17 08:56:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TP_Reactor.{h,cpp,inl}:
Fixed bugzilla #2395. This was about a race condition in the
TP_Reactor, when the handle_x method returns -1 the handler
is removed and after that we try to resume. Normally this resume
is a noop because for the handle there is no event handler anymore.
But to resume the handle we need to reacquire the lock on the
reactor, in the time between the remove and the reacquire we could
have received a new connection for which the handle is used which
we already freed and then we can resume this handle but then for
a new eventhandler. The fix is to do the remove and resume as atomic
operation. Thanks to Bala Natarajan and Steve Huston for reviewing
the patches and Kees van Marle for debugging and analyzing this
problem.
Thu Mar 16 21:54:29 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Timer_Heap_T.cpp (grow_heap): Reset timer_ids_min_free_ after
growing the heap. Fixes Bugzilla #2447 where timer IDs may be
improperly duplicated under certain conditions.
* tests/Timer_Queue_Test.cpp: Added a new function,
test_unique_timer_heap_ids(), as supplied in Bugzilla #2447 to
verify the fix.
Thank you very much to Dan Pozdol <dpozdol at wolve dot com> and
Paxton Mason <pmason at wolve dot com> for identifying the bug,
its conditions and causes, supplying the test program and supplying
the fix!
* THANKS: Added Dan Pozdol to the Hall of Fame.
Thu Mar 16 16:30:00 UTC 2006 simon massey <sma@prismtech.com>
* tests/run_test.lst
Add !DISABLE_ToFix_LynxOS_* marks to failing ACE tests
Thu Mar 16 15:53:55 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* ace/UUID.cpp
* protocols/ace/RMCast/Simulator.cpp
Updated these files to solve some potential static-cast errors.
Thu Mar 16 13:47:56 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/config-vxworks6.2.h:
In kernel mode, VxWorks 6.2 lacks suseconds_t.
Thu Mar 16 12:27:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/ciao_DAnCE.doxygen:
Fixed incorrect links to the location of the documentation of the
other ACE/TAO libraries
Thu Mar 16 12:20:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* html/index.html:
Added CIAO Config Handlers
Thu Mar 16 12:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
Set GENERATE_HTMLHELP to YES. This generates a few extra files
which our users can use to convert the generated htlm documentation
easily to a windows help file
Thu Mar 16 12:05:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
Set DOT_MULTI_TARGETS to TRUE, this will speedup the doxygen
generation.
Wed Mar 15 16:38:08 UTC 2006 Olli Savia <ops@iki.fi>
* ace/OS_NS_Thread.inl:
Only LynxOS 3.0.x has buggy pthread_cond_timedwait.
* ace/Reverse_Lock_T.h:
Added a workaround for buggy LynxOS 3.x compiler.
Wed Mar 15 15:27:51 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* ace/Capabilities.cpp
* ace/Codecs.cpp
Updated these files to solve the Capabilities_Test & Codecs_Test
tests errors.
Wed Mar 15 12:18:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
Set SEARCHENGINE to YES for all doxygen config files, enables
the possibility to do searches in the doxygen generated
documentation
Wed Mar 15 11:34:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Handle_Set.{cpp,inl}:
Use prefix increment/decrement instead of postfix
Tue Mar 14 11:22:35 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/String_Base.inl (empty),
* ace/String_Base.h (ACE_String_Base): Added
an empty() method to be more like STL strings. Thanks to
Patrick Rabau <pr2345 at gmail dot com> for contributing this.
Tue Mar 14 23:33:27 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/OS_NS_Thread.inl (recursive_mutex_cond_unlock): Fix this for
WinCE. CE doesn't have a RecursionCount, and LockCount is not an
indicator of recursion on WinCE; instead, see when it's unlocked
by watching the OwnerThread, which will change to something other
than the current thread when it's been unlocked "enough" times.
Thanks to Spencer Vanroekel <Spencer dot Vanroekel at Siemens dot
com> for the investigations leading to this solution.
* THANKS: Added Spencer Vanroekel to the Hall of Fame.
Tue Mar 14 20:58:12 UTC 2006 jiang,shanshan <shanshan.jiang@vanderbilt.edu>
* ace/WIN32_Asynch_IO.cpp
* ace/ACE.cpp
* ace/Capabilities.cpp
* ace/Codecs.cpp
* ace/FIFO.cpp
* ace/FIFO.h
* ace/FIFO_Recv.cpp
* ace/FIFO_Recv.h
* ace/FIFO_Recv_Msg.cpp
* ace/FIFO_Recv_Msg.h
* ace/FIFO_Send.cpp
* ace/FIFO_Send.h
* ace/FIFO_Send_Msg.cpp
* ace/FIFO_Send_Msg.h
* ace/Get_Opt.cpp
* ace/INET_Addr.cpp
* ace/MEM_Acceptor.cpp
* ace/MEM_IO.cpp
* ace/RB_Tree.cpp
* ace/Reactor.cpp
* ace/SOCK_Dgram_Mcast.cpp
* ace/SV_Semaphore_Complex.cpp
* ace/SV_Semaphore_Complex.h
* ace/SV_Semaphore_Complex.inl
* ace/SV_Semaphore_Simple.cpp
* ace/SV_Semaphore_Simple.h
* ace/SV_Semaphore_Simple.inl
* ace/TTY_IO.cpp
* ace/UUID.cpp
* ACEXML/common/FileCharStream.cpp
* ACEXML/common/HttpCharStream.cpp
* ACEXML/common/Transcode.cpp
* ACEXML/common/XML_Macros.h
* ACEXML/parser/parser/Parser.cpp
* ACEXML/parser/parser/Parser.i
* apps/gperf/src/Gen_Perf.cpp
* apps/gperf/src/Key_List.cpp
* apps/gperf/src/List_Node.cpp
* apps/gperf/src/Options.cpp
* protocols/ace/HTBP/HTBP_ID_Requestor.cpp
Updated these files to solve the warnings when setting up "VC level
4 warnings" on Windows. These warnings include "unreachable code",
"assignment within conditional expression", "conversion from some
type to another type, possible loss of data", "local variable may be
used without having been initialized" and so on.
Thanks to Lukas Gruetzmacher <gruetzmacher at ais-dresden dot de>
for motivating the fix to these "VC level 4 warnings".
Tue Mar 14 15:55:08 UTC 2006 Olli Savia <ops@iki.fi>
* ace/Task_T.h:
Added a workaround for buggy LynxOS 3.x compiler.
* include/makeinclude/platform_lynxos.GNU:
Made debug=0 as default for LynxOS 3.x
Tue Mar 14 15:50:09 UTC 2006 Olli Savia <ops@iki.fi>
* ace/OS_NS_Thread.cpp:
Removed the :: prefix from pthread calls that are macros
on LynxOS.
Tue Mar 14 09:51:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/generate_rel_manpages:
Updated doxygen version
Mon Mar 13 22:01:23 UTC 2006 Olli Savia <ops@iki.fi>
* tests/run_test.lst:
Do not run Multicast_Test and Process_Strategy_Test on LynxOS.
Mon Mar 13 21:47:22 UTC 2006 Olli Savia <ops@iki.fi>
* ace/OS_NS_Thread.inl:
Removed the :: prefix from pthread calls that are macros
on LynxOS.
* ace/config-lynxos.h:
Do not define _POSIX_THREADS_CALLS under LynxOS 4.0.
Thanks to Abdullah Sowayan <abdullah.sowayan@lmco.com>
for reporting the problem and providing the initial patch.
Mon Mar 13 22:21:25 UTC 2006 Nilabja R <nilabjar@dre.vanderbilt.edu>
* ace/Process.h:
Changed the documentation of ACE_Process::spawn function.It
returns 1 if avoid_zombies option is set. does not return the
pid.
Mon Mar 13 19:35:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TP_Reactor.cpp:
Fixed typo in comment
* ace/OS_NS_sys_select.inl:
Initialize pointer with 0
* ace/ACE.cpp:
Use prefix decrement/increment instead of postfix. Replaced
several c-style casts with C++ casts
Mon Mar 13 17:20:47 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* ace/os_include/sys/os_time.h:
Fixed a fuzz build error.
Mon Mar 13 15:15:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Token.cpp:
Use prefix decrement/increment instead of postfix
Mon Mar 13 14:59:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Select_Reactor_Base.cpp:
Initialise several pointers to 0
Mon Mar 13 14:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Handle_Set.h:
Doxygen improvements
* ace/Handle_Set.inl:
Use prefix increment instead of postfix
Mon Mar 13 07:51:10 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* Reverted this change
Sun Mar 12 09:10:01 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
Since it was causing runtime failures. Thanks to Johnny for
reporting this.
Mon Mar 13 13:26:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TP_Reactor.cpp (handle_socket_events):
When suspend_i returns -1 return directly
Mon Mar 13 12:11:52 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* ace/OS_NS_Thread.inl
Yank error reported by Abdullah, <abdullah.sowayan@lmco.com> fixed.
Sun Mar 12 19:21:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Event_Handler.h:
Documentation improvement
* ace/UTF32_Encoding_Converter.cpp:
Initialise pointer with 0
* ace/Select_Reactor_T.cpp (dump):
Also dump the contents of the suspend set
* ace/Select_Reactor_Base.cpp (dump):
Improved output
Sun Mar 12 09:10:01 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/TSS_T.cpp: Changed all calls of the form
if (ACE_Thread::getspecific (this->key_, (void **) &tss_adapter) == -1)
to
void *temp = tss_adapter; // Need this temp to keep G++ from complaining.
if (ACE_Thread::getspecific (this->key_, &temp) == -1)
to silence GCC warnings. Thanks to Lothar for this, as well.
Sat Mar 11 09:09:35 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/CDR_Stream.inl: Changed all calls of the form
ACE_OutputCDR::write_float (ACE_CDR::Float x)
{
return this->write_4 (reinterpret_cast<const ACE_CDR::ULong*> (&x));
}
to
ACE_OutputCDR::write_float (ACE_CDR::Float x)
{
void * tmp = &x;
return this->write_4 (reinterpret_cast<const ACE_CDR::ULong*> (tmp));
}
to silence GCC warnings. Thanks to Lothar Werzinger for
suggesting this fix.
Sun Mar 12 11:00:08 UTC 2006 Simon McQueen <sm@prismtech.com>
* bin/PerlACE/Process_Win32.pm:
Don't postfix ".EXE" onto executables if they already have it and
IgnoreExeSubDir is set. Will make this:
$PERL_SCRIPT = new PerlACE::Process($^X);
$PERL_SCRIPT->Arguments("some_perl_script.pl");
$PERL_SCRIPT->IgnoreExeSubDir(1);
... start working again.
Sat Mar 11 12:54:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl.>
* ace/Timer_Wheel_T.h:
Don't split the unimplemented macros over multiple lines, fixes
compile problems with the Sun compilers. Thanks to Sven-Uwe
Sieler-Hornke
<sven-uwe dot sieler-hornke at investment-cybernetics dot de>
for reporting this
Fri Mar 10 16:01:58 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
Committing the following on behalf of Adam Mitz
<mitza at ociweb dot com>.
* bin/tao_orb_tests.lst:
Added TAO/tests/CollocationLockup.
Fri Mar 10 14:35:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.lst:
Don't run Multicast_Test_IPV6 in ACE_FOR_TAO builds
Fri Mar 10 08:58:52 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/pkg.m4:
Add pkg.m4 from pkg-config 0.20 distribution, so configure
script can be regenerated on systems without it installed.
Thu Mar 9 09:18:58 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* COPYING: Updated the date to include 2006.
Thanks to Alan Kierstead <ackierstead at fedex dot com> for
motivating the fix to this oversight.
Thu Mar 9 15:28:53 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/concurrency.mpb:
* bin/MakeProjectCreator/config/concurrency_serv.mpb:
* bin/MakeProjectCreator/config/dseventlogadmin.mpb:
* bin/MakeProjectCreator/config/dslogadmin.mpb:
* bin/MakeProjectCreator/config/etcl.mpb:
* bin/MakeProjectCreator/config/event.mpb:
* bin/MakeProjectCreator/config/event_serv.mpb:
* bin/MakeProjectCreator/config/ftrteventchannel.mpb:
* bin/MakeProjectCreator/config/htiop.mpb:
* bin/MakeProjectCreator/config/naming.mpb:
* bin/MakeProjectCreator/config/naming_serv.mpb:
* bin/MakeProjectCreator/config/notification.mpb:
* bin/MakeProjectCreator/config/notification_serv.mpb:
* bin/MakeProjectCreator/config/property.mpb:
* bin/MakeProjectCreator/config/property_serv.mpb:
* bin/MakeProjectCreator/config/rtevent_serv.mpb:
* bin/MakeProjectCreator/config/rteventlogadmin.mpb:
* bin/MakeProjectCreator/config/rtkokyuevent.mpb:
* bin/MakeProjectCreator/config/rtnotify.mpb:
* bin/MakeProjectCreator/config/trading.mpb:
* bin/MakeProjectCreator/config/trading_serv.mpb:
Updated these base projects to fix the TAO_ORBSVCS GNU Make
macro. In many cases, I just moved the 'tagchecks' setting out of
the _serv.mpb into the base for both _serv.mpb and _skel.mpb
files. In others, I had to add the missing 'tagchecks' setting.
Thu Mar 9 08:58:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/ciao_deployment_svnt.mpb:
Removed include path that is not there anymore
Wed Mar 8 20:58:39 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ACE-INSTALL.html:
Improve documentation for autoconf/automake build.
Wed Mar 8 15:06:56 UTC 2006 Simon McQueen <sm@prismtech.com>
* bin/tao_orb_tests.lst:
Scheduled regression test for bug #2429. See ticket for status.
Wed Mar 8 10:17:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Reactor/TP_Reactor/run_test.pl:
Both clients should start in parallel, not after each other
Wed Mar 8 04:53:09 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/ace.m4:
Change ACE_PATH_FL to pass --enable-gl to fltk-config.
Wed Mar 8 03:32:08 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/ace.m4:
Changed ACE_ENABLE_XT_REACTOR to AC_REQUIRE() ACE_PATH_XT
instead of AC_PATH_XTRA.
Changed ACE_PATH_FL to AC_REQUIRE() ACE_PATH_X11.
Add ACE_PATH_XT autoconf macro that sets ACE_XT_CPPFLAGS,
ACE_XT_LDFLAGS, and ACE_XT_LIBS.
Add ACE_PATH_X11 autoconf macro that sets ACE_X11_CPPFLAGS,
ACE_X11_LDFLAGS, and ACE_X11_LIBS.
Tue Mar 7 18:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/DLL/Newsweek.cpp:
Fixed compile error
Tue Mar 7 18:48:31 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Event_Handler.cpp (read_adapter): Never pass the handler's
handle value to handle_input(). The handle_input() call is being
made on behalf of stdin, not any other handle. It also mimics
the behavior of the non-Windows case, where ACE_STDIN is registered
with the reactor, regardless of the handler's handle value.
Thanks to Aaron Scamehorn <aaron dot scamehorn at cogcap dot com>
for noticing this problem.
* THANKS: Added Aaron Scamehorn to the Hall of Fame.
Tue Mar 7 13:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Reactor.h:
Doxygen improvements
Tue Mar 7 09:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Don't run Bug_2417_Regression in ST builds
Tue Mar 7 08:45:26 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
* tests/Makefile.am:
Regenerate.
* bin/MakeProjectCreator/config/automake.features:
Set athena and motif to 1
* bin/MakeProjectCreator/config/ace_fl.mpb:
For autoconf build:
Change @ACE_FLTK_CPPFLAGS@ and @ACE_FLTK_LIBS@ to
$(ACE_FLTK_CPPFLAGS) and $(ACE_FLTK_LIBS)
Add $(ACE_FLTK_LDFLAGS) to linkflags.
Subtract '$(ACE_X11_CPPFLAGS)' from compile_flags.
Subtract '$(ACE_X11_LDFLAGS)' from libpaths.
Subtract '$(ACE_X11_LIBS)' from macros.
* bin/MakeProjectCreator/config/ace_qt.mpb:
For autoconf build:
Change @ACE_QT_CPPFLAGS@ and @ACE_QT_LIBS@ to
$(ACE_QT_CPPFLAGS) and $(ACE_QT_LIBS)
Add $(ACE_QT_LDFLAGS) to linkflags.
* bin/MakeProjectCreator/config/ace_tk.mpb:
For autoconf build:
Change @ACE_TK_CPPFLAGS@ and @ACE_TK_LIBS@ to
$(ACE_TK_CPPFLAGS) and $(ACE_TK_LIBS)
Add $(ACE_TK_LDFLAGS) to linkflags.
* bin/MakeProjectCreator/config/ace_xt.mpb:
For autoconf build:
Add $(ACE_XT_CPPFLAGS) to compile_flags.
Add $(ACE_XT_LDFLAGS) to linkflags.
Add $(ACE_XT_LIBS) to pure_libs.
* bin/MakeProjectCreator/config/ace_11.mpb:
For autoconf build:
Add $(ACE_X11_CPPFLAGS) to compile_flags.
Add $(ACE_X11_LDFLAGS) to linkflags.
Add $(ACE_X11_LIBS) to pure_libs.
Tue Mar 7 08:01:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/DLL/Newsweek.cpp:
* examples/DLL/Today.cpp:
* examples/Shared_Malloc/test_persistence.cpp:
Fixed compile errors
Tue Mar 7 07:19:06 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
* tests/Makefile.am:
Regenerated.
Tue Mar 7 07:16:40 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ace.m4:
Add Truncate.h to Header_Files section.
Tue Mar 7 07:12:39 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/config/ace_qt.mpb:
For autoconf build:
Subtract '$(QTDIR)/include' from includes.
Subtract '$(QTDIR)/lib' from libpaths.
Subtract 'QT_THREAD_SUPPORT' from macros.
Tue Mar 7 05:50:31 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Regenerate.
* bin/MakeProjectCreator/config/ace_fl.mpb:
For autoconf build:
Add @ACE_FLTK_CPPFLAGS@ to compile_flags.
Add @ACE_FLTK_LIBS@ to pure_libs.
* bin/MakeProjectCreator/config/ace_qt.mpb:
For autoconf build:
Subtract 'qt-mt$(QT_VERSION)' from lit_libs.
Add @ACE_QT_CPPFLAGS@ to compile_flags.
Add @ACE_QT_LIBS@ to pure_libs.
* m4/ace.m4:
Implement ACE_PATH_FL.
Implement ACE_PATH_QT.
Implement ACE_ENABLE_FL_REACTOR.
Implement ACE_ENABLE_QT_REACTOR.
Thanks to Thomas Girard <thomas dot g dot girard at free dot fr>
for these fixes.
Mon Mar 6 18:25:41 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/OS_NS_Thread.inl:
* ace/os_include/os_semaphore.h:
Added an implementation for timed semaphore wait provided by
Gottwald Port Technology. It is very similar to the emulated
semphore in the event that ACE_HAS_POSIX_SEM is not defined.
Previously, this was not supported at all when ACE_HAS_POSIX_SEM
was defined.
* ace/os_include/sys/os_time.h:
Added sys to the file name to avoid Doxygen warnings.
* bin/MakeProjectCreator/config/ace_qt.mpb:
This change coincides with a change in MPC where the qt library
setting was changed.
* bin/tao_other_tests.lst:
I added !DISABLE_INTERCEPTORS to all the Security tests as
both the TAO_Security library and TAO_SSLIOP library require
interceptors.
* include/makeinclude/rules.local.GNU:
Removed an extra dollar sign, that GNU Make apparently didn't
care about but shouldn't have been there anyway.
* bin/MakeProjectCreator/config/global.mpb:
Removed this file. It is redundant to the global.mpb found in
MPC.
Mon Mar 06 15:44:12 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/DLL/Newsweek.{h,cpp}:
* examples/DLL/Today.{h,cpp}:
* examples/Shared_Malloc/test_persistence.cpp:
Added operator delete, fixes warnings with icc 9.1
* ace/CDR_Stream.cpp:
* tests/Thread_Pool_Test.cpp:
Initialise pointer with 0
* ace/Pipe.inl:
Replaced c-style casts with C++ casts
* ace/Svc_Handler.h:
Made the closing_ member an int, it is used that way, not as
char.
Mon Mar 06 15:13:12 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added Bug_2417_Regression
Sun Mar 05 11:10:32 2006 Wallace Zhang <zhangw@ociweb.com>
* ACE version 5.5 released.
Sun Mar 5 15:35:54 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* bin/make_release:
Corrected a warning when generating WinCE projects.
Sat Mar 4 14:09:44 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* ace/ATM_Acceptor.h:
Added a missing semicolon. Thanks to Felix Li <fengli at
gmail dot com> for reporting this.
Thu Mar 2 02:01:12 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* NEWS:
Updated this file with more inputs.
Thu Mar 2 00:51:18 UTC 2006 Steve Huston <shuston@riverace.com>
* NEWS: Added Win64 and WinCE notes.
Wed Mar 1 23:47:13 UTC 2006 Steve Huston <shuston@riverace.com>
* bin/make_release: Added "wince=1" to the MPC -features option for
the WinCE file generation; helps prevents WinCE-hostile projects
from being generated.
* ace/config-win32-msvc-8.h: VC8 still lacks sigatomic_t for WinCE 5.
* ace/config-WinCE.h: Removed some compiler-specific settings that
were moved to compiler-specific configs previously but not updated
for CE. Updated things that are now available.
* tests/CDR_File_Test.cpp:
* tests/CE_fostream.{h cpp}: CE iostream hack not needed for CE when
iostreams are available (VC 8, included).
* examples/Reactor/TP_Reactor/client.cpp:
* examples/Reactor/TP_Reactor/server.cpp:
* examples/Reactor/TP_Reactor/AcceptHandler.cpp:
* examples/Reactor/TP_Reactor/ReadHandler.cpp:
* netsvcs/servers/main.cpp:
* tests/Array_Map_Test.cpp: Use ACE_TEXT around all pieces of
concatenated string; VC8 WinCE misses the line ending.
Removed ACE_TEXT around ACE_TRACE's argument; ACE_TRACE adds it.
* netsvcs/lib/Token_Handler.{h cpp} (init, parse_args): Changed argv
from char*[] to ACE_TCHAR*[]. Also fixed some missing ACE_TEXTs.
* protocols/ace/RMCast/Acknowledge.cpp:
* protocols/ace/RMCast/Link.cpp:
* protocols/ace/RMCast/Protocol.h:
* protocols/ace/RMCast/Retransmit.cpp:
* protocols/ace/RMCast/Socket.cpp:
* protocols/ace/TMCast/LinkListener.hpp:
* protocols/ace/TMCast/TransactionController.hpp:
* protocols/ace/TMCast/Group.cpp: ACEified naked system calls abort()
and perror().
* examples/APG/ThreadSafety/Tokens_Deadlock.cpp:
* examples/APG/Processes/Spawn.cpp:
* examples/APG/Processes/Process_Mutex.cpp: Add missing ACE_TEXT around
string args.
* examples/NT_Service/NT_Service.mpc: Add avoids += wince - CE doesn't
do services.
* examples/Web_Crawler/main.cpp: Don't try SIGFPE protection if
on WinCE.
* examples/Web_Crawler/URL_Status.h: Changed STATUS_NOT_FOUND to
STATUS_ITEM_NOT_FOUND and STATUS_NOT_IMPLEMENTED to
STATUS_OP_NOT_IMPLEMENTED. CE apparantly has macros with these
names that messes this up.
* examples/Reactor/WFMO_Reactor/WFMO_Reactor.mpc: Added wince to the
"avoids" clause for APC, Registry_Changes, Talker and
Window_Messages; WinCE doesn't the necessary features.
* examples/Reactor/WFMO_Reactor/Window_Messages.cpp: Add missing
#include "ace/Auto_Event.h"
* tests/MT_SOCK_Test.cpp: Remove the #if ACE_WIN64 from the check
for first send causes reset. This happens with 32-bit as well,
at least on Win XP-64 SP2. It's unrelated to the functionality under
test, and if there's an actual sending side botch that causes the
socket to be closed prematurely, it should show up as another error
in the server side.
Wed Mar 1 16:12:50 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/run_test.lst: Added !BAD_AIO to the Proactor_Test and
Proactor_Test_IPV6. This makes it possible to avoid this test on
platforms that simply aren't capable of performing decent AIO.
Wed Mar 1 10:22:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/MT_SOCK_Test.cpp:
Fixed compile problem
Wed Mar 1 09:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Env_Value_T.h:
First to all template specializations before the generic one and
use template<> for the specializations, this fixes the compile
errors with GCC 4.1
Wed Mar 1 07:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Reactor/TP_Reactor/AcceptHandler.cpp:
* examples/Reactor/TP_Reactor/server.cpp:
Fixed warnings in vc6 builds
Wed Mar 1 00:16:26 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Recursive_Thread_Mutex.cpp (get_nesting_level): On Win64 with
AMD64/EM64T, use the CRITICAL_SECTION's RecursionCount member, not
LockCount, as was changed in this entry:
Tue May 6 11:50:18 2003 Chad Elliott <elliott_c@ociweb.com>
It remains to be seen under what conditions LockCount is used (it
may be for Itanium, for example) but for now, use of RecursionCount
is conditional to AMD64.
* tests/Reactor_Dispatch_Order_Test.cpp: Print some useful order info
rather than ACE_ASSERT everywhere. Also fixed some ACE_TEXT stuff.
Tue Feb 28 23:28:57 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
Add DEFAULT_INCLUDES definition that got lost during regeneration.
Fixes autoconf builds on case-insensitive filesystems.
Tue Feb 28 19:46:16 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/MT_SOCK_Test.cpp: Add a special-case check for Win64. It
appears that Win64 listen/accept side has some changed behavior
but I haven't found any Windows docs to state this; just observed
behavior. It appears that WinXP-64 will appear to accept connections
at the TCP level past the listen backlog but if data arrives before
the actual application-level accept() occurs, the connection is
reset. I can see where this would be sensible for a web server or
something like that, but it causes a problem for this use case where
the test client side connects and starts sending.
Note I also tried modifying the checks in the connect path (in
ACE.cpp, handle_timed_complete()), but the connection really does
appear to be accepted clean; a peek recv will complete without
the reset being noticed, hence my speculation that Microsoft
"enhanced" the behavior at the server side.
Also, fixed a lot of bad indentation and some missing ACE_TEXTs.
Tue Feb 28 11:12:12 UTC 2006 Johnny Willemsen <jwilemsen@remedy.nl>
* ace/Connector.cpp:
Initialise several pointers explicitly with 0
Tue Feb 28 00:21:53 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/config-WinCE.h: Don't set ACE_LACKS_IOSTREAM_TOTALLY for
MSVC 8 and up.
* ace/CDR_Stream.cpp (grow_and_adjust):
* ace/CDR_Base.cpp (consolidate): Avoid losing data when
comparing ptrdiff_t values.
* ace/Event_Handler.{h cpp}: Allow
ACE_Event_Handler:register_stdin_handler to build on WinCE.
* ace/FILE_IO.cpp (send, recv): Truncate the number of iovec tuples
down to range of an int.
* ace/OS_NS_stropts.{h cpp}:
* ace/OS_NS_sys_socket.{h cpp}: Allow QoS-enabled operations on WinCE
5.0 and up.
* ace/OS_NS_unistd.inl: 64-bit adjustments.
* ace/Time_Value.{cpp inl}:
* tests/Time_Value_Test.cpp: Add ACE_WIN64 to the platforms that use
LONG_MAX/LONG_MIN rather than std::numeric_limits<time_t> for the
time bounds. On Win64, time_t is 64 bits, yet the timeval members
used internally to ACE_Time_Value are still long. This makes time
values outside the LONG_MAX, LONG_MIN range very broken and many
tests start failing in odd ways. Thanks to J.T. Conklin for this fix.
* ace/Token_Request_Reply.{cpp inl}: 32/64 bit adjustments.
* netsvcs/lib/Token_Handler.{h cpp} (ACE_TS_Mutex, ACE_TS_WLock,
ACE_TS_RLock): Changed the name argument from char* to ACE_TCHAR*
to build clean on wchar systems. The classes that use this and that
this uses already were ACE_TCHAR.
Mon Feb 27 22:36:20 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/SSL/Makefile.am: Hand-corrected the addition of
ACE_TLS_CPPFLAGS, ACE_TLS_LDFLAGS, ACE_TLS_LIBS needed to pick up
user's specification of where the SSL libraries are.
Mon Feb 27 08:17:49 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Dev_Poll_Reactor.cpp (acquire_quietly): Moved the error message
so that it only is printed if it's a real error, not just a
timeout. Thanks to Oh Yoon Sik <boom at estsoft dot com> for
reporting this.
Sun Feb 26 19:21:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SOCK_IO.{cpp,inl}:
Fixed compile errors, it is ACE_Utils::Truncate, not ACE_Truncate
Sun Feb 26 13:05:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Reactor_Timer_Test.cpp:
Replaced asserts with ace_error to fix warnings in release builds
Sat Feb 25 22:57:32 UTC 2006 Steve Huston <shuston@riverace.com>
* tests/Process_Manual_Event_Test.cpp: On Windows, use a complete
path name to spawn the child process with, else it doesn't work when
the test is in a subdir of ACE_wrappers/tests, as it is with
Win XP64 and WinCE.
* ace/SOCK_IO.h: Clarify that on recvv() and sendv(), the number of
iovecs handled will be limited to the maximum value of an int.
* ace/SOCK_IO.inl (sendv, recvv): ACE_Truncate the 'n' number of
iovecs passed down to the ACE level.
* ace/SOCK_IO.cpp (send, recv): Reduce the size_t n iovec count to an
int range after dividing by 2 to fit it into the ACE_OS level.
Sat Feb 25 12:45:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Removed Security Policies tests, it has been removed from the repo
Fri Feb 24 23:43:04 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* tests/Time_Value_Test.cpp:
use std::numeric_limits<time_t>::max()
and std::numeric_limits<time_t>::min() (or LONG_MAX and LONG_MIN
for those platforms that lack std::numeric_limits<T>) instead of
ACE_INT32_MAX and ACE_INT32_MIN for time bounds.
Fri Feb 24 21:16:48 UTC 2006 xiong,ming <ming.xiong@vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_config_handlers.mpb
Add a verbatim to disable hidden_visibility for project
dependent on Config_Handlers
Fri Feb 24 19:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/auto_run_tests.pl:
If we can't chdir to the directory then don't die, but just continue
with the next test
Fri Feb 24 17:29:47 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Truncate.h: Include all needed code inline here and mark the
function and specialization inline.
* ace/Truncate.{inl cpp}: Removed. All code for ACE_Truncate is inlined
and included in the Truncate.h file.
* ace/ace.mpc:
* ace/Makefile.am: Removed Truncate.cpp and Truncate.inl.
Fri Feb 24 16:31:36 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Connector.{h cpp}: Changed the non_blocking_handles_ member
used to remember handles currently in-progress with a non-blocking
connect from ACE_Handle_Set to ACE_Unbounded_Set. This enables
ACE_Connector to be used with handle values outside the range
that select() can deal with (FD_SETSIZE) and is needed to run
large numbers of handles as is now possible with the
ACE_Dev_Poll_Reactor.
Removed the deprecated internal-only
SVC_HANDLER* ACE_NonBlocking_Connect_Handler::close (void)
method. There was already a replacement close() with more
sensible arguments that performed close operations in the correct
order, avoiding accesses to event handlers that were deleted.
Don't ACE_ASSERT when seeing a ACE_Connector::close() error; log
an error and keep going.
* ace/Container_Instantiations.cpp: Added instantiations for
ACE_Unbounded_Set<ACE_HANDLE>, used in ACE_Connector.
* ace/Dev_Poll_Reactor.cpp (find_handler): Increment the found
handler's reference count, as the other reactor implementations do.
* ace/Dev_Poll_Reactor.h: Fix typos.
Fri Feb 24 15:38:20 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/ace.m4:
Fix typo in last change:
Thu Feb 23 23:00:45 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
Fri Feb 24 15:26:07 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* ace/config-lynxos.h
* ace/Log_Msg.cpp:
Back out code dealing with system's that have a
BROKEN_THREAD_KEYFREE after Olli Savia <ops@iki.fi> pointed
out that it breaks Task_Ex_Test.
Fri Feb 24 15:03:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Message_Block.h:
Doxygen improvements
Fri Feb 24 14:34:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Process_Manager.cpp:
Initialize pointer with 0
* ace/Process_Manager.h:
Tag the reap() method as deprecated
Fri Feb 24 14:10:06 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm:
Modified the 'vpath' code so that it does not require knowlege of
how MPC internally stores filename lists. It does not change any
functionality.
Fri Feb 24 13:55:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Reactor/TP_Reactor/client.cpp:
* examples/Reactor/TP_Reactor/server.cpp:
Made these compiling with wchar enabled
Fri Feb 24 11:51:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ACE_export.h:
Also for borland changed ACE_INLINE_TEMPLATE_FUNCTION to
ACE_Export
Fri Feb 24 11:24:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Fixed casing of Bug_2289_Regression
Fri Feb 24 00:19:22 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/ACE_export.h: Changed ACE_INLINE_TEMPLATE_FUNCTION to use
ACE_Export instead of "extern" for Visual C++. Fixes missing
ACE_Truncate symbols outside of the ACE library on Windows.
Thu Feb 23 23:22:18 UTC 2006 Steve Huston <shuston@riverace.com>
* examples/APG/Logging/Callback.h:
* examples/APG/Logging/Callback-2.h:
* examples/APG/Logging/Callback-3.h: Add conditional areas for
platforms lacking IOStream support.
Thu Feb 23 23:00:45 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/ace.m4:
Use "eval" when setting ACE_TCL_LIB to expand any variables in
${TCL_LIB_SPEC}. Thanks to Thomas Girard <thomas dot g dot
girard at free dot fr>.
Thu Feb 23 19:53:51 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* tests/DLL_Test_Impl.cpp:
Changed so nothrow operator delete has same exception
specification in declaration and definition.
Thu Feb 23 17:01:15 UTC 2006 Simon McQueen <sm@prismtech.com>
* bin/tao_orb_tests.lst:
Scheduled test for bug #2186. This will fail until fixed.
Thu Feb 23 15:56:24 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Svc_Handler.cpp:
Fix typo (identifier-name) introduced in:
Thu Feb 23 09:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Thu Feb 23 14:44:54 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* ace/Log_Msg.cpp:
Add code to ensure cleanup in ACE_Log_Msg::close (void).
For some systems, e.g. LynxOS, we need to ensure that
any registered thread destructor action for this thread
is disabled.
Thu Feb 23 14:54:52 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/ace.m4:
Tweak how ACE_TCL_CPPFLAGS, ACE_TCL_LIBS, ACE_TK_CPPFLAGS,
and ACE_TK_LIBS are defined.
* tests/Makefile.am:
Fix regeneration bug.
Thu Feb 23 10:05:22 UTC 2006 Simon McQueen <sm@prismtech.com>
* bin/tao_orb_tests.lst:
Scheduled regression tests for bugs #2289 and #2134.
Thu Feb 23 09:16:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Reactor/TP_Reactor/*:
Example program demonstrating the TP_Reactor. This is also a
test program for bugzilla bug 2395. For reproducing start
the perl script but also do other activity on the system,
then it can happen that the same event handler is invoked
from multiple threads. Thanks to Martin Kolleck and Tino
Riethmueller for creating this example program.
Thu Feb 23 08:35:09 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* ace/config-lynxos-pthread.h:
Remove this file. Change handling for LynxOS' use of macros
* include/makeinclude/platform_lynxos.GNU:
* ace/config-lynxos.h:
Revert changes for building dynamic libraries
* ace/os_include/os_pthread.h:
Remove inclusion of ace/config-lynxos-pthread.h
* ace/OS_NS_Thread.inl:
If it's a macro we can't say "::pthread_cancel"
Thu Feb 23 09:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/DLL_Test_Impl.{h,cpp}:
Added nothrow operator delete
* ace/TP_Reactor.h:
* ace/Signal.h:
Documentation improvement
* ace/Time_Value.cpp (operator*):
Use correct type for usec
* ace/Svc_Handler.cpp:
Use casts in operator delete
Thu Feb 23 08:08:26 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
* tests/Makefile.am:
Regenerate for TK Reactor changes.
Thu Feb 23 06:47:26 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/config/ace_tk.mpb:
Add automake specific section for TCL and TK CPPFLAGS and LIBS.
* m4/ace.m4:
Change ace_enable_{fl,qt,tk,xt}_reactor to
ace_user_enable_{fl,qt,tk,xt}_reactor for consistency.
Implement ACE_PATH_TCL.
Implement ACE_PATH_TK.
Implement ACE_ENABLE_TK_REACTOR.
Thanks to Thomas Girard <thomas dot g dot girard at free dot fr>
for these fixes.
Wed Feb 22 20:56:17 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/ACE_export.h: Added another macro, ACE_INLINE_TEMPLATE_FUNCTION,
to take care of the compiler differences when an inlineable
function template can be out-lined. Some compilers (e.g. Microsoft)
like an extern storage class to prevent multiple instances; others
(practically all others) refuse the extern storage class and
resolve the multiples at link time.
* ace/Truncate.{h inl}: Change ACE_NAMESPACE_INLINE_FUNCTION use to
ACE_INLINE_TEMPLATE_FUNCTION.
Wed Feb 22 22:18:56 UTC 2006 Olli Savia <ops@iki.fi>
* tests/run_test.lst:
Run some more tests on LynxOS.
Wed Feb 22 21:30:35 UTC 2006 Olli Savia <ops@iki.fi>
* ace/Truncate.inl:
Added include "ace/os_include/os_limits.h" to pull INT_MAX.
* ace/config-lynxos.h:
Define ACE_LACKS_NUMERIC_LIMITS when compiling with GCC 2.x.
Define ACE_HAS_POSIX_SEM on LynxOS 4.0.
Wed Feb 22 19:16:32 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/ACE_export.h: Add __HP_aCC 06.05 and up to the list of compilers
that don't like "extern inline".
Wed Feb 22 16:50:16 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/String_Base.{h cpp}: Add operator= to set string from a
CHAR*. Optimizes performance in this case by removing the need
for a temporary object. Thanks to Kelly Hickel <kfh at mqsoftware
dot com> for this improvement.
* tests/SString_Test.cpp: Added test for new operator=.
Wed Feb 22 17:26:01 UTC 2006 Olli Savia <ops@iki.fi>
* ace/TTY_IO.h:
Changed type of dtrdisable from int to bool.
* examples/IPC_SAP/DEV_SAP/reader/reader.cpp:
* examples/IPC_SAP/DEV_SAP/writer/writer.cpp:
Changed to reflect recent changes in TTY_IO.h.
Wed Feb 22 16:31:28 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/vcl.mpb:
Added the 'bmake' type in order to support VCL.
* bin/mpc.pl:
* bin/mwc.pl:
Simplified these scripts by using FindBin. Also, made a
modification to preserve @ARGV so that when it is used by the
workspace creators, it contains the original arguments provided by
the user.
Wed Feb 22 16:26:43 GMT 2006 Rich Seibel <seibel_r@ociweb.com>
* include/makeinclude/platform_aix_ibm.GNU:
* THANKS
Added templates=manual to set manually instantiated
templates (without setting ACE_HAS_EXPLICIT_TEMPLATE_
INSTANTIATION) and determining that -qeh=v6 is needed
to get the more general exception behavior.
Thanks to Marc Brown and Andrew Keane for suggesting
these changes.
Wed Feb 22 15:48:15 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Timer_Heap_T.cpp: Fixed mismatch signed/unsigned compare warning.
Wed Feb 22 08:33:03 UTC 2006 Don Sharp <Donald.Sharp@prismtech.com>
* include/makeinclude/platform_lynxos.GNU
* ace/config-lynxos.h
change settings for building dynamic libraries
* ace/config-lynxos-pthread.h
new file for handling LynxOS' use of macros
* ace/Log_Msg.cpp
* ace/os_include/os_pthread.h
Handle broken thread key free on LynxOS
Tue Feb 21 23:49:20 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Truncate.{h inl cpp}: New function template, ACE_Utils::Truncate,
for truncating types to int. Compares the value to the maximum int
value and, if passed value is greater, returns the max int; else
returns the original value cast to int. Useful for the many places
that return int but maintain larger types (such as size_t)
internally. There's a specialization for size_t since it's used so
much.
* ace/ace.mpc: Add Truncate.cpp
* ace/Makefile.am: Added Truncate.{h inl cpp}
* ace/Message_Queue_T.cpp:
* ace/Message_Queue.cpp: Use ACE_Utils::Truncate() to return size/count
related values that may overflow the range of an int. Prevents odd
conditions that may appear as failures when dealing with very large
numbers of items in a queue. And, resolves compile warnings.
* ace/Timer_Heap_T.cpp: In constructor, add checks to see if max_size_
is outside the range of a long and reduce it if so. This ensures we
can cast size_t values to a long as a timer ID (pop_freelist).
NOTE!!! In grow_heap(), the size is doubled and there's no check for
failures in range or in allocation. This a problem that should be
looked at.
* ace/Service_Manager.cpp (reconfigure_services):
* ace/WIN32_Asynch_IO.cpp:
* ace/UPIPE_Connector.cpp (connect): Fix compiler warnings.
Tue Feb 21 23:08:38 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/OS_NS_time.cpp: Add missing close brace for blank namespace
in ACE_HAS_WINCE case.
Tue Feb 21 20:20:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* protocols/ace/TMCast/MTQueue.hpp:
Initialise pointer to 0 to fix gcc4.1 warning
Tue Feb 21 19:26:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Fixed typo in this file
* bin/generate_compile_stats.sh:
Improved this script, print date/time after the Detail in html, also
when we can't find the footprint size of an object file, just list it
with ? as size, that way we can at least see all objects and don't
miss any.
* include/makeinclude/wrapper_macros.GNU:
Default use_dep_libs to 1
* bin/MakeProjectCreator/templates/gnu.mpd:
Only when use_dep_libs is set to 1 (which is the default) set DEPLIBS.
In the footprint builds we set use_dep_libs to 0 because it causes
problems when interpreting the map files generated by the linker.
Tue Feb 21 19:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Process_Manual_Event_Test.cpp:
Fixed this test
Fri Feb 17 08:15:57 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Asynch_Acceptor.h: Used ACE_DEFAULT_ASYNCH_BACKLOG instead
of ACE_DEFAULT_BACKLOG since the latter is set to a huge value
on Windows. Thanks to Alex Libman and Daniel <__daniel___ at icg
do tu-graz dot ac dot at> for their help.
* ace/Default_Constants.h: Added a new macro called
ACE_DEFAULT_ASYNCH_BACKLOG that defaults to 5.
Mon Feb 20 15:03:01 2006 Wallace Zhang <zhangw@ociweb.com>
* ACE version 5.4.10 released.
Sun Feb 19 13:38:32 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/make_release:
Fixed bug in excluding of mwc files
Fri Feb 17 19:16:32 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* NEWS:
Updated this file with more inputs.
Thu Feb 16 13:38:39 2006 Wallace Zhang <zhangw@ociweb.com>
* bin/generate_rel_manpages:
Updated the script with latest info at naboo.dre.
Thu Feb 16 13:38:00 UTC Simon Massey <sma@prismtech.com>
* bin/tao_orb_tests.lst:
Added regression test for Bugzilla 2403
Thu Feb 16 09:23:12 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/make_release:
Changed the exclude of mwc files, use TAO_* and CIAO_*
Thu Feb 16 08:33:12 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/performance_stats.sh:
Added AMI to the combined performance figure
Wed Feb 15 20:06:42 2006 Douglas C. Schmidt <schmidt@cse.wustl.edu>
* ace/Timer_Heap_T.cpp: Fixed cancel() so that it doesn't miss any
nodes due to reheapifying during a remove. Thanks to Oh Yoon
Sik <boom at estsoft dot com> for this fix.
Wed Feb 15 20:04:13 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
#include <sys/time.h> in ACE_HAS_POSIX_TIME feature test (if
supported by platform). Thanks to Vladimir Panov <gbr at
voidland dot org> for reporting this bug.
Wed Feb 15 19:58:36 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/fuzz.pl:
Modified the check_for_long_file_names function to correctly deal
with the length of the MPC project names instead of the length of
the .mpc file itself. The length of the .mpc file name does not
necessarily indicate the length of the generated project name.
Wed Feb 15 18:16:02 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Time_Value.cpp:
Adding/subtracting 0.999999 from max and min is required to really
represent a saturated time value.
Wed Feb 15 12:32:37 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/Svc_Conf_Lexer.cpp:
Changed two instances of memcpy() to memmove(). The areas being
copied could possibly overlap.
Wed Feb 16 11:40:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added new AdvSlotExt PI test
Wed Feb 16 07:54:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_sunos5_sunc++.GNU:
Disabled visibility by default, seems to cause some issues in the
builds at this moment
Tue Feb 14 22:56:39 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* include/makeinclude/rules.local.GNU:
Added *.core to list of files to clean.
Tue Feb 14 22:04:46 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* bin/MakeProjectCreator/config/security.mpb
* bin/MakeProjectCreator/config/ssliop.mpb
Fixes for linking errors/warnings in OS X.
Tue Feb 14 21:43:01 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
#include <sys/types.h> before <sys/mman.h> in
ACE_LACKS_MADVISE_PROTOTYPE feature test. Thanks to Vladimir
Panov <gbr at voidland dot org> for reporting and providing a
patch for this bug.
Tue Feb 14 18:36:16 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Time_Value.cpp:
Changed operator *= to use std::numeric_limits<time_t>::max()
and std::numeric_limits<time_t>::min() (or LONG_MAX and LONG_MIN
for those platforms that lack std::numeric_limits<T>) instead of
ACE_INT32_MAX and ACE_INT32_MIN when saturating the results.
This uses the correct limits for whatever underlying type time_t
is when std::numeric_limits<T> is available, and uses the limits
for the traditional type, long, when it is not.
Removed call to normalize(), as set() already normalizes results.
Tue Feb 14 14:47:00 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/fuzz.pl:
When checking for maximum length of mpc files, ensure that only
.mpc files are checked.
Tue Feb 14 08:34:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-lynxos.h:
Added ACE_HAS_CHARPTR_SHMDT
Tue Feb 14 08:24:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Svc_Handler.{h cpp}: Add ACE_LACKS_PLACEMENT_OPERATOR_DELETE
around the operator delete with nothrow. This fixes the compile
errors with Borland C++
Mon Feb 13 17:50:49 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Svc_Handler.{h cpp}: Add placement operator delete to match
the nothrow variant placement operator new. This ensures proper
cleanup if the constructor throws an exception.
* ace/config-hpux-11.00.h: Only set ACE_LACKS_PLACEMENT_OPERATOR_DELETE
for aC++ versions earlier than A.03.55.02. Fixes Bugzilla #2394.
Mon Feb 13 18:23:27 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Fix typos in ACE_HAS_CHARPTR_SHMAT and ACE_HAS_CHARPTR_SHMDT
feature tests.
Mon Feb 13 09:33:20 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/config-sunos5.5.h (ACE_IMPORT_SINGLETON_DECLARATION):
(ACE_IMPORT_SINGLETON_DECLARE):
Comment out these macro definitions. The "extern template"
extension available in MSVC++ and g++ doesn't work for Sun
Studio C++ compilers. An alternative may need to be found.
Mon Feb 13 14:51:10 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/Svc_Conf_Lexer.cpp:
Catch the possible situation where we were unable to allocate a
converter and mark it as a conversion failure.
* include/makeinclude/platform_vxworks5.5.x.GNU:
If we are compiling for a PPC, we need to add the -mlongcall
option for many TAO tests (and some user applications).
Mon Feb 13 11:49:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* netsvcs/servers/svc.conf:
* netsvcs/servers/svc.conf.xml:
Use port 20006 for the Name_Server, is the same port as we
default to in ACE. Fixes a problem that the Name_Server and
Logging Server both use the same port as default
Mon Feb 13 11:40:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Manager.h:
* ace/Service_Repository.h:
Doxygen improvements
Mon Feb 13 10:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Obstack_T.h:
Doxygen improvement
Mon Feb 13 10:01:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Proactor_Test.cpp:
Don't test certain functionality when ACE_HAS_WINNT4 is 0
* tests/Future_Test.cpp:
* tests/Future_Set_Test.cpp:
Moved real code out of ACE_ASSERT, fixes crashing of these
tests in release builds
Mon Feb 13 08:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-borland-common.h:
Readded ACE_SIZEOF_LONG_DOUBLE 10 again
Mon Feb 13 08:41:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_shm.inl (shmat):
Added const_cast to get rid of compile errors with LynxOS
Mon Feb 13 08:28:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-macosx-panther.h:
Removed ACE_LACKS_USECONDS_T
Mon Feb 13 08:22:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-aix-4.x.h:
* ace/config-hpux-11.00.h:
Added ACE_LACKS_SYS_SYSCTL_H
Mon Feb 13 08:17:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unistd.cpp (num_processors_online):
Made the HPUX specific implementation the last option to use
Mon Feb 13 08:12:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks5.x.h:
Added ACE_LACKS_NUMERIC_LIMITS
Mon Feb 13 08:09:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h:
Added ACE_LACKS_SYS_SYSCTL_H
Mon Feb 13 05:12:51 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/config-netbsd.h:
* configure.ac:
Revert:
Sun Feb 12 19:07:39 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
Caused build failures because NetBSD doesn't support
pthread_attr_{get,set}schedpolicy(). It's not clear what
ACE_HAS_PTHREAD_SCHEDPARAM actually means.
Sun Feb 12 19:48:19 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/config_h.m4:
Remove AH_TEMPLATE for ACE_HAS_SIN_LEN.
Sun Feb 12 19:43:42 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/config_h.m4:
* configure.ac:
Removed AH_TEMPLATEs for ACE_HAS_PTHREADS_DRAFT4,
ACE_HAS_PTHREADS_DRAFT6, ACE_HAS_PTHREADS_DRAFT7, and
ACE_HAS_PTHREADS_STD from m4/config_h.m4; and add the
descriptions as the third arguments in the AC_DEFINEs
in configure.ac.
Sun Feb 12 19:07:39 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/config-netbsd.h:
Define ACE_HAS_PTHREAD_SCHEDPARAM.
* configure.ac:
Define ACE_HAS_PTHREAD_SCHEDPARAM if platform supports
pthread_getschedparam() and pthread_setschedparam().
Sun Feb 12 19:01:47 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/config-macosx-panther.h:
* ace/config-macosx-tiger.h:
* ace/config-macosx.h:
* ace/config-mit-pthread.h:
* ace/config-qnx-neutrino.h:
* ace/config-qnx-rtp-62x.h:
* ace/config-qnx-rtp-pre62x.h:
* ace/config-unixware-7.1.0.h:
* ace/config-unixware-7.1.0.udk.h:
Remove ACE_HAS_PTHREAD_SIGMASK definition. This feature test
macro was deprecated and replaced with ACE_LACKS_PTHREAD_SIGMASK
some ~5 years ago.
Sun Feb 12 13:31:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-linux-common.h:
Check for icc as the first compiler, when icc is used in gcc
compatibility mode we else incorrectly use gcc.
Sun Feb 12 13:20:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-sunos5.5.h:
Added ACE_LACKS_SYS_SYSCTL_H
Sun Feb 12 13:18:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_shm.inl (shmdt):
Added a const cast when ACE_HAS_CHARPTR_SHMDT is defined
Sun Feb 12 13:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-sunos5.5.h:
Fixed typo in this file
Sun Feb 12 13:01:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks5.x.h:
Added ACE_LACKS_SYS_SYSCTL_H
Sun Feb 12 08:01:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h:
Removed ACE_LACKS_USECONDS_T, Cygwin does deliver useconds_t
Sat Feb 11 19:54:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-lynxos.h:
Added ACE_LACKS_SUSECONDS_T and ACE_LACKS_USECONDS_T
* ace/config-hpux-11.00.h:
Added ACE_LACKS_SUSECONDS_T
Sat Feb 11 19:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Time_Value.cpp:
Also undef min when defined and do it before including limits,
should fix our MingW build
Sat Feb 11 19:09:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h
* ace/config-vxworks5.x.h:
* ace/config-macosx-panther.h:
Added ACE_LACKS_SUSECONDS_T and ACE_LACKS_USECONDS_T
Sat Feb 11 10:37:04 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/ace_wchar.inl (convert): Fixed a bug where the character
conversion was getting improperly sign converted. Thanks to
Olivier Brunet <o dot brunet at free dot fr> for this fix.
Fri Feb 10 22:49:07 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/config-sunos5.5.h:
* include/makeinclude/platform_sunos5_sunc++.GNU:
Added Sun Studio 8 or better symbol visibility/scope support.
Provides improved shared libraries by reducing footprint
(e.g. 17% reduction for ACE), reducing symbol clashes with
third party libraries and increasing run-time performance.
[Bug 2378]
Fri Feb 10 21:26:42 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added ACE_HAS_CHARPTR_SHMAT and ACE_HAS_CHARPTR_SHMDT
feature tests. Fixes bug 2388.
Fri Feb 10 19:24:10 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/trading_serv.mpb:
Added iortable as a base project as the TAO_CosTrading_Serv
library now utilizes the TAO_IORTable library.
Fri Feb 10 16:00:00 UTC 2006 Simon Massey <sma@prismtech.com>
* bin/tao_orb_tests.lst:
Removed "Request_Interceptor_Flow" Portable Interceptors test
when configuration HAS_EXTENDED_FT_INTERCEPTORS as it will
fail.
Fri Feb 10 15:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Dirent_Test.cpp:
Made this test compiling with Borland C++ with wchar enabled
Fri Feb 10 14:25:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux_icc.GNU:
Disable visibility by default, seems the Intel C++ compiler
has some issues which we reported to Intel
Fri Feb 10 14:23:06 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/PerlACE/Run_Test.pm:
Fixed the add_path() method to work on both Windows and UNIX.
* bin/depgen.pl:
If the -i option is passed, create a dependency file even if there
are no source files. This will allow NMake files to proceed
without warning.
* bin/generate_export_file.pl:
Changed to always emit the static library code unless the -n is
used. There is no reason not to support static libraries by
default.
Fri Feb 10 14:20:54 UTC 2006 xiong,ming <ming.xiong@vanderbilt.edu>
* bin/ciao_tests.lst
Reverse a previous change to ciao_tests due to concerns
for autobuild logging.A smaller test will be added instead.
Fri Feb 10 13:22:34 UTC 2006 xiong,ming <ming.xiong@vanderbilt.edu>
* bin/ciao_tests.lst
Added Bug_2130_Regression test
Fri Feb 10 13:07:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unistd.inl (write):
Use another const cast when ACE_HAS_CHARPTR_SOCKOPT is defined
Fri Feb 10 12:51:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/make_release:
Use *.mwc to exclude any mwc files instead of listing them
explicitly, prevents the problems which we had with x.4.9 when
we had some new mwc files which caused an overwrite of
GNUmakefiles.
Fri Feb 10 12:42:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux_icc.GNU:
Removed OCFLAGS += -axK, this flag is really dependent on the CPU
that is targeted, it is just not a good idea to do this in general
when optimization is enabled
Fri Feb 10 12:00:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Message_Queue.cpp:
* ace/WIN32_Proactor.cpp:
Applied workarounds for broken vc6 header files
Fri Feb 10 11:03:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/wrapper_macros.GNU:
Set exceptions default to 1
* include/makeinclude/platform_linux_icc.GNU:
Set optimize to 1 again now Intel has fixed a bug in their IA64
compiler, also added support for visibility
Fri Feb 10 10:53:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE-INSTALL.html:
Updated link to tenermerx code
* ace/Asynch_IO.h:
Fixed problem when ACE_HAS_WINNT4 has been set to 0. Thanks to
Karl Schmitt <Karl dot Schmitt at dfs dot de> for reporting this.
* ace/ACE.cpp:
* ace/Select_Reactor_T.cpp:
Fixed incorrect comment after endif
* ace/Auto_Event.h:
* ace/Based_Pointer_Repository.h:
* ace/Based_Pointer_T.h:
* ace/Default_Constants.h:
* ace/Dev_Poll_Reactor.h:
* ace/Event_Handler.h:
* ace/File_Lock.h:
* ace/Framework_Component.h:
* ace/Free_List.h:
* ace/Future.h:
* ace/Future_Set.h:
* ace/Guard_T.h:
* ace/Handle_Gobbler.h:
* ace/Handle_Set.h:
* ace/Hash_Map_Manager_T.h:
* ace/Hash_Map_With_Allocator_T.h:
* ace/Local_Tokens.h:
* ace/Map_Manager.h:
* ace/MEM_IO.h:
* ace/MEM_SAP.h:
* ace/MEM_Stream.h:
* ace/Message_Block.h:
* ace/Message_Queue.h:
* ace/Msg_WFMO_Reactor.h:
* ace/Node.h:
* ace/Null_Mutex.h:
* ace/Null_Semaphore.h:
* ace/Object_Manager.h:
* ace/Process_Manager.h:
* ace/Reactor.h:
* ace/Reactor_Notification_Strategy.h:
* ace/Proactor.h:
* ace/Recursive_Thread_Mutex.h:
* ace/Service_Object.h:
* ace/WFMO_Reactor.h:
* ace/Reactor_Impl.h:
* ace/Proactor_Impl.h:
* ace/Signal.h:
* ace/Svc_Handler.h:
* ace/SOCK_SEQPACK_Association.h:
* ace/Test_and_Set.h:
* ace/Thread_Mutex.h:
* ace/Timer_Heap_T.h:
* ace/TP_Reactor.h:
* ace/Timer_Queue_Adapters.h:
* ace/Timer_Hash_T.h:
* ace/Timer_Queue_T.h:
* ace/Unbounded_Set.h:
* ace/Select_Reactor_T.h:
* ace/Service_Config.h:
Doxygen improvements
* ace/Auto_IncDec_T.h:
Removed incorrect comment
* ace/config-aix-4.x.h:
* ace/config-borland-common.h:
* ace/config-cray.h:
* ace/config-cxx-common.h:
* ace/config-doxygen.h:
* ace/config-g++-common.h:
* ace/config-hpux-10.x-hpc++.h:
* ace/config-hpux-11.00.h:
* ace/config-icc-common.h:
* ace/config-integritySCA.h:
* ace/config-irix6.x-sgic++.h:
* ace/config-kcc-common.h:
* ace/config-lynxos.h:
* ace/config-netbsd.h:
* ace/config-openvms.h:
* ace/config-osf1-4.0.h:
* ace/config-sunos5.5.h:
* ace/config-sunos5.6.h:
* ace/config-tandem-nsk-mips-v2.h:
* ace/config-tandem-nsk-mips-v3.h:
* ace/config-unixware-7.1.0.udk.h:
* ace/config-vxworks5.x.h:
* ace/config-vxworks6.2.h:
* ace/config-win32-dmc.h:
* ace/config-win32-ghs.h:
* ace/config-win32-msvc-6.h:
* ace/config-win32-msvc-7.h:
* ace/config-win32-msvc-8.h:
* ace/config-win32-visualage.h:
* ace/README:
Removed ACE_HAS_USING_KEYWORD, all our compilers have it so need
for a seperate define anymore
* ace/config-borland-common.h:
Removed ACE_LACKS_INLINE_ASSEMBLY, ACE_NEW_THROWS_EXCEPTIONS, and
ACE_SIZEOF_LONG_DOUBLE and added ACE_HAS_NEW_NOTHROW
* ace/config-doxygen.h:
Fixed define of __ACE_INLINE__
* ace/config-icc-common.h:
Added custom export macros, the ICC compiler does support the
visibility attribute
* ace/config-lynxos.h:
Added ACE_HAS_CHARPTR_SHMAT
* ace/config-macros.h:
Always expand ACE_USING to using
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-psosim-g++.h:
Added ACE_LACKS_ENV
* ace/config-sunos5.5.h:
Added ACE_HAS_CHARPTR_SHMDT
* ace/config-win32-borland.h:
Removed ACE_LACKS_STDINT_H, ACE_LACKS_DIRENT_H, undef the
following defines, borland has them, ACE_LACKS_STRUCT_DIR,
ACE_LACKS_CLOSEDIR, ACE_LACKS_OPENDIR, ACE_LACKS_READDIR,
ACE_LACKS_REWINDDIR, added ACE_HAS_WOPENDIR, ACE_HAS_WCLOSEDIR,
ACE_HAS_WREADDIR, ACE_HAS_WREWINDDIR
* ace/config-WinCE.h:
Added ACE_LACKS_PIPE
* ace/Dirent.{h,inl}:
* ace/Dirent_Selector.{h,cpp,inl}:
* ace/os_include/os_dirent.h:
* ace/OS_NS_dirent.{h,cpp,inl}:
Borland delivers wopendir, wclosedir for wchar_t directory names
but also wdirent instead of dirent. Added a ACE_DIRENT macro that
normally expands to dirent but with Borland it can expand to
wdirent when build with ACE_USES_WCHAR
* ace/DLL_Manager.h:
No need to export ACE_DLL_Handle, internal class
* ace/Framework_Component.h:
Declare private copy constructor/assignment operator,
should allow making a copy
* ace/INET_Addr.cpp:
Changed some tests for VxWorks, only a specific implementation
should be used when ACE_LACKS_GETHOSTBYNAME and
ACE_LACKS_GETHOSTBYADDR are set, with newer VxWorks version we
don't have these defines set, so we don't need to use a different
code path for VxWorks
* ace/Local_Name_Space.cpp:
* ace/Name_Space.cpp:
* ace/Parse_Node.cpp:
Initialize all members, fixes GCC warnings
* ace/MEM_SAP.h:
Don't export ACE_MEM_SAP_Node, it is an internal class
* ace/Message_Queue.cpp:
* ace/WIN32_Proactor.cpp:
Removed win32 bit specific code, the 64bit case is the one also to
use for 32bit.
* ace/Time_Value.h:
* ace/os_include/os_time.h:
Moved timespec to os_time, it belongs there. Fixes bugzilla
bug [2380].
* ace/Node.h:
Declare private assignment operator
* ace/OS_NS_stdlib.inl (getenv):
Removed psos specific part, solved by adding a define to the
psos confi files
* ace/OS_NS_sys_utsname.cpp:
Merged the two uname implementations to one method to make
the maintenance easier
* ace/OS_NS_Thread.inl:
Replaced VXWORKS with ACE_VXWORKS
* ace/Select_Reactor_Base.h:
Added forward declaration of ACE_Sig_Handler, this class is
used in the interfaces as pointer
* ace/OS_NS_sys_shm.{h,inl}:
Changed the void* argument of shmdt and shmat to a const void*,
introduced ACE_HAS_CHARPTR_SHMAT and ACE_HAS_CHARPTR_SHMDT for
the platforms that have a char* version of these methods.
* ace/TP_Reactor.{h,cpp}:
Don't export ACE_EH_Dispatch_Info and ACE_TP_Token_Guard, it are
internal classes. Renamed grab_token to acquire_read_token as the
todo mentioned, addded private copy constructor and assignment
operator for ACE_TP_Token_Guard, no copying should be allowed
* ace/Unbounded_Queue.cpp:
* ace/Unbounded_Set.cpp:
Use prefix increment/decrement
* ace/OS_NS_unistd.inl:
Merged the two pipe methods to one and replaced some c-style casts
with C++ casts.
* ace/OS_NS_unistd.cpp:
Refactored num_processors, use sysconf when _SC_NPROCESSORS_CONF is
defined, when ACE_HAS_SYSCTL has been set we use sysctl
Refactored num_processors_online, use sysconf when
_SC_NPROCESSORS_ONLN is defined, when ACE_HAS_SYSCTL has been
set we use sysctl.
* ace/Time_Value.{h,cpp,inl}:
Use suseconds_t as type for usec
* ace/Select_Reactor_T.inl:
Added include of Signal.h to fix compile error in the solaris
autoconf build
* bin/tao_other_tests.lst:
Also run EC_MT_MCast in a static configuration
* bin/tao_orb_tests.lst:
Added AMH_Oneway and Bug_2319_Regression
* bin/perltest2cpp.pl:
Removed this file
Thu Feb 9 20:07:59 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Time_Value.cpp:
Some platforms pollute the namespace with a max() macro, which
makes it impossible to invoke std::numeric_limits<T>::max().
#undef max after all the headers have been #included.
Thu Feb 9 18:51:16 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
#include <sys/types.h> in the ACE_HAS_2_PARAM_SCHED_GETAFFINITY
and ACE_HAS_2_PARAM_SCHED_SETAFFININTY feature tests. Thanks to
Doug McCorkle <mccdo at iastate dot edu> for reporting this bug.
Thu Feb 9 20:05:00 UTC 2006 Iliyan Jeliazkov <iliyan@ociweb.com>
* bin/tao_other_tests.lst:
Added the new secure policies test.
Thu Feb 9 17:40:17 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/OS_NS_string.cpp (ACE_OS::strerror):
Don't use strlen() to see if length is zero, check if the
first char is null (O(1) vs. O(N)).
Thu Feb 9 16:59:40 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* test/MEM_Stream_Test.cpp:
Align test_reactive() and test_concurrent() so the same
error/warnings are emitted.
* Flag_Manip.cpp:
* IPC_SAP.cpp
* MEM_IO.cpp:
* SOCK_Dgram.cpp:
* SSL/SSL_SOCK_Stream.cpp:
Change type of FIONBIO and FIONREAD ioctl from u_long,
ACE_INT32, etc. to int for portability.
* ace/Time_Value.cpp:
Use std::numeric_limits<time_t>::max () instead of LONG_MAX
as ctor's first argument when initializing ACE_Time_Value::
max_time if !ACE_LACKS_NUMERIC_LIMITS, as time_t may not be
a long. Fixes Timer_Queue_Reference_Counting_Test on NetBSD/amd64.
* configure.ac:
Added ACE_LACKS_NUMERIC_LIMITS feature test.
* ace/README:
Document new ACE_LACKS_NUMERIC_LIMITS feature test macro, which
should be defined to 1 if platform lacks std::numeric_limits<>.
* ace/Cached_Connect_Strategy_T.cpp (cached_connect):
Handle ETIMEDOUT as we do for EWOULDBLOCK. Fixes
Cached_Conn_Test on NetBSD systems.
* ace/config-freebsd.h:
* ace/config-netbsd.h:
* ace/config-openbsd.h:
* ace/config-macosx-panther.h:
* ace/config-macosx-tiger.h:
* ace/config-macosx.h:
Define ACE_HAS_SOCKADDR_IN6_SIN6_LEN.
This may be needed for other canned configs.
* ace/config-aix-4.x.h:
* ace/config-cray.h:
* ace/config-freebsd.h:
* ace/config-macosx-panther.h:
* ace/config-macosx-tiger.h:
* ace/config-macosx.h:
* ace/config-mvs.h:
* ace/config-netbsd.h:
* ace/config-openbsd.h:
* ace/config-qnx-neutrino.h:
* ace/config-qnx-rtp-62x.h:
* ace/config-qnx-rtp-pre62x.h:
* ace/config-unixware-7.1.0.h:
* ace/config-unixware-7.1.0.udk.h:
* ace/config-win32-interix.h:
Change ACE_HAS_SIN_LEN to ACE_HAS_SOCKADDR_IN_SIN_LEN.
* ace/README:
Document new feature test macros ACE_HAS_SOCKADDR_IN_SIN_LEN and
ACE_HAS_SOCKADDR_IN6_SIN6.
Removed description of ACE_HAS_SIN_LEN. This macro was defined,
but not used anywhere in ACE, TAO, or CIAO. It's being removed
rather than used because the new macros follow our feature test
naming conventions.
* ace/INET_Addr.cpp:
* ace/INET_Addr.inl:
Set the sockaddr_in.sin_len and sockaddr_in6.sin6_len members if
new ACE_HAS_SOCKADDR_IN_SIN_LEN or ACE_HAS_SOCKADDR_IN6_SIN6_LEN
feature test macros are defined.
Tue Feb 7 23:28:29 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/SPIPE_Acceptor.cpp (close): On Windows, wait for completion
(cancellation) of an outstanding ConnectNamedPipe operation. If
left outstanding and the ACE_SPIPE_Acceptor object is deleted, the
OS will write into deleted memory. Thanks to Nathan Bamford
<nbamford at datalever dot com> for reporting this.
* THANKS: Added Nathan Bamford to the Hall of Fame.
Wed Feb 08 15:46:51 2006 Wallace Zhang <zhangw@ociweb.com>
* ACE version 5.4.9 released.
Mon Feb 6 18:39:20 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* NEWS:
Updated with info from Doug Schmidt.
Mon Feb 6 15:49:57 UTC 2006 Wallace Zhang <zhangw@ociweb.com>
* NEWS:
Updated with info from Steve Huston.
Mon Feb 6 14:44:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE-INSTALL.html:
Improved documentation for the BCBVER environment setting which
is required for building with the Borland C++ compilers
Fri Feb 3 23:48:32 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Barrier.h: Noted shutdown() was added for 5.4.9.
* ace/Message_Queue_T.{h cpp}: Changed enqueue_head(), enqueue_tail()
to recognize that the ACE_Message_Block passed may have other
block(s) connected to it via the next() pointers. This allows a
caller to pre-connect a series of ACE_Message_Blocks and coalesce
the enqueueing of the series into a single method call.
Thanks to Guy Peleg <guy dot peleg at amdocs dot com> for suggesting
this enhancement.
Also revamped the Doxygenization of ACE_Message_Queue's
documentation.
* tests/Message_Queue_Test.cpp: Added chained_block_test() to test
the new functionality above.
Fri Feb 3 14:47:53 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/Cleanup_Strategies_T.h:
Added missing versioned namespace declarations.
* ace/Guard_T.h:
Fixed versioned namespace related errors in single-threaded
builds with that feature enabled.
* ace/WFMO_Reactor.h:
Forward declare the ACE_WFMO_Reactor_Test class outside of the
versioned namespace. This test class is actually declared in
the global namespace of a standalone test.
Fri Feb 3 07:53:16 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/OS_NS_sys_socket.inl (setsockopt): Make sure to
map WSAEOPNOTSUPP to the ENOTSUP errno value so the code is
portable across versions of sockets! Thanks to David Hauck
<davidh at netacquire dot com> for this fix.
* ace/OS_NS_sys_socket.inl (setsockopt): Only check for
WSAEOPNOTSUPP on platforms that actually support this macro!
Thanks to Wallace Zhang for reporting this.
Thu Feb 2 23:59:37 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* html/index.html
Removed the XML_helpers link, as that documentation is no
longer generated.
Thu Feb 2 23:41:39 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* bin/MakeProjectCreator/config/acedefaults.mpb
Added zlib to the feature inherits to resolve linking errors
on Windows.
Thu Feb 2 13:35:18 Pacific Standard Time 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/OS_NS_Thread.h:
Fixed versioned namespace related errors in single-threaded
builds with that feature enabled.
Thu Feb 2 17:49:42 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/OS_NS_string.h:
Add ACE_Export decoration to ACE_OS::fast_memcpy() declaration.
Thu Feb 2 15:47:35 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* examples/Map_Manager/Map_Manager.mpc:
Added an mpc file to create the right kind of project. The
symptoms of bad or missing mpc files are stray library symbolic
links.
Thu Feb 2 14:48:03 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* Makefile.am:
Build examples and tests subdirectories after building
protocols. I think all of the HTBP, RMCast and TMCast examples
and tests should be moved underneath protocols eventually , but
it's too close to the release to do it safely.
Thu Feb 2 11:19:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Naming_Test.cpp:
Moved some real test code out of ACE_ASSERT calls
Thu Feb 2 06:15:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.lst:
Fixed another error in this file
Wed Feb 1 20:33:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Event_Handler.h:
Doxygen improvement
Wed Feb 1 20:16:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added CosConcurrency_IDL
Wed Feb 1 18:00:06 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* ace/ace_for_tao.mpc
Added Dirent_Selector.cpp to fix the Dirent test.
Wed Feb 1 08:17:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_shm.inl:
Reverted another part of my changes
Wed Feb 1 07:52:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.lst:
Fixed !ACE_FOR_TAO additions
Tue Jan 31 22:08:57 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Barrier.{h cpp}: Added a new shutdown () method which aborts all
waiting on the barrier. Thanks to John Lilley <jlilley at datalever
dot com> for contributing this method.
Also note that the wait() method can now return -1 with errno
ESHUTDOWN if the barrier is shut down while waiting for it.
* tests/Barrier_Test.cpp: Added a test for barrier shutdown.
* THANKS: Added John Lilley to the Hall of Fame.
Tue Jan 31 21:34:34 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* bin/ciao_tests.lst
Added the hello test *without* naming service so we get results
even on platforms with a broken/nonextant Naming Service.
Tue Jan 31 16:51:27 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* bin/ciao_tests.lst
* bin/tao_other_tests.lst
* tests/run_test.lst
Added a bunch of !ACE_FOR_TAO qualifiers to tests that are not
built/runnable when the ACE_FOR_TAO feature is used.
* tests/run_test.lst
Removed the avoid of ace_for_tao from the Dirent test, as Dirent.cpp
is now built as part of ace_for_tao.
Tue Jan 31 09:44:10 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_shm.{h,inl}:
Reverted my change below, removed the const, it causes problems with
solaris, have to add a special case for solaris, but will do that
after x.4.9 is out
Fri Jan 27 12:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_shm.{h,inl}:
Changed for the shmdt and shmat methods the void* argument to
const void*, this is the way posix defines these methods.
Mon Jan 30 17:53:10 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* bin/ciao_tests.lst
Added a !NOXERCES qualifier so it is possible to run only tests
that do not require xerces.
Sat Jan 28 18:40:30 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Array_Base.h (class ACE_Array_Base): Changed private to
protected to enable access to certain members in derived
classes. Thanks to luxi78@gmail.com for suggesting this.
Fri Jan 27 23:29:44 UTC 2006 James H. Hill <hillj@isis.vanderbilt.edu>
* docs/ace_guidelines.vsmacros:
Re-added the Visual Studio macros as a binary file.
Fri Jan 27 23:21:49 UTC 2006 James H. Hill <hillj@isis.vanderbilt.edu>
* docs/ace_guidelines.vsmacros:
Removed this file since it's a binary file.
Fri Jan 27 18:47:34 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* ace/ace_for_tao.mpc
Added Dirent.cpp to resolve linking errors in TAO_IDL on Windows.
Fri Jan 27 14:53:03 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/PerlACE/Run_Test.pm:
Added a method to get a random port number within the range of
10002 - 32767.
Fri Jan 27 14:10:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Reactor_Performance_Test.cpp:
Initialise some pointers with 0
Fri Jan 27 13:56:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/DLL_Manager.h:
Doxygen improvements
Fri Jan 27 13:43:50 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* bin/msvc_static_order.lst:
More tweaks for split of CosConcurrency library --- build tests
after building the library.
Fri Jan 27 13:42:03 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Fix typo in last change.
Fri Jan 27 12:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_shm.{h,inl}:
Changed for the shmdt and shmat methods the void* argument to
const void*, this is the way posix defines these methods.
Fri Jan 27 11:31:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Select_Reactor_T.cpp:
Forgot this file to commit, only include the .inl file when
inlining is disabled
Fri Jan 27 11:06:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Connector.h:
Improved doxygen
Fri Jan 27 10:43:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Swap.h:
Added a deprecated tag to this file, std::swap can be used without
problems on all platforms, we do it in TAO without problems
Fri Jan 27 10:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_wait.h:
Improved doxygen
Fri Jan 27 10:11:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Thread_Manager_Test.cpp:
Updated this test for VxWorks with pthread support
Fri Jan 27 09:45:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* html/Stats/performance.shtml:
Changed picture to 800*600
* bin/performance_stats.sh:
Copy the contents of html/Stats to the destination directory, this
way any change in this directory is automatically published on
the webserver. The old contents of the webserver has been checked
to make sure we don't loose any data.
Fri Jan 27 09:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Select_Reactor_Base.h:
* ace/Select_Reactor.h:
* ace/config-sunos5.5.h:
* ace/config-osf1-4.0.h:
Doxygen improvements
* ace/Select_Reactor_T.{h,inl}:
Doxygen improvements and enabled inlining in the inline file again,
this was disabled and I could find that someone disable this 7 years
ago because of a bug in the Sun compiler at that moment. The current
supported versions don't have a problem with this, so enabled
inlining again in this core part of ACE.
Fri Jan 27 03:09:01 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
If examples and/or tests have been disabled, don't bother
generating subdirectory hierarchies or Makefiles for them.
Fri Jan 27 02:43:53 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* Makefile.am:
* m4/ace.m4:
Remove support for --{enable,disable}-ace-perftests. The
performance tests are now enabled/disabled with the plain
--{enable,disable}-ace-tests option. We decided this as
flags for each type of example and test gets a unwieldly
once we factor in TAO (and sometime in the future CIAO).
Thu Jan 26 18:53:10 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* Makefile.am (SUBDIRS):
* m4/ace.m4: Added support to enable/disable building the ACE tests,
performance tests, and examples. Thanks to Thomas E Lackey
<telackey at bozemanpass dot com> for contributing this.
Thu Jan 26 20:25:39 UTC 2006 Steve Huston <shuston@riverace.com>
* examples/APG/Streams/BasicTask.h:
* examples/APG/Streams/EndTask.h: Fixed ACE_Message_Block memory leaks.
Thu Jan 26 17:59:16 UTC 2006 Gan Deng <gan.deng@vanderbilt.edu>
* bin/MakeProjectCreator/config/dance_extension_stub.mpb
Added a new MPC base project for DAnCE.
Thu Jan 26 15:38:38 UTC 2006 Steve Huston <shuston@riverace.com>
* protocols/ace/RMCast/Template_Instantiations.cpp: Replace the
separate long and long long instantiations with u64 instantiations.
This is what the code says, and avoids issues with 64-bit
explicit instantiations builds.
Thu Jan 26 15:20:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Singleton.h:
Doxygen improvements
Thu Jan 26 15:05:04 UTC 2006 Steve Huston <shuston@riverace.com>
* protocols/ace/RMCast/Template_Instantiations.cpp: Add missing
template instantiations.
Thu Jan 26 14:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Message_Block_Test.cpp:
* tests/Process_Manual_Event_Test.cpp:
* tests/Process_Mutex_Test.cpp:
Moved real code out of ACE_ASSERT macro's, this functionality
wasn't executed in release mode builds. Found this because of
warnings in the Intel release build that a variable was used
before it was assigned a value.
Thu Jan 26 13:21:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/performance_stats.sh:
Increased size of pictures to 800x600 and also put linux and
gcc version into a file which is used by the other html files
* bin/generate_performance_chart.sh:
* bin/generate_topinfo_charts.sh:
Generate pictures of 800x600
Thu Jan 26 13:16:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* html/Stats/configuration.shtml:
Get linux and gcc version from the file instead of hardcoding
it in this file
* html/Stats/simple_footprint.shtml:
Removed the smart proxies lib, it is always 0 size, added PI
and PI_Server
Thu Jan 26 13:06:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/generate_compile_stats.sh:
Extended this script to generate a seperate page for the CIAO
footprint stats. Also made the generated png images the size
of 800x600 and get the gcc version from gcc itself instead of
generating it hardcoded
Thu Jan 26 13:03:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/generate_footprint_chart.sh:
Generate the png images of size 800x600, little bit bigger, makes
it more easier to read
Thu Jan 26 11:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Registry.h:
* ace/Token_Request_Reply.h:
* ace/Semaphore.h:
* ace/Hash_Map_Manager_T.h:
* ace/Sched_Params.h:
Doxygen improvements
Thu Jan 26 10:47:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* html/Stats/detailed_footprint.shtml:
Updated header page to also mention that we gather CIAO stats
Wed Jan 25 20:16:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_Thread.h:
* ace/config-linux-common.h:
* ace/config-macros.h:
* ace/RB_Tree.h:
Doxygen improvements
* ace/config-freebsd.h:
* ace/config-macosx.h:
* ace/config-netbsd.h:
* ace/config-openbsd.h:
* ace/config-vxworks6.2.h:
Added ACE_HAS_SYSCTL, will be used in some new code that will
be added after x.4.9
Wed Jan 25 19:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-common.h:
Added ACE_LACKS_SUSECONDS_T and ACE_LACKS_USECONDS_T
* ace/WIN32_Asynch_IO.h:
* ace/TSS_T.h:
* ace/Timer_Queue_T.h:
* ace/String_Base.h:
* ace/iosfwd.h:
* ace/High_Res_Timer.h:
* ace/Configuration.h:
* ace/Log_Msg.h:
* ace/Message_Queue.h:
* ace/Process.h:
* ace/SOCK_Dgram_Mcast.h:
* ace/Managed_Object.h:
* ace/Map_Manager.h:
* ace/Containers_T.h:
* ace/SString.h:
* ace/IOStream.h:
Doxygen improvements
Wed Jan 25 19:35:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
Don't use the directory group sorting with borland
Wed Jan 25 19:22:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/sys/os_types.h:
If ACE_LACKS_SUSECONDS_T is defined then define suseconds_t as
long. If ACE_LACKS_USECONDS_T is defined then define useconds_t
as unsigned long.
Wed Jan 25 15:05:27 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added feature test for ACE_LACKS_SUSECONDS_T and
ACE_LACKS_USECONDS_T.
Wed Jan 25 15:00:05 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added feature tests for ACE_LACKS_SYS_SYSCTL_H and
ACE_HAS_SYSCTL.
Wed Jan 25 14:38:10 UTC 2006 Olli Savia <ops@iki.fi>
* ace/SSL/SSL_Asynch_BIO.h:
* include/makeinclude/platform_lynxos.GNU:
Fixed compile error on LynxOS when ssl=1.
Wed Jan 25 13:06:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Array.h:
* ace/Asynch_IO.h:
* ace/Asynch_IO_Impl.h:
* ace/Atomic_Op_T.h:
* ace/Basic_Types.h:
* ace/Caching_Utility_T.h:
* ace/CDR_Size.h:
* ace/CDR_Stream.h:
* ace/Cleanup_Strategies_T.h:
Improved documentation by using @note doxygen tag
Wed Jan 25 12:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/TP_Reactor.{h,cpp}:
Improved doxygen
Wed Jan 25 12:34:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Select_Reactor_Base.h:
Improved doxygen
Wed Jan 25 12:13:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/config/vcl.mpb:
Add compile_flags that are needed to build vcl apps
* bin/MakeProjectCreator/templates/bor.mpd:
If compile_flags is set, then add them to the CFLAGS
Wed Jan 25 11:36:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* html/Stats/footprint.shtml:
Added link for CIAO footprint we are going to gather
Wed Jan 25 10:43:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-common.h:
Added ACE_LACKS_SYS_SYSCTL_H
Wed Jan 25 10:38:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/sys/os_sysctl.h:
New os_include system header include file, will be used after x.4.9
is out because using it now can break to much builds
Tue Jan 24 18:07:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
Readded ACE_LACKS_MKTEMP again, the function is declared but can't
be resolved during linking, reported this to WindRiver
Tue Jan 24 16:56:51 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/OS_NS_signal.inl: Removed explicit ACE_OS from sigaction
function - left over from trying to work around HP issues yesterday.
Tue Jan 24 16:28:11 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added feature tests for ACE_LACKS_KILL and ACE_LACKS_SIGACTION.
Tue Jan 24 16:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_dlfcn.inl:
The symFindByName is only working with VxWorks in kernel mode
Tue Jan 24 14:44:35 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Activation_Queue.h: Corrected @retval for enqueue(). Returns
>0 (number of requests now queued) on success, not 0. Thanks to
Guy Peleg for this correction.
Tue Jan 24 14:00:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_stdlib.cpp:
Only with VxWorks 5.5.1 don't use limits, newer versions to have this
Tue Jan 24 13:43:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
Removed ACE_LACKS_MKTEMP, VxWorks 6.2 delivers this function
Tue Jan 24 13:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
Removed ACE_LACKS_MMAP and ACE_LACKS_MPROTECT, VxWorks 6.2 delivers
these functions
Tue Jan 24 13:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_resource.inl:
Use the ACE_UNUSED_ARG macro for arguments that are not used
Tue Jan 24 12:54:35 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/GNUACEWorkspaceCreator.pm:
Choosed a non-group sorting method if the MPC_GNUACE_NAMED_TARGETS
environment variable is set.
Tue Jan 24 12:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_netdb.{h,cpp,inl}:
* ace/config-vxworks5.x.h:
Simplified the vxworks specific code, VxWorks 6.2 does deliver several
of the API's we don't had with VxWorks 5.5.1.
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-psosim-g++.h:
Added ACE_LACKS_GETHOSTBYNAME
Tue Jan 24 12:12:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_netdb.h:
* ace/OS_NS_netdb.inl:
Use ACE_VXWORKS instead of VXWORKS and introduced
ACE_LACKS_GETHOSTBYADDR, ACE_LACKS_GETPROTOBYNUMBER and
ACE_LACKS_GETPROTOBYNAME to make maintenance easier
* ace/config-chorus.h:
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-psosim-g++.h:
* ace/config-vxworks5.x.h:
* ace/config-vxworks6.2.h:
* ace/config-WinCE.h:
Added the new defines to the correct files
Tue Jan 24 11:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_arpa_inet.cpp (inet_aton):
Use ACE_VXWORKS instead of VXWORKS and made it dependent on the
VxWorks version number
Tue Jan 24 10:33:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* OS_NS_signal.inl:
Introduced ACE_LACKS_SIGACTION and ACE_LACKS_KILL to make things
easier to maintain
* ace/config-chorus.h:
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-psosim-g++.h:
* ace/config-win32-common.h:
* ace/config-WinCE.h:
Added ACE_LACKS_SIGACTION, ACE_LACKS_KILL
Mon Jan 23 22:08:56 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/OS_NS_signal.{h inl}:
* ace/OS_TLI.h: The method-name-same-as-struct-name hack for HP aC++
needs to go up through version 03.65. This compiler version is used
on HP-UX 11iv2 on PA-RISC, so the hack can't be expunged when
removing HP-UX 11.00 support. The hack does not appear to be needed
for aC++ on HP-UX on Integrity (aC++ v06.xx). Also see
Mon Jan 23 16:35:40 UTC 2006 Steve Huston <shuston@riverace.com>
Mon Jan 23 20:19:25 UTC 2006 William Otte <wotte@dre.vanderbilt.edu>
* bin/ciao_tests.lst
Removed the "Exceptions" qualifier from the CIAO tests, as we
no longer support emulated exceptions, and we want these
tests to run everywhere.
Mon Jan 23 18:07:00 UTC 2006 Steve Huston <shuston@riverace.com>
* apps/Gateway/Gateway/Event_Channel.cpp: Put the ACE_INET_Addr
setup on separate lines to help aC++ optimizer get it right.
Mon Jan 23 16:35:40 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/OS_TLI.{h inl}: HP aC++ 03.56 (last aC++ for HP-UX 11.00) gets
confused with struct t_optmgmt being defined as extern "C" by the OS
and referenced in namespace ACE_OS by ACE. To help this compiler
deal, typedef ACE_TOPTMGMT appropriately, with extern "C" for
aC++ less than 03.60 and normally for all other compilers. This
should take care of the odd t_optmgmt errors.
When we remove support for HP-UX 11.00, this hack should be removed
as well.
* apps/JAWS3/jaws3/Reactive_IO.cpp: Replace #include "ace/OS.h" with
#include "ace/OS_NS_unistd.h". Leaving OS.h gets HP aCC into a state
where it gets confused about methods and types with the same name,
in this case t_optmgmt.
Mon Jan 23 15:51:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ATM_Acceptor.h:
* ace/OS_NS_stdio.h:
Doxygen improvements
Mon Jan 23 15:43:56 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* bin/msvc_static_order.lst:
Update for split of CosConcurrency, CosProperty, and
RTEventLogAdmin libraries.
Mon Jan 23 08:02:08 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Pipe.cpp: Added static_cast<u_short> (0) rather than
(u_short) 0 to the ACE_INET_Addr local_any in ACE_Pipe::open().
Sat Jan 21 08:19:34 UTC 2006 James H. Hill <hillj@isis.vanderbilt.edu>
* docs/ACE-guidelines.html:
* docs/ace_guidelines.vsmacros:
Added Visual Studio .NET macros project that helps with formatting
according to ACE guidelines. Also noted the macros project in the
documentation file.
Fri Jan 20 22:51:09 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* apps/JAWS/server/IO.h:
* apps/JAWS/server/IO.cpp:
Fixed unused paramerer warnings.
* apps/JAWS2/JAWS/IO.h:
* apps/JAWS2/JAWS/IO.cpp:
tried to fix the 'cast to pointer from interger of different size'
warning. It had to do with the fact that x86_64 void* are 8 bytes and
the cast was from an int which 4 bytes. When James Hu wrote that
code there were no 64 bit archs so the error is showing up now.
Fri Jan 20 15:05:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/WIN32_Proactor.h:
No need to export ACE_WIN32_Asynch_Timer
Fri Jan 20 14:55:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*.doxygen:
Updated EXPAND_AS_DEFINED so that we generate documentation with
exceptions in the interfaces
Fri Jan 20 13:56:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-macros.h:
Replace VXWORKS with ACE_VXWORKS and guarded the following
macros with ACE_LACKS_DEPRECATED_MACROS so that usage of these
deprecated macros within ACE/TAO is prevented: ACE_USING,
ACE_SYNCH_1, and ACE_SYNCH_2
Fri Jan 20 11:29:54 UTC 2006 Boris Kolpackov <boris@kolpackov.net>
* protocols/ace/RMCast/Protocol.h:
Fixed a race condition.
* protocols/ace/TMCast/FaultDetector.hpp:
Added a flag to prevent a single group member from terminating
until data is received from other members.
Fri Jan 20 11:24:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added new PI AdvSlot test
Wed Jan 18 19:40:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added new PI Slot test
Wed Jan 18 19:15:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/WFMO_Reactor.cpp:
Replace c-style cast with reinterpret_cast
* ACE-INSTALL.html:
Small cygwin update
* ace/Mem_Map.h:
Doxygen improvements
* ace/Mem_Map.cpp:
ACE_OS::filesize returns off_t
Wed Jan 18 18:22:13 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* apps/Gateway/Gateway/Event_Channel.cpp:
Updated because constructors of ACE_INET_Addr are now explicit.
Wed Jan 18 06:55:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h:
Added ACE_HAS_4_4BSD_SENDMSG_RECVMSG
Tue Jan 17 20:37:05 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/config/rteventlogadmin.mpb:
* bin/MakeProjectCreator/config/rteventlogadmin_serv.mpb:
* bin/MakeProjectCreator/config/rteventlogadmin_skel.mpb:
Split RTEventLogAdmin Service into three libraries:
RTEventLogAdmin, RTEventLogAdmin_Skel, and RTEventLogAdmin_Serv
for client stubs, servant skeletons, and service implementation
respectively.
Tue Jan 17 20:28:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Module.h:
Doxygen improvement
Tue Jan 17 19:56:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-cygwin32.h:
Added ACE_HAS_P_READ_WRITE and removed ACE_LACKS_READDIR_R, this
is for Cywin 1.5.19
Tue Jan 17 18:50:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/INET_Addr.{h,cpp}:
Improved doxygen, changed VXWORKS to ACE_VXWORKS and make one
of the constructors that has two arguments, one has to be passed
the other has a default value explicit
Tue Jan 17 17:38:46 UTC 2006 Steve Huston <shuston@riverace.com>
* examples/C++NPv2/display_logfile.cpp: In the Logrec_Module
constructor, don't use base-class initialization to pass &task_
to ACE_Module. Doing so passes &task_ before task_ has been
constructed. Thus, when ACE_Module sets the task's module
pointer, it gets overwritten when task_ is constructed after
return from ACE_Module's constructor. Calling task_'s module()
method in this case will yield a 0 pointer, which is not correct.
To remedy this, call ACE_Module::open() directly from within
the Logrec_Module constructor.
Also see Stroustrup pg 307.
Thanks to David Hawkins for pointing this out.
Tue Jan 17 16:27:47 UTC 2006 Olli Savia <ops@iki.fi>
* ace/OS_NS_dlfcn.inl:
Fixed compile error on LynxOS 3.x.
Tue Jan 17 15:37:29 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/taodefaults.mpb:
If the corba_messaging feature is disabled, then add the
TAO_HAS_CORBA_MESSAGING=0 macro to ensure that TAO is built
properly.
Tue Jan 17 14:03:14 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Module.h: Change ~ACE_Module to be virtual so that derived
classes can be cleaned up properly. Thanks to David Hawkins
<dwh at ovro dot caltech dot edu> for this fix.
* THANKS: Added David Hawkins to the Hall of Fame.
Tue Jan 17 01:12:35 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Pipe.cpp (open): Added a cast to u_short for the first
parameter to ACE_INET_Addr to avoid complaints on certain
compilers. Thanks to Wallace Zhang for reporting this.
Mon Jan 16 06:59:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_dlfcn.inl:
Fixed compile errors with VxWorks 5.5
Mon Jan 16 15:17:22 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Pipe.cpp (open): Changed
ACE_INET_Addr local_any ("localhost:0");
to
ACE_INET_Addr local_any (0, ACE_LOCALHOST);
so that it will work more portably. Thanks to Steve Huston for
suggesting this fix.
Mon Jan 16 20:43:26 UTC 2006 Olli Savia <ops@iki.fi>
* ace/README:
Removed ACE_HAS_PREDEFINED_THREAD_CANCELLED_MACRO, it is
no longer used.
* ace/config-lynxos.h:
Minor updates for LynxOS 4.0.
* tests/run_test.lst:
Run a few more tests on LynxOS.
Mon Jan 16 20:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Log_Record.h:
Doxygen improvement
Mon Jan 16 19:52:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_errno.h:
Replaced VXWORKS with ACE_VXWORKS
Mon Jan 16 19:44:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SOCK_IO.cpp:
When using FIONREAD the 3rd argument should be of type int. This
fixes bugzilla bug 2360. Thanks to Michael Klein
<michael dot klein at fazi dot de> for reporting this.
* ace/SV_Semaphore_Complex.h:
Instead of ACE_USING just use "using"
* ace/Sched_Params.cpp:
* ace/ACE.cpp:
* ace/INET_Addr.cpp:
* ace/OS_NS_netdb.cpp:
Replaced VXWORKS with ACE_VXWORKS
* ace/Read_Buffer.h:
* ace/Reactor.h:
Doxygen improvement
* ace/Flag_Manip.inl:
Removed remark about VxWorks, not valid anymore with
newer versions
* ace/OS_NS_dlfcn.inl:
Removed ACE_HAS_CHARPTR_DL, is not defined in any config file
* ace/config-all.h:
Removed old vxworks specific part
Mon Jan 16 17:23:42 UTC 2006 Olli Savia <ops@iki.fi>
* ace/config-lynxos.h:
Added ACE_HAS_POSIX_REALTIME_SIGNALS.
Mon Jan 16 17:20:50 UTC 2006 Olli Savia <ops@iki.fi>
* ace/config-lynxos.h:
Do not use mmap() emulation on LynxOS 4.0.
Mon Jan 16 17:00:26 UTC 2006 Stoyan Paunov <spaunov@isis.vanderbilt.edu>
* apps/JAWS/server/HTTP_Handler.h:
* apps/JAWS/server/HTTP_Handler.cpp:
* apps/JAWS/server/HTTP_Server.h:
* apps/JAWS/server/HTTP_Server.cpp:
* apps/JAWS/server/IO.h:
* apps/JAWS/server/IO.cpp:
* apps/JAWS/server/README:
* apps/JAWS/server/svc.conf:
Checking the some changes to JAWS. This is the code that adds the ability
to start the server without file caching. This functionality is necessary
for the proper coordination of file creations and deletions between JAWS
and the RepositoryManager in CIAO. The changes are explained in the README.
I have added a line in the svc.conf file which shows how to enable this new
functionality.
Mon Jan 16 16:53:38 UTC 2006 Olli Savia <ops@iki.fi>
* ace/config-lynxos.h:
Removed ACE_HAS_PREDEFINED_THREAD_CANCELLED_MACRO, it is
no longer used.
Mon Jan 16 14:35:10 UTC 2006 Olli Savia <ops@iki.fi>
* ace/config-lynxos.h:
* include/makeinclude/platform_lynxos.GNU:
Improved shared library support for LynxOS 4.0.
Mon Jan 16 05:54:44 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Timer_Queue_Adapters.cpp (svc): Added a fix so that
this code will work for both regular timers and high-resolution
timers. Thanks to Eric Tiangang <tgliu@utstar.com> and Robert
Iakobashvili <coroberti at gmail dot com> for this fix. This
fixes bugid 2348.
* include/makeinclude/platform_linux.GNU (LD):
Pass -O3 to GNU-linker to reduce footprint due to ld
optimizations. Thanks to Robert Iakobashvili <coroberti at
gmail dot com> for this enhancement.
Sun Jan 15 19:20:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SOCK_IO.{cpp,inl}:
Removed several casts which where not needed and only cause
problems with 64bit builds
Sun Jan 15 18:57:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Config.h:
Fixed ACE_DYNAMIC_SERVICE_DIRECTIVE macro when unicode is
enabled. Thanks to Jan Ohlenburg <jan dot ohlenburg at
fit dot fraunhofer dot de>.
Sun Jan 15 06:06:38 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/config/avstreams.mpb:
Update to inherit from property_serv. as this project uses a
collocated property service --- property.mpb now only brings
in the client stubs.
* bin/MakeProjectCreator/config/concurrency.mpb:
* bin/MakeProjectCreator/config/concurrency_serv.mpb:
* bin/MakeProjectCreator/config/concurrency_skel.mpb:
Split CosConcurrency Service into three libraries:
CosConcurrency, CosConcurrency_Skel, and CosConcurrency_Serv for
client stubs, servant skeletons, and service implementation
respectively.
* bin/MakeProjectCreator/config/property.mpb:
* bin/MakeProjectCreator/config/property_serv.mpb:
* bin/MakeProjectCreator/config/property_skel.mpb:
Split CosProperty Service into three libraries:
CosProperty, CosProperty_Skel, and CosProperty_Serv for client
stubs, servant skeletons, and service implementation
respectively.
Sat Jan 14 12:59:39 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/Pipe.cpp (open): Added a workaround so that "localhost:0"
is used rather than sap_any to avoid triggering firewall rules
on Windows. Thanks to Paul Felix <pef@fluent.com> for this fix.
* ace/ACE.h (ACE): Updated the documentation for ACE::fork() to
indicate that -1 or 1 are returned if avoid_zombies != 0. This
is a bug that needs to be fixed at some point. Thanks to Tobias
Herzke <tobias.herzke@uni-oldenburg.de> for reporting this.
Fri Jan 13 19:06:33 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Reorder some function feature tests so they're closer to
alphabetical order. This makes it easier to maintain.
Fri Jan 13 17:56:53 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added ACE_LACKS_SYSTEM feature test.
Fri Jan 13 09:38:21 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* docs/ACE-bug-process.html (HREF): Updated this document to
explain the process for submitting a patch. Thanks to Rick
Taylor <rick@tropicalstormsoftware.com> for motivating this.
Fri Jan 13 12:22:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_Thread.cpp (~TSS_Cleanup_Instance):
Set the members to zero after a delete because it are static
ones.
Fri Jan 13 11:47:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_stdlib.inl:
Changed ACE_OS::system to use ACE_LACKS_SYSTEM
* ace/config-chorus.h:
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-psosim-g++.h:
* ace/config-WinCE.h:
Added ACE_LACKS_SYSTEM
Fri Jan 13 08:34:18 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* test/test_config.h:
Changed so the very first thing we do is #undef ACE_NDEBUG.
* test/OS_Test.cpp:
Changed to make "test_config.h" the first header to be
#included, as it #undef's ACE_NDEBUG. This ensures ACE_ASSERT()
will be defined so it validates its expression even for debug=0
builds. Without this, all the checks in this file are compiled
out. Fortunately unreferenced symbol warnings made us aware of
this problem.
Fri Jan 13 07:53:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-lynxos.h:
Added ACE_LACKS_SETEGID
Fri Jan 13 04:49:41 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Changed to use AC_SEARCH_LIBS for the -lsocket and -lnsl
libraries before calling ACE_CONFIGURATION_OPTIONS. Third party
libraries may those libraries, and if they haven't been added to
$LIBS, the feature tests will fail.
Thu Jan 12 20:30:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_time.inl:
* ace/README:
Added ACE_HAS_CLOCK_GETTIME_MONOTONIC, this is the patch from
bugzilla bug 2358. Not closing that one yet, have to see how
to autoconf this and where this new macro should be set. Thanks
to Robert Iakobashvili <coroberti at gmail dot com> for these
patches
Thu Jan 12 19:50:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Assert.h:
Export the __ace_assert function to resolve link errors on
Windows
Thu Jan 12 16:44:40 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Functor.{h inl}: Using ACE_LACKS_LONGLONG_T wasn't good enough
for deciding when to do an ACE_Hash<[unsigned] long long>. MSVC6
can't hack it. So, do the specialization for the 64-bit types if
ACE_SIZEOF_LONG < 8, avoiding a duplication of ACE_Hash<long>.
Also, since the way "unsigned long long" is declared varies across
compilers, use ACE_[U]INT64 rather than the native C++ type.
* ace/INET_Addr.cpp (string_to_addr): u_short always compares >= 0,
so rely on the indicated end of successful scan from ACE_OS::strtol()
to say whether it scanned all digits or stopped short of the end of
the string.
Thu Jan 12 12:59:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
For rtp mode, set PIC correctly
Thu Jan 12 12:01:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
When building for rtp also set DLD
Thu Jan 12 11:51:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
For rtp model we don't need to make sure the shared object
directory is the same as static
Thu Jan 12 11:45:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unistd.inl:
Fixed some comments after endif
* ace/config-lynxos.h:
Added ACE_LACKS_SETUID and ACE_LACKS_SETEUID
Thu Jan 12 10:34:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
Improved building executables for rtp
Thu Jan 12 10:10:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Removed all support for VxWorks 6.1, this version wa just an
intermediate step from 5.5 to 6.2. The port never completed and
we are aimin at 6.2 at this moment, so to not give false
impressions removed all the support for 6.1.
* include/makeinclude/platform_vxworks6.1.GNU:
* ace/config-vxworks6.1.h:
Removed these files
* ace/Sock_Connect.cpp:
* ace/OS_NS_unistd.inl:
* ace/os_include/os_time.h:
* ace/os_include/os_stdio.h:
* ace/os_include/sys/os_wait.h:
Removed references to VxWorks 6.1
Thu Jan 12 09:51:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks5.x.h:
Added ACE_LACKS_GETPGID
Thu Jan 12 01:08:32 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ACE.pc.in:
Added @LIBS@ to Libs.
* ace/SSL/ACE_SSL.pc.in:
Added @ACE_TLS_LDFLAGS@ and @ACE_TLS_LIBS@ to Libs.
Added @ACE_TLS_CPPFLAGS@ to Cflags.
Wed Jan 11 22:17:39 UTC 2006 Steve Huston <shuston@riverace.com>
* protocols/ace/RMCast/Template_Instantiations.cpp: Added missing
explicit instantiations.
Wed Jan 11 21:19:21 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Functor.{h inl}: Remove the ACE_* type specializations and
add specializations for ACE_Hash for [unsigned] short,
[unsigned] int, [unsigned] long, [unsigned] long long. This
should resolve the compile errors on some platforms resulting
from the changes in:
Tue Jan 10 23:04:06 UTC 2006 Steve Huston <shuston@riverace.com>
and still allow everything to work regardless of what integral types
are used.
Wed Jan 11 11:43:42 2006 Ossama Othman <ossama@dre.vanderbilt.edu>
From Richard Ward <richard_ward at symantec dot com>
* ace/Auto_Ptr.h (ACE_AUTO_PTR_RESET):
Assign "NEWPTR" macro argument to a temporary "TYPE" pointer,
and use that pointer in place of "NEWPTR" to force "NEWPTR" to
be expanded only once. Prevents a memory leak from occuring
when "NEWPTR" is an expression such as "new foo".
Delete the object released from the auto_ptr<>. Previously it
was ignored, resulting in a memory leak. Fixes a memory leak.
* THANKS:
Added Richard to the Hall of Fame.
Wed Jan 11 18:58:15 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Assert.cpp:
* ace/Assert.h:
Added const qualifier to __ace_assert() "expression" parameter.
Wed Jan 11 17:36:44 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Assert.h:
Use ACE_VERSIONED_NAMESPACE_NAME prefix for __ace_assert()
invocation.
Wed Jan 11 14:24:20 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* Makefile.am:
Updated.
* ace/ace.mpc:
* ace/ace_for_tao.mpc:
Added Assert.cpp to Source_Files section.
* ace/Global_Macros.h:
Changed to #include "ace/Assert.h", as the ACE_FACTORY_DEFINE
macro uses ACE_ASSERT.
* ace/Log_Msg.h:
Changed to #include "ace/Assert.h" for backwards compatibilty
with earlier ACE releases.
* ace/Assert.cpp:
* ace/Assert.h:
Factor ACE_ASSERT() macro out of Log_Msg.h into new files
Assert.h, with a helper-function in Assert.cpp. This reduces
the footprint of an ACE_ASSERT() invocation to a single call.
Wed Jan 11 13:14:52 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* include/makeinclude/rules.local.GNU:
Corrected a problem in determining if depgen.pl is the dependency
generator. The logic can now handle the instance where the script
is preceded by /usr/bin/perl (or something similar).
Wed Jan 11 06:47:04 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* ace/OS_NS_Thread.cpp (~TSS_Cleanup_Instance): Delete the mutex and condition
variable to prevent memory leaks. Thanks to Domingos Monteiro
<d dot monteiro at netia dot net> for this fix.
Tue Jan 10 23:04:06 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/Functor.{h inl}: Added specialization for ACE_Hash<unsigned long>
to help the explicit instantiation build get along.
Tue Jan 10 22:30:21 UTC 2006 Steve Huston <shuston@riverace.com>
* ace/INET_Addr.cpp (string_to_addr): Correctly identify a specified
port number of "0". Thanks to Guy Peleg <guy dot peleg at amdocs
dot com> for this fix.
* THANKS: Added Guy Peleg to the Hall of Fame.
Tue Jan 10 20:05:54 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* include/makeinclude/rules.local.GNU:
Ensure that the correct object files get cleaned up when doing a
make clean. Logic was duplicated in this file (but did not
correspond to the correct logic found in the gnu.mpd or
rules.lib.GNU).
Tue Jan 10 17:45:10 UTC 2006 Scott Harris <harris_s@ociweb.com>
* bin/tao_other_tests.lst:
Added TAO/orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/run_test.pl.
Tue Jan 10 17:09:26 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Add feature tests for ACE_LACKS_CHDIR, ACE_LACKS_DUP2,
ACE_LACKS_GETPID, ACE_LACKS_ISATTY, ACE_LACKS_SETPGID, and
ACE_LACKS_UNLINK. Re-arrange some things so the tests are
closer to alphabetical order -- this makes the file easier
to maintain.
Tue Jan 10 16:35:35 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/ChangeLogEditor/ChangeLogEdit.pm:
* bin/cle.pl:
Removed references to the name "CVS". At this layer, the revision
control system is unknown.
Tue Jan 10 13:36:55 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/Svc_Conf_Lexer.cpp:
Modified GNU specific code to compile with the -pedantic option.
Tue Jan 10 13:21:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
Compilation for rtp mode is now the default
Tue Jan 10 13:14:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.1.h:
* ace/config-vxworks6.2.h:
Only define ACE_MAIN in kernel mode
Tue Jan 10 11:36:43 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added feature tests for ACE_LACKS_DUP, ACE_LACKS_GETEGID,
ACE_LACKS_GETEUID, ACE_LACKS_GETGID, ACE_LACKS_GETUID,
ACE_LACKS_PIPE, ACE_LACKS_SETEGID, ACE_LACKS_SETEUID,
ACE_LACKS_SETSID, ACE_LACKS_SETGID, and ACE_LACKS_SETUID.
Tue Jan 10 10:10:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-hpux-10.x.h:
* ace/config-hpux-11.00.h:
Added ACE_LACKS_SETEGUID and ACE_LACKS_SETEUID
Tue Jan 10 10:02:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unistd.inl:
Simplified a lot of methods in this file by adding new ACE_LACKS
macros. For VxWorks and psos we now also return -1 with notsup
for the uid methods, these methods just don't work on these
platforms because they are not there and we don't have multiple
users. This will make this file much easier to maintain
* ace/config-chorus.h:
* ace/config-integritySCA.h:
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-psosim-g++.h:
* ace/config-vxworks5.x.h:
* ace/config-vxworks6.1.h:
* ace/config-vxworks6.2.h:
* ace/config-win32-common.h:
Added the new ACE_LACKS macros from OS_NS_unistd.inl
Tue Jan 10 07:21:19 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* examples/C++NPv2/Makefile.am:
* examples/C++NPv2/README:
* examples/C++NPv2/Reactor_Logging_Server.cpp:
* examples/C++NPv2/Reactor_Logging_Server_Adapter.h:
* examples/C++NPv2/Select_Reactor_Logging_Server.cpp:
* examples/C++NPv2/TP_Logging_Server.h:
* examples/C++NPv2/TP_Reactor_Logging_Server.cpp:
* examples/C++NPv2/WFMO_Reactor_Logging_Server.cpp:
Update for change below.
* examples/C++NPv2/Reactor_Logging_Server.h:
* examples/C++NPv2/Reactor_Logging_Server_T.h:
Renamed Reactor_Logging_Server.h to Reactor_Logging_Server_T.h.
When ACE_TEMPLATES_REQUIRES_SOURCE is not defined (as is so in
the automake build), the Sun Studio 11 C++ compiler associates
Reactor_Logging_Server.h with Reactor_Logging_Server.cpp instead
of Reactor_Logging_Server_T.cpp when instantiating templates.
This results in interesting (and difficult to track down) errors.
Mon Jan 9 20:20:14 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* m4/ace.m4:
Explicitly automake conditional BUILD_ACE_FOR_TAO to false
(at least for now).
* ace/Makefile.am:
Small tweaks to fix errors introduced by MPC generation.
Mon Jan 9 20:19:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/makeicc.pl:
Removed this file, it is ancient
Mon Jan 9 19:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ace_wchar.h:
VxWorks rtp has int_t
* ace/config-vxworks6.2.h:
Rtp has wchar.h and wctype.h
* ace/OS_NS_String.{h,inl,cpp}:
Updated the wchar_t methods that has a int_t argument to use wchar_t
instead. That matches the opengroup definition and resolved the
compile errors with VxWorks. Also replaced some c-style and static
casts with const_casts.
* ace/config-vxworks6.2.h:
VxWorks 6.2 in rtp mode has a lot of wchar_t functionality, use it!
Mon Jan 9 18:32:55 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
Regenerated for Service Configurator parser changes:
Mon Jan 9 15:18:49 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/ace.mpc:
Added Hash_Map_Manager.h to Header_Files section.
Mon Jan 9 18:03:50 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Added ACE_LACKS_GETOPT and ACE_LACKS_SYSCONF feature tests.
Mon Jan 9 15:18:49 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* ace/Encoding_Converter.h:
* ace/Encoding_Converter.cpp:
* ace/Encoding_Converter_Factory.h:
* ace/Encoding_Converter_Factory.cpp:
* ace/Svc_Conf.h:
* ace/Svc_Conf_Lexer.h:
* ace/Svc_Conf_Lexer.cpp:
* ace/UTF16_Encoding_Converter.h:
* ace/UTF16_Encoding_Converter.inl:
* ace/UTF16_Encoding_Converter.cpp:
* ace/UTF32_Encoding_Converter.h:
* ace/UTF32_Encoding_Converter.cpp:
* ace/UTF8_Encoding_Converter.h:
* ace/UTF8_Encoding_Converter.cpp:
* ace/svcconf.mpb:
Added Unicode support to the Service Configurator by hand-coding
the lexer portion to properly take into account non-US UTF8,
UTF16 and UTF32 encodings. Some of the UFT16 and UTF32 conversion
code came directly from Unicode, Inc.
This is a drop-in replacement for the flex generated lexer and
heap allocates the encoding converters. However, this version
performs less heap allocations and has a smaller footprint than
the flex generated lexer.
* tests/Service_Config_Test.UTF-16.conf:
* tests/Service_Config_Test.WCHAR_T.conf:
Added byte order marks to ensure that they are interpreted
properly on all machines.
* ace/Svc_Conf.l:
* ace/Svc_Conf_Lexer_Guard.h:
* ace/Svc_Conf_Lexer_Guard.cpp:
* ace/Svc_Conf_l.cpp:
* etc/Svc_Conf_l.cpp.diff:
Removed these files.
Mon Jan 9 14:38:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_unisth.{h,cpp}:
Integrated patches of bugzilla bug 2357, thanks to Volker Lukas
<vlukas at gmx dot de> for delivering this. This adds setuid(uid_t),
setgid(gid_t), getuid() and getgid().
Also introduced ACE_LACKS_SYSCONF and ACE_LACKS_GETOPT to make
the VxWorks 6.2 port cleaner
* ace/config-integritySCA.h:
* ace/config-psos-diab-mips.h:
* ace/config-psos-diab-ppc.h:
* ace/config-psos-diab.h:
* ace/config-psos-tm.h:
* ace/config-vxworks5.x.h:
* ace/config-vxworks6.1.h:
* ace/config-vxworks6.2.h:
* ace/config-win32-common.h:
Added ACE_LACKS_SYSCONF and ACE_LACKS_GETOPT to the appropriate
config files
Mon Jan 9 14:14:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_main.cpp.{h,cpp}:
The VxWorks specific way of handling main shouldn't be used
when building for the rtp model, then the normal main should
be used
Mon Jan 9 13:44:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added TAO/tests/Bug_2349_Regression/run_test.pl
Mon Jan 9 11:27:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
* ace/OS_NS_stdlib.inl:
Added ACE_LACKS_PUTENV. VxWorks 6.2 seems to have this method
declared, but when linking in rtp model we get an unresolved
external. So, just disable it for the moment, send a test
case for this to WindRiver
Mon Jan 9 10:47:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
Improved build rules for the rtp model
Mon Jan 9 09:36:29 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Fix typo in ACE_LACKS_NAMED_POSIX_SEM feature test.
Mon Jan 9 09:30:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/PI_Malloc.h:
Doxygen improvements
Mon Jan 9 09:16:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_sys_stat.{h,inl}:
Changed the return type of filesize to off_t, that is the type to
be used for filesizes
Mon Jan 9 07:59:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_limits.h:
VxWorks 6.2 defines PIPE_BUF as -1, this is not correct, undef it
when it is defined as -1.
Sun Jan 8 19:34:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
Updated some more to reflect the OS correctly.
* ace/Sock_Connect.cpp:
Updated for vxworks 6.2
* ace/POSIX_Asynch_IO.cpp:
* ace/POSIX_CB_Proactor.h:
* ace/POSIX_Proactor.{h,cpp}:
Added ACE_OPCODE_ for the OpCode enums READ and WRITE, READ is also
a define under VxWorks making this problematic to enable
* include/makeinclude/platform_vxworks6.2.GNU:
Improved rtp building rules
Sat Jan 7 13:34:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Time_Value.{h,inl}:
For the sec accessor methods use time_t as type, that is also the
type used to store the number of seconds.
Sat Jan 7 13:29:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-msvc-8.h:
Added ACE_HAS_NEW_NOTHROW. Msvc8 throws std::bad_alloc by default,
for the ACE_NEW macros we disable this, we just get a zero back on
out of memory. This fixes bugzilla bug 2333
Sat Jan 7 13:17:12 UTC UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-win32-mingw.h:
Added ACE_HAS_NONCONST_WCSDUP
Fri Jan 6 21:20:58 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Process_Manager.cpp:
* ace/Process_Manager.h:
There can be a race condition if a process exits between the
time it is spawned and the time its handler is registered.
Changed the spawn() methods to take an optional handler so
it can be registered atomically.
Thu Jan 5 15:37:32 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Add ACE_LACKS_UNAME feature test.
Thu Jan 5 11:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/README:
* ace/config-chorus.h:
* ace/config-integritySCA.h:
* ace/config-psosim-g++.h:
* ace/config-vxworks5.x.h:
* ace/config-vxworks6.1.h:
* ace/config-vxworks6.2.h:
* ace/config-win32-common.h:
* ace/OS_NS_sys_utsname.{h,cpp}:
Introduced ACE_LACKS_UNAME and refactored ACE_OS::uname a
little bit. VxWorks 6.2 does deliver uname in the new rtp model,
this file explicitly checked for some OS defines, adding there
the new rtp check was making it real complex, so added this new
define and set it in the appropriate config files. Also handle
some new processor architecture defines windows now has.
* ace/OS_NS_sys_utsname.inl:
Removed this file, was empty
* ace/Makefile.am:
Updated because of removed file
Thu Jan 5 09:52:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.2.GNU:
Improved rtp model support
Wed Jan 4 21:25:11 UTC 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ChangeLog:
Changed "add-log-time-format" to a really ugly lambda expression
that formats changelog timestamps in UTC and works with both GNU
Emacs and XEmacs.
Wed Jan 4 19:50:27 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
* bin/ChangeLogEditor/ChangeLogEntry.pm:
Modified this to use UTC instead of local time.
Wed Jan 4 18:44:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* netsvcs/lib/Client_Logging_Handler.cpp:
Fixed 64bit conversion warning
Wed Jan 4 11:04:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/gnu.mpd:
Generate LIBNAME and PRJ_TYPE, needed for VxWorks rtp support
Wed Jan 4 10:49:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
In rtp mode we can't access the WIND_TCB struct anymore, meaning
that the TSS emulation can't work anymore.
* ace/OS_NS_Thread.{h,cpp,inl}:
Only call the native tss methods when they are available
Wed Jan 4 09:39:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/sys/os_time.h:
Added workaround for VxWorks 6.2 that defines timeval in time.h
* ace/High_Res_Timer.cpp:
* ace/OS_NS_time.inl:
* ace/README:
* ace/Time_Value.inl:
Removed checks for !ACE_HAS_BROKEN_TIMESPEC_MEMBERS, this define
is not set in any config file, so zapped it
Wed Jan 4 08:30:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
Improved support for the diab compiler
* ace/TTY_IO.cpp:
Only define the const char arrays when they are going to be
used. Fixes unused variable warnings with vxworks
* ace/OS_NS_dlfcn.inl:
* ace/OS_NS_stropts.inl:
* ace/OS_NS_sys_socket.inl:
* ace/OS_NS_Thread.h:
* ace/os_include/os_dirent.h:
* ace/os_include/os_fcntl.h:
* ace/os_include/os_limits.h:
* ace/os_include/os_netdb.h:
* ace/os_include/os_stropts.h:
* ace/os_include/sys/os_socket.h:
* ace/os_include/sys/os_un.h:
Made VxWorks specific includes dependent on the VxWorks version.
VxWorks is getting more and more posix compliance which means we
don't have to include special VxWorks header files. Also use
ACE_VXWORKS to check for this
Tue Jan 3 21:31:29 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ChangeLog:
Add "indent-tabs-mode: nil" to Local Variables at end of file.
Untabify.
Delete-trailing-whitespace.
Tue Jan 3 14:26:12 UTC 2006 Johnny Willemsen <jwilemsen@remedy.nl>
* ace/ACE.cpp:
Don't use maxFiles with VxWorks 6.2
Tue Jan 3 13:03:12 UTC 2006 Johnny Willemsen <jwilemsen@remedy.nl>
* ace/OS_NS_Thread.cpp:
Renamed MAX_ARGS to ACE_MAX_ARGS because VxWorks 6.2 has also a
define MAX_ARGS
* ace/config-vxworks6.2.h:
Updated based on first testing
* ace/os_include/sys/os_select.h:
* ace/os_include/os_netdb.h:
* ace/os_include/os_signal.h:
* ace/os_include/os_unistd.h:
* ace/os_include/os_unistd.h:
* ace/OS_NS_unistd.inl:
Minor updated for vxworks 6.1
Mon Jan 2 10:56:57 2006 J.T. Conklin <jtc@acorntoolworks.com>
* ace/OS_NS_string.cpp:
Fix conditionals around ACE_OS::strdup_emulation(const wchar*).
Remove code that was moved to ACE_OS::strdup(const wchar*).
Mon Jan 2 18:58:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* protocols/ace/RMCast/Protocol.h:
Initialise pointer with 0
Mon Jan 2 13:45:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_Thread.cpp:
Only use the spa methods in non rtp model
* ace/os_include/sys/os_wait.h:
VxWorks 6.1 defines wait and waitpid in wait.h
Mon Jan 2 12:32:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_stdio.h:
Added workaround for vxworks6.1 and rtp for cuserid
* ace/os_include/os_time.h:
VxWorks 6.1 defines in kernel mode timeval in sys/times.h
* ace/OS_NS_string.cpp:
Fixed compile error with Borland
* ace/os_include/os_signal.h:
Don't include sigLib.h when building for rtp model
* ace/OS_NS_Thread.{h,inl}:
Don't include special VxWorks header files when building for rtp
* ace/Sock_Connect.cpp:
Made workaround for VxWorks dependent on version umber
Mon Jan 2 12:04:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks5.5.x.GNU:
* include/makeinclude/platform_vxworks6.1.GNU:
* bin/MakeProjectCreator/templates/gnu.mpd:
Made it possible to build for rtp and kernel mode
* ace/config-vxworks6.1.h:
* ace/config-vxworks6.2.h:
Improved mapping
* ace/Sock_Connect.cpp:
Reverted removal of VxWorks specific code, this is needed
for VxWorks 5.5, for 6 we have to develop a new section
* ace/os_include/os_stdlib.h:
Only include envLib.h when not building for rtp
* ace/os_include/os_dlfcn.h:
Only include specific VxWorks files when not building for rtp
Sun Jan 1 00:00:00 2006 Douglas C. Schmidt <schmidt@cs.wustl.edu>
* Happy New Year!!!
|