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
|
Tue May 27 23:10:33 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
Adding missing template and header files.
Tue May 27 12:11:07 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* ace/ace.mpc:
Added missing template and header files.
Mon May 26 13:54:38 UTC 2008 Olli Savia <ops@iki.fi>
* ace/config-lynxos.h:
Defined ACE_LACKS_POLL_H.
Mon May 26 07:28:23 UTC 2008 Ken Sedgwick <ken+5a4@bonsai.com>
* rpmbuild/ace-tao.spec:
Clarified the tao-cosevent and tao-rtevent "Summary" tags.
Mon May 26 00:31:51 UTC 2008 Ken Sedgwick <ken+5a4@bonsai.com>
* rpmbuild/ace-tao.spec:
Fixed rpm build error: bad tar extraction command.
Sun May 25 17:18:20 UTC 2008 Adam Mitz <mitza@ociweb.com>
* ace/ace.mwc:
s/MonitorControl/Monitor_Control/
Sun May 25 04:11:37 UTC 2008 Ken Sedgwick <ken+5a4@bonsai.com>
* rpmbuild/ace-tao.spec:
* rpmbuild/ace-tao-rnq.patch:
* rpmbuild/ace-tao-config-tmplvis.patch:
* rpmbuild/ace-tao-hasicmp.patch:
* rpmbuild/ace-tao-obstack.patch:
* rpmbuild/ace-tao-config-ipv6.patch:
Removed ace-tao-obstack.patch, no longer needed.
Converted ace-tao-config-ipv6.patch into conditional rpm script.
Converted ace-tao-rnq.patch into conditional rpm script.
Converted ace-tao-config-tmplvis.patch and ace-tao-hasicmp.patch
into rpm script.
Sat May 24 19:50:46 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:
Adjust libpaths now that ACE_MonitorControl library has been
renamed to just ACE_Monitor_Control.
Fri May 23 14:20:48 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* m4/platform.m4:
Added *mingw64* case in ACE_SET_PLATFORM_MACROS and
ACE_CHECK_FORMAT_SPECIFIERS feature test macros.
Fri May 23 12:45:00 UTC 2008 Simon Massey <sma at prismtech dot com>
* ace/RB_Tree.cpp:
Enhancement to stop external pointers to retained items being
invalidated upon key deletion.
Fri May 23 12:14:54 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/Monitor_Control/Auto_Update_Starter.h:
Updated filename (which was recently changed) in a comment.
Thanks to Simon Massey <simon.massey@prismtech.com> for
reporting the fuzz warning.
Fri May 23 08:14:38 UTC 2008 Olli Savia <ops@iki.fi>
* tests/run_test.lst:
Run Bug_2980_Regression_Test on LynxOS.
Fri May 23 00:18:24 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
Rename MonitorControl subdirectory to Monitor_Control, to
adapt to this change:
Wed May 21 19:01:10 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
Thu May 22 23:04:38 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Rename MonitorControl subdirectory to Monitor_Control, to
adapt to this change:
Wed May 21 19:01:10 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
Thu May 22 19:29:35 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/Monitor_Base.h (clear):
Made the method virtual, since it's overridden in the
TAO Notification Service monitors and we are now using
the ACE monitor registry which stores everyhing as the
ACE base class monitor.
Thu May 22 14:56:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/ProcessVX_Unix.pm:
* bin/PerlACE/ProcessVX_Win32.pm:
Added support for ACE_RUN_VX_EXE_SUBDIR which can be used when
the vxworks executables are build in a subdirectory
Thu May 22 09:47:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* rpmbuild/ace-tao-codeset.patch:
* ace/Codeset_Registry_db.cpp:
Merged patch into the regular registry
* ace/OS_NS_sys_uio.cpp:
Const change
* ace/Service_Config.cpp:
Layout change
* rpmbuild/ace-tao.spec:
Removed codeset patch
Thu May 22 09:37:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* rpmbuild/*
New directory with files needed to create rpm's for ACE/TAO.
These files will be improved and we will check whether the
rpm patches can be integrated into the real config files.
Thanks to Ken Sedgwick <ksedgwick at bonsai dot com> for
delivering these files.
Wed May 21 19:01:10 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/MonitorControl/*:
Changed directory name to Monitor_Control and renamed all
contained files, classes, libs, MPC projects, ifdef guards,
and macros similarly, to better conform to the ACE style.
* ace/Monitor_Point_Registry.cpp:
* ace/Monitor_Admin.h:
* ace/Monitor_Admin.cpp:
* bin/MakeProjectCreator/config/ace_mc.mpb:
* examples/Monitor/Bytes_Sent/bytes_sent.cpp:
* examples/Monitor/Bytes_Sent/Makefile.am:
* examples/Monitor/Message_Queue_Size/message_queue_size.cpp:
* examples/Monitor/Message_Queue_Size/Makefile.am:
* examples/Monitor/Constraint/constraint.cpp:
* examples/Monitor/Constraint/Makefile.am:
* examples/Monitor/CPU_Load/cpu_load.cpp:
* examples/Monitor/CPU_Load/Makefile.am:
* examples/Monitor/Num_Threads/Makefile.am:
* examples/Monitor/Num_Threads/num_threads.cpp:
* examples/Monitor/Group/Makefile.am:
* examples/Monitor/Group/group.cpp:
* examples/Monitor/Memory_Usage/Makefile.am:
* examples/Monitor/Memory_Usage/memory_usage.cpp:
Changes corresponding to the renaming above.
Wed May 21 14:06:13 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/Monitor_Base.h:
* ace/Monitor_Base.cpp:
Made the update() method non pure virtual.
Tue May 20 19:33:29 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/Message_Queue_T.cpp:
Added the stringified process id to the construction of
the message queue size monitor's name, since some tests
were showing that message queues were being created with
the same hex address in different processes.
Tue May 20 17:55:39 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* ace/Svc_Handler.h:
Added an enum to be used as flags parameter for close().
* ace/Acceptor.cpp:
* ace/Connector.cpp:
* ace/Strategies_T.cpp:
Use the new enum during the call to close() on the service handler
to indicate the circumstances behind the closure.
This is part of a set of commits for Bug 2935.
Tue May 20 09:45:21 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Ping_Socket.{h,cpp}:
Use bool
Mon May 19 19:26:21 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Log_Msg_Test.cpp:
On VxWorks/LynxOS we didn't test the buffer overflow, but we
shouldn't test this when ACE_LACKS_VSNPRINTF is defined
because it will then fail
Mon May 19 19:13:21 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Hash_Map_Manager_T.h:
Doxygen change
* ace/Hash_Map_Manager_T.cpp (shared_find)
Set errno to ENOENT when the size is zero
Mon May 19 19:08:21 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added 2085 and 2243
Mon May 19 14:19:21 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/bczar/bczar.html:
Updated mailing lists
* docs/Download.html:
* etc/index.html:
Updated for x.6.5
* ace/config-openvms.h:
Removed sock max of 64kb
Mon May 19 02:53:21 CDT 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE version 5.6.5 released.
Fri May 16 10:13:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Reverted change below, causes problems in the builds
* include/makeinclude/platform_linux.GNU:
Only set DLD and LD when they are not set yet
Fri May 16 07:50:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Based_Pointer_Test.cpp:
Also define a public destructor to silence the gnu warning that
we only have private
Fri May 16 07:49:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Monitor/Num_Threads/num_threads.cpp:
Fixed compile errors when monitoring framework is disabled
Fri May 16 07:41:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/APG/Streams/Answerer.cpp:
* examples/APG/Streams/EndTask.h:
Replaced EndTask with TheEndTask to resolve a name conflict
when using MinGW
Fri May 16 07:18:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux.GNU:
* include/makeinclude/platform_linux_common.GNU:
Support lib64 paths to detect certain features. Thanks to Ken
Sedgwick <ksedgwick at bonsai dot com> for reporting this
* include/makeinclude/platform_linux.GNU:
Only set DLD and LD when they are not set yet
Thu May 15 14:00:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Based_Pointer_T.{h,inl}:
* tests/Based_Pointer_Test.cpp:
Fixed bugzilla 3285, make it possible to use
ACE_Based_Pointer<void>. Thanks to Thomas Brownridge
<thomas dot brownridge at lmco dot com> for reporting this.
Thu May 15 12:36:42 UTC 2008 Phil Mesnier <mesnier_p@ociweb.com>
* ace/MMAP_Memory_Pool.cpp:
When using a default base address of 0x0 and otherwise wanting
a fixed address, a special flag was used to imply that after the
first address is selected the system in a call to ::mmap()
subsequent calls to ::mmap() reuse the selected base address
as a fixed address. This may cause problems with reloading
persistent data if the stored data contains pointers and the
system selected base address changes from run to run.
* ace/config-linux-common.h:
The default base address for the x86-64 platform cannot be 0x0.
Doing so causes the system to choose an address which for some
unknown reason causes SEGV errors in Malloc_T. The linux-specific
mmap flag, MAP_32BIT, resolves those segv errors, but on x86-64
using 0x0 as the default base address on subsequent runs cause
a different assigned base address to be selected. If the data
in the mapped memory contains pointers to mapped memory, those
are then wrong and cause SEGV crashs. By experimentation, it
seems the default base address for powerpc is appropriate for
x86-64.
Thu May 15 10:19:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/rules.lib.GNU:
Fixed OpenVMS specific part
Thu May 15 10:17:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Unbounded_Set_Ex.cpp:
Fixed bug in the insert method
* ace/Unbounded_Set_Test.cpp:
Extended this test to reproduce the bug above and replaced all
ACE_ASSERTS with if checks
Thu May 15 10:05:00 UTC 2008 Simon Massey <sma at prismtech dot com>
* bin/msvc_mpc_auto_compile.pl:
Split orbsvcs out from ciao build.
Thu May 15 07:09:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ace.mpc:
Added config-win32-msvc9.h, thanks to <tim at burmair dot com> for
reporting this
Wed May 14 20:41:17 2008 Steve Huston <shuston@riverace.com>
* ace/Thread_Manager.h: Expanded the documentation, particularly for
spawn[_n].
Wed May 14 18:30:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-irix6.x-common.h:
* ace/config-linux-common.h:
* ace/config-sunos5.4-g++.h:
* ace/config-sunos5.4-sunc++-4.x.h:
* ace/config-sunos5.5.h:
* ace/config-tandem.h:
* ace/config-unixware-7.1.0.h:
* ace/config-unixware-7.1.0.udk.h:
* ace/MonitorControl/MemoryUsageMonitor.cpp:
* ace/MonitorControl/MemoryUsageMonitor.h:
* ace/OS.inl:
* ace/os_include/os_unistd.h:
* ace/os_include/sys/os_resource.h:
* ace/POSIX_Proactor.cpp:
* ace/configure.ac:
Seems we already had a ACE_HAS_SYSINFO but this is a different
method but with the same name as we use in the monitoring code.
Added ACE_HAS_SYS_SYSTEMINFO_H as new define, renamed the
linux define to ACE_HAS_LINUX_SYSINFO
Wed May 14 18:14:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ACE.cpp:
Layout changes
* ace/config-vxworks5.x.h:
* ace/OS_NS_unistd.inl:
* ace/Sock_Connect.cpp:
Extended for VxWorks Medusa
* ace/Logging_Strategy.cpp:
Initialise pointer with 0
Wed May 14 14:26:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks5.5.x.GNU:
Detect medusa pid/pcd/pne
Wed May 14 12:34:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_pdhmsg.h:
New file
* ace/config-win32-common.h:
Added ACE_HAS_PDHMSG_H
* ace/config-win32-mingw.h:
* ace/config-WinCE.h:
Added ACE_LACKS_PDHMSG_H
* ace/Makefile.am:
Added new file
* ace/MonitorControl/WindowsMultiInstanceMonitor.cpp:
Use new os_pdhmsg.h
Wed May 14 12:24:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_kstat.h:
* ace/os_include/sys/os_sysinfo.h:
New header files
* ace/os_include/os_glob.h:
* ace/os_include/sys/os_statvfs.h:
Removed not needed includes
* configure.ac:
Added check for sysinfo.h
* ace/config-linux-common.h:
Added ACE_HAS_SYSINFO and ACE_HAS_SYSINFO_H
* ace/Makefile.am:
Added new files
* ace/MonitorControl/CPULoadMonitor.h:
* ace/MonitorControl/MemoryUsageMonitor.cpp:
* ace/MonitorControl/MemoryUsageMonitor.h:
Use the new defines and header files
Wed May 14 10:41:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/*:
* examples/Monitor/*:
Renamed MonitorControl namespace to Monitor_Control to comply
to ACE coding guidelines
Wed May 14 09:48:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.lst:
Enabled some more tests on vxworks
Tue May 13 19:20:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/diff-builds.pl:
Updated for move of test stats
Mon May 12 12:19:15 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Monitor/MC_Test_Utilities.h:
* examples/Monitor/Bytes_Sent/bytes_sent.cpp:
* examples/Monitor/Message_Queue_Size/message_queue_size.cpp:
* examples/Monitor/Constraint/constraint.cpp:
* examples/Monitor/CPU_Load/cpu_load.cpp:
* examples/Monitor/MC_Test_Utilities.cpp:
* examples/Monitor/Group/group.cpp:
* examples/Monitor/Memory_Usage/memory_usage.cpp:
Added appropriate preprocessor guards to ensure a
successful build when ACE_HAS_MONITOR_FRAMEWORK is
defined as 0.
* examples/Monitor/Message_Queue_Size/Message_Queue_Size.mpc:
Removed outdated macro additions from project.
Fri May 9 18:58:52 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Config.h:
* ace/Service_Config.inl:
* ace/Service_Config.cpp:
* ace/Service_Gestalt.cpp:
Calling ACE_Service_Config::open() does not correctly initialize
the SC global state (process name, in particular but others
too). Fixing bug#3319.
Fri May 9 17:58:21 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:
Revert changes of:
Thu May 8 22:13:24 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
Now that ETCL Parser library has been renamed back to
ACE_ETCL_Parser.
Fri May 9 17:55:39 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* examples/Monitor/Bytes_Sent/Makefile.am:
* examples/Monitor/Message_Queue_Size/Makefile.am:
* examples/Monitor/Constraint/Makefile.am:
* examples/Monitor/CPU_Load/Makefile.am:
* examples/Monitor/Num_Threads/Makefile.am:
* examples/Monitor/Group/Makefile.am:
* examples/Monitor/Memory_Usage/Makefile.am:
* ace/ETCL/Makefile.am:
* ace/MonitorControl/Makefile.am:
Regenerated.
Fri May 9 14:17:11 UTC 2008 William R. Otte <wotte@william-r-ottes-macbook-pro.local>
* include/makeinclude/platform_macosx_icc.GNU:
Support for ICC on Intel Macs.
Fri May 9 12:04:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-all.h:
Added ACE_HAS_MONITOR_POINTS which currently is set to 0. We will
enable this in a few builds to test them in detail. This way the
user can decide to enable the monitor framework but not get the
ACE builtin monitor points
* ace/CDR_Stream.cpp:
* ace/CDR_Stream.h:
* ace/CDR_Stream.inl:
* ace/Message_Queue_T.cpp:
* ace/Message_Queue_T.h:
Added monitor points
* ace/Codeset_IBM1047.cpp:
Removed code to silence the hp compiler, this is not needed in other
files
Fri May 9 11:44:59 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* bin/MakeProjectCreator/config/ace_etcl_parser.mpb:
Changed the filename etcl_parser.mpb to the one
above, for consistency in the names of ACE-related
files. Also changed the corresponding library name
to ACE_ETCL_Parser.
* ace/ETCL/ACE_ETCL_Parser.pc.in:
Changed the name of ETCL_Parser.pc.in likewise.
Also changed the contents of this file accordingly.
* ace/ETCL/ETCL.mpc:
* ace/MonitorControl/MonitorControl.mpc:
* bin/MakeProjectCreator/config/ace_mc.mpb:
Changes corresponding to the name changes above.
Thu May 8 23:03:15 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/config/ace_zlib.mpb:
ACE-specific zlib base project that overrides library settings
in MPC's own zlib base project for the automake build.
Thu May 8 22:13:24 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:
Adjust libpaths now that ACE_ETCL_Parser library has been
renamed to just ETCL_Parser.
Thu May 8 22:07:40 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ETCL/Makefile.am:
Regenerated.
* ace/ETCL/ACE_ETCL.pc.in:
* ace/ETCL/ETCL_Parser.pc.in:
New pkg-config template files.
* ace/ETCL/ETCL.mpc:
Add Pkgconfig_Files sections for ACE_ETCL and ETCL_Parser
projects.
Thu May 8 21:06:29 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/ETCL/ETCL_Constraint_Visitor.h:
* ace/ETCL/ETCL_Constraint_Visitor.cpp:
Removed a no-op method mean to be overridden
in derived visitors, but then abandoned.
Fri May 2 17:45:13 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* docs/ACE-guidelines.html: Updated the style guide to discuss the
use of '_' vs intercaps.
Thu May 8 10:51:29 UTC 2008 Steve Huston <shuston@riverace.com>
* include/makeinclude/platform_sunos5_g++.GNU: Ensure -pipe is not
inserted into CCFLAGS twice. Similar to earlier change from
Wed Jan 23 17:23:31 UTC 2008 Steve Huston <shuston@riverace.com>
Fixes Bugzilla #3232.
Thu May 8 08:06:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ETCL/ETCL_l.cpp:
* ace/ETCL/ETCL_y.cpp:
Fixed casing of include
Wed May 7 19:28:35 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/Unbounded_Set.{h inl}: Replaced typedef BASE with base_type.
Avoids a BASE macro on AIX.
Wed May 7 19:02:51 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/ETCL/ETCL_include:
Removed this directory.
* ace/ETCL/etcl_parser_export.h:
Relocated here from ace/ETCL/ETCL_include.
* bin/MakeProjectCreator/config/etcl_parser.mpb:
Renamed this file from ace_etcl_parser.mpb.
* ace/ETCL/ETCL_l.cpp:
* ace/ETCL/ETCL.yy
* ace/ETCL/ETCL_Interpreter.cpp:
* ace/ETCL/ETCL.ll:
* ace/ETCL/ETCL_y.cpp:
* ace/ETCL/ETCL_Interpreter.h:
* ace/ETCL/ETCL.mpc:
* ace/MonitorControl/MonitorControl.mpc:
* bin/MakeProjectCreator/config/ace_mc.mpb:
All changes in this checkin are to remove
unnecessary things as a result of making the
ETCL parser the only one used. The corresponding
parser in TAO is eliminated.
Wed May 7 17:11:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux_icc.GNU:
Added ICC 11.0
Wed May 7 14:28:54 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/ChangeLogEditor/FileLocatorFactory.pm:
Changed to detect Subversion before CVS.
Wed May 7 14:12:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3319_Regression_Test.cpp:
* tests/run_test.lst:
* tests/tests.mpc:
Added regression for bugzilla 3319
Wed May 7 10:52:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Hash_Map_Manager_T.cpp:
Fixed GCC warning about maybe unitialised use and also
use prefix decrement and no need for some intermediate variables
Wed May 7 08:42:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks5.x.h:
Added ACE_HAS_4_4BSD_SENDMSG_RECVMSG
Wed May 7 07:03:29 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* ace/Unbounded_Set.h
Fuzz fix.
Wed May 7 06:33:30 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* ace/Unbounded_Set.inl
Fix unused argument warning.
Tue May 6 17:03:17 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* ace/Hash_Map_Manager_T.cpp:
Fixed segfault if shared_find is called on a map of size zero.
* ace/Log_Msg.h:
Comments for trace_active were swapped.
* ace/Node.h:
* ace/Node.cpp:
* ace/Unbounded_Set.h:
* ace/Unbounded_Set.inl:
* ace/Unbounded_Set.cpp:
* ace/Unbounded_Set_Ex.h:
* ace/Unbounded_Set_Ex.inl:
* ace/Unbounded_Set_Ex.cpp:
Extended the Unbounded_Set to include a comparator template parameter,
which must implement operator (), which returns true if the items are
equivalent. This class has been renamed Unbounded_Set_Ex.
Unbounded_Set is now implemented in terms of Unbounded_Set_Ex with a
comparator that uses operator== to compare the items.
* ace/Service_Gestalt.h:
* tests/Unbounded_Set_Test.cpp:
Slight updates to conform with new implementation.
* NEWS
Added description for above.
Tue May 6 12:37:43 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/ETCL/ETCL_Constraint.h:
* ace/ETCL/ETCL_Constraint_Visitor.cpp:
* ace/ETCL/ETCL_Constraint_Visitor.h:
* ace/ETCL/ETCL_Constraint.inl:
* ace/ETCL/ETCL_Constraint.cpp:
Moved code from the TAO ETCL classes to base classes
here.
Tue May 6 08:27:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/ProcessVX_Unix.pm:
* bin/PerlACE/ProcessVX_Win32.pm:
Added support for ACE_RUN_VX_TGT_TELNET_HOST and
ACE_RUN_VX_TGT_TELNET_PORT so that an explicit telnet server
can be configured. If not specified we use ACE_RUN_VX_TGTHOST
which also specifies the ip address that is used as endpoint
for the corba servers
Mon May 5 17:09:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/build_dll.bor:
* include/makeinclude/build_exe.bor:
* include/makeinclude/build_lib.bor:
Handle files with cxx extension just as we could handle cpp files
Mon May 5 07:53:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/os_pdh.h:
New os_include file for pdh.h
* ace/configure.ac:
Added check for pdh.h
* ace/Makefile.am:
Added new file
* ace/config-win32-common.h:
* ace/config-win32-mingw.h:
* ace/config-WinCE.h:
Windows has pdh.h, but not MinGW and not WinCE
* ace/MonitorControl/BytesReceivedMonitor.cpp:
* ace/MonitorControl/BytesReceivedMonitor.h:
* ace/MonitorControl/BytesSentMonitor.cpp:
* ace/MonitorControl/BytesSentMonitor.h:
* ace/MonitorControl/CPULoadMonitor.cpp:
* ace/MonitorControl/CPULoadMonitor.h:
* ace/MonitorControl/MemoryUsageMonitor.cpp:
* ace/MonitorControl/MemoryUsageMonitor.h:
* ace/MonitorControl/NumThreadsMonitor.cpp:
* ace/MonitorControl/NumThreadsMonitor.h:
* ace/MonitorControl/PacketsReceivedMonitor.cpp:
* ace/MonitorControl/PacketsReceivedMonitor.h:
* ace/MonitorControl/PacketsSentMonitor.cpp:
* ace/MonitorControl/PacketsSentMonitor.h:
* ace/MonitorControl/WindowsMonitor.cpp:
* ace/MonitorControl/WindowsMonitor.h:
* ace/MonitorControl/WindowsMultiInstanceMonitor.cpp:
* ace/MonitorControl/WindowsMultiInstanceMonitor.h:
Use ACE_HAS_WIN32_PDH instead of ACE_WIN32 because with WinCE and
MinGW we don't have pdh on windows
Mon May 5 07:37:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Monitor/CPU_Load/cpu_load.cpp:
* examples/Monitor/Group/group.cpp:
Fixed C90 warnings
Mon May 5 07:30:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Monitor/MC_Test_Utilities.mpc:
Don't build with ace_for_tao enabled
Sat May 3 17:00:07 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:
Add relative libdirs for new ACE_ETCL, ACE_ETCL_Parser, and
ACE_MonitorControl libraries.
Sat May 3 13:47:21 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* examples/Makefile.am:
Regenerated.
Fri May 2 23:58:38 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Build new example directories.
* examples/Monitor/Bytes_Sent/Makefile.am:
* examples/Monitor/Message_Queue_Size/Makefile.am:
* examples/Monitor/Constraint/Makefile.am:
* examples/Monitor/CPU_Load/Makefile.am:
* examples/Monitor/Num_Threads/Makefile.am:
* examples/Monitor/Group/Makefile.am:
* examples/Monitor/Memory_Usage/Makefile.am:
* examples/Monitor/Makefile.am:
* examples/Semaphores/Makefile.am:
New Makefile.am's.
Fri May 2 23:29:06 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ETCL/Makefile.am:
Regenerated.
* ace/ETCL/ETCL.mpc:
Add automake specific rule for includes.
Fri May 2 22:53:46 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Build ace/ETCL and ace/MonitorControl.
Fri May 2 21:54:40 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ETCL/Makefile.am:
* ace/MonitorControl/Makefile.am:
New Makefile.am's.
* ace/Makefile.am:
Regenerated.
Fri May 2 18:36:41 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/ETCL/ETCL_Interpreter.h:
Fix for build problems with versioned namespaces turned on.
Fri May 2 17:50:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2.h:
* ace/config-vxworks6.3.h:
* ace/config-vxworks6.4.h:
Only define _C99 when it is not defined yet
Fri May 2 17:20:37 UTC 2008 Steve Huston <shuston@riverace.com>
* tests/Message_Queue_Test.cpp: Removed the delay sleep between loop
iterations - it causes the test to time out too often. Increased
the message count back to multiples of 100,000.
Fri May 2 15:34:55 UTC 2008 Steve Huston <shuston@riverace.com>
* tests/RW_Process_Mutex_Test.cpp: Fixed compile warning about
redundant variable.
Fri May 2 11:07:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/MMAP_Memory_Pool.{h,cpp}:
Doxygen improvements and moved the documentation about the
handle_signal method from the cpp to the header file so that
it appears in the doxygen documentation
Fri May 2 09:36:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added Bug_3315_Regression
Fri May 2 08:25:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
Added new libs
Fri May 2 08:15:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ace_for_tao.mpc:
Added new monitor files
Fri May 2 08:04:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Monitor_Admin.cpp
* ace/Monitor_Admin.h
* ace/MonitorControl/AutoUpdateStarter.cpp
* ace/MonitorControl/AutoUpdateStarter.h
* ace/MonitorControl/MonitorControl_utils.h
Updated for naming conventions
Fri May 2 07:47:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Monitor/Bytes_Sent/bytes_sent.cpp
* examples/Monitor/Constraint/constraint.cpp
* examples/Monitor/CPU_Load/cpu_load.cpp
* examples/Monitor/Group/group.cpp
* examples/Monitor/Memory_Usage/memory_usage.cpp
* examples/Monitor/Message_Queue_Size/message_queue_size.cpp
* examples/Monitor/Num_Threads/num_threads.cpp
Updated include
* examples/Monitor/Bytes_Sent/Bytes_Sent.mpc
* examples/Monitor/Constraint/Constraint.mpc
* examples/Monitor/Num_Threads/Num_Threads.mpc
* examples/Monitor/Group/Group.mpc
* examples/Monitor/CPU_Load/CPU_Load.mpc
* examples/Monitor/Message_Queue_Size/Message_Queue_Size.mpc
Don't build with ace_for_tao
Thu May 1 22:35:17 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/MonitorControl/MonitorControl.mpc:
* bin/MakeProjectCreator/config/ace_mc.mpb:
Avoid wince - it lacks the needed PDH capability.
Thu May 1 18:27:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/MonitorControl/MonitorControl.mpc:
* bin/MakeProjectCreator/config/ace_mc.mpb:
Use ACE_MonitorControl as shared library name
Thu May 1 17:31:01 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Config.cpp: Removed an assert guarding the case when
the current thread has no associated configuration context. Added
code that would initialize the thread's configuration context with
the global, instead. This addresses bug# 3315.
Thu May 1 17:11:48 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/ace.mwc:
Added MonitorControl directory to the workspace.
Thu May 1 17:05:37 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/MonitorControl/PacketsSentMonitor.h:
* ace/MonitorControl/WindowsMultiInstanceMonitor.cpp:
* ace/MonitorControl/WindowsMonitor.cpp:
* ace/MonitorControl/PacketsReceivedMonitor.cpp:
* ace/MonitorControl/MonitorGroup.h:
* ace/MonitorControl/MonitorQuery.h:
* ace/MonitorControl/NumThreadsMonitor.cpp:
* ace/MonitorControl/PacketsSentMonitor.cpp:
* ace/MonitorControl/MonitorGroup.cpp:
* ace/MonitorControl/WindowsMultiInstanceMonitor.h:
* ace/MonitorControl/WindowsMonitor.h:
* ace/MonitorControl/MonitorControl_utils.h:
* ace/MonitorControl/MonitorQuery.cpp:
* ace/MonitorControl/PacketsReceivedMonitor.h:
* ace/MonitorControl/NumThreadsMonitor.h:
Changed header includes to be consistently relative
to $ACE_ROOT.
Thu May 1 16:11:12 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* MonitorControl/*:
Moved this directory to $ACE_ROOT/ace.
Thu May 1 15:56:58 UTC 2008 Steve Huston <shuston@riverace.com>
* tests/run_test.lst: Change Bug_2980_Regression_Test's !MSVC to
!Win32. The test won't run on Windows per its comments, but no
XML configs set MSVC - they set Win32.
Thu May 1 15:27:25 UTC 2008 Steve Huston <shuston@riverace.com>
* tests/Message_Queue_Test.cpp: In the counting test, run multiples
of 50,000 instead of 100,000, blocks. The test is timing out on a
number of platforms.
* tests/RW_Process_Mutex_Test.cpp: Fix signed/unsigned warnings and
wchar build error. Changed the default lock name to something other
than the program's name. Using the program name produces "text
file busy" when attempting a file lock on it... doh...
Thu May 1 14:47:33 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* MonitorControl/examples/*:
Removed this directory and moved its contents to
$ACE_ROOT/examples/Monitor.
* bin/MakeProjectCreator/config/acelib.mpb:
Cosmetic changes.
Thu May 1 14:37:03 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/VXTestProjectCreator.pm:
Override the warn_useless_project() method so that we are no
longer warned about "no useful targets" for this project type.
Wed Apr 30 22:01:10 UTC 2008 Steve Huston <shuston@riverace.com>
* tests/RW_Process_Mutex_Test.cpp: New test for proper functioning
of ACE_RW_Process_Mutex.
* tests/tests.mpc:
* tests/run_test.lst: Add RW_Process_Mutex_Test.
Wed Apr 30 21:14:45 UTC 2008 James H. Hill <hillj@isis.vanderbilt.edu>
* ace/Hash_Map_Manager_T.h:
Two of the backwards compatible iterators for
ACE_Hash_Map_Manager incorrectly defined the iterator_category
trait based on the container_type, which does not have an
iterator_category. Now the trait is defined in terms of its
base class. This resolved Bugzilla Bug #3314.
Wed Apr 30 16:49:27 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* MonitorControl/PacketsSentMonitor.h:
* MonitorControl/BytesReceivedMonitor.h:
* MonitorControl/PacketsReceivedMonitor.h:
* MonitorControl/BytesSentMonitor.h:
Added include of export header file, since it's not
pulled in indirectly on Solaris builds.
* MonitorControl/WindowsMultiInstanceMonitor.cpp:
Fixed signed/unsigned comparison warnings on wchar builds.
Wed Apr 30 16:24:41 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* MonitorControl/CPULoadMonitor.cpp:
* MonitorControl/WindowsMonitor.cpp:
* MonitorControl/WindowsMultiInstanceMonitor.cpp:
* MonitorControl/MemoryUsageMonitor.cpp:
* MonitorControl/NumThreadsMonitor.cpp:
* MonitorControl/LinuxNetworkInterfaceMonitor.cpp:
Fixed wchar build errors.
Wed Apr 30 13:49:52 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/UUID.cpp (get_timestamp_and_clocksequence): Case clock sequence
value using ACE_UINT16 instead of u_char to prevent duplicates
when many UUIDs are generated quickly. Thanks to Wim van den Boogaard
for this fix. Resolves Bugzilla #3313.
Tue Apr 29 19:52:48 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/Proactor.cpp: Simplify the timer_handler_ task spawn and
shutdown. Also, if close() sees an error from the implementation's
close, don't stop closing. Things are most likely already ripped
apart too far to recover from, and it's likely to cause a hang to
just try to stop closing now.
* ace/POSIX_Asynch_IO.cpp: Correctly handle the ACE_Message_Block
pointers passed to operations and later updating when complete.
Thanks to Fernando C. Jeronymo <fernando dot fcavalcanti at
gmail.com> for diagnosing this problem.
* THANKS: Added Fernando C. Jeronymo to the Hall of Fame.
* tests/Proactor_UDP_Test.cpp: Fix to close down correctly in
half-duplex mode.
Tue Apr 29 19:12:53 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* bin/MakeProjectCreator/config/ace_etcl_parser.mpb:
Changed the path of the 'includes' line to match
the new location of ETCL.
* MonitorControl/Constraint_Interpreter.cpp:
* MonitorControl/Constraint_Visitor.h:
* MonitorControl/Constraint_Visitor.cpp:
* MonitorControl/Constraint_Interpreter.h:
Updated #includes to match the new location of ETCL.
* MonitorControl/AutoUpdateStarter.h:
Moved location of enabled monitors check, it was
previous to any place it could see the #define in
an included file.
* MonitorControl/examples/Constraint/constraint.cpp:
* MonitorControl/examples/CPU_Load/cpu_load.cpp:
* MonitorControl/examples/Group/group.cpp:
Some compile warnings fixed.
Tue Apr 29 18:37:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* MonitorControl/AutoUpdateStarter.h:
* MonitorControl/Constraint_Interpreter.h:
* MonitorControl/Constraint_Visitor.h:
* MonitorControl/LinuxNetworkInterfaceMonitor.h:
* MonitorControl/MonitorControl.h:
* MonitorControl/MonitorQuery.h:
* MonitorControl/WindowsMonitor.h:
* MonitorControl/WindowsMultiInstanceMonitor.h:
Make sure we have at least one include before pragma once
Tue Apr 29 18:27:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/bczar/bczar.html:
* etc/index.html:
Updated Beta to Micro
Tue Apr 29 18:02:22 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* ETCL/*:
Moved this directory and all its contents to $ACE_ROOT/ace.
Also changed #includes to be relative to $ACE_ROOT.
* ace/ace.mwc:
Added ETCL directory.
* docs/svn/svn-prefs.reg:
Added *.diff to list.
Tue Apr 29 17:45:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* MonitorControl/examples/Bytes_Sent/bytes_sent.cpp:
* MonitorControl/examples/Constraint/constraint.cpp:
* MonitorControl/examples/CPU_Load/cpu_load.cpp:
* MonitorControl/examples/Group/group.cpp:
* MonitorControl/examples/Memory_Usage/memory_usage.cpp:
* MonitorControl/examples/Message_Queue_Size/message_queue_size.cpp:
* MonitorControl/examples/Num_Threads/num_threads.cpp:
Updated main for unicode
Tue Apr 29 13:14:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Test_Output.cpp:
Check for ACE_VXWORKS
Tue Apr 29 13:12:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* MonitorControl/AutoUpdateStarter.cpp:
* MonitorControl/Constraint_Interpreter.cpp:
* MonitorControl/Constraint_Interpreter.h:
* MonitorControl/Constraint_Visitor.cpp:
* MonitorControl/Constraint_Visitor.h:
* MonitorControl/CPULoadMonitor.cpp:
* MonitorControl/LinuxNetworkInterfaceMonitor.cpp:
* MonitorControl/NumThreadsMonitor.cpp:
* MonitorControl/WindowsMonitor.cpp:
* MonitorControl/WindowsMultiInstanceMonitor.cpp:
Updated includes to fix errors and improve compile speed when
this lib is disabled
Tue Apr 29 08:16:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/vxtest.mpd:
Zap empty line
* bin/PerlACE/ProcessVX.pm:
* bin/PerlACE/ProcessVX_Unix.pm:
* bin/PerlACE/ProcessVX_Win32.pm:
Improved handling of vxtest file
Tue Apr 29 07:23:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/MEM_Connector.cpp:
* ace/Service_Manager.cpp:
* ace/SOCK_Dgram_Mcast.cpp:
Reverted accidental commits from Doug
Tue Apr 29 06:32:10 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/modules/VXTestProjectCreator.pm:
Generate exename.vxtest instead of project name
* bin/MakeProjectCreator/templates/vxtest.mpd:
Don't generate ld <
Mon Apr 28 22:34:10 UTC 2008 Steve Huston <shuston@riverace.com>
* tests/Proactor_UDP_Test.cpp: Fix compile errors on non-Windows.
Mon Apr 28 21:53:23 UTC 2008 Steve Huston <shuston@riverace.com>
* docs/ACE-development-process.html: Fix a few remaining nits.
* ace/OS_NS_stdio.inl: Removed all the pre-ACE_HAS_WINNT4 code in the
file locks methods. This was the only place left in ACE that
referred to ACE_HAS_WINNT4; all pre-NT4 support was removed last
year from the rest of ACE. This also corrects behavior of file
locks as well as ACE_RW_Process_Mutex.
* ace/RW_Process_Mutex.h: Doxygen improvements.
* ace/SOCK_CODgram.h: Doxygen improvements.
* ace/SOCK_CODgram.cpp (open): If either of the local or remote
addresses is specified, use its address family rather than the
value of protocol_family. If both are specified, they must match.
* tests/Message_Queue_Test.cpp: Added a counting test to validate the
queue's message counting.
* tests/Proactor_UDP_Test.cpp: New test for UDP with ACE_Proactor.
* tests/tests.mpc:
* tests/run_test.lst: Add Proactor_UDP_Test.
Mon Apr 28 19:21:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/ProcessVX.pm:
* bin/PerlACE/ProcessVX_Unix.pm:
* bin/PerlACE/ProcessVX_Win32.pm:
Use the vxtest file when testing shared non rtp
Mon Apr 28 19:06:10 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* MonitorControl/MonitorControl.h:
Added ACE_HAS_MONITOR_FRAMEWORK guard to this file.
Mon Apr 28 18:24:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ace_wchar.h:
Added defines needed to build MonitorControl unicode
* MonitorControl/WindowsMonitor.cpp:
* MonitorControl/WindowsMultiInstanceMonitor.cpp:
Make a correct difference between unicode and non unicode builds
* ace/Strategies_T.{h,inl}:
Refcount from base is now a long
Mon Apr 28 18:23:55 UTC 2008 Adam Mitz <mitza@ociweb.com>
* bin/PerlACE/ProcessVX_Unix.pm:
Fixed a bug in my previous commit of this file,
$cmdnr was not updated when the unload commands were added.
Mon Apr 28 17:59:43 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* Constraint_Interpreter.cpp:
* Constraint_Visitor.h:
* MonitorGroup.h:
* MonitorQuery.h:
* AutoUpdateStarter.h:
* Constraint_Visitor.cpp:
* MonitorGroup.cpp:
* Constraint_Interpreter.h:
* MonitorQuery.cpp:
* AutoUpdateStarter.cpp:
* MonitorControl_utils.h:
Added ACE_HAS_MONITOR_FRAMEWORK guards
similarly to the other files in the library.
Mon Apr 28 17:54:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* MonitorControl/BytesReceivedMonitor.cpp:
* MonitorControl/BytesSentMonitor.cpp:
* MonitorControl/CPULoadMonitor.cpp:
* MonitorControl/MemoryUsageMonitor.cpp:
* MonitorControl/NumThreadsMonitor.cpp:
* MonitorControl/PacketsReceivedMonitor.cpp:
* MonitorControl/PacketsSentMonitor.cpp:
* MonitorControl/WindowsMonitor.cpp:
* MonitorControl/WindowsMonitor.h:
* MonitorControl/WindowsMultiInstanceMonitor.cpp:
* MonitorControl/WindowsMultiInstanceMonitor.h:
Fixed unicode compile problems on windows
Mon Apr 28 13:25:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/APG/Streams/streams.mpc:
* examples/C++NPv2/C++NPv2.mpc:
Use base projects
Mon Apr 28 13:20:40 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/Vector_T.inl (ACE_Vector): Take another shot at fixing the
max_size() problem.
Mon Apr 28 12:45:18 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/tao_orb_tests.lst:
Added the new TAO HandleExhaustion test for all but Windows.
Mon Apr 28 12:21:55 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/Vector_T.inl (ACE_Vector): Zapped the "this->" in "this->max_size()".
Thanks to Karl-Heinz <wind at itq dot de> for reporting this.
Mon Apr 28 12:13:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_sunos5_common.GNU:
Added kstat support needed for monitoring lib on solaris
Mon Apr 28 12:05:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* MonitorControl/*:
Merge from MonitorControl branch.
Mon Apr 28 11:37:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-all.h:
* ace/Global_Macros.h:
Moved set of define to config-all
* ace/Truncate.h:
* ace/Condition_T.h:
Doxygen fix
Mon Apr 28 11:36:46 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* ace/Acceptor.h:
* ace/Acceptor.cpp:
Added a virtual method to facilitate the configurable handling of
accept() errors.
Mon Apr 28 11:30:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ETCL/*:
New ETCL library for ACE
* bin/MakeProjectCreator/config/ace_etcl.mpb:
* bin/MakeProjectCreator/config/ace_etcl_parser.mpb:
* bin/MakeProjectCreator/config/ace_mc.mpb:
New base projects
* bin/MakeProjectCreator/config/acenosubsets.mpb:
Layout changes
Mon Apr 28 10:31:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Monitor_Admin.cpp:
* ace/Monitor_Admin.h:
* ace/Monitor_Admin_Manager.cpp:
* ace/Monitor_Admin_Manager.h:
* ace/Monitor_Base.cpp:
* ace/Monitor_Base.h:
* ace/Monitor_Base.inl:
* ace/Monitor_Control_Action.cpp:
* ace/Monitor_Control_Action.h:
* ace/Monitor_Control_Types.cpp:
* ace/Monitor_Control_Types.h:
* ace/Monitor_Point_Registry.cpp:
* ace/Monitor_Point_Registry.h:
* ace/ace.mpc:
* ace/Global_Macros.h:
First commit coming from the Monitor branch. This will add a
monitoring framework to ACE with which size of queues, cpu load
and other resources can be monitored.
Sun Apr 27 05:55:54 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Object.cpp:
Fixed big introduced by some cleanup I did
Fri Apr 25 21:47:54 UTC 2008 Adam Mitz <mitza@ociweb.com>
* bin/MakeProjectCreator/templates/vxtest.mpd:
* bin/PerlACE/ProcessVX_Unix.pm:
Began integration of the foo.vxtest files into the actual testing
process. This needs to get enhanced in ProcessVX_Win32.pm too.
Fri Apr 25 21:21:56 UTC 2008 Adam Mitz <mitza@ociweb.com>
* ace/Object_Manager.cpp:
Removed a comment that no longer applies.
* bin/PerlACE/Process_Win32.pm:
Changed the check for failure to spawn a process, in order to avoid
a race condition (the spawned process exits normally before we even
check its status).
* bin/auto_run_tests.pl:
With -s, account for different parameter formatting requirements in
the win32 and posix sandbox programs.
Fri Apr 25 14:25:00 UTC 2008 Simon Massey <sma at pristmech dot com>
* tests/Unload_libACE.cpp:
I've backed out this change due to lack of time to chase up
the lack of macro definitions. This will need to be revisited.
Fri Apr 25 10:40:00 UTC 2008 Simon Massey <sma at pristmech dot com>
* tests/Unload_libACE.cpp:
This test wasn't using ACE_TMAIN.
Fri Apr 25 09:10:00 UTC 2008 Simon Massey <sma at pristmech dot com>
* bin/MakeProjectCreator/config/global.features:
* examples/Log_Mgs/Log_Msg_MFC/Log_Mgs_MFC.mpc:
Feature name "uses_wchar" already used within ACE/TAO. Replaces
the "unicode" feature name. Template / project names within MPC
still named unicode.
Thu Apr 24 18:45:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-linux-common.h:
When ACE_LACKS_STROPTS_H not is defined we assume we have
strbut so we set ACE_HAS_STRBUF_T
Thu Apr 24 16:47:16 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/tao_orb_tests.lst:
The DLL_ORB test requires threads. Disable it when the ST config
is used.
Thu Apr 24 15:05:50 UTC 2008 Simon McQueen <sm@prismtech.com>
* bin/tao_orb_tests.lst:
Scheduled new regression test for bug #3299.
Thu Apr 24 09:55:00 UTC 2008 Simon Massey <sma at pristmech dot com>
* bin/MakeProjectCreator/config/ace_unicode.mpb:
* bin/MakeProjectCreator/config/global.features:
Default unicode=0 feature. Unicode does not depend upon MFC,
may be used together as necessary.
* examples/Log_Mgs/Log_Msg_MFC/Log_Mgs_MFC.mpc:
* examples/Log_Mgs/Log_Msg_MFC/Log_Mgs_Unicode_MFC.mpc:
Split out the unicode requirements.
Thu Apr 24 05:58:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Refcountable_T.{cpp,inl}:
Use ACE_INLINE
Thu Apr 24 05:47:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-posix.h:
Reverted change below, already made a similar change which is less risky
Thu Apr 17 19:27:23 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/config-posix.h: Added a check for
#if defined _XOPEN_STREAMS && _XOPEN_STREAMS == -1
# define ACE_LACKS_STROPTS_H
#endif
so that ACE will compile properly on Fedora 8. Thanks to
Jules Colding <colding at 42tools dot com> for this fix.
Thu Apr 17 19:27:23 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/config-posix.h: Added a check for
#if defined _XOPEN_STREAMS && _XOPEN_STREAMS == -1
# define ACE_LACKS_STROPTS_H
#endif
so that ACE will compile properly on Fedora 8. Thanks to
Jules Colding <colding at 42tools dot com> for this fix.
Wed Apr 23 18:29:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Refcountable.{h,cpp,inl}:
* ace/Refcountable_T.{h,cpp,inl}:
Changed ACE_Refcountable to ACE_Refcountable_T which has a
trait for the type of lock. ACE_Refcountable is now a typedef
of ACE_Refcountable_T<ACE_Null_Mutex>. Also the refcount
type is now a long so that we can make use of the Atomic_Op
optimizations on some platforms
* ace/ace.mpc:
* ace/Makefile.am:
Updated for the change above
Wed Apr 23 14:49:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-linux-common.h:
When _XOPEN_STREAMS is defined to -1 we don't have stropts.h,
this fixes bugzilla 3291. Thanks to Jules Colding
<colding at 42tools dot com> for reporting this
Wed Apr 23 14:10:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/ACE-development-process.html:
We are using svn as repository
Wed Apr 23 14:01:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/generate_rel_manpages:
Corrected doxygen path
* bin/group_test_stats.sh:
Helper script to analyze test stat diffs
* ace/Sig_Handler.{h,cpp}:
Doxygen changes and changed third_party_sig_handler flag to a
bool
* ace/Service_Repository.{h,cpp}:
Changed ignore_suspended to a bool
* ace/Intrusive_Auto_Ptr.h:
Fixed typo in comment
* ace/config-vxworks6.2.h:
* ace/config-vxworks6.3.h:
* ace/config-vxworks6.4.h:
Removed workaround that is only needed with VxWorks 5.5.1
* ace/Codeset_Registry_db.cpp:
Added UCS2 and correct short names. This fixes bugzilla 3295
* ace/Codeset_IBM1047.h:
Doxygen changes
* ace/Cleanup_Strategies_T.h:
Layout changes
* ace/Service_Gestalt.{h,inl}:
No need for virtual methods, use bool and doxygen changes
* ace/Service_Manager.h:
Explicitly mark destructor as virtual
* ace/Service_Object.{h,cpp,inl}:
Use bool
Wed Apr 23 01:53:32 CDT 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE version 5.6.4 released.
Wed Apr 16 13:06:05 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/ARGV.cpp:
Don't quote quotes already quoted.
Mon Apr 14 12:10:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.pl:
Don't run 2980 when WCHAR is set
Mon Apr 14 11:08:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Threading_Helper_T.cpp:
Removed
* ace/Makefile.am:
Removed file above
* ace/Service_Config.{h,cpp,inl}:
Changed the template instantiations like we have for Atomic_Op.
Mon Apr 14 09:54:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/tests.mpc:
Don't build 2980 with wchar enabled and added empty resource
file section
Mon Apr 14 08:59:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Threading_Helper_T.cpp:
Added new file with the threading helper template code. This resolves
the strange link problems with BCB. This file is included in the
Service_Config.h file
* ace/Makefile.am:
Added new files
* ace/Service_Config.{h,cpp,inl}:
Include the new Threading_Helper_T.cpp and removed the implementation
from these files
* tests/tests.mpc:
Added missing include for bug 2980
* ace/Codeset_Registry.h:
Fixed typo in comment
* ace/Shared_Object.h:
Doxygen changes
Mon Apr 14 01:56:06 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Config.h:
* ace/Service_Config.inl:
* ace/Service_Config.cpp:
Moved ACE_Threading_Helper ctor and dtor implementaion
inline. This makes them available to code that indirectly
references the threadkey_ member (like, in examples/). This
should resolve link-time problems with borland compilers.
* tests/Bug_2980_Regression_Test.cpp (unloadDll):
Fixing warnings about missing extern "C" qualifier in call to
pthread_create.
Sun Apr 13 07:27:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_Thread.cpp (_vx_call_entry):
Set the sc::current before calling main. This resolves the
sc asserts with vxworks kernel mode. Thanks to Iliyan
for suggesting this addition
Fri Apr 11 17:36:34 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* docs/Download.html:
* docs/ACE-development-process.html:
* docs/ACE-bug-process.html: Updated these files to use the major,
minor, and micro release terminology.
Fri Apr 11 15:26:08 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* tests/Bug_2980_Regression_Test.cpp:
* tests/run_test.lst:
Including config-lite.h: the driver is non-ACE but it still
needs to know platform-specific stuff, like threads usage,
etc.
Fri Apr 11 01:51:13 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Svc_Conf_Tokens.h:
* ace/svcconf.mpb:
Fixing a fuzz build warning of a missing $Id. Also, not all
make(1)'s have $(MV), so changing mpb to use just "mv"
Thu Apr 10 22:32:58 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Config.h:
* ace/Service_Config.cpp:
Fixing compile problems with single-thread-only builds - using
the compiler's abilities (partial specialization) to generate
appropriate code.
* ace/Svc_Conf.h:
* ace/Svc_Conf_Token_Table.h:
* ace/Svc_Conf_Tokens.h:
* ace/Svc_Conf_y.cpp:
* ace/svcconf.mpb:
Changes to fix compile problems related to versioned namespace
use. Eliminated custom token file post-processing - replaced
with a wrapper header file (yacc(1) is now producing
Token_Table.h, which gets included in Tokens.h)
Thu Apr 10 14:42:04 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Svc_Conf.h:
Adding YYSTYPE_IS_DECLARED to prevent yacc(1) from trying to use a
trivial definition of YYSTYPE.
* ace/Svc_Conf.y:
Fixing an unused variable warning. Adding an YYSTYPE guard.
* ace/Svc_Conf_Tokens.h:
* ace/Svc_Conf_y.cpp:
* ace/svcconf.mpb:
Undefining YYSTYPE_IS_DECLARED at the bottom of Svc_Conf_Tokens.h
prevents it from leaking and poluting the global namespace. This
allows other yacc(1) based parsers to be used in ACE
apps. Cleaning up and recording generated files.
Thu Apr 10 13:27:13 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* tests/Bug_2980_Regression_Test.cpp:
Fixed compilation issues and reversed the CAN_RUN_TEST check to
get it to run on non-win32 and non-vxworks operating systems.
Thu Apr 10 10:11:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Dynamic_Service.inl:
Corrected method signatures
Thu Apr 10 10:03:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2980_Regression_Test.cpp:
Fixed BCB compile error
Thu Apr 10 07:13:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_linux_pgi.GNU:
Removed deprecated linker flags
* ace/Dev_Poll_Reactor.cpp:
* ace/Notification_Queue.cpp:
* ace/Service_Config.cpp:
* ace/Service_Object.cpp:
* ace/Sock_Connect.cpp:
Added missing includes
* ace/Notification_Queue.cpp:
* ace/Notification_Queue.inl:
Added missing versioned namespace macros
Thu Apr 10 06:41:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Gestalt.h:
Added include of Guard_T.h
* include/makeinclude/platform_linux_pgi.GNU:
Updated for latest pgCC version
Thu Apr 10 00:50:53 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* tests/Bug_2980_Regression_Test.cpp:
* tests/tests.mpc:
Fixing a compile problem with no-threads builds.
Wed Apr 9 22:05:30 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Svc_Conf.h:
* ace/Svc_Conf.y:
* ace/Svc_Conf_Lexer.h:
* ace/Svc_Conf_Lexer.cpp:
* ace/Svc_Conf_Param.h:
* ace/Svc_Conf_Tokens.h:
* ace/Svc_Conf_y.cpp:
* ace/svcconf.mpb:
Simplified the build sequence reducing the number of additional
transformations needed for Bison's parser output. That includes
the elimination of the ACE_YY prefix, which was necessary only
because of these transformations. Added ACE_TEXT around naked
string literals. Fixed build warnings with unicode builds.
Wed Apr 9 20:22:46 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Repository.cpp:
Fixing relocate_i to both account for empty slots _and_ provide
useful logging.
Wed Apr 9 18:24:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Don't run 3171 with CORBA/e micro
Wed Apr 9 11:50:27 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/VXTestProjectCreator.pm:
Added a need_to_write_project override method to only allow the
project file to be written if it is an executable project.
* bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm:
Fixed a bug where an invalid base module was used in the @ISA.
Wed Apr 9 11:41:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2980_Regression_Test.cpp:
Check for ACE_VXWORKS
Wed Apr 9 11:11:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Svc_Conf_y.cpp:
Fixed unicode build problems
Wed Apr 9 08:06:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Svc_Conf.y:
* ace/Svc_Conf_y.cpp:
Fixed unicode build problems
Wed Apr 9 07:18:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Service_Config.h:
Export ACE_Threading_Helper, it is used as protected class
member
* ace/Service_Gestalt.cpp:
Don't use ACE_LIB_TEXT
* ace/High_Res_Timer.h:
* ace/Based_Pointer_T.h:
Doxygen changes
* ace/Naming_Context.cpp:
Fixed gcc 4.3 warning
* ace/OS_NS_errno.h (last_error):
Give the argument a name so that doxygen can do its work
* ace/Select_Reactor_T.cpp:
Use scoping
* ace/MMAP_Memory_Pool.{h,cpp}:
Add a bool flag to indicate whether the signal handler has to
be installed or not. Made some other flags bool and win32 there
is no need have a signal handler as member. This fixes bugzilla
3290
Wed Apr 9 02:43:37 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Dynamic_Service.inl (instance):
Adjusting interface to take a smart pointer.
* ace/OS_NS_unistd.cpp (argv_to_string):
Adding interpretation for tabs and new line characters as
characters to trigger quoting.
* ace/Service_Config.h:
* ace/Service_Config.cpp:
* ace/Service_Gestalt.h:
* ace/Service_Gestalt.inl:
* ace/Service_Gestalt.cpp:
* ace/Service_Repository.cpp:
Reformatting, updating comments and logging.
Wed Apr 9 01:21:42 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/Condition_T.cpp (wait): Fixed a bug where the mutex
parameter wasn't being used properly if abstime was 0. Thanks
to Andriy Gapon <avg at icyb dot net dot ua> for reporting this.
Mon Apr 7 18:49:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/docs/templates/gnu.txt:
Document linkflags
Mon Apr 7 15:21:38 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
This the second part of the SC refatoring. It builds on top of
the intrusive refcounting mechanism introduced earlier to improve
design and eliminate memory issues (leaks, SEGV on shutdown)
* ace/Service_Config.cpp (open_i,ACE_Service_Config):
Moved the implicit configuration file handling from open_i to
the SG instance. Eliminated close_svcs() by incorporating its
functionality in close().
* ace/Service_Config.inl:
* ace/Service_Config.h (ACE_Service_Config_Guard,ACE_Service_Config):
Removing the inheritance relationship between Service Config and
Service Gestalt. To simplify the memory management, SC becomes an
interface to the actual configuration data managed by SG. Coupled
with the reference counting of SG instances, this ensures correct
memory management in multi-threaded environments where both the
TSS and the user code may trigger SG finalization.
Introducing ACE_Threading_Helper to simplify TSS management
(RAII idiom). Changed ACE_Service_Config_Guard to use the new
smart pointer for SG. Doxygen comments cleanup.
* ace/Svc_Conf.y:
* ace/Svc_Conf_y.cpp:
Fixing unused function definition
* tests/Bug_2980_Regression_Test.cpp:
Updating the test to prevent it from breaking vxWorks builds
which appear to lack a declaration for dlopen()
Sun Apr 6 01:53:13 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Gestalt.cpp:
Fixing unused variable warning.
* ace/Svc_Conf_y.cpp:
* ace/svcconf.mpb:
Ensuring there are no TAB characters present in the generated
file.
* tests/run_test.lst:
Excluding Bug_2980_Regression as it is not runnable on vxWorks.
Sat Apr 5 16:21:50 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Service_Config.inl:
* ace/Service_Config.cpp:
* ace/Service_Gestalt.cpp:
* ace/Service_Gestalt.h:
Making SG intrusively refcountable by introducing
intrusive_{add,remove}_ref methods and a refcounter. Adding
skip_default_svc_conf_file parameter in process_directives.
* ace/svcconf.mpb:
* tests/Object_Manager_Flipping_Test.cpp:
Reformatting and cleanup.
Sat Apr 5 13:42:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2980_Regression_Test.cpp:
Fixed argument not used warnings
Sat Apr 5 13:36:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Parse_Node.cpp:
Moved include out of versioned namespace block
Sat Apr 5 11:50:40 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Parse_Node.cpp:
* ace/Svc_Conf.y:
* ace/Svc_Conf_Tokens.h:
* ace/Svc_Conf_y.cpp:
Replacing ACE_LIB_TEXT with ACE_TEXT
Fri Apr 4 21:43:35 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* THANKS:
Adding Michael Carter <mcarter at swri dot org> for reporting
and debugging bug 3007.
* ace/Base_Thread_Adapter.h:
* ace/Base_Thread_Adapter.cpp:
Storing a pointer to SG that was current in the parent thread,
which enables correct "inheritance" of the SG in the child thread.
* ace/Parse_Node.h:
* ace/Parse_Node.cpp:
Fixing ACE_Stream_Node::{apply,link} to ensure the modules are linked
together and initialized correctly - see bug# 2916. Moving the
initialization code out of the yacc parser, here.
* ace/Service_Object.cpp:
* ace/Service_Types.cpp:
Improving the log output in fini().
* ace/Service_Repository.h:
Eliminating an unused parameter static_only from relocate_i()
* ace/Service_Repository.cpp:
Simplified relocate_i() and fixed an error that was causing it to
choose incorrect ranges of service indexes to relocate.
Eliminated the boolean static_only parameter as it was always
being set to true. Changed remove() to eliminate the "packing"
code and updated the few other methods, which assumed there are no
"gaps" in the service storage.
* ace/Svc_Conf.h:
* ace/Svc_Conf.y:
* ace/Svc_Conf_Tokens.h:
* ace/Svc_Conf_y.cpp:
Adding an overloaded yyerror that takes just a string to comply
with the changed bison template. Moving the module initialization
code out of the parser. See ACE_Stream_Node class and bug# 2916.
* ace/Thread_Adapter.cpp:
The invoke() method, which runs in the new thread, initializes the
thread-specific configuration context. This scheme ensures any
newly spawned thread would inherit the spawning thread's service
configuration context.
* ace/ace.mpc:
Adding Intrusive_Auto_Ptr to the list.
* ace/svcconf.mpb:
Updated for the grammar updates, see bug# 2916.
* examples/ASX/CCM_App/ASX_CCM_App.mpc:
* examples/ASX/CCM_App/CCM_App.cpp:
The DLL names are case-sensitive on *nix. Minor layout changes.
* tests/Object_Manager_Flipping_Test.cpp:
Updated to use the Intrusive_Auto_Ptr
* tests/run_test.lst:
* tests/tests.mpc:
Adding Bug_2980_Regression_Test
Fri Apr 4 18:27:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* configure.ac:
Fixed iostream detection. This fixes bugzilla 3288
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this.
Thu Apr 3 14:13:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks5.5.x.GNU:
* include/makeinclude/platform_vxworks6.2.GNU:
* include/makeinclude/platform_vxworks6.3.GNU:
Changed the make variable from which we zap the -ansi and also support
this with the diab compiler
Thu Apr 3 09:40:00 UTC 2008 Simon Massey <simon dot massey at prismtech dot com>
* apps/JAWS/stress_testing/benchd.cpp:
Using "interface" as the descriptive name of a parameter seems to
cause VC8 (when building with MFC) to assume you mean a struct type
and it raises an incorrect systax error.
Thu Apr 3 07:05:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/gnu.mpd:
Generate link_groups also when staticflags are not set
Wed Apr 2 21:40:00 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Fix typo in ACE_HAS_BSWAP_{16,32,64} feature tests.
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this.
Wed Apr 2 20:22:50 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Intrusive_Auto_Ptr.h:
* ace/Intrusive_Auto_Ptr.inl:
Correcting a problem with VC71
Wed Apr 2 11:06:30 UTC 2008 Vladimir Zykov <vladimir.zykov@prismtech.com>
* bin/tao_orb_tests.lst:
Enabled a TAO/tests/Collocated_Forwarding on vxworks and
vxworks_rtp.
Wed Apr 2 09:05:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks5.5.x.GNU:
* include/makeinclude/platform_vxworks6.2.GNU:
* include/makeinclude/platform_vxworks6.3.GNU:
Add no_cflags_ansi and no_ccflags_ansi which if set do remove the
-ansi compiler flag
Wed Apr 2 08:14:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-linux-common.h:
Replaced ACE_HAS_VOIDPTR_GETTIMEOFDAY with
ACE_HAS_TIMEZONE_GETTIMEOFDAY, this fixes bugzilla 3145
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this
Wed Apr 2 07:51:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/run_test.lst:
Enabled a few tests on VxWorks again, in the past rebooting a
crashed target was problematic but that is not an issue anymore
Tue Apr 1 14:20:34 UTC 2008 Vladimir Zykov <vladimir.zykov@prismtech.com>
* bin/tao_orb_tests.lst:
Added a new test for collocated forwarding case.
Tue Apr 1 12:58:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Added OBV typed event test
Tue Apr 1 12:52:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Add the DSI Gateway exception test, they should run, the scoreboard
will show if they run
Tue Apr 1 08:33:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Set ACE_OPENVMS_IA64 on Itanium
* include/makeinclude/rules.lib.GNU:
Only use a special AR rule on OpenVMS IA64
Tue Apr 1 07:38:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Intrusive_Auto_Ptr_Test.cpp:
Fixed argument not used warning
Tue Apr 1 07:34:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Enabled a few tests for vxworks
Tue Apr 1 07:12:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Reactor_Dispatch_Order_Test.cpp:
Only run the reactor once, this will lead to the failing of this test
when using the WFMO Reactor which seems to be a old issue that needs
to get addressed
Tue Apr 1 06:54:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Disabled most tests for vxworks and vxworks_rtp, we first need to
convert a lot of scripts to support vxworks
Mon Mar 31 21:48:58 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
Changed to avoid feature test for pthread_getaffinity_np() and
pthread_setaffinity_np() if system does not have cpu_set_t. In
that case, the pthread functions are amost certainly not
compatible.
* ace/Makefile.am:
Add Intrusive_Auto_Ptr.cpp, Intrusive_Auto_Ptr.h, and
Intrusive_Auto_ptr.inl to nobase_include_HEADERS.
Mon Mar 31 18:56:40 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Refcounted_Auto_Ptr.h:
* ace/Refcounted_Auto_Ptr.inl:
* ace/Refcounted_Auto_Ptr.cpp:
Reverting the changes because a) they are not really necessary
for the refactoring of the service config, and; b) the AIX
compiler appears to not deal well with implicit conversion
definitions, to template member types.
Mon Mar 31 16:15:17 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* tests/tests.mpc:
Adding Intrusive_Auto_Ptr_Test to the list
Mon Mar 31 14:52:58 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* ace/Intrusive_Auto_Ptr.h:
* ace/Intrusive_Auto_Ptr.cpp:
* ace/Refcounted_Auto_Ptr.h:
* ace/Refcounted_Auto_Ptr.inl:
* ace/Refcounted_Auto_Ptr.cpp:
Added preprocessor guards for proper inlining. Qualified
the type name in the implementation of opretator
unspecified_bool_type () to appease GCC 3.x
Mon Mar 31 13:50:45 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
* tests/run_test.lst:
Adding Intrusive_Auto_Ptr_Test to the list
Mon Mar 31 12:09:20 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/AutomakeWorkspaceHelper.pm:
Always reference Kokyu libraries from $(ACE_BUILDDIR) instead of
$(top_builddir) so that it will work from both ACE and TAO.
Mon Mar 31 11:00:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2980_Regression_Dll.cpp:
* tests/Bug_2980_Regression_Test.cpp:
Fixed fuzz errors
Mon Mar 31 08:59:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/OS_Test.cpp:
Added test for ACE_OS::last_error()
Sun Mar 30 19:54:23 UTC 2008 Iliyan Jeliazkov <iliyan@ociweb.com>
This is the first step of merging the changes from the gestalt
refactoring branch. It includes only changes that are merely
peripheral, without impacting the actual configuration mechanism
- yet.
* ace/ARGV.h:
* ace/ARGV.cpp:
Introducing a ctor that takes the number of parameters in argv,
thus eliminating the requirement to have argv 0-terminated. This
requirement can be a hard to satisfy in cases where the argv has
been "manualy constructed", i.e. not provided by the OS
environment.
* ace/Intrusive_Auto_Ptr.h:
* ace/Intrusive_Auto_Ptr.inl:
* ace/Intrusive_Auto_Ptr.cpp:
Added an intrusive auto pointer implementation. It is a reference
counted auto pointer that can be used for types with explicit
reference management implementations.
* ace/OS_NS_unistd.h:
* ace/OS_NS_unistd.cpp:
Introducing new argv_to_string which takes an explicit argc
argument and relaxes the requirement on argv (to be 0-terminated).
* ace/Refcounted_Auto_Ptr.h:
* ace/Refcounted_Auto_Ptr.inl:
Adding a mechanism that provides a correct conversion to boolean
for smart pointers, which preserves the smantics of "if (ap) ..."
without the unwanted side effects. Credit goes to Andrei
Alexandrescu's Modern C++ Design book.
* ace/Service_Types.cpp:
Cosmetics: adding this-> to member references.
* examples/ASX/CCM_App/ASX_CCM_App.mpc:
* examples/ASX/CCM_App/CCM_App.cpp:
Fixing a problem that precludes the test from running correctly
on *nix - the DLL names are not case-insensitive. Minor layout
changes.
* tests/Intrusive_Auto_Ptr_Test.cpp:
A test for the new auto ptr.
* tests/Bug_2980_Regression_Dll.cpp:
* tests/Bug_2980_Regression_Test.cpp:
* tests/run_test.lst:
* tests/tests.mpc:
Addded a test for bug 2980. Thanks to Lothar Werzinger <lothar
at tradescape biz> for contributing the code.
Sun Mar 30 18:54:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/ProcessVX_Win32.pm:
Handle single quotes in the executable arguments
Sat Mar 29 08:16:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Reactor_Dispatch_Order_Test.cpp:
Dev_Poll reactor displays other bugs, so disable this part of
the test
* ace/Select_Reactor_Base.cpp:
Position the iterator on the first element that is none zero, fixes
crashing of the reactor_dispatch_order_test on non windows platforms
Fri Mar 28 17:18:50 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/CDR_Stream.cpp (write_long_placeholder, write_short_placeholder):
Be careful to adjust and grow the stream's block before taking
the pointer that's returned to the user. Thanks to Alain Kocelniak
<alain@corys.fr> for this fix.
* ace/CDR_Stream.h: Note that the placeholder methods return 0 if
the method fails due to insufficient memory.
* THANKS: Added Alain Kocelniak to the Hall of Fame.
Fri Mar 28 15:40:03 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* tests/unload_libace.mpb:
Inhert from vc_warnings instead of duplicating part of it's
functionality.
Fri Mar 28 09:24:25 UTC 2008 Vladimir Zykov <vladimir.zykov@prismtech.com>
* bin/tao_orb_tests.lst:
Enabled a test to Bug_3276_Regression.
Fri Mar 28 09:17:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Reactor_Dispatch_Order_Test.cpp:
Extended this test to also test suspend/resume_handlers and the
dev_poll reactor. Thanks to Russell Morra for extending this test
* ace/ACE.cpp:
* ace/High_Res_Timer.inl:
Layout changes
* ace/Hash_Map_Manager_T.cpp:
Use prefix increment instead of postfix
* ace/High_Res_Timer.h:
* ace/Reactor.h:
* ace/Select_Reactor_Base.h:
Doxygen changes
* ace/Select_Reactor_Base.inl:
Fixed done implementation. This fixes bugzilla 3267
* ace/String_Base.cpp:
Initialise pointer with 0
* ace/WFMO_Reactor.{h,cpp,inl}:
Bool changes, fixed implementation of suspend_handlers/resume_handlers,
the to_be_added set modifications where not done correctly
Thu Mar 27 19:09:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
* bin/tao_other_tests.lst:
Diabled 3251/3252 in a static build
Thu Mar 27 16:27:44 UTC 2008 Adam Mitz <mitza@ociweb.com>
* ace/Object_Manager.cpp:
In Win32 debug builds with ACE_DISABLE_WIN32_ERROR_WINDOWS, also
redirect assert messages to stderr instead of GUI message boxes.
Thu Mar 27 16:17:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/ACE-bug-process.html:
* docs/ACE-development-process.html:
* docs/ACE-guidelines.html:
* docs/usage-bugzilla.html:
Updated bugzilla location
Thu Mar 27 15:52:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/modules/VXTestProjectCreator.pm:
* bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm:
* bin/MakeProjectCreator/templates/vxtest.mpd:
New MPC generator called vxtest. This will generate the loading
of the downloadable kernel modules for an application.
Thu Mar 27 14:07:27 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* configure.ac:
#include <byteswap.h> in ACE_HAS_BSWAP_{16,32,64} feature tests.
Resolves bugzilla issue #3134.
Thu Mar 27 12:54:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks6.3.GNU:
Small change to get the VxWorks shared library build further
Thu Mar 27 12:46:48 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* tests/SSL/Thread_Pool_Reactor_SSL_Test.cpp:
Changed ACE_TMAIN to run_main for the non-threaded portion of the
#ifdef. ACE_TMAIN is defined in Main.cpp.
Thu Mar 27 12:37:18 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* ASNMP/asnmp/snmperrs.h:
Added an unknown error code message to the pErrs array to avoid
getting a garbage pointer from Snmp::error_string() in the event
that the error code is outside the valid range.
Thu Mar 27 11:11:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Free_List.cpp:
Fixed ambiguous else with GCC 4.3. Thanks to Jules Colding
<colding at 42tools dot com> for reporting this
Thu Mar 27 10:36:18 UTC 2008 Simon McQueen <sm@prismtech.com>
* include/makeinclude/wrapper_macros.GNU:
Make it possible to specify an alternate name / location for
platform_macros.GNU. This fixes bug #3269.
Wed Mar 26 15:32:01 UTC 2008 Adam Mitz <mitza@ociweb.com>
* bin/MakeProjectCreator/templates/gnu.mpd:
Corrected my change from yesterday so that it works properly for
executable projects that pull in source files from other directories.
Tue Mar 25 18:02:52 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* ASNMP/asnmp/wpdu.cpp:
Added an intermediate integer to avoid type-punned pointer
dereferencing.
Tue Mar 25 14:19:31 UTC 2008 Adam Mitz <mitza@ociweb.com>
* bin/MakeProjectCreator/templates/gnu.mpd:
When generating the linker command line for executable linked against
static libs, exclude the "libFoo.a" form of the libraries. They are
already accounted for by "-lFoo" arguments. This resolved Bugzilla
Bug #3266.
Tue Mar 25 10:43:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* netsvcs/lib/Server_Logging_Handler.cpp:
Corrected static template member instantiation to resolve compile
error on OpenVMS Alpha
Tue Mar 25 10:12:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Disable warnings on IA64 without using GNV, that doesn't work
in all cases
Tue Mar 25 09:08:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/INET_Addr.cpp:
Detect sockets that are bigger then ACE_MAX_DEFAULT_PORT.
Thanks to Patrick Rabau <pr2345 at gmail dot com> for
reporting this. This fixes bugzilla 3264
* tests/INET_Addr_Test.cpp:
Added a test for an overflow of the port number
* ace/Hash_Map_Manager_T.{h,inl}:
Changed head argument of the iterators to a bool
* ace/Reactor.h:
* ace/Reactor_Impl.h:
Doxygen changes
Tue Mar 25 00:38:33 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
* ace/Makefile.am:
Add Configuration.inl to nobase_include_HEADERS.
Mon Mar 24 16:21:30 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/OS_NS_Thread.cpp (event_timedwait): Fixed this code so that
it will treat 0 using "wait indefinitely" semantics for Windows
and all other OS platforms. Thanks to Paul Carter <pcarter at
scires dot com> for contributing this.
Mon Mar 24 16:13:51 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* tests/Manual_Event_Test.cpp (worker): Added a test to ensure
that a null pointer works properly for the
ACE_Manual_Event::wait() method. Thanks to Paul Carter <pcarter
at scires dot com> for contributing this.
Mon Mar 24 15:43:28 UTC 2008 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* bin/MakeProjectCreator/config/MPC.cfg:
MPC can now be configured to recognize ACE_TMAIN as an executable
entry point. We no longer need to explicitly state that a project will
be an executable in the MPC file, MPC will automatically deduce that
the project is an executable given the presence of ACE_TMAIN.
This change above relates to the following change in MPC:
Mon Mar 24 15:18:28 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
Mon Mar 24 02:25:58 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* COPYING: Updated the license a bit based on feedback from Tom
Callaway" <tcallawa at redhat dot com>. These changes will
enable ACE+TAO to be shipped with Fedora.
Fri Mar 21 16:12:53 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/OS_NS_unistd.cpp (num_processors_online): Count the online
processors for Windows, not just the number present.
* tests/OS_Test.cpp: Sanity-check the num_processors_online() value.
Fri Mar 21 15:10:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/FoxReactor/FoxReactor.cpp:
Fix 64bit issues, this fixes bugzilla 3248
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this
Fri Mar 21 10:46:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* m4/ace.m4:
Changed gperf check
* apps/Makefile.aml:
Updated gperf check. This fixes bugzilla 3249.
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this
Fri Mar 21 10:06:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks.h:
If ACE_VXWORKS is not defined try to figure out which vxworks
version we are using based on some vxworks version defines
* ace/Select_Reactor_Base.h:
Doxygen changes and made the constructor of
ACE_Select_Reactor_Handler_Repository_Iterator explicit
* ace/Process.{h,cpp}:
Layout change
Thu Mar 20 15:34:18 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/config/acedefaults.mpb:
Changed the ACE_LD_DECORATOR_STR macro to use $(LIBMODIFIER)
instead of $(ILIBMODIFIER) for the bmake project type.
Thu Mar 20 12:42:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Addr.h:
Layout change
* ace/High_Res_Timer.cpp:
Changed supported flag to a bool
* ace/INET_Addr.h:
Doxygen change
* ace/Svc_Conf.h:
Moved regular include before pragma once
Wed Mar 19 13:45:00 UTC 2008 Simon Massey <simon.massey@prismtech.com>
* ace/tao_orb_tests.lst:
Remove TAO/tests/Bug_1482_Regression from LynxOS.
Wed Mar 19 11:41:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Process_Manager.h:
* ace/Semaphore.h:
* ace/SOCK.h:
* ace/SOCK_IO.h:
Doxygen changes
* ace/Service_Gestalt.h:
Removed not needed forward declaration
* ace/OS_NS_Thread.h:
Layout change
Tue Mar 18 20:17:55 UTC 2008 Steve Huston <shuston@riverace.com>
* bin/PerlACE/ProcessLVRT.pm:
* bin/PerlACE/TestTarget_LVRT.pm: Handle timeouts to the target better
and smarten up the way it gets log files from a failed target.
* bin/PerlACE/TestTarget.pm:
* bin/PerlACE/TestTarget_LVRT.pm: Add a GetFile() method to get a file
from the target to the local machine. By default, it does nothing.
It's meant for use by targets that don't necessarily have locally
accessible file systems, such as LabVIEW RT.
* bin/Run_Test.pm:
* bin/PerlACE/Process_Win32.pm: Add support for running tests on
LabVIEW RT similarly to the way they're done on VxWorks; TAO tests
run the server on the target and the client on the host.
* bin/LabVIEW_RT/labview_test_controller/labview_test_controller.cpp:
Catch exceptions and try to report it to stderr before the machine
locks up, dies, etc.
Tue Mar 18 07:33:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Removed -Wc/DISTINGUISH_NESTED_ENUMS, only needed for one test
Mon Mar 14 09:17:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Added 3252
Mon Mar 14 09:07:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added 3251
Fri Mar 14 19:57:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_aix_g++.GNU:
Improved support for buildbits=64
Fri Mar 14 19:09:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/INET_Addr.cpp:
Fixe warning with GCC 4.2 on AIX
Fri Mar 14 19:07:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_aix_g++.GNU:
Disable visibility by default. With GCC 4.2 on AIX we get warnings
that visibility is not supported in that configuration
Fri Mar 14 15:02:33 UTC 2008 Ciju John <johnc at ociweb dot com>
* bin/tao_other_tests.lst:
Turn on the Notify Persistent_POA test.
Fri Mar 14 09:30:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_aix_g++.GNU:
Don't use -mcpu=common, that is an ancient default of AIX 5.1
Thu Mar 13 12:41:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_aix_g++.GNU:
Fixed support for buildbits=32/64
Wed Mar 12 19:49:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Reverted the gperf change below, breaks all autoconf builds
Wed Mar 12 06:55:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* m4/ace.m4:
Added enable-aio, enable-ipo and fixed gperf handling.
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this
Wed Mar 12 15:08:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/ProcessVX.pm:
Fix retry mechanism for the iBoot bar
Wed Mar 12 12:59:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* m4/ace.m4:
Added support for fox, thanks to Thomas Girard
<thomas dot g dot girard at free dot fr> for reporting this.
This fixes bugzilla 3147
Wed Mar 12 11:59:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/FoxReactor/FoxReactor.{h,cpp}:
Removed check for ACE_HAS_FOX
* include/makeinclude/wrapper_macros.GNU:
Changed fox handling, matches the other reactors. Thanks to
Thomas Girard <thomas dot g dot girard at free dot fr> for
reporting this. This resolves bugzilla 3248
* include/makeinclude/platform_aix_ibm.GNU:
Added support for Visual Age 9
Wed Mar 12 11:53:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/FoxReactor/FoxReactor.h:
Added missing include, thanks to Thomas Girard
<thomas dot g dot girard at free dot fr> for reporting this
Wed Mar 12 07:07:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/FoxReactor/FoxReactor.cpp:
Fixed compile errors, thanks to Thomas Girard
<thomas dot g dot girard at free dot fr> for reporting this
Wed Mar 12 06:59:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ace.mwc:
* bin/MakeProjectCreator/config/global.features:
Added fox reactor, thanks to Thomas Girard
<thomas dot g dot girard at free dot fr> for reporting this
Wed Mar 12 06:55:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* m4/ace.m4:
Added enable-aio, enable-ipo and fixed gperf handling.
This to Thomas Girard <thomas dot g dot girard at free dot fr>
for reporting this
Tue Mar 11 12:24:43 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/Svc_Conf.h: Add #include "ace/config.h" so a setting for
ACE_LACKS_PRAGMA_ONCE can be seen. Fixes compile warnings.
Tue Mar 11 12:20:02 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/Log_Msg.cpp (log): Fixed compile error. No need to use
ACE_TEXT_ALWAYS_CHAR for a char* literal.
Mon Mar 10 22:27:09 UTC 2008 Nanbor Wang <nanbor@wakefield.txcorp.com>
* ace/Svc_Conf.h: Removed redundant inclusion of Obstack.h. It is
included later in Svc_Conf_Param.h. Removing this extra
inclusion allows us to build on MacOS Leopard with optimization
enabled.
Mon Mar 10 15:35:02 UTC 2008 Steve Huston <shuston@riverace.com>
* ace/Log_Msg.{h cpp} (log): For %C, clearly note that it always prints
a narrow-char string, and adjust the va_arg to match. Thanks to
Russell Morra for reporting this issue.
Mon Mar 10 13:20:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Multicast_Test.cpp:
When sending fails, print the ip address we are using in the error
message.
Sat Mar 8 16:23:57 UTC 2008 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* ace/WIN32_Asynch_IO.cpp (send): Enhanced the code to allow sends
of 0-sized datagrams. Thanks to Andi Heusser <aheusser at gmail
dot com> for this fix.
Thu Mar 6 16:49:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/rules.lib.GNU:
Rearranged some rules to make sure c/C files are compiled with the
C compiler on OpenVMS
Thu Mar 6 13:10:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Improved this file
Thu Mar 6 10:33:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Removed restriction that only a shared or static build can be done
Wed Mar 5 07:54:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Don't run the parallel connect strategy test on VxWorks 5.5, the
command length of the shell is not long enough.
Tue Mar 4 09:27:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/ProcessVX.pm:
Added a retry to the iPass protocol code, in a full test run
we sometimes see that the reboot has failed. With this retry
we hopefully get rid of those false test failures
Tue Mar 4 05:54:22 UTC 2008 William Otte <wotte@dre.vanderbilt.edu>
* bin/svn_props.py:
Automatically set default properties when svn complains.
Mon Mar 3 11:22:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/MakeProjectCreator/templates/bor.mpd:
Just single line comments
* bin/MakeProjectCreator/templates/gnu.mpd:
Check VXWORKSLINK for 1
Mon Mar 3 11:10:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxworks5.5.x.GNU:
* include/makeinclude/platform_vxworks6.2.GNU:
* include/makeinclude/platform_vxworks6.3.GNU:
* include/makeinclude/rules.bin.GNU:
* include/makeinclude/rules.lib.GNU:
Use 1 for VXWORKSLINK instead of true. Added footprint=1
as flag to specify that you are doing a footprint build
Mon Mar 3 10:49:28 UTC 2008 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* apps/JAWS/clients/WebSTONE/src/cgi-send.c:
* apps/JAWS/clients/WebSTONE/src/genrand.c:
* apps/JAWS/clients/WebSTONE/src/webmaster.c:
* contrib/utility/Example/CommandLine/Foo/command.cpp:
* contrib/utility/Example/ExH/BadCast/bad_cast.cpp:
* contrib/utility/Example/ExH/Compound/compound.cpp:
* contrib/utility/Example/ExH/HelloWorld/hello_world.cpp:
* contrib/utility/Example/ExH/LogicToSystem/logic_to_system.cpp:
* contrib/utility/Example/Hetero/Container/container.cpp:
* contrib/utility/Example/Introspection/InheritanceTree/inheritance_tree.cpp:
* contrib/utility/Example/Introspection/Traversal/driver.cpp:
* contrib/utility/Test/ExH/Converter/converter.cpp:
* contrib/utility/Test/ExH/Inline/inline.cpp:
* contrib/utility/Test/ExH/Logic/DescriptiveException/descriptive_exception.cpp:
* contrib/utility/Test/ExH/System/DescriptiveException/descriptive_exception.cpp:
* contrib/utility/Test/Introspection/Inline/inline.cpp:
* contrib/utility/Test/Synch/Inline/inline.cpp:
* etc/xlc_dummy.cpp:
* examples/Reactor/Proactor/test_aiocb.cpp:
* examples/Reactor/Proactor/test_aiosig.cpp:
Disable fuzz's check_for_improper_main_declaration check on these files.
These files don't use ACE.
* examples/Reactor/WFMO_Reactor/Multithreading.cpp:
* examples/Reactor/WFMO_Reactor/Registration.cpp:
* examples/Reactor/WFMO_Reactor/Registry_Changes.cpp:
* examples/Threads/task_three.cpp:
Use the proper form of ACE_TMAIN. Namely, the argv parameter
should be "ACE_TCHAR *argv[]" instead of "ACE_TCHAR **argv"
or "ACE_TCHAR *[]" instead of "ACE_TCHAR **"
* apps/JAWS3/bench/average.cpp:
* netsvcs/clients/Tokens/invariant/invariant.cpp:
Use ACE_TMAIN instead of main as the program entry point to comply
with ACE/TAO/CIAO coding standards.
Mon Mar 3 08:58:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Improved this file
Mon Mar 3 07:30:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Don't set INSLIB
Mon Mar 3 07:00:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/rules.local.GNU:
Rearranged some rules so that C files are compiled with the
C compiler on OpenVMS
Mon Mar 3 06:57:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/ProcessVX.pm:
Added support to specify a custom password for the iBoot
Sun Mar 2 20:04:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/ProcessVX.pm:
Integrated some OCI changes for the iBoot
Sun Mar 2 19:32:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/auto_run_tests.pl:
Use ACE_ROOT as defailt root test directory instead of the current
directory
Sun Mar 2 18:53:12 UTC 2008 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* ASNMP/agent/main.cpp:
* ace/Svc_Conf_y.cpp:
* apps/JAWS3/jaws3/main.cpp:
* examples/Mem_Map/IO-tests/test_io.cpp:
* examples/Reactor/Multicast/client.cpp:
* examples/Reactor/Multicast/server.cpp:
* examples/Reactor/Proactor/test_aiocb_ace.cpp:
* examples/System_V_IPC/SV_Shared_Memory/SV_Shared_Memory_Test.cpp:
* netsvcs/clients/Naming/Dump_Restore/createfile.cpp:
* netsvcs/clients/Tokens/collection/collection.cpp:
* netsvcs/clients/Tokens/collection/rw_locks.cpp:
* netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp:
* netsvcs/clients/Tokens/invariant/invariant.cpp:
* netsvcs/clients/Tokens/manual/manual.cpp:
* netsvcs/clients/Tokens/mutex/test_mutex.cpp:
* netsvcs/clients/Tokens/rw_lock/rw_locks.cpp:
* performance-tests/Misc/context_switch_time.cpp:
* performance-tests/Misc/test_guard.cpp:
* performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp:
* performance-tests/Server_Concurrency/Queue_Based_Workers/RT_CORBA_Workers.cpp:
* performance-tests/TTCP/ACE-C++/wrapper-new-ttcp.cpp:
Use ACE_TMAIN instead of main as the program entry point to comply
with ACE/TAO/CIAO coding standards.
* examples/Mem_Map/IO-tests/Mem_Map_IO_Tests.mpc:
MPC doesn't recognize ACE_TMAIN as an entry point, as such, we need
to explicitly set exename in the MPC file.
* apps/JAWS/clients/WebSTONE/src/webclient.c:
* contrib/utility/Example/CommandLine/Foo/foo.cpp:
* performance-tests/Synch-Benchmarks/context.c:
* performance-tests/TTCP/C/new-ttcp.cpp:
* tests/Unload_libACE.cpp:
Disable fuzz's check_for_improper_main_declaration check on these files.
These files don't use ACE.
Sat Mar 1 19:09:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/auto_run_tests.pl:
Added -r as option to specify an alternate root test directory
instead of the current directory. Combined this with -l we can
then run perl scripts for testing project code.
Thu Feb 28 16:08:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/generate_compile_stats.sh:
Added --compiler as option so that we can specify a different
compiler then gcc
Thu Feb 28 08:32:18 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/ACE-bug-process.html:
Removed cvs
Wed Feb 27 19:28:18 UTC 2008 William Otte <wotte@william-ottes-macbook-pro.local>
* bin/MakeProjectCreator/config/global.features:
disable mcpp by default.
Tue Feb 26 15:52:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Added support for buildbits=64
Tue Feb 26 09:18:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
Added some compiler flags to reduce the number of warnings/errors
in the OpenVMS builds
Mon Feb 25 19:44:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/PerlACE/Process_Unix.pm:
* bin/PerlACE/Process_Win32.pm:
Added IgnoreHostRoot which can be set from a test script. That way
when doing cross host testing we can make sure we don't get the
executable from the host root directory. This is for example usefull
when we want to spawn perl or another system utility
* bin/PerlACE/Run_Test.pm:
Removed commented out line
Mon Feb 25 14:30:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_vxwork6.2.GNU:
* include/makeinclude/platform_vxwork6.3.GNU:
Added LD_PARTIALFLAGS which can be set for footprint builds
Mon Feb 25 08:13:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-macros.h:
Set ACE_HAS_INTEGRAL_TYPE_THR_FUNC_RETURN when
ACE_THR_FUNC_RETURN is an integral type
* ace/Task.cpp:
Use ACE_HAS_INTEGRAL_TYPE_THR_FUNC_RETURN to determine whether
we can do a reinterpret_cast or static_cast. This is much easier
then checking all compilers
Sun Feb 24 19:37:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Configuration.cpp:
* ace/Configuration.h:
* ace/Configuration.inl:
Added new inline file
* ace/Get_Opt.cpp:
Prefix increment
* ace/Event_Handler.h:
Removed commented out code
Sat Feb 23 06:56:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* include/makeinclude/platform_openvms.GNU:
OpenVMS doesn't have rwho
Fri Feb 22 18:55:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Message_Queue_NT.h:
Fixed wrong include
Fri Feb 22 14:20:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Message_Queue.{h,cpp,inl}:
* ace/Message_Queue_NT.{h,cpp,inl}:
* tests/Message_Queue_Test.cpp:
* ace/ace.mpc:
* ace/Makefile.am:
Moved ACE_Message_Queue_NT to its own file
Fri Feb 22 08:54:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/global.features:
Default optimize_collocated_invocations to 1
Fri Feb 22 00:34:17 UTC 2008 Steve Huston <shuston@riverace.com>
* bin/tao_orb_tests.lst: Added !LabVIEW_RT to all tests that haven't
been adapted to the non-local filesystem mechanism I invented to run
tests for LabVIEW RT targets (and can also be used for other target
types). Now I can enable TAO tests for the LabVIEW RT scoreboard
build.
Thu Feb 21 15:25:37 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/Download.html:
Updated download links to point to x.6.3
* etc/index.html:
Updated for x.6.3
Thu Feb 21 02:34:37 CST 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* ACE version 5.6.3 released.
Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End:
|