summaryrefslogtreecommitdiff
path: root/modules/TAO/ChangeLog
blob: c4d592253533c4f607b8bf4e512fa016a4a5891f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
Tue May 11 16:16:18 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_argument/arglist.cpp:
        
          Added missing global double colon in generation of enum argument.

Fri May  7 19:44:31 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_operation/operation.cpp:
        
          Added a check to generate the SArg_Trait parameter for
          the repo id arg to _is_a() as char* instead of std::string.
          We would have to regenerate ORB code for that to work,
          and it may be a choice later on to do that.
          
        * TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
        * TAO_IDL/be/be_visitor_sequence/sequence_cs.cpp:
        
          To set the length of a sequence, changed the call to the
          underlying vector from capacity() to resize() - capacity()
          wasn't behaving as expected.
          
        * tests/Alt_Mapping/ub_struct_seq.cpp:
        
          Cosmetic changes, and other changes in parameter init
          and results checking to make debugging easier.

Mon May  3 22:21:33 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/Param_Test/param_testC.cpp:
        * tests/Param_Test/param_testS.cpp:
        * tests/Param_Test/param_testC.h:
        * tests/Param_Test/param_testS.h:
        * tests/Param_Test/param_testC.inl:
        * tests/Param_Test/param_testS.inl:

          Removed these from the repository in this
          branch, all hand-crafted hacks have been
          removed.

        * tests/Param_Test/ub_string.h:
        * tests/Param_Test/param_test_i.cpp:
        * tests/Param_Test/Param_Test.mpc:
        * tests/Param_Test/ub_string.cpp:
        * tests/Param_Test/ub_long_seq.h:
        * tests/Param_Test/param_test_i.h:
        * tests/Param_Test/README:
        * tests/Param_Test/ub_long_seq.cpp:

          Restored these files to head version, the
          STL support is now covered in its own test.

        * TAO_IDL/be/be_visitor_operation/operation.cpp:

          Fixed bug in code generation for unbounded
          strings, in the logic to decide when to use
          "std::string" and when not to.

Mon May  3 21:39:09 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/Alt_Mapping/driver.h:
        * tests/Alt_Mapping/options.h:
        * tests/Alt_Mapping/ub_string.h:
        * tests/Alt_Mapping/results.cpp:
        * tests/Alt_Mapping/alt_mapping_i.cpp:
        * tests/Alt_Mapping/server.cpp:
        * tests/Alt_Mapping/results.h:
        * tests/Alt_Mapping/tests.h:
        * tests/Alt_Mapping/alt_mapping_i.h:
        * tests/Alt_Mapping/README:
        * tests/Alt_Mapping/client.cpp:
        * tests/Alt_Mapping/helper.cpp:
        * tests/Alt_Mapping/alt_mapping.idl:
        * tests/Alt_Mapping/ub_struct_seq.cpp:
        * tests/Alt_Mapping/client.h:
        * tests/Alt_Mapping/helper.h:
        * tests/Alt_Mapping/ub_struct_seq.h:
        * tests/Alt_Mapping/alt_mapping.mpc:
        * tests/Alt_Mapping/options.cpp:
        * tests/Alt_Mapping/driver.cpp:
        * tests/Alt_Mapping/run_test.pl:
        * tests/Alt_Mapping/ub_string.cpp:

          New test for alternate C++ mapping support.
          Currently supports unbounded strings and
          tests unbounded sequence of simple structs.

        * TAO_IDL/be/be_visitor_arg_traits.cpp:
        * TAO_IDL/be/be_visitor_argument/arglist.cpp:
        * TAO_IDL/be/be_visitor_operation/arglist.cpp:
        * TAO_IDL/be/be_visitor_operation/rettype.cpp:
        * TAO_IDL/be/be_visitor_operation/operation.cpp:
        * TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_visitor_sequence/sequence_ch.cpp:
        * TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
        * TAO_IDL/be/be_visitor_sequence/sequence_cs.cpp:
        * TAO_IDL/be/be_sequence.cpp:
        * tao/Vector_Argument_T.inl:
        * tao/AnyTypeCode/Any.cpp:
        * tao/PortableServer/Vector_SArgument_T.inl:
        * tao/PortableServer/Vector_SArgument_T.cpp:
        * tao/PortableServer/Vector_SArgument_T.h:
        * tao/Vector_Argument_T.h:
        * tao/Fixed_Size_Argument_T.h:

          More tweaks to fully automate the generation of
          correct code for the alternate C++ mapping.

Mon Apr 12 19:30:47 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_codegen.cpp:
        
          Added conditional include of vector argument class
          header file.
          
        * TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
        
          Fixed typos in generated code, and added check to
          skip bounded sequences for now.
          
        * tao/Vector_Argument_T.inl:
        * tao/Vector_Argument_T.h:
        * tao/Vector_Argument_T.cpp:
        
          Overhauled signatures of most methods.

Fri Apr  9 20:39:11 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * MPC/config/stl_mapping.mpb:

          New base project, to help with toggling the
          alternate C++ mapping generation for the
          entire middleware.

        * tao/Vector_Argument_T.inl:
        * tao/PortableServer/Vector_SArgument_T.inl:
        * tao/PortableServer/Vector_SArgument_T.cpp:
        * tao/PortableServer/Vector_SArgument_T.h:
        * tao/Vector_Argument_T.h:
        * tao/Vector_Argument_T.cpp:

          New argument template helper classes and
          traits, for the std::vector containers
          used for unbounded sequences.

        * tao/tao.mpc:

          Added new files to TAO build project.

        * tao/AnyTypeCode/Vector_AnyOp_T.h:
        * tao/Vector_CDR_T.h:

          Added 'typename' qualifier to template
          traits references to disambiguate them
          for the C++ compiler.

        * TAO_IDL/be/be_visitor_arg_traits.cpp:
        * TAO_IDL/be/be_visitor_argument/argument.cpp:
        * TAO_IDL/be/be_visitor_argument/arglist.cpp:
        * TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
        * TAO_IDL/be/be_visitor_operation/rettype.cpp:
        * TAO_IDL/be/be_visitor_operation/operation.cpp:

          Further removal of hacks from the IDL compiler
          to generate the alternate C++ mapping in the
          general case.

        * tests/Param_Test/param_test_i.cpp:
        * tests/Param_Test/param_test_i.h:

          Update some of the servant methods to use
          the new signatures.

Mon Mar 29 20:28:34 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be_visitor_sequence/any_op_cs.cpp:
        
          Minor mods to codegen for STL includes and STL any
          operators.

Mon Mar 29 18:49:32 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_sequence/cdr_op_ch.cpp:
        
          Cosmetic changes.
          
        * TAO_IDL/be/be_codegen.cpp:
        
          Added generation of includes for CDR and Any operator
          template header files.
          
        * TAO_IDL/be/be_visitor_sequence/any_op_ch.cpp:
        * TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
        
          Added code generation for Any insertions and extraction
          operators for std::vector<> types representing IDL
          sequences.
          
        * TAO_IDL/be/be_global.cpp:
        
          Added command line option to trigger code generation for
          alternate C++ mapping.

Mon Mar 29 18:46:20 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/AnyTypeCode/Any.h:
        * tao/AnyTypeCode/Any.cpp:
        
          Added non-copying Any insertion operator for std::string.
          Not yet implemented, still a no-op.
          
        * tao/tao.mpc:
        * tao/Vector_AnyOp_T.h:
        
          Moved this template file to the AnyTypeCode directory.

Mon Mar 29 17:13:54 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/Vector_CDR_T.h:
        
          Cosmetic changes.
          
        * tao/Vector_AnyOp_T.h:
        
          New file defining no-op Any insertion and extraction operators
          for std::vector, in various categories of element types.
          
        * tao/tao.mpc:
        
          Added above files to the MPC project.

Tue Mar  2 23:18:32 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/Param_Test/param_test_i.cpp:
        * tests/Param_Test/Param_Test.mpc:
        * tests/Param_Test/param_testC.cpp:
        * tests/Param_Test/param_testS.cpp:
        * tests/Param_Test/param_testC.h:
        * tests/Param_Test/param_testS.h:
        * tests/Param_Test/param_test_i.h:
        * TAO_IDL/be/be_visitor_argument/arglist.cpp:
        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_visitor_sequence/any_op_ch.cpp:
        * TAO_IDL/be/be_visitor_sequence/cdr_op_ch.cpp:
        * TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
        * TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
        * TAO_IDL/be/be_visitor_root/cdr_op.cpp:
        * TAO_IDL/be/be_visitor_root/any_op.cpp:
        * TAO_IDL/be/be_visitor_argument.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be_include/be_global.h:
        * tao/AnyTypeCode/Any.h:
        * tao/AnyTypeCode/Any.cpp:
        * tao/CDR.inl
        * tao/Array_VarOut_T.h:
        * tao/CDR.h:

          Progress toward generation of code for alternate mapping
          in the general case.

        * tao/Vector_CDR_T.h:

          New file containing template methods for (de)marshaling
          std::vector<T>. Includes a general case and special
          cases for interfaces and arrays.

Tue Feb 23 17:06:19 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_arg_traits.cpp:
        * TAO_IDL/be/be_visitor_argument/arglist.cpp:
        * TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
        * TAO_IDL/be/be_visitor_operation/rettype.cpp:
        * TAO_IDL/be/be_visitor_operation/operation.cpp:
        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_visitor_root/cdr_op.cpp:
        * TAO_IDL/be/be_visitor_root/any_op.cpp:

          Changes to make the hand-crafted mods to the
          Param_Test operations test_unbounded_string()
          and test_long_sequence() appear in generated
          code.

Mon Jan 11 19:17:57 UTC 2010  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/Basic_Arguments.h:
        * tao/PortableServer/Basic_SArguments.h:
        
          Added specializations Arg_Traits<std::string> and
          SArg_Traits<std::string>.
          
        * tests/Param_Test/param_testC.cpp:
        
          Removed specializations Arg_Traits<std::string>
          since it is now in the ORB (see above).
          
        * tests/Param_Test/param_test_i.cpp:
        * tests/Param_Test/param_testS.cpp:
        * tests/Param_Test/param_testS.h:
        * tests/Param_Test/param_test_i.h:
        
          Modified test_unbounded_string() and test_long_sequence()
          to use std::string and std::vector<CORBA::Long>, respectively,
          as parameter/return types.
          
        * tests/README:
        
          Updated to reflect the changes above.

Thu Dec 10 19:38:04 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/Param_Test/README:
        
          More info added.

Thu Dec 10 19:27:17 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/Param_Test/param_testC.cpp:
        * tests/Param_Test/param_testS.cpp:
        * tests/Param_Test/param_testC.h:
        * tests/Param_Test/param_testS.h:
        * tests/Param_Test/param_testC.inl:
        * tests/Param_Test/param_testS.inl:

          These files, normally generated, have
          been added to the repository since
          the stub file have been modified by
          hand, and can no longer be generated.

        * tests/Param_Test/ub_string.h:
        * tests/Param_Test/ub_string.cpp:
        * tests/Param_Test/ub_long_seq.h:
        * tests/Param_Test/ub_long_seq.cpp:

          Files modified to change the unbounded
          string and unbounded long sequence
          tests to use std::string and
          std::vector respectively.

        * tests/Param_Test/Param_Test.mpc:

          Project that processes IDL was removed.

        * tests/Param_Test/README:

          Description of changes added at top
          of file.

Thu Dec 10 13:45:00 UTC 2009  Martin Corino  <mcorino@remedy.nl>

        * tests/Oneways_Invoking_Twoways/Client_Task.cpp:
        * tests/Oneways_Invoking_Twoways/Receiver_i.cpp:
        * tests/Oneways_Invoking_Twoways/client.cpp:
        * tests/Oneways_Invoking_Twoways/Sender_i.cpp:
        * tests/Oneways_Invoking_Twoways/run_test.pl:
          Changed to fix problems with incorrect shutdown sequence 
          (see Bugzilla 2068).

Thu Dec 10 13:03:58 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        Reverted change below, causes correct code to break

        Thu Dec 10 11:57:58 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/String_Manager_T.h
        * tao/String_Sequence_Element_T.h:
          Added private operator != and ==, the string elements
          just behave like char*, so != and == on them is illegal
          and doesn't check the strings itself. If any user has
          done this without realizing this, this change will now
          give the user a compile error

Thu Dec 10 12:42:00 UTC 2009  Martin Corino  <mcorino@remedy.nl>

        * tests/BiDirectional_DelayedUpcall/client.cpp:
        * tests/BiDirectional_DelayedUpcall/test_i.cpp:
        * tests/BiDirectional_DelayedUpcall/test_i.inl:
        * tests/BiDirectional_DelayedUpcall/test_i.h:
          Fixed problem with illegal send of request after ORB shutdown.
          See Bugzilla 2068.

Thu Dec 10 11:57:58 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/String_Manager_T.h
        * tao/String_Sequence_Element_T.h:
          Added private operator != and ==, the string elements
          just behave like char*, so != and == on them is illegal
          and doesn't check the strings itself. If any user has
          done this without realizing this, this change will now
          give the user a compile error

        * tao/TransportCurrent/Transport_Current.h:
          Layout change

Thu Dec 10 11:42:00 UTC 2009  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3672_Regression/ami_test_i.cpp:
        * tests/Bug_3672_Regression/client.cpp:
          Test did not work correctly on Windows because of timing issues.
          Changed to work correctly on Windows also.

Thu Dec 10 10:32:56 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Bug_1436_Regression/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/1_Path_Period_0_Lanes/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/run_notify.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/run_high_path.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/run_other_paths.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/3_Path_Period_10ms_Lanes/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/Notify_RTCORBA/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/3_Hops_RTCORBA/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/Notify/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/3_Hops/run_test.pl:
        * orbsvcs/tests/FT_App/run_test_demo.pl:
        * orbsvcs/tests/FT_App/run_test_fault_consumer.pl:
        * orbsvcs/tests/FT_App/run_test_detector.pl:
        * orbsvcs/tests/Event/Mcast/Complex/run_test.pl:
        * orbsvcs/tests/Bug_2248_Regression/client.cpp:
        * orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/main.cpp:
        * orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/run_test.pl:
        * orbsvcs/tests/Bug_1437_Regression/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Wed Dec  9 21:16:38 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * tests/OBV/Indirection/MessengerClient.cpp:

          Fixed a warning.

Wed Dec  9 14:24:58 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
          Don't generate code to call get_receptacle_policy, that doesn't
          do anything

Wed Dec  9 12:45:58 UTC 2009  Martin Corino  <mcorino@remedy.nl>

        * tests/OBV/Supports/Supports_Test.mpc:
          Removed dummy_label dependency.

        * tests/OBV/Supports/client.cpp:
          Fixed small coding error.

        * bin/tao_orb_tests.lst:
          Reenabled the OBV/Supports test again since the reason for
          excluding this one seems to have been invalidated (long ago?).

Wed Dec  9 12:31:58 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_1361_Regression/Server_Thread_Pool.h:
          Fixed fuzz error.

Wed Dec  9 10:38:26 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/CosEvent/Basic/run_test.pl:
        * orbsvcs/tests/Bug_1334_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Timeout/run_test.pl:
        * orbsvcs/tests/Notify/Bug_2561_Regression/run_test.pl:
        * orbsvcs/tests/Notify/MT_Dispatching/run_test.pl:
        * orbsvcs/tests/Notify/Bug_1385_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Persistent_POA/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3646a_Regression/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/Filter/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3646c_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Ordering/run_test.pl:
        * orbsvcs/tests/Notify/Reconnecting/run_test.pl:
        * orbsvcs/tests/Notify/Basic/run_test_ipv6.pl:
        * orbsvcs/tests/Notify/Basic/run_test.pl:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Sequence_Multi_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Blocking/run_test.pl:
        * orbsvcs/tests/Notify/Bug_2415_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/run_test.pl:
        * orbsvcs/tests/Notify/MC/run_test.pl:
        * orbsvcs/tests/Notify/Lanes/run_test.pl:
        * orbsvcs/tests/Notify/Discarding/run_test.pl:
        * orbsvcs/tests/Notify/Structured_Filter/run_test.pl:
        * orbsvcs/tests/Event/Basic/run_test.pl:
        * orbsvcs/tests/Event/Performance/run_test.pl:
        * orbsvcs/tests/Bug_1393_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Duplicate_Typedef_Test/run_test.pl:
        * performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/run-test.pl:
        * performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/run-test.pl:
        * tests/Bug_1476_Regression/run_test.pl:
        * tests/Bug_2494_Regression/run_test.pl:
        * tests/POA/Adapter_Activator/run_test.pl:
        * tests/POA/Explicit_Activation/run_test.pl:
        * tests/POA/On_Demand_Activation/run_test.pl:
        * tests/POA/Loader/run_test.pl:
        * tests/POA/On_Demand_Loading/run_test.pl:
        * tests/POA/Reference_Counted_Servant/run_test.pl:
        * tests/Collocation/run_test.pl:
        * tests/CodeSets/simple/run_test.pl:
        * tests/CSD_Strategy_Tests/Broken/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_1/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_2/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_3/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_4/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_Dynamic/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_Static/run_test.pl:
        * tests/Oneway_Timeouts/run_test.pl:
        * tests/Smart_Proxies/On_Demand/server.cpp:
        * tests/Smart_Proxies/On_Demand/run_test.pl:
        * tests/Smart_Proxies/Benchmark/server.cpp:
        * tests/Smart_Proxies/Benchmark/run_test.pl:
        * tests/Bug_3676_Regression/run_test.pl:
        * tests/Oneways_Invoking_Twoways/run_test_svc.pl:
        * bin/tao_other_tests.lst:

          Tests are converted to use new test framework
          and added to fuzz build.

Wed Dec  9 10:11:14 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_provides.cpp:
        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        * TAO_IDL/be/be_visitor_interface/interface_ex_idl.cpp:
          Merged changes from local facets branch

        Mon Dec  7 17:51:59 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:

          filled in connection logic.

        Sat Dec  5 05:35:27 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * TAO_IDL/be/be_provides.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:

          Codegen modifications for local facets.

        Wed Dec  2 00:45:54 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:
        * TAO_IDL/be/be_visitor_interface/interface_ex_idl.cpp:

          preliminary changes.

Wed Dec  9 09:40:10 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_1361_Regression/Echo_Caller.cpp:
        * tests/Bug_1361_Regression/Echo_Caller.h:
        * tests/Bug_1361_Regression/server.cpp:
        * tests/Bug_1361_Regression/Server_Thread_Pool.cpp:
        * tests/Bug_1361_Regression/Server_Thread_Pool.h:
        * tests/Bug_1361_Regression/run_test.pl:
          Changed the test so that it doesn't shutdown the orb until
          all threads are done with the remote calls. Substantially
          extended the time for server shutdown since threads in server's
          pool don't handle shutdown message until they send all (50)
          remote messages.

        * tao/ORB_Core.cpp:
        * tao/Messaging/Messaging_Policy_i.cpp:
        * tao/ORB_Core.h:
          This fixes Bug#3682. SYNC_WITH_TRANSPORT is now really
          default synch scope policy in TAO.

        * tao/Leader_Follower_Flushing_Strategy.cpp:
          Changed the code to poll the reactor instead of running
          it indefinitely. This fixes bug#3697.

Wed Dec  9 08:15:14 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_codegen.cpp:
          Use Error in error messages so that the scoreboard flags them red

Wed Dec  9 05:55:14 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/run_test.pl:
        * tests/OBV/Indirection/Factory.h:
        * tests/OBV/Indirection/Factory.cpp:
        * tests/OBV/Indirection/Messenger.idl:
        * tests/OBV/Indirection/Messenger_i.h:
        * tests/OBV/Indirection/Messenger_i.cpp:

          Fixed fuzz errors.

Wed Dec  9 01:27:54 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * tao/CDR.cpp:

          Fixed bugs in offset() method that incorrectly calculate
          the offset when multiple message blocks are chained.

        * tao/Valuetype/ValueBase.cpp:

          Fixed bugs that should use the offset() to find out a
          position to current wr_ptr.

        * tests/OBV/Indirection/Factory.h:
        * tests/OBV/Indirection/Factory.cpp:
        * tests/OBV/Indirection/Messenger.idl:
        * tests/OBV/Indirection/MessengerClient.cpp:
        * tests/OBV/Indirection/MessengerServer.cpp:
        * tests/OBV/Indirection/Messenger_i.h:
        * tests/OBV/Indirection/Messenger_i.cpp:

          Added test case to verify the fixes. The new test case
          send longer message that would involve multiple message
          blocks with indirection in output CDR stream.

Tue Dec  8 10:25:47 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Notify/Bug_2561_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Persistent_POA/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/Persistent_POA/run_test.pl:
        * orbsvcs/tests/Notify/Blocking/run_test.pl:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Filter/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/Structured_Filter/run_test.pl:
        * orbsvcs/tests/FT_App/run_test_rmregistry.pl:
        * orbsvcs/tests/FT_App/run_test_registry.pl:
        * orbsvcs/tests/EC_Throughput/run_test_overflow.pl:
        * orbsvcs/tests/EC_Throughput/run_test.pl:
        * orbsvcs/tests/Event/Mcast/RTEC_MCast_Federated/run_test.pl:
        * orbsvcs/tests/Event/Mcast/Simple/run_test.pl:
        * orbsvcs/tests/Event/Mcast/Two_Way/run_test.pl:
        * orbsvcs/tests/Bug_2248_Regression/client.cpp:
        * orbsvcs/tests/Bug_2248_Regression/run_test.pl:
        * orbsvcs/tests/RTCosScheduling/run_test.pl:
        * orbsvcs/tests/Bug_3387_Regression/run_test.pl:
        * performance-tests/CSD_Strategy/TestApps/run_test.pl:
        * performance-tests/RTCorba/Thread_Pool/run_test.pl:
        * tests/CSD_Strategy_Tests/Broken/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_4/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Tue Dec  8 09:20:00 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added OBV/Indirection

Mon Dec  7 18:22:00 UTC 2009  Martin Corino  <mcorino@remedy.nl>

        * bin/tao_orb_tests.lst:
          Removed !FIXED_BUGS_ONLY for Bug_3672_Regression test.

Mon Dec  7 10:40:49 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Notify/Basic/run_test_ipv6.pl:
        * bin/tao_other_tests.lst:

          Test is converted to use new test framework
          and added to fuzz build.

Mon Dec  7 10:19:29 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/IOR_Endpoint_Hostnames/run_test.pl:
        * examples/Quoter/run_test.pl:
        * examples/Callback_Quoter/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Mon Dec  7 09:59:08 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/EC_Custom_Marshal/run_test.pl:
        * orbsvcs/tests/COIOP_Naming_Test/run_test.pl:
        * orbsvcs/tests/Notify/Timeout/run_test.pl:
        * orbsvcs/tests/Notify/MT_Dispatching/run_test.pl:
        * orbsvcs/tests/Notify/Bug_1385_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Reconnecting/run_test.pl:
        * orbsvcs/tests/Notify/Basic/run_test.pl:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Sequence_Multi_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/run_test.pl:
        * orbsvcs/tests/Notify/MC/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/MC/test_monitor.cpp:
        * orbsvcs/tests/Notify/MC/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/MC/run_test.pl:
        * orbsvcs/tests/ImplRepo/Bug_689_Regression/run_test.pl:
        * orbsvcs/tests/ImplRepo/scale/run_test.pl:
        * orbsvcs/tests/ImplRepo/Bug_2604_Regression/MessengerServer.cpp:
        * orbsvcs/tests/ImplRepo/Bug_2604_Regression/MessengerClient.cpp:
        * orbsvcs/tests/ImplRepo/Bug_2604_Regression/run_test.pl:
        * orbsvcs/tests/ImplRepo/NameService/run_test.pl:
        * orbsvcs/tests/ImplRepo/locked/run_test.pl:
        * orbsvcs/tests/ImplRepo/ReconnectServer/run_test.pl:
        * orbsvcs/tests/ImplRepo/run_test.pl:
        * orbsvcs/tests/Bug_3598b_Regression/run_test.pl:
        * tests/Muxing/run_test.pl:
        * tests/ORB_init/Portspan/run_test.pl:
        * tests/Bug_2183_Regression/run_test.pl:
        * tests/Bug_3108_Regression/run_test.pl:
        * bin/tao_other_tests.lst:
        * bin/tao_orb_tests.lst:
        * utils/nslist/run_test.pl:
        * examples/Quoter/run_test.pl:
        * examples/Callback_Quoter/run_test.pl:
        * examples/Persistent_Grid/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Mon Dec  7 09:43:00 UTC 2009  Martin Corino  <mcorino@remedy.nl>

        * ACE_wrappers/TAO/tao/Thread_Lane_Resources.h:
        * ACE_wrappers/TAO/tao/Thread_Lane_Resources.cpp:
        * ACE_wrappers/TAO/tao/Thread_Lane_Resources_Manager.h:
        * ACE_wrappers/TAO/tao/Default_Thread_Lane_Resources_Manager.cpp:
        * ACE_wrappers/TAO/tao/Default_Thread_Lane_Resources_Manager.h:
        * ACE_wrappers/TAO/tao/RTCORBA/RT_Thread_Lane_Resources_Manager.h:
        * ACE_wrappers/TAO/tao/RTCORBA/RT_Thread_Lane_Resources_Manager.cpp:
        * ACE_wrappers/TAO/tao/ORB_Core.cpp:

          Replaced #clear_rw_transports() method by #close_all_transports() method.
          This fixes Bugzilla #3672.
          Like before this behaviour is controlled by ORB option
          ORBDropRepliesDuringShutdown, which by default is on.


Mon Dec  7 07:13:34 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * tao/PortableServer/Upcall_Wrapper.cpp:
        * tao/operation_details.cpp:

          Fixed the issue that the indirection maps are not cleaned up
          when marshal/demarshal raises exception.

Sun Dec  6 03:07:00 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * tao/Makefile.am:

          Updated automake files.

        * tests/OBV/Indirection/Makefile.am:

          Added automake file.

        * tao/CDR.inl:

          Made copy constructor initialize indirection maps instead of
          using assign operator.

Sun Dec  6 02:01:17 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * tao/Intrusive_Ref_Count_Object_T.h:
        * tao/Intrusive_Ref_Count_Object_T.inl:
        * tao/Intrusive_Ref_Count_Object_T.cpp:

          Added missing files in last commit.

Fri Dec  4 23:18:26 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        Merged in valuetype repository id and value indirection support
        on both input and output streams from OCI (RT #13502).

        * MPC/config/valuetype_out_indirection.mpb:

          Added mpc feature to optionally turn on the indirection
          support on valuetype outgoing message. It defaults to
          be enabled. To be compatible with previous version TAO,
          run mwc.pl with
          "-features valuetype_out_indirection=0" to disable it.

        * TAO_IDL/be/be_visitor_valuebox/valuebox_cs.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:

          Modified the valuetype unmarshall method to support
          value indirection.

        * tao/Intrusive_Ref_Count_Object_T.h:
        * tao/Intrusive_Ref_Count_Object_T.inl:
        * tao/Intrusive_Ref_Count_Object_T.cpp:

          Added wrapper for non reference counted data type to provide reference
          counting feature so it can use the TAO_Intrusive_Ref_Count_Handle
          smart-pointer.

        * tao/CDR.h:
        * tao/CDR.inl:
        * tao/CDR.cpp:

          - Used smart point hash map for indirection maps (repository id, value
            and codebase_url). The maps map the already read/written values.
          - Added methods to access/update indirection maps.
          - The maps are only created when valuetype data is marshalled or
            demarshalled.
          - Added offset(pos) method to calculate the offset between provided
            position and current wr_ptr.

        * tao/Valuetype/ValueBase.h:
        * tao/Valuetype/ValueBase.inl:
        * tao/Valuetype/ValueBase.cpp:

          - Added repository id and value indirection support on both input
            and output stream.
          - The codebase_url indirection on input stream was also added but
            not tested. TAO does not support codebase currently and the codebase
            url indirection is added for future support. TAO can read codebase_url
            from other ORB implementation but the codebase_url is not used.
          - Used TAO_HAS_VALUETYPE_OUT_INDIRECTION define to optionally turn on
            and off the outgoing message indirection. This is to support backward
            compatibility.

        * tao/operation_details.cpp:
        * tao/PortableServer/Upcall_Wrapper.cpp:

          Cleaned the indirection maps after marshalling/unmarshalling complete.

        * tao/AnyTypeCode/Any_Impl_T.cpp:
        * tao/AnyTypeCode/Any_Unknown_IDL_Type.cpp:

          Made Any_Unknown_IDL_Type cdr share the maps from input cdr of the
          request so previous indirection can be used during unmarshalling any.

        * tao/DynamicInterface/AMH_DSI_Response_Handler.cpp:

          Updated unmarshal method based on tao_idl changes.

        * tao/Valuetype.mpc:
        * tao/PortableServer.mpc:
        * tao/tao.mpc:

          Added dependency on valuetype_out_indirection feature.

        * tests/OBV/indirection/Factory.h:
        * tests/OBV/indirection/Factory.cpp:
        * tests/OBV/indirection/Messenger.idl:
        * tests/OBV/indirection/MessengerClient.cpp:
        * tests/OBV/indirection/MessengerServer.cpp:
        * tests/OBV/indirection/Messenger_i.h:
        * tests/OBV/indirection/Messenger_i.cpp:
        * tests/OBV/indirection/README:
        * tests/OBV/indirection/indirection.mpc:
        * tests/OBV/indirection/run_test.pl:

          - Added automation test for indirection support in TAO. The test
            based on the JacORB demo/value test. This can also be used for
            interoperability test between TAO and JacORB.
          - The indirection test with truncatable value was added. The test
            passed between the TAO server and client, but the interoperablity
            test with JacORB failed. It also failed on previous TAO version.

        * NEWS:

          Added entry for indirection support.

Fri Dec  4 21:00:38 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp:
        * orbsvcs/LoadBalancer/LoadManager.cpp:

          Renamed init() to initialize() to avoid Warning W8022 on borland build.

Fri Dec  4 17:25:32 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * NEWS:

          Added entry for member validation feature in LoadBalancer.

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.h:

          Disable Warning 8022 for borland build.

        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/DeadMemberDetection_Inf_Ctrl.mpc:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/run_test.pl:

          Fixed fuzz warning and errors.

Fri Dec  4 12:39:26 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/Bug_1869_Regression/client.cpp:

          Tests is converted to use new test framework
          and added to fuzz build.

Fri Dec  4 09:13:17 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Notify/Persistent_Filter/run_test.pl:
        * orbsvcs/tests/Notify/Discarding/run_test.pl:
        * orbsvcs/tests/FT_App/run_test_notifier.pl:
        * orbsvcs/tests/Event/Basic/run_test.pl:
        * orbsvcs/tests/Event/Performance/run_test.pl:
        * orbsvcs/tests/Event/UDP/run_test.pl:
        * orbsvcs/tests/Bug_3387_Regression/MessengerServer.cpp:
        * orbsvcs/tests/Bug_3387_Regression/MessengerClient.cpp:
        * orbsvcs/tests/Bug_3387_Regression/run_test.pl:
        * orbsvcs/tests/Bug_2247_Regression/run_test.pl:
        * orbsvcs/tests/EC_MT_Mcast/run_test.pl:
        * performance-tests/Protocols/run_senders.pl:
        * tests/Server_Leaks/run_test.pl:
        * tests/Bug_1551_Regression/server.cpp:
        * tests/Bug_1551_Regression/run_test.pl:
        * tests/IOR_Endpoint_Hostnames/list_interfaces.cpp:
        * tests/Connection_Purging/run_test.pl:
        * tests/Bug_1482_Regression/server.cpp:
        * tests/Bug_1482_Regression/run_test.pl:
        * tests/ForwardOnceUponException/run_test.pl:
        * tests/Reliable_Oneways/run_test.pl:
        * examples/Buffered_Oneways/run_test.pl:
        * examples/ior_corbaloc/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Thu Dec  3 12:15:35 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Incoming_Message_Stack.h:
          C++ Builder 2010 fix

        * tao/Object.cpp:
          Extended some debug info

        * tao/Synch_Invocation.cpp:
          Removed intermediate variable

        * tao/TAO_Internal.cpp:
          Improved debug message

        * tao/ZIOP/ZIOP.cpp:
          Layout change

Thu Dec  3 09:24:17 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Bug_1395_Regression/run_test.pl:
        * orbsvcs/tests/CosEvent/Basic/run_test.pl:
        * orbsvcs/tests/Bug_2285_Regression/run_test2.pl:
        * orbsvcs/tests/Bug_2285_Regression/run_test.pl:
        * orbsvcs/tests/AVStreams/Full_Profile/run_test.pl:
        * orbsvcs/tests/Notify/Bug_1884_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Ordering/run_test.pl:
        * orbsvcs/tests/Notify/Bug_2415_Regression/run_test.pl:
        * orbsvcs/tests/Notify/ThreadPool/run_test.pl:
        * orbsvcs/tests/FT_App/FT_ReplicaFactory_i.cpp:
        * orbsvcs/tests/FT_App/FT_TestReplica_i.h:
        * orbsvcs/tests/FT_App/run_test_rmnotifier.pl:
        * orbsvcs/tests/FT_App/FT_ReplicaFactory_i.h:
        * orbsvcs/tests/FT_App/FT_TestReplica_i.cpp:
        * orbsvcs/tests/FT_App/run_test_basic.pl:
        * tests/Nested_Upcall_Crash/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Thu Dec  3 08:09:35 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/IFR_Service/IFR_Service.mpc:
          Enable mcpp support

Thu Dec  3 08:03:35 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/Naming_Service/NT_Naming_Server.cpp:
          Unicode fixes

        * orbsvcs/orbsvcs/Notify/Delivery_Request.h:
          Doxygen fix

        * orbsvcs/orbsvcs/Trader/Trader.h:
          Fix for CB2010

Wed Dec  2 20:56:35 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/run_test.pl:

          Tests are converted to use new test framework.

        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/DeadMemberDetection_App_Ctrl.mpc:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/DeadMemberDetection_Inf_Ctrl.mpc:

          Removed duplicated sections introduced from merging.

Wed Dec  2 18:17:04 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        Merged in changes from OCI (RT #13323) that added member validation
        feature to LoadBalancer.

        * orbsvcs/LoadBalancer/LoadManager.cpp:

          - Added parameters for passing ping_timeout in milliseconds('-t') and
            ping_interval in seconds('-i'). The default ping_interval is 0 which means
            no validation thread launched. Otherwise each member will be validated
            periodically. The period is in a range of minimum ping_interval and maximum
            num of members validated * ping_timeout.
          - The LB service needs be run with RW strategy configuration to ensure the
            next_member, add_member and remove_member performed sequentially.

            static Client_Strategy_Factory "-ORBWaitStrategy rw -ORBTransportMuxStrategy
              exclusive -ORBConnectStrategy blocked -ORBConnectionHandlerCleanup 1"
            static Resource_Factory "-ORBFlushingStrategy blocking"

        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_LoadManager.cpp:

          Added the validate thread to periodically ping all active members. The
          liveliness status update is done in PortableGroup lib. The next_member()
          query strategy to get next member in maximum number of existing members
          times until an active member is found.

        * orbsvcs/orbsvcs/LoadBalancing/LB_RoundRobin.h:
        * orbsvcs/orbsvcs/LoadBalancing/LB_RoundRobin.cpp:

          Fixed issue that the location index from previous next_member() call may
          not be valid if the member list is changed since then. Now it verify if
          the list is changed and then find the next member based on RR strategy.

        * orbsvcs/orbsvcs/PortableGroup/PG_GenericFactory.cpp:

          Added try/catch around factory delete_object() call,
          because it's possible the factory is down. This could
          be called in the path of remove_member after member
          liveliness check failure. Without try/catch, the member
          will not be removed cleanly.

        * orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h:

          Added liveliness status and group reference.

        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.h:
        * orbsvcs/orbsvcs/PortableGroup/PG_ObjectGroupManager.cpp:

          Added more functions to support member validation and inactive
          member removing.

        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/Basic.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/Basic.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/DeadMemberDetection_App_Ctrl.mpc:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/LB_server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/Makefile.am:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/README:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/Test.idl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/client.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/non-windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/svc.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/DeadMemberDetection_Inf_Ctrl.mpc:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Factory.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Factory.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Factory_Map.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Factory_Map.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Factory_Struct.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Factory_Struct.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/LB_Factory_Server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/LB_Factory_Server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/LB_server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Makefile.am:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/README:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Simple.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Simple.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Test.idl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/client.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/factory_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/non-windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/windows.conf.xml:

          Added validation tests.

        * orbsvcs/tests/LoadBalancing/GenericFactory/Manage_Object_Group/server.cpp:

          Fixed a bug that deleted object after orb shutdown and got
          COMM_FAILURE.

        * bin/tao_other_tests.lst:

          Added validation tests.

Wed Dec  2 14:01:43 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tao/RTCORBA/RT_ORB_Loader.cpp:
          Improved a little the fix for bug#3755. There is no need
          to obtain a global gestalt.

Wed Dec  2 12:32:36 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * examples/RTScheduling/Fixed_Priority_Scheduler/run_test.pl:
        * examples/RTScheduling/MIF_Scheduler/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Wed Dec  2 10:07:02 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Bug_1630_Regression/run_test.pl:
        * orbsvcs/tests/BiDir_CORBALOC/run_test.pl:
        * orbsvcs/tests/HTIOP/Hello/run_test.pl:
        * orbsvcs/tests/HTIOP/AMI/run_test.pl:
        * orbsvcs/tests/HTIOP/BiDirectional/run_test.pl:
        * orbsvcs/tests/Notify/Lanes/README:
        * orbsvcs/tests/Notify/Lanes/run_test.pl:
        * orbsvcs/tests/FaultTolerance/IOGR/run_test.pl:
        * orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/run_test.pl:
        * orbsvcs/tests/Bug_2248_Regression/run_test.pl:
        * orbsvcs/tests/Time/run_test.pl:
        * DevGuideExamples/Multithreading/ThreadPerConnection/run_test.pl:
        * tests/IOR_Endpoint_Hostnames/list_interfaces.cpp:
        * tests/IOR_Endpoint_Hostnames/generate_ior.cpp:
        * tests/IOR_Endpoint_Hostnames/IOR_Endpoint_Hostnames.mpc:
        * tests/IOR_Endpoint_Hostnames/Makefile.am:
        * tests/IOR_Endpoint_Hostnames/run_test.pl:
        * tests/Bug_1482_Regression/run_test.pl:
        * tests/Nested_Upcall_Crash/run_test.pl:
        * examples/RTScheduling/Fixed_Priority_Scheduler/run_test.pl:
        * examples/RTScheduling/MIF_Scheduler/run_test.pl:
        * examples/AMH/Sink_Server/run_test.pl:
        * examples/Load_Balancing/run_test.pl:

          Tests are converted to use new test framework
          and added to fuzz build.

Tue Dec  1 10:44:09 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/examples/Notify/Subscribe/run_test.pl:
        * orbsvcs/examples/Notify/Filter/run_test.pl:

          Test are converted to use new test framework
          and added to fuzz build.

Tue Dec  1 09:48:38 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Log/Basic_Log_Test/run_test.pl:
        * orbsvcs/tests/Bug_2800_Regression/client.cpp:
        * orbsvcs/tests/Bug_2800_Regression/run_test_federated.pl:
        * orbsvcs/tests/Bug_2800_Regression/nsmain.cpp:
        * orbsvcs/tests/Bug_2800_Regression/run_test.pl:
        * orbsvcs/tests/Bug_2777_Regression/run_test.pl:
        * orbsvcs/tests/Bug_3673_Regression/client.cpp:
        * orbsvcs/tests/Bug_3673_Regression/nsmain.cpp:
        * orbsvcs/tests/Bug_3673_Regression/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/2_Hops_RTCORBA/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/Colocated_RTCORBA/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/2_Hops/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/Colocated/run_test.pl:
        * orbsvcs/tests/EC_Multiple/run_test.pl:
        * orbsvcs/tests/Interoperable_Naming/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Manage_Object_Group/run_test.pl:
        * orbsvcs/examples/ORT/run_test.pl:
        * orbsvcs/examples/Notify/Subscribe/run_test.pl:
        * orbsvcs/examples/Notify/ThreadPool/run_test.pl:
        * orbsvcs/examples/Notify/Lanes/run_test.pl:
        * orbsvcs/examples/Notify/Filter/run_test.pl:
        * orbsvcs/examples/RtEC/IIOPGateway/consumerec_crash.pl:
        * orbsvcs/examples/RtEC/IIOPGateway/run_test.pl:
        * orbsvcs/examples/RtEC/Simple/run_test.pl:
        * performance-tests/POA/Create_Reference/run_test.pl:
        * tests/Faults/run_test_pp.pl:
        * tests/Faults/run_test.pl:
        * tests/Muxing/run_test.pl:
        * tests/Bug_1020_Regression/run_test.pl:
        * tests/Bug_1551_Regression/run_test.pl:
        * tests/Bug_2678_Regression/run_test.pl:
        * tests/MT_Server/run_test.pl:
        * tests/LongUpcalls/run_test.pl:
        * tests/Bug_2084_Regression/run_test.pl:
        * tests/Bug_1482_Regression/run_test.pl:
        * tests/Bug_3547_Regression/run_test.pl:
        * tests/Bug_2174_Regression/run_test.pl:
        * tests/POA/TIE/server.cpp:
        * tests/POA/TIE/run_test.pl:
        * tests/MT_BiDir/run_test.pl:
        * tests/Monitor/Marshal_Buffer/run_test.pl:
        * tests/Bug_1869_Regression/client.cpp:
        * tests/Bug_1869_Regression/run_test.pl:
        * tests/Nested_Upcall_Crash/run_test.pl:
        * tests/ORB_Local_Config/run_tests_all.pl:
        * tests/Bug_1269_Regression/run_test.pl:
        * tests/Forwarding/run_test.pl:
        * bin/tao_orb_tests.lst:

          Test are converted to use new test framework
          and added to fuzz build.

Thu Nov 26 02:02:24 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * docs/documentation.html: Updated the documentation to reference
          the "CORBA Explained Simply" and "Advanced CORBA Programming
          with C++" books.  Thanks to Joost Kraaijeveld <J dot Kraaijeveld
          at Askesis dot nl> for motivating this.

Mon Nov 30 12:26:32 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Simple_Naming/run_test.pl:
        * orbsvcs/tests/AVStreams/Full_Profile/run_test.pl:
        * tests/Oneway_Timeouts/run_test.pl:
        * tests/Parallel_Connect_Strategy/run_test.pl:
        * tests/Muxed_GIOP_Versions/run_test.pl:
        * tests/InterOp-Naming/run_test.pl:
        * bin/tao_other_tests.lst:

          Test are converted to use new test framework
          and added to fuzz build.

Mon Nov 30 10:01:49 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/default_configuration.pl:
        * orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/run_test.pl:
        * orbsvcs/performance-tests/LoadBalancing/LBPerf/CPU/default_configuration.pl:
        * orbsvcs/tests/Simple_Naming/run_test.pl:
        * orbsvcs/tests/Security/InsecureReferences/run_test.pl:
        * orbsvcs/tests/Security/MT_IIOP_SSL/run_test.pl:
        * orbsvcs/tests/Security/Bug_1107_Regression/run_test.pl:
        * orbsvcs/tests/Security/Crash_Test/run_test.pl:
        * orbsvcs/tests/Security/MT_SSLIOP/run_test_harsh.pl:
        * orbsvcs/tests/Security/MT_SSLIOP/run_test_heavy.pl:
        * orbsvcs/tests/Security/MT_SSLIOP/run_test.pl:
        * orbsvcs/tests/AVStreams/Component_Switching/run_test.pl:
        * orbsvcs/tests/AVStreams/Full_Profile/run_test.pl:
        * orbsvcs/tests/AVStreams/Bidirectional_Flows/run_test.pl:
        * orbsvcs/tests/AVStreams/Simple_Two_Stage_With_QoS/run_test.pl:
        * orbsvcs/tests/AVStreams/Latency/run_test.pl:
        * orbsvcs/tests/AVStreams/Asynch_Three_Stage/run_test.pl:
        * orbsvcs/tests/AVStreams/Pluggable/run_test.pl:
        * orbsvcs/tests/AVStreams/Simple_Three_Stage/run_test.pl:
        * orbsvcs/tests/AVStreams/Simple_Two_Stage/run_test.pl:
        * orbsvcs/tests/AVStreams/Multiple_Flows/run_test.pl:
        * orbsvcs/tests/AVStreams/Multicast/run_test.pl:
        * orbsvcs/tests/AVStreams/Multicast_Full_Profile/run_test.pl:
        * orbsvcs/tests/AVStreams/Modify_QoS/run_test.pl:
        * orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/run_test.pl:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/run_all.pl:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/run_test.pl:
        * orbsvcs/tests/Notify/XML_Persistence/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/IFR_Test/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Persistence_Test/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Duplicate_Typedef_Test/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Latency_Test/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/IFR_Self_Recursive_IDL_Test/run_test.pl:
        * performance-tests/POA/Implicit_Activation/run_test.pl:
        * performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/run-test.pl:
        * performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/run-test.pl:
        * performance-tests/Callback/run_test.pl:
        * performance-tests/Latency/AMH_Single_Threaded/run_test.pl:
        * performance-tests/Cubit/TAO/MT_Cubit/run_test.pl:
        * performance-tests/Cubit/TAO/DII_Cubit/run_test.pl:
        * performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl:
        * tests/Big_Twoways/run_test.pl:
        * tests/Bug_2918_Regression/run_test.pl:
        * tests/Strategies/run_test.pl:
        * tests/Bug_1482_Regression/run_test.pl:
        * tests/Portable_Interceptors/Benchmark/run_test.pl:
        * tests/Xt_Stopwatch/run_test.pl:
        * tests/Multiple/run_test.pl:
        * tests/CSD_Strategy_Tests/Broken/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_4/run_test.pl:
        * tests/Oneway_Timeouts/client.cpp:
        * tests/Oneway_Timeouts/server.cpp:
        * tests/Oneway_Timeouts/run_test.pl:
        * tests/Smart_Proxies/Policy/server.cpp:
        * tests/Smart_Proxies/Policy/run_test.pl:
        * tests/Bug_1270_Regression/run_test.pl:
        * tests/Parallel_Connect_Strategy/run_test.pl:
        * tests/Muxed_GIOP_Versions/run_test.pl:
        * tests/Connect_Strategy_Test/run_test.pl:
        * tests/Big_Oneways/run_test.pl:
        * tests/Bug_1627_Regression/server.cpp:
        * tests/Bug_1627_Regression/run_test.pl:
        * tests/InterOp-Naming/run_test.pl:
        * tests/Nested_Upcall_Crash/run_test.pl:
        * tests/Bug_1269_Regression/client.cpp:
        * tests/Bug_1269_Regression/run_test.pl:

          Test are converted to use new test framework
          and added to fuzz build.

Sun Nov 29 13:06:02 CST 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO version 1.7.5 released.

Fri Nov 27 10:12:19 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/OctetSeq/run_test1.pl:
        * tests/OctetSeq/run_test2.pl:
        * tests/Bug_3000_Regression/run_test.pl:
        * tests/Bug_3068_Regression/run_test.pl:
        * tests/Bug_2186_Regression/run_test.pl:

          Test are converted to use new test framework
          and added to fuzz build.

Thu Nov 26 12:45:41 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/Bug_1361_Regression/run_test.pl:

          Test is converted to use new test framework and added to fuzz build.

Thu Nov 26 10:42:27 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp:
        * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/client.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/LB_server.cpp:

          Tests are converted to use new test framework and added to fuzz build.

Wed Nov 25 15:37:11 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tao/RTCORBA/RT_ORB_Loader.cpp:
          Additional fix for bug#3755. Previous fix broke Bug_3755_Regression.

Wed Nov 25 12:07:28 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/InterfaceRepo/Application_Test/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/run_test.pl:
        * tests/AMI_Buffering/run_timeout.pl:
        * tests/AMI_Buffering/run_message_count.pl:
        * tests/AMI_Buffering/run_buffer_size.pl:
        * tests/AMI_Buffering/run_timeout_reactive.pl:
        * tests/AMI_Buffering/run_test.pl:
        * tests/Bug_1495_Regression/run_test.pl:
        * tests/Oneway_Buffering/run_timeout.pl:
        * tests/Oneway_Buffering/run_message_count.pl:
        * tests/Oneway_Buffering/run_buffer_size.pl:
        * tests/Oneway_Buffering/run_timeout_reactive.pl:
        * tests/Oneway_Buffering/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.

Wed Nov 25 09:01:20 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/DevGuideExamples/ValueTypes/Notify/supplier.cpp:
        * orbsvcs/DevGuideExamples/ValueTypes/Notify/consumer.cpp:
        * orbsvcs/DevGuideExamples/ValueTypes/Notify/run_test.pl:
        * orbsvcs/DevGuideExamples/Security/PolicyControllingApp/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/Security/PolicyControllingApp/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/Security/PolicyControllingApp/run_test.pl:
        * orbsvcs/DevGuideExamples/Security/SecurityUnawareApp/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/Security/SecurityUnawareApp/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/Security/SecurityUnawareApp/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/QoSProperties/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/QoSProperties/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/QoSProperties/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/Filtering/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/Messenger/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/Messenger/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/Messenger/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/EventSequence/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/EventSequence/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/EventSequence/run_test.pl:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/MessengerConsumer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/run_test.pl:
        * orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger/run_test.pl:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Client/run_test.pl:
        * orbsvcs/DevGuideExamples/NamingService/Messenger/run_test.pl:
        * orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger/run_test.pl:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/run_test.pl:
        * orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp:
        * orbsvcs/tests/Notify/Bug_3646c_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Bug_3200_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/IDL3_Test/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Bug_3495_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp:
        * orbsvcs/tests/InterfaceRepo/Application_Test/server.cpp:
        * orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h:
        * orbsvcs/tests/InterfaceRepo/Application_Test/run_test.pl:
        * orbsvcs/examples/Log/Basic/run_test.pl:
        * orbsvcs/examples/Log/Event/run_test.pl:
        * orbsvcs/examples/Log/RTEvent/run_test.pl:
        * orbsvcs/examples/Log/Notify/run_test.pl:
        * orbsvcs/examples/CosEC/TypedSimple/Consumer.cpp:
        * orbsvcs/examples/CosEC/TypedSimple/run_test.pl:
        * orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/run_test2.pl:
        * orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/run_test.pl:
        * orbsvcs/examples/LoadBalancing/run_test.pl:
        * performance-tests/Sequence_Latency/DSI/run_test.pl:
        * performance-tests/Sequence_Latency/Deferred/run_test.pl:
        * performance-tests/Sequence_Latency/Thread_Pool/run_test.pl:
        * performance-tests/Sequence_Latency/Single_Threaded/default_configuration.pl:
        * performance-tests/Sequence_Latency/Single_Threaded/run_test.pl:
        * performance-tests/Sequence_Latency/DII/run_test.pl:
        * performance-tests/Sequence_Latency/AMH_Single_Threaded/run_test.pl:
        * performance-tests/Sequence_Latency/AMI/run_test.pl:
        * performance-tests/Sequence_Latency/Thread_Per_Connection/run_test.pl:
        * performance-tests/RTCorba/Oneways/Reliable/client_test.pl:
        * performance-tests/RTCorba/Oneways/Reliable/server.cpp:
        * performance-tests/RTCorba/Oneways/Reliable/run_test.pl:
        * performance-tests/Latency/Thread_Pool/run_test.pl:
        * performance-tests/Latency/Single_Threaded/default_configuration.pl:
        * performance-tests/Latency/Single_Threaded/run_test.pl:
        * performance-tests/Latency/Thread_Per_Connection/run_test.pl:
        * tests/GIOP_Fragments/Java_Big_Request/run_test.pl:
        * tests/GIOP_Fragments/Java_Big_Reply/run_test.pl:
        * examples/CSD_Strategy/ThreadPool2/run_test.pl:
        * examples/CSD_Strategy/ThreadPool4/run_test.pl:
        * examples/CSD_Strategy/ThreadPool5/run_test.pl:
        * examples/CSD_Strategy/ThreadPool6/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.

Tue Nov 24 13:12:18 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tao/RTCORBA/RT_ORB_Loader.cpp:
          Fixed a problem with double initialization of RTCORBA library.
          This is required for bug#3755. Now RTCORBA initialization code
          checks whether it's initialized in current gestalt.

Tue Nov 24 10:29:27 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/EC_Mcast/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3646a_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3688_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Validate_Client/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Bug_3174_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/client.cpp:
        * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/run_test.pl:
        * orbsvcs/tests/InterfaceRepo/Union_Forward_Test/run_test.pl:
        * DevGuideExamples/AMH_AMI/inner_server.cpp:
        * DevGuideExamples/AMH_AMI/client.cpp:
        * DevGuideExamples/AMH_AMI/middle_server.cpp:

          Tests are converted to use new test framework and added to fuzz build.

Mon Nov 23 12:08:00 UTC 2009  Simon Massey  <sma at prismtech dot com>

        * NEWS:
        * TAO_IDL/util/utl_global.cpp:

         Another Space in roots fix.

Mon Nov 23 11:23:28 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * examples/RTCORBA/Activity/run_test.pl:

         Test is converted to use new test framework and added to fuzz build.

Mon Nov 23 11:07:56 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/MT_Client/run_test.pl:
        * examples/RTCORBA/Activity/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.

Mon Nov 23 10:50:58 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
          In the generated servant code (_svnt.cpp) we have an
          access violation in the method populate_port_tables.
          The access violation is indirectly caused by a wrong
          call of the method ports_servant_activator of the
          Servant_Activator.
          An instance of Port_Activator is created as a copy
          of tmp. Instead of the new copy pa the tmp variable
          is used in the call of ports_servant_activator.
          Thanks to Wolfgang Pickartz.

Mon Nov 23 09:38:57 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/DevGuideExamples/InterfaceRepo/run_test.pl:
        * orbsvcs/DevGuideExamples/ImplRepo/Basic/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/ImplRepo/Basic/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/ImplRepo/Basic/run_test.pl:
        * orbsvcs/DevGuideExamples/ImplRepo/IORTable/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/ImplRepo/IORTable/run_test.pl:
        * orbsvcs/DevGuideExamples/ImplRepo/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/ImplRepo/Activator/run_test.pl:
        * orbsvcs/DevGuideExamples/ImplRepo/run_test.pl:
        * orbsvcs/tests/Miop/McastHello/run_test.pl:
        * orbsvcs/tests/Security/Callback/client.cpp:
        * orbsvcs/tests/CosEvent/Timeout/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/run_test.pl:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/LB_server.cpp:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/LB_server.h:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/run_test.pl:
        * orbsvcs/tests/LoadBalancing/LoadMonitor/CPU/run_test.pl:
        * performance-tests/Protocols/run_test.pl:
        * tests/CollocationLockup/run_test.pl:
        * tests/Bug_1495_Regression/Threaded_Client.cpp:
        * tests/Bug_1495_Regression/run_test_complex.pl:
        * tests/Bug_1495_Regression/run_test.pl:
        * tests/Bug_1361_Regression/run_test.pl:
        * tests/COIOP/run_test.pl:
        * tests/Bug_3000_Regression/run_test.pl:
        * tests/Bug_2186_Regression/run_test.pl:
        * tests/AlternateIIOP/run_test.pl:
        * tests/NestedUpcall/Simple/run_test.pl:
        * tests/MT_BiDir/run_test.pl:
        * tests/MT_Client/run_test.pl:
        * tests/ForwardUponObjectNotExist/run_test.pl:
        * tests/No_Server_MT_Connect_Test/run_test.pl:
        * tests/Cache_Growth_Test/run_test.pl:
        * tests/Bug_1476_Test/run_test.pl:
        * bin/tao_other_tests.lst:
        * bin/tao_orb_tests.lst:
        * examples/Simple/time-date/run_test.pl:
        * examples/CSD_Strategy/ThreadPool/run_test.pl:
        * examples/CSD_Strategy/ThreadPool3/run_test.pl:
        * examples/RTCORBA/Activity/run_test.pl:
        * examples/AMH/Sink_Server/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.


Sat Nov 21 14:20:19 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * tests/Bug_3766_Regression/Test.idl:
        * tests/Bug_3766_Regression/TestI.h:
        * tests/Bug_3766_Regression/TestI.cpp:
        * tests/Bug_3766_Regression/client.cpp:
        * tests/Bug_3766_Regression/server.cpp:

          Minor improvement to this test. Add a way for the client to
          shut down the server so this test can pass on the scoreboard.

Sat Nov 21 04:44:20 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * tao/VarOut_T.h:
        * tao/VarOut_T.inl:

          Fixed Bug 3766.

Fri Nov 20 19:52:15 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * tao/VarOut_T.h:
        * tao/VarOut_T.inl:

          Revert the changes and reopen Bug 3766. The prior commit causes build issues.

Fri Nov 20 18:46:27 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * tao/VarOut_T.h:
        * tao/VarOut_T.inl:

          Fixed Bug 3766.

Fri Nov 20 16:55:01 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * NEWS:

          Update for next release.

Fri Nov 20 13:53:51 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * NEWS:

          Update for next release.

Fri Nov 20 13:02:24 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Security/Callback/server.cpp:

                  Test is converted to use new test framework and added to fuzz build.

Fri Nov 20 10:03:43 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * tests/Bug_3766_Regression/server.cpp:
          Resolved compiler error related to invisible
          characters on Linux.

Fri Nov 20 09:28:50 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/DevGuideExamples/EventServices/OMG_TypedEC/run_test.pl:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Federated/run_test.pl:
        * orbsvcs/DevGuideExamples/EventServices/OMG_SupplierSideEC/run_test.pl:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Filter/run_test.pl:
        * orbsvcs/DevGuideExamples/EventServices/OMG_Basic/run_test.pl:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/run_test.pl:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Basic/run_test.pl:
        * orbsvcs/tests/Security/EndpointPolicy/run_test.pl:
        * DevGuideExamples/Multithreading/ThreadPool/MessengerServer.cpp:
        * DevGuideExamples/Multithreading/ThreadPool/MessengerClient.cpp:
        * DevGuideExamples/Multithreading/ThreadPool/run_test.pl:
        * DevGuideExamples/Multithreading/GracefulShutdown/MessengerServer.cpp:
        * DevGuideExamples/Multithreading/GracefulShutdown/MessengerClient.cpp:
        * DevGuideExamples/Multithreading/GracefulShutdown/run_test.pl:
        * DevGuideExamples/Multithreading/ThreadPerConnection/MessengerServer.cpp:
        * DevGuideExamples/Multithreading/ThreadPerConnection/MessengerClient.cpp:
        * DevGuideExamples/Multithreading/ThreadPerConnection/run_test.pl:
        * DevGuideExamples/AMH_AMI/inner_server.cpp:
        * DevGuideExamples/AMH_AMI/client.cpp:
        * DevGuideExamples/AMH_AMI/middle_server.cpp:
        * DevGuideExamples/AMH_AMI/run_test.pl:
        * tests/OctetSeq/run_test1.pl:
        * tests/OctetSeq/run_test2.pl:
        * tests/OctetSeq/run_test.pl:
        * tests/Bug_1330_Regression/server.cpp:
        * tests/Bug_1330_Regression/run_test.pl:
        * tests/Leader_Followers/run_test.pl:
        * tests/NestedUpcall/MT_Client_Test/run_test.pl:
        * tests/Bug_2702_Regression/run_test.pl:
        * tests/IPV6/run_test.pl:
        * tests/MProfile_Connection_Timeout/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.

Fri Nov 20 08:56:26 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3755_Regression/server.cpp:
        * tests/Bug_3755_Regression/run_test.pl:
        * bin/tao_orb_tests.lst:
          Fixed this test on Win32 and disabled it from compact,
          minimum and single threaded builds.

Fri Nov 20 08:34:48 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * examples/RTScheduling/Fixed_Priority_Scheduler/FP_Scheduler.h:
        * examples/RTScheduling/Fixed_Priority_Scheduler/FP_Scheduler.cpp:
        * examples/RTScheduling/MIF_Scheduler/MIF_Scheduler.h:
        * examples/RTScheduling/MIF_Scheduler/MIF_Scheduler.cpp:
          Resolved compiler errors related to the IDL compiler
          change (see see Tue Nov 17 20:47:27 UTC 2009  Jeff Parsons
          for more details).

Thu Nov 19 20:18:53 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * tests/Bug_3766_Regression/Test.idl:
        * tests/Bug_3766_Regression/TestI.h:
        * tests/Bug_3766_Regression/TestI.cpp:
        * tests/Bug_3766_Regression/client.cpp:

          Extend this test to test Variable sized types in addition
          to Fixed size types.

Thu Nov 19 19:50:30 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * bin/tao_orb_tests.lst:

          Add BUG_3766_Regression to the list of tests to run.

Thu Nov 19 15:40:53 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * tests/Bug_3766_Regression:
        * tests/Bug_3766_Regression/Bug_3766_Regression.mpc:
        * tests/Bug_3766_Regression/Test.idl:
        * tests/Bug_3766_Regression/TestI.h:
        * tests/Bug_3766_Regression/TestI.cpp:
        * tests/Bug_3766_Regression/run_test.pl:
        * tests/Bug_3766_Regression/server.cpp:

          Added a regression test for Bugzilla 3766.

Thu Nov 19 12:38:10 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/Bug_2234_Regression/server.cpp:

          Test is converted to use new test framework and added to fuzz build.

Thu Nov 19 08:25:13 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Trading/export_test.cpp:
        * orbsvcs/tests/Trading/run_test.pl:
        * orbsvcs/tests/Security/Callback/server.cpp:
        * orbsvcs/tests/Security/Callback/client.cpp:
        * orbsvcs/tests/Security/Callback/run_test.pl:
        * orbsvcs/tests/Security/mixed_security_test/run_test.pl:
        * orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp:
        * orbsvcs/tests/Security/ssliop_CSD/MessengerClient.cpp:
        * orbsvcs/tests/Security/ssliop_CSD/run_test.pl:
        * orbsvcs/examples/CosEC/Simple/Service.cpp:
        * orbsvcs/examples/CosEC/Simple/Supplier.cpp:
        * orbsvcs/examples/CosEC/Simple/Consumer.cpp:
        * orbsvcs/examples/CosEC/Simple/run_test.pl:
        * tests/AMI_Buffering/run_timeout.pl:
        * tests/AMI_Buffering/run_buffer_size.pl:
        * tests/AMI_Buffering/run_timeout_reactive.pl:
        * tests/AMI_Buffering/run_test.pl:
        * tests/Big_Request_Muxing/run_test.pl:
        * tests/Bug_3743_Regression/run_test.pl:
        * tests/Bug_3531_Regression/client.cpp:
        * tests/Bug_3531_Regression/server.cpp:
        * tests/Bug_3531_Regression/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_Static/ClientApp.cpp:
        * tests/CSD_Strategy_Tests/TP_Test_Static/run_test.pl:
        * tests/Server_Connection_Purging/server.cpp:
        * tests/Server_Connection_Purging/run_test.pl:
        * tests/Oneway_Buffering/run_timeout.pl:
        * tests/Oneway_Buffering/run_message_count.pl:
        * tests/Oneway_Buffering/run_buffer_size.pl:
        * tests/Oneway_Buffering/run_timeout_reactive.pl:
        * tests/Oneway_Buffering/run_test.pl:
        * bin/tao_other_tests.lst:
        * bin/tao_orb_tests.lst:

          Tests are converted to use new test framework and added to fuzz build.

Wed Nov 18 12:58:16 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Bug_2925_Regression/run_test_ipv6.pl:
        * orbsvcs/tests/Bug_2925_Regression/run_test.pl:
        * orbsvcs/tests/Security/Secure_Invocation/run_test.pl:
        * orbsvcs/tests/Security/Bug_2908_Regression/MessengerServer.cpp:
        * orbsvcs/tests/Security/Bug_2908_Regression/MessengerClient.cpp:
        * orbsvcs/tests/Security/Bug_2908_Regression/run_test.pl:
        * orbsvcs/tests/Security/BiDirectional/run_test.pl:
        * orbsvcs/tests/Security/Big_Request/run_test.pl:
        * orbsvcs/tests/HTIOP/BiDirectional/run_test.pl:
        * orbsvcs/tests/Property/run_test.pl:
        * orbsvcs/tests/Bug_2316_Regression/client.cpp:
        * orbsvcs/tests/Bug_2316_Regression/server.cpp:
        * orbsvcs/tests/Bug_2316_Regression/run_test.pl:
        * orbsvcs/tests/Bug_2615_Regression/client.cpp:
        * orbsvcs/tests/Bug_2615_Regression/server.cpp:
        * orbsvcs/tests/Bug_2615_Regression/run_test.pl:
        * orbsvcs/tests/Bug_3216_Regression/run_test.pl:
        * orbsvcs/tests/Bug_2709_Regression/client.cpp:
        * orbsvcs/tests/Bug_2709_Regression/server.cpp:
        * orbsvcs/tests/Bug_2709_Regression/run_test.pl:
        * orbsvcs/tests/IOR_MCast/run_test_ipv6.pl:
        * orbsvcs/tests/Bug_3215_Regression/run_test.pl:
        * orbsvcs/tests/Bug_2287_Regression/run_test.pl:
        * DevGuideExamples/SmartProxies/MessengerServer.cpp:
        * DevGuideExamples/SmartProxies/LoggerServer.cpp:
        * DevGuideExamples/SmartProxies/MessengerClient.cpp:
        * DevGuideExamples/SmartProxies/run_test.pl:
        * performance-tests/Latency/DSI/run_test.pl:
        * performance-tests/Latency/Deferred/run_test.pl:
        * performance-tests/Latency/DII/run_test.pl:
        * performance-tests/Latency/AMI/run_test.pl:
        * performance-tests/Throughput/run_test.pl:
        * tests/AMI_Buffering/run_message_count.pl:
        * tests/Bug_1495_Regression/run_test_complex.pl:
        * tests/Bug_1495_Regression/run_test.pl:
        * tests/Crashed_Callback/run_test.pl:
        * tests/BiDirectional/run_test_bug3282.pl:
        * tests/Bug_1020_Basic_Regression/run_test.pl:
        * tests/CallbackTest/run_test_ipv6.pl:
        * tests/CallbackTest/run_test_mixed_ip.pl:
        * tests/Bug_2289_Regression/run_test.pl:
        * tests/DIOP/run_test_ipv6.pl:
        * tests/DIOP/run_test.pl:
        * tests/NestedUpcall/Triangle_Test/run_test.pl:
        * tests/MT_Timeout/run_test.pl:
        * tests/Single_Read/server.cpp:
        * tests/Single_Read/test_i.cpp:
        * tests/Single_Read/run_test.pl:
        * tests/Single_Read/test_i.h:
        * examples/Logging/run_test.pl:
        * examples/Simple/time-date/run_test.pl:
        * examples/PluggableUDP/tests/Performance/run_test_ipv6.pl:
        * examples/PluggableUDP/tests/Performance/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.

Wed Nov 18 11:09:55 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * examples/Kokyu_dsrt_schedulers/FP_Scheduler.h:
        * examples/Kokyu_dsrt_schedulers/FP_Scheduler.cpp:
        * examples/Kokyu_dsrt_schedulers/MIF_Scheduler.h:
        * examples/Kokyu_dsrt_schedulers/MIF_Scheduler.cpp:
        * examples/Kokyu_dsrt_schedulers/MUF_Scheduler.h:
        * examples/Kokyu_dsrt_schedulers/MUF_Scheduler.cpp:
          Added policy_type implementation. As a result of
          change in the IDL compiler (see Tue Nov 17
          20:47:27 UTC 2009  Jeff Parsons for more details).

Tue Nov 17 20:47:27 UTC 2009  Jeff Parsons  <j.parsons@vanderbilt.edu>

        * TAO_IDL/ast/ast_decl.cpp:
        * TAO_IDL/be/be_visitor_interface.cpp:
        * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
        * TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
        * TAO_IDL/be/be_visitor_operation.cpp:

          Cosmetic changes.

        * TAO_IDL/be/be_interface.cpp:

          Fixed bug in stub header code generation for local interfaces.
          Operations inherited from non-local interfaces are re-generated
          as pure virtual, but the operations associated with attributes
          were getting skipped. Thanks to Marcel Smit
          <msmit at remedy dot nl> and Johnny Willemsen
          <jwillemsen at remedy dot nl> for reporting the problem.

Tue Nov 17 17:18:51 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3755_Regression/server.cpp:
          Extended test's output.

Tue Nov 17 14:43:36 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * bin/tao_other_tests.lst:

          Test, which is not converted now, is disabled in FUZZ build.

Tue Nov 17 13:49:10 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * bin/tao_other_tests.lst:
        * bin/tao_orb_tests.lst:

          Tests, which are not converted now, are disabled in FUZZ build.

Tue Nov 17 11:45:03 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/DevGuideExamples/Security/ParticipatingApp/MessengerServer.cpp:
        * orbsvcs/DevGuideExamples/Security/ParticipatingApp/MessengerClient.cpp:
        * orbsvcs/DevGuideExamples/Security/ParticipatingApp/run_test.pl:
        * DevGuideExamples/Multithreading/Reactive/MessengerServer.cpp:
        * DevGuideExamples/Multithreading/Reactive/MessengerClient.cpp:
        * DevGuideExamples/Multithreading/Reactive/run_test.pl:
        * DevGuideExamples/ValueTypes/Messenger/MessengerServer.cpp:
        * DevGuideExamples/ValueTypes/Messenger/MessengerClient.cpp:
        * DevGuideExamples/ValueTypes/Messenger/run_test.pl:
        * DevGuideExamples/ValueTypes/Bank/server.cpp:
        * DevGuideExamples/ValueTypes/Bank/run_test.pl:
        * DevGuideExamples/ValueTypes/Bank/client.cpp:
        * DevGuideExamples/LocalObjects/ServantLocator/MessengerServer.cpp:
        * DevGuideExamples/LocalObjects/ServantLocator/run_test.pl:
        * DevGuideExamples/GettingStarted/MessengerServer.cpp:
        * DevGuideExamples/GettingStarted/MessengerClient.cpp:
        * DevGuideExamples/GettingStarted/run_test.pl:
        * DevGuideExamples/PortableInterceptors/Auth/MessengerServer.cpp:
        * DevGuideExamples/PortableInterceptors/Auth/MessengerClient.cpp:
        * DevGuideExamples/PortableInterceptors/Auth/run_test.pl:
        * DevGuideExamples/PortableInterceptors/SimpleCodec/MessengerServer.cpp:
        * DevGuideExamples/PortableInterceptors/SimpleCodec/MessengerClient.cpp:
        * DevGuideExamples/PortableInterceptors/SimpleCodec/run_test.pl:
        * DevGuideExamples/PortableInterceptors/IOR/MessengerServer.cpp:
        * DevGuideExamples/PortableInterceptors/IOR/MessengerClient.cpp:
        * DevGuideExamples/PortableInterceptors/IOR/run_test.pl:
        * DevGuideExamples/PortableInterceptors/PICurrent/MessengerServer.cpp:
        * DevGuideExamples/PortableInterceptors/PICurrent/MessengerClient.cpp:
        * DevGuideExamples/PortableInterceptors/PICurrent/run_test.pl:
        * DevGuideExamples/RTCORBA/MessengerServer.cpp:
        * DevGuideExamples/RTCORBA/run_test.pl:
        * DevGuideExamples/Messaging/AMIcallback/MessengerServer.cpp:
        * DevGuideExamples/Messaging/AMIcallback/MessengerClient.cpp:
        * DevGuideExamples/Messaging/AMIcallback/run_test.pl:
        * DevGuideExamples/Messaging/RelativeRoundtripTimeout/MessengerServer.cpp:
        * DevGuideExamples/Messaging/RelativeRoundtripTimeout/MessengerClient.cpp:
        * DevGuideExamples/Messaging/RelativeRoundtripTimeout/run_test.pl:
        * tests/OBV/Supports/client.cpp:
        * tests/OBV/Supports/server.cpp:
        * tests/OBV/Supports/run_test.pl:
        * tests/Bug_2683_Regression/run_test.pl:
        * tests/Exposed_Policies/run_test.pl:
        * bin/tao_other_tests.lst:
        * bin/tao_orb_tests.lst:
        * examples/PluggableUDP/tests/SimplePerformance/client.cpp:
        * examples/PluggableUDP/tests/SimplePerformance/run_test_ipv6.pl:
        * examples/PluggableUDP/tests/SimplePerformance/server.cpp:
        * examples/PluggableUDP/tests/SimplePerformance/run_test.pl:

          Tests are converted to use new test framework and added to fuzz build.

Mon Nov 16 15:52:21 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * bin/tao_orb_tests.lst:
          Bug 3755 marked as fixed.

        * tao/PI_Server/PI_Server_Loader.cpp:
        * tao/PI_Server/PI_Server_Loader.h:
        * tao/Messaging/Messaging_Loader.h:
        * tao/Messaging/Messaging_Loader.cpp:
        * tao/BiDir_GIOP/BiDirGIOP.cpp:
        * tao/BiDir_GIOP/BiDirGIOP.h:
        * tao/RTScheduling/RTScheduler_Loader.cpp:
        * tao/RTScheduling/RTScheduler_Loader.h:
        * tao/ZIOP/ZIOP.cpp:
        * tao/ZIOP/ZIOP.h:
        * tao/CSD_Framework/CSD_Framework_Loader.cpp:
        * tao/CSD_Framework/CSD_Framework_Loader.h:
        * tao/RTCORBA/RT_ORB_Loader.h:
        * tao/RTCORBA/RT_ORB_Loader.cpp:
          Fixed bug 3755. Now library initialization guard is moved
          to a loader which does the initialization. Since the loader is
          unique per gestalt then the initialization is executed once per
          gestalt and not once per process.

Mon Nov 16 15:44:30 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3748_Regression/run_test.pl:
          Extended the time for starting client even more.

Fri Nov 13 19:49:54 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be_include/be_interface.h:
        * TAO_IDL/be/be_interface.cpp:

          Added 2 private methods, called from traverse_inheritance_graph(),
          to enqueue base components or base homes. Making these steps
          into method calls allows them to be done tail-recursively
          rather than iteratively, so the chain of parents can be
          enqueued in the correct order for generating copy constructors
          and the like.

Fri Nov 13 10:17:33 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/FaultTolerance/IOGRManipulation/run_test.pl:

       Warring in fuzz build was fixed.

Fri Nov 13 09:18:57 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * orbsvcs/tests/Bug_3486_Regression/run_test.pl:
        * orbsvcs/tests/FaultTolerance/IOGRManipulation/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3663_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3646d_Regression/run_test.pl:
        * orbsvcs/tests/Bug_2137_Regression/run_test.pl:
        * DevGuideExamples/LocalObjects/ServantLocator/MessengerServer.cpp:
        * DevGuideExamples/LocalObjects/ServantLocator/MessengerClient.cpp:
        * DevGuideExamples/LocalObjects/ServantLocator/run_test.pl:
        * DevGuideExamples/RTCORBA/MessengerServer.cpp:
        * DevGuideExamples/RTCORBA/MessengerClient.cpp:
        * DevGuideExamples/RTCORBA/run_test.pl:
        * tests/Stack_Recursion/run_test.pl:
        * tests/Timed_Buffered_Oneways/run_test.pl:
        * tests/Bug_2234_Regression/client.cpp:
        * tests/Bug_2234_Regression/server.cpp:
        * tests/Bug_2234_Regression/run_test.pl:
        * tests/Bug_2768_Regression/server.cpp:
        * tests/Bug_2768_Regression/run_test.pl:
        * tests/Blocking_Sync_None/run_test.pl:
        * tests/Crash_On_Write/run_test.pl:
        * tests/Bug_3068_Regression/run_test.pl:
        * tests/CSD_Strategy_Tests/TP_Test_Dynamic/run_test.pl:
        * tests/Bug_2683_Regression/server.cpp:
        * tests/Bug_2683_Regression/run_test.pl:
        * tests/RTScheduling/Scheduling_Interceptor/run_test.pl:
        * tests/File_IO/run_test.pl:
        * tests/Bug_1568_Regression/run_test.pl:
        * tests/Reliable_Oneways/run_sync_with_transport.pl:
        * tests/Reliable_Oneways/run_sync_none.pl:
        * tests/Reliable_Oneways/run_sync_with_server.pl:
        * tests/Reliable_Oneways/run_sync_with_target.pl:
        * bin/tao_other_tests.lst:
        * bin/tao_orb_tests.lst:

        Tests are converted to use new test framework and added to fuzz build.

Fri Nov 13 00:33:49 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/Notify_Service/Notify_Service.cpp:

          Added ACE_STATIC_SVC_REQUIRE for ACE_Logging_Stragey service
          to fix loading issue in static builds.

Thu Nov 12 20:39:18 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_interface.cpp:

          Fixed bug in the logic of operation table generation for
          components and homes.

Thu Nov 12 12:12:51 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/AMH_Exceptions/run_test.pl:
        * tests/AMI_Timeouts/run_test.pl:
        * tests/Portable_Interceptors/AdvSlot/run_test.pl:
        * tests/Portable_Interceptors/AdvSlotDblCpy/run_test.pl:
        * tests/Portable_Interceptors/Bug_2133/run_test.pl:
        * tests/Portable_Interceptors/Bug_3080/run_test.pl:
        * tests/Portable_Interceptors/Bug_3582/run_test.pl:
          Fixed fuzz

Thu Nov 12 08:24:00 UTC 2009  Denis Budko <denis.budko@remedy.nl>

        * tests/IORManipulation/filter/run_test.pl
        * tests/Connection_Failure/run_test.pl
        * orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/Statistic/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/MonitorControlExt/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/Control/run_test.pl
        * orbsvcs/tests/unit/Trading/Interpreter/run_test.pl
        * orbsvcs/tests/Bug_2074_Regression/run_test.pl
        * tests/GIOP_Fragments/PMB_With_Fragments/run_test.pl
        * performance-tests/Latency/Collocation/run_test.pl
        * performance-tests/POA/Object_Creation_And_Registration/run_test.pl
        * orbsvcs/tests/Bug_2377_Regression/run_test.pl
        * orbsvcs/tests/Bug_2377_Regression/run_test_ipv6.pl
        * orbsvcs/tests/unit/Notify/MC/MonitorManager/run_test.pl
        Fixed fuzz errors and some time interval functions usage.

Thu Nov 12 07:13:51 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/PortableInterceptors/AdvSlot/run_test.pl
        * tests/PortableInterceptors/AdvSlotDblCpy/run_test.pl
        * tests/PortableInterceptors/Bug_2133/run_test.pl
        * tests/PortableInterceptors/Bug_2510_Regression/run_test.pl
        * tests/PortableInterceptors/Bug_3080/run_test.pl
        * tests/PortableInterceptors/Bug_3582/run_test.pl
        * tests/PortableInterceptors/Dynamic/run_test.pl
        * tests/PortableInterceptors/IORInterceptor/run_test.pl
        * tests/PortableInterceptors/ORB_Shutdown/run_test.pl
        * tests/PortableInterceptors/PICurrent/run_test.pl
          Fixed fuzz errors

Wed Nov 11 15:33:51 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/context_ex_idl.cpp:

          Removed ancestors from scope visitation for the LEM IDL
          context classes. This closes [BUGID:3761].

        * TAO_IDL/ast/ast_template_interface.cpp:

          Cosmetic changes.

Tue Nov 10 20:14:12 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorSequenceProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorStructuredProxyPushSupplier.h:

          Added TAO_HAS_MONITOR_FRAMEWORK==1 guard so it won't be compiled when
          monitor framework is disabled.

Tue Nov 10 19:07:43 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/include/idl_global.h:
        * TAO_IDL/util/utl_global.cpp:
        * TAO_IDL/fe/y.tab.cpp:
        * TAO_IDL/fe/idl.yy:

          When adding uses multiple related constructs to the
          AST, we now use the instantiating port name (if any)
          as a prefix to the constructed type names.

        * TAO_IDL/be/be_visitor_component/context_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/executor_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/executor_exh.cpp:
        * TAO_IDL/be/be_visitor_component/context_svh.cpp:
        * TAO_IDL/be/be_visitor_component/executor_exs.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        * TAO_IDL/be/be_visitor_component/context_svs.cpp:
        * TAO_IDL/be/be_visitor_component_scope.cpp:
        * TAO_IDL/be_include/be_visitor_component_scope.h:
        * TAO_IDL/be_include/be_visitor_ccm_pre_proc.h:
        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:

          Fixed bugs in the handling of the port name when
          it is used in the construction of facet and
          receptacle operation names. This fix closes [BUGID:3760].

Tue Nov 10 18:15:44 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxySupplier_T.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxySupplier_T.cpp:

          Added TAO_HAS_MONITOR_FRAMEWORK==1 guard so it won't be compiled when
          monitor framework is disabled.

Tue Nov 10 13:37:57 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Param_Test/run_test.pl:
        * tests/Abstract_Interface/run_test.pl:
          Don't use hardcoded timeouts

Tue Nov 10 12:36:57 UTC 2009  Denis Budko  <denis.budko@remedy.nl>

        * tests/IORManipulation/filter/run_test.pl
        * tests/Connection_Failure/run_test.pl
        * orbsvcs/DevGuideExamples/NamingService/Naming_Server/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/Statistic/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/MonitorControlExt/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/run_test.pl
        * orbsvcs/tests/unit/Notify/MC/Control/run_test.pl
        * orbsvcs/tests/unit/Trading/Interpreter/run_test.pl
        * orbsvcs/tests/Bug_2074_Regression/run_test.pl
        * tests/GIOP_Fragments/PMB_With_Fragments/run_test.pl
        * tests/Optimized_Connection/run_test.pl
        * performance-tests/Latency/Collocation/run_test.pl
        * performance-tests/POA/Object_Creation_And_Registration/run_test.pl
        * orbsvcs/tests/Bug_2137_Regression/run_test.pl
        * orbsvcs/tests/Bug_2377_Regression/run_test.pl
        * orbsvcs/tests/Bug_2377_Regression/run_test_ipv6.pl

          Simple porting to new test framework.

Mon Nov  9 19:21:53 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be_include/be_field.h:
        * TAO_IDL/be/be_field.cpp:

          Added flag to check whether a provides or uses port's
          name has already been prefixed with an extended port
          or mirrorport name.

        * TAO_IDL/be/be_visitor_component\context_ex_idl.cpp:

          When visiting a component, changed the call to visit_scope()
          to visit_component_scope() to take advantage of special
          properties in the visitor base class.

        * TAO_IDL/be/be_visitor_component_scope.cpp:

          Fixed a bug in the prefixing of uses or provides port's
          name with the extended port or mirror port's name.

        * TAO_IDL/be/be_interface.cpp:

          Disable code generation of release() and is_nil() overrides
          for children of abstract interfaces if the child itself is
          included from another IDL file, avoiding possible multiple
          defintions of these methods. This item closes [BUGID:3759].

Mon Nov  9 14:58:34 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/driver/drv_preproc.cpp:
        * TAO_IDL/driver/drv_args.cpp:

          Cosmetic changes.

        * TAO_IDL/tao_idl.cpp:

          Added the (optional) behavior of creating a new IDL file
          containing #includes of the individual IDL files on the
          command line, or in the directory tree specified by -r
          on some backends. Processing this 'container' IDL file
          results in significant performance improvement when
          processing multiple IDL files, especially if they include
          Components.idl, since all the middleware IDL is then
          processed only once.

        * TAO_IDL/util/utl_global.cpp:
        * TAO_IDL/include/idl_global.h:

          Added a flag to toggle the above behavior, set by a
          backend (currently only idl_to_picml) that processes
          multiple IDL files into one output.

Mon Nov  9 12:41:31 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_helper.cpp:
          Removed empty line

        * TAO_IDL/be/be_visitor_component/executor_exh.cpp:
          Generate doxygen grouping comments

Mon Nov  9 03:29:31 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * TAO_IDL/be/be_interface.cpp:

          Added the process ID to the temporary file used for gperf, due
          to a perhaps weak random number generator not being random
          enough for parallel builds on OS X.

Fri Nov  6 10:13:00 UTC 2009  Simon Massey  <sma at prismtech dot com>

        * TAO_IDL/driver/drv_preproc.cpp:
        * TAO_IDL/driver/drv_mcpp_preproc.cpp:

          Updated DRV_add_include_path() space within roots and
          directory slash handling. (TAO782) It wasn't detecting
          or handling spaced roots or trailing directory slashes
          correctly.

        * TAO_IDL/util/utl_global.cpp:

          Allow for the gperf absolute directory path to contain spaces.

Thu Nov  5 12:48:31 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_codegen.cpp:
          Don't generate an include for CIAO_common.h anymore

Thu Nov  5 12:24:52 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3748_Regression/run_test.pl:
          Extended the time for running client.

Thu Nov  5 10:48:07 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3748_Regression/server.cpp:
          Fixed warnings.

Wed Nov  4 20:57:08 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * MPC/config/notify_monitor_control.mpb:

          Disable this feature on wince=1 build.

Tue Nov  3 17:32:03 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/fe_init.cpp:

          Added IDL3+ keywords to the list used to check for clashes
          and leading underscore retention.

        * TAO_IDL/fe/y.tab.cpp:
        * TAO_IDL/fe/idl.yy:

          Added creation of uses multiple-specific struct and sequence
          nodes in the AST when the uses multiple port
          appears in an extended port declaration, identically to what
          is now added for a standalone uses multiple port.

Mon Nov  2 22:59:48 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h:
        * orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:

          Made MonitorManager not start ORBTask if MC is not required.
          This should resolve Notify tests failure on static builds.

        * orbsvcs/tests/Notify/MC/notify.conf:

          Removed this file as it'll be generated when running the test
          and cause setup warning on scoreboard.

Mon Nov  2 16:54:24 UTC 2009  Steven Stallion  <stallions@ociweb.com>

        * tests/RTCORBA/Bug_3643_Regression/test_i.cpp:

          Dropped spurious use of NDEBUG; tests should not predicate debug
          logging based on the (lack of) presence of NDEBUG.

Fri Oct 30 16:25:53 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3755_Regression/orb1_svc.conf:
        * tests/Bug_3755_Regression/orb2_svc.conf:
        * tests/Bug_3755_Regression/server.cpp:
        * tests/Bug_3755_Regression/run_test.pl:
        * tests/Bug_3755_Regression/Bug_3755_Regression.mpc:
        * bin/tao_orb_tests.lst:
          Added a test for bug#3755 and scheduled it for run.

Fri Oct 30 14:50:00 UTC 2009  Simon Massey  <sma at prismtech dot com>

        * TAO_IDL/driver/drv_preproc.cpp:
          Improve the DRV_add_include_path() space within roots and
          directory slash handling.   (TAO782)

Fri Oct 30 13:08:30 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3748_Regression/client.cpp:
        * tests/Bug_3748_Regression/Bug_3748_Regression.mpc:
        * tests/Bug_3748_Regression/Server_ORBInitializer.h:
        * tests/Bug_3748_Regression/Hello.cpp:
        * tests/Bug_3748_Regression/Test.idl:
        * tests/Bug_3748_Regression/server.cpp:
        * tests/Bug_3748_Regression/Test_Protocols_Hooks.cpp:
        * tests/Bug_3748_Regression/Makefile.am:
        * tests/Bug_3748_Regression/Hello.h:
        * tests/Bug_3748_Regression/Test_Protocols_Hooks.h:
        * tests/Bug_3748_Regression/README:
        * tests/Bug_3748_Regression/run_test.pl:
        * tests/Bug_3748_Regression/Server_ORBInitializer.cpp:
        * bin/tao_orb_tests.lst:
          Complitely rewrote the test for bug#3748 and changed configs
          in which this test can run.

Fri Oct 30 06:15:53 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        Merged changes from Jeff for port/porttype/mirrorport to head

        Thu Oct 29 12:50:35 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_connector.cpp:
        * TAO_IDL/be/be_visitor_connector/connector_dds_exs.cpp:
        * TAO_IDL/be/be_visitor_connector/connector_dds_exh.cpp:
        * TAO_IDL/be_include/be_visitor_connector.h:
        * TAO_IDL/be_include/be_visitor_connector/connector_dds_exs.h:
        * TAO_IDL/be_include/be_visitor_connector/connector_dds_exh.h:

          New visitors, implementing (so far) part of the code
          generation of connector executors.

        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_visitor_component/component_exh.cpp:
        * TAO_IDL/be/be_visitor_component/component_exs.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be/be_visitor_component_scope.cpp:
        * TAO_IDL/be_include/be_codegen.h:
        * TAO_IDL/be_include/be_visitor_component_scope.h:
        * TAO_IDL/be_include/be_global.h:

          - Factored out code for generating entrypoint declarations
            and definitions.

          - Added mechanism to generate includes of DDS type
            support files for the connector executor.

        Sun Oct 25 17:10:27 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be_include/be_visitor_component_scope.h:
        * TAO_IDL/be/be_visitor_component_scope.cpp:

          Moved these files from the be_visitor_component
          subdirectory, so the visitor would be accessible
          as a base class to be_visitor_ccm_pre_proc. Also
          add override of base class (be_visitor_scope)
          method pre_proces(), to extend the generated
          names of provides and uses methods with a
          prefix of the port or mirrorport name, if any.

        * TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:
        * TAO_IDL/be_include/be_visitor_ccm_pre_proc.h:

          Made class be_visitor_component_scope the base class
          of this visitor, thereby adding support for simple
          ports, mirrorports and porttypes.

        * TAO_IDL/be_include/be_visitor_component.h:
        * TAO_IDL/be/be_visitor_component.cpp:

          Removed relocated files from these file lists.

        Thu Oct 22 20:39:02 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/component_scope.cpp:
        * TAO_IDL/be_include/be_visitor_component/component_scope.h:

          Added code generation for mirror ports.

        * TAO_IDL/be_include/be_visitor_component/facet_svh.h:
        * TAO_IDL/be_include/be_visitor_component/facet_svs.h:
        * TAO_IDL/be/be_visitor_component/facet_svh.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svs.cpp:

          Changed base class to be_visitor_component_scope to
          pull in the mirror port support.

        Thu Oct 22 19:21:26 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/facet_exs.cpp:
        * TAO_IDL/be/be_visitor_component/executor_exh.cpp:
        * TAO_IDL/be/be_visitor_component/executor_exs.cpp:
        * TAO_IDL/be/be_visitor_component/facet_exh.cpp:
        * TAO_IDL/be_include/be_visitor_component/executor_exh.h:
        * TAO_IDL/be_include/be_visitor_component/executor_exs.h:
        * TAO_IDL/be_include/be_visitor_component/facet_exh.h:
        * TAO_IDL/be_include/be_visitor_component/facet_exs.h:

          New files, containing new visitors that handle code
          generation class-by-class in the executor implementation.

        * TAO_IDL/be/be_provides.cpp:
        * TAO_IDL/be/be_attribute.cpp:
        * TAO_IDL/be/be_consumes.cpp:
        * TAO_IDL/be/be_field.cpp:
        * TAO_IDL/be/be_publishes.cpp:
        * TAO_IDL/be/be_uses.cpp:
        * TAO_IDL/be/be_emits.cpp:
        * TAO_IDL/be/be_sequence.cpp:
        * TAO_IDL/be_include/be_field.h:
        * TAO_IDL/be_include/be_publishes.h:
        * TAO_IDL/be_include/be_component.h:
        * TAO_IDL/be_include/be_uses.h:
        * TAO_IDL/be_include/be_provides.h:
        * TAO_IDL/be_include/be_attribute.h:
        * TAO_IDL/be_include/be_emits.h:
        * TAO_IDL/be_include/be_consumes.h:
        * TAO_IDL/be_include/be_sequence.h:

          Add non-virtual override of frontend methods that
          fetch the referenced provides, uses, publishes, emits,
          consumes, field, or base type. This addition concentrates
          the narrowing to the backend type so it need not be
          done over and over in the visitors.

        * TAO_IDL/be/be_visitor_component.cpp:
        * TAO_IDL/be_include/be_visitor_component.h:

          Added new visitor files.

        * TAO_IDL/be/be_interface.cpp:
        * TAO_IDL/be_include/be_interface.h:

          Renamed static method facet_op_attr_decl_helper to
          op_attr_decl_helper, since its use is now more general.

        * TAO_IDL/be_include/be_visitor_component/component_exh.h:
        * TAO_IDL/be_include/be_visitor_component/component_exs.h:
        * TAO_IDL/be/be_visitor_component/component_exh.cpp:
        * TAO_IDL/be/be_visitor_component/component_exs.cpp:

          Split code out of these visitors and distributed it
          among the new visitors.

        * TAO_IDL/be/be_visitor_operation/operation_exs.cpp:
        * TAO_IDL/be/be_visitor_operation/operation_svs.cpp:
        * TAO_IDL/be/be_visitor_interface/interface_svs.cpp:
        * TAO_IDL/be/be_visitor_component/context_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/executor_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/facet_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        * TAO_IDL/be/be_visitor_attribute.cpp:
        * TAO_IDL/be/be_visitor_attribute/attribute.cpp:
        * TAO_IDL/be_include/be_visitor_operation/operation_svs.h:
        * TAO_IDL/be_include/be_visitor_component/component.h:

          Minor or cosmetic changes.

        Wed Oct 21 20:40:45 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_extended_port.cpp:
        * TAO_IDL/be_include/be_visitor_extended_port.h:

          Removed these files, should have been removed in

          Wed Oct 21 14:10:35 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>


        * TAO_IDL/be/be_visitor_component/facet_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/context_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/executor_ex_idl.cpp:
        * TAO_IDL/be_include/be_visitor_component/facet_ex_idl.h:
        * TAO_IDL/be_include/be_visitor_component/context_ex_idl.h:
        * TAO_IDL/be_include/be_visitor_component/executor_ex_idl.h:

          New files, split executor IDL code generation into separate
          visitors for the facet, context and executor classes. Also
          added support for simple extended ports and porttypes.

        * TAO_IDL/be/be_visitor_component.cpp:
        * TAO_IDL/be_include/be_visitor_component.h:

          Added new files to the include lists.

        * TAO_IDL/be/be_util.cpp:
        * TAO_IDL/be_include/be_util.h:

          Moved utility methods to generate nested namespaces
          to this class, so they can be visible to all visitors.

        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/context_svh.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        * TAO_IDL/be/be_visitor_component/context_svs.cpp:
        * TAO_IDL/be/be_visitor_component/component_ex_idl.cpp:
        * TAO_IDL/be/be_visitor_component/component_scope.cpp:
        * TAO_IDL/be_include/be_visitor_component/component_scope.h:
        * TAO_IDL/be_include/be_visitor_component/servant_svh.h:
        * TAO_IDL/be_include/be_visitor_component/context_svh.h:
        * TAO_IDL/be_include/be_visitor_component/servant_svs.h:
        * TAO_IDL/be_include/be_visitor_component/context_svs.h:
        * TAO_IDL/be_include/be_visitor_component/component_ex_idl.h:

          Moved visit method overrides for extended port, mirror port
          and porttype to the base class be_visitor_component_scope.
          In every case so far, the extended port (and eventually the
          mirror port) traversal just fetches the porttype reference
          and visits its scope, calling back the port kind traversal
          methods that happen to be overridden in the original
          visitor, so there's no need to reimplement these methods
          over and over.

        Wed Oct 21 14:10:35 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_extended_port/extended_port_svs.cpp:
        * TAO_IDL/be/be_visitor_extended_port/extended_port.cpp:
        * TAO_IDL/be/be_visitor_extended_port/extended_port_svh.cpp:
        * TAO_IDL/be_include/be_visitor_extended_port/extended_port_svs.h:
        * TAO_IDL/be_include/be_visitor_extended_port/extended_port.h:
        * TAO_IDL/be_include/be_visitor_extended_port/extended_port_svh.h:

          Removed these visitors, better use of polymorphism can be made
          by just implementing their methods in the appropriate
          component visitor.

        * TAO_IDL/be/be_visitor_component/facet_svh.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svs.cpp:
        * TAO_IDL/be_include/be_visitor_component/facet_svh.h:
        * TAO_IDL/be_include/be_visitor_component/facet_svs.h:

          Copied code from removed visitor methods above, and
          removed visit_component() method.

        * TAO_IDL/be/be_visitor_component/component_svh.cpp:
        * TAO_IDL/be/be_visitor_component/component_svs.cpp:

          Spawned facet visitors above with visit_component_scope()
          call, eliminating the extra step of calling visit_component().


        * TAO_IDL/be_include/be_extended_port.h:
        * TAO_IDL/be/be_extended_port.cpp:

          Overloaded port_type() method to return backend-specific
          type, to eliminate many narrowing calls.

        Tue Oct 20 22:55:25 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/component_scope.cpp:
        * TAO_IDL/be_include/be_visitor_component/component_scope.h:

          New files containing a new base class visitor, encapsulating
          a scope visitation method that recurses over the scopes of
          a component's ancestors, if any.

        * TAO_IDL/be/be_visitor_component.cpp:
        * TAO_IDL/be/be_component.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svh.cpp:
        * TAO_IDL/be/be_visitor_component/context_svh.cpp:
        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svs.cpp:
        * TAO_IDL/be/be_visitor_component/context_svs.cpp:
        * TAO_IDL/be_include/be_component.h:
        * TAO_IDL/be_include/be_visitor_component/servant_svh.h:
        * TAO_IDL/be_include/be_visitor_component/facet_svh.h:
        * TAO_IDL/be_include/be_visitor_component/context_svh.h:
        * TAO_IDL/be_include/be_visitor_component/facet_svs.h:
        * TAO_IDL/be_include/be_visitor_component/servant_svs.h:
        * TAO_IDL/be_include/be_visitor_component/context_svs.h:
        * TAO_IDL/be_include/be_visitor_component.h:

          Replaced all occurrences of recursive scope iteration
          with new visitor classes derived from the abstract
          visitor above.

        Mon Oct 19 23:26:07 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svs.cpp:
        * TAO_IDL/be/be_visitor_component/context_svs.cpp:
        * TAO_IDL/be_include/be_visitor_component/facet_svs.h:
        * TAO_IDL/be_include/be_visitor_component/servant_svs.h:
        * TAO_IDL/be_include/be_visitor_component/context_svs.h:

          New files containing new visitors with code factored out
          of class be_visitor_component_svs

        * TAO_IDL/be/be_visitor_component.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svh.cpp:
        * TAO_IDL/be/be_visitor_component/context_svh.cpp:
        * TAO_IDL/be/be_visitor_component/component_svs.cpp:
        * TAO_IDL/be/be_visitor_attribute/component_init.cpp:
        * TAO_IDL/be_include/be_visitor_component/component_svs.h:
        * TAO_IDL/be_include/be_visitor_component.h:

          Changes stemming from the new visitors above.

        Fri Oct 16 19:54:38 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
        * TAO_IDL/be/be_visitor_component/facet_svh.cpp:
        * TAO_IDL/be/be_visitor_component/context_svh.cpp:
        * TAO_IDL/be_include/be_visitor_component/servant_svh.h:
        * TAO_IDL/be_include/be_visitor_component/facet_svh.h:
        * TAO_IDL/be_include/be_visitor_component/context_svh.h:

          New files, new visitors that contain code moved from
          private methods in class be_visitor_component_svh.

        * TAO_IDL/be/be_provides.cpp:

          Fixed bug in code generation.

        * TAO_IDL/be/be_visitor_component.cpp:
        * TAO_IDL/be_include/be_visitor_component.h:

          Added new visitor files.

        * TAO_IDL/be/be_visitor_component/component_exh.cpp:

          Removed debugging output.

        * TAO_IDL/be/be_visitor_component/component_svh.cpp:
        * TAO_IDL/be_include/be_visitor_component/component_svh.h:

          Moved code out to new visitor above.

Thu Oct 29 16:36:53 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:

          Fixed a compilation error on wchar build.

Thu Oct 29 15:34:15 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * bin/tao_orb_tests.lst:
          Disabled running tests 3531, 3647, and 3683 in NO_MESSAGING and
          CORBA_E_MICRO builds since those tests are not built in such
          setups.

Thu Oct 29 14:56:17 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * tests/Bug_3748_Regression/client.cpp:
        * tests/Bug_3748_Regression/server.cpp:
        * tests/Bug_3748_Regression/run_test.pl:
          Temporarily made the output a bit more verbose.

Thu Oct 29 02:12:40 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
        * tao/Monitor/Monitor_Impl.cpp:

          Fixed bugs that did not initialize and set last in Numric data.

        * orbsvcs/tests/Notify/MC/test_monitor.cpp:

          Corrected some expected values.

Wed Oct 28 23:27:02 UTC 2009  Yan Dai  <dai_y@ociweb.com>

        * MPC/config/negotiate_codesets.mpb:
        * MPC/config/notify_monitor_control.mpb:
        * MPC/config/tao_notify_service.mpb:
        * docs/notification/monitor.html:
        * interop-tests/wchar/Client.java:
        * interop-tests/wchar/interop_wchar.mpc:
        * interop-tests/wchar/server.cpp:
        * orbsvcs/Notify_Service/Notify_Service.cpp:
        * orbsvcs/Notify_Service/Notify_Service.mpc:
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.h:
        * orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
        * orbsvcs/orbsvcs/Notify/Builder.cpp:
        * orbsvcs/orbsvcs/Notify/Consumer.h:
        * orbsvcs/orbsvcs/Notify/Consumer.inl:
        * orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h:
        * orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Notify_Service.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Notify_Service.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorConsumerAdmin.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorConsumerAdmin.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxySupplier_T.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorProxySupplier_T.cpp:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorSequenceProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorStructuredProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/MonitorControlExt/NotifyMonitoringExt.idl:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.h:
        * orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
        * orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h:
        * orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/Notify/MC/Structured_Consumer.cpp:
        * orbsvcs/tests/Notify/MC/Structured_Supplier.cpp:
        * orbsvcs/tests/Notify/MC/notify.conf:
        * orbsvcs/tests/Notify/MC/run_test.pl:
        * orbsvcs/tests/Notify/MC/test_monitor.cpp:
        * orbsvcs/tests/Notify/MT_Dispatching/Notify_Structured_Push_Consumer.h:
        * orbsvcs/tests/Notify/MT_Dispatching/Notify_Structured_Push_Consumer.cpp:
        * orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp:
        * tao/Monitor/Monitor_Types.pidl:

          Merged following changes from OCI made between 1.5a p15 and p16 releases.

          - Added consumer-level queueing statistics to the Notification Service MC.
          - Added queue-overflow statistics to the Notification Service MC.
          - Modified Notification Service MC to work in static builds.
          - Corrected an error that caused Notification Service MC statistics to fail
            when -AllocateTaskPerProxy is used.
          - QueueDepth have been changed to measure the number of entries rather than
            attempting unsuccessfully to estimate the amount of memory used by the queue.
          - Added TAO_EXPLICIT_NEGOTIATE_CODESETS macro to improve the ease of including
            optional codeset support to Notify_Service in static builds.

Wed Oct 28 06:09:33 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_other_tests.lst:
          Enabled a few tests for ce/fuzz

        * orbsvcs/tests/Notify/Bug_2926_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3688b_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3252_Regression/run_test.pl:
        * orbsvcs/tests/Notify/Bug_3646b_Regression/run_test.pl
          Converted to the new test framework

Tue Oct 27 16:58:33 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * bin/tao_orb_tests.lst:
          Enabled Bug_3748_Regression in all builds except for single
          threaded.

Mon Oct 26 10:52:01 UTC 2009  Vladimir Zykov  <vladimir.zykov@prismtech.com>

        * orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor.cpp:
        * orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor.h:
        * orbsvcs/orbsvcs/HTIOP/HTIOP_Completion_Handler.cpp:
        * orbsvcs/orbsvcs/HTIOP/HTIOP_Completion_Handler.h:
        * orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor_Impl.cpp:
        * orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor_Impl.h:
          Fixed several memory leaks. Changed HTIOP Acceptor to use
          strategies implemented in HTIOP_Acceptor_Impl.*. This was
          required for proper fix for bug#3748.

        * tao/Acceptor_Impl.cpp:
          Uncommented code for a fix for bug#3748.

Thu Oct 22 10:47:21 UTC 2009  Johnny Willemsen  <jwilllemsen@remedy.nl>

        * TAO_IDL/TAO_IDL_ACE.mwc:
          Only list mpc files here

        * TAO_IDL/be/be_visitor_valuebox/valuebox_ch.cpp:
          Updated a few of the comments we generate

Tue Oct 20 22:58:21 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/TAO_IDL_ACE.mwc:

          Updated in accordance with the changes of

          Thu Oct 15 07:20:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

Tue Oct 20 12:09:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/Concurrency_Service/Concurrency_Service.cpp:
        * orbsvcs/Concurrency_Service/Concurrency_Service.mpc:
        * orbsvcs/CosEvent_Service/CosEvent_Service.cpp:
        * orbsvcs/Event_Service/Event_Service.cpp:
        * orbsvcs/Event_Service/Event_Service.mpc:
        * orbsvcs/Notify_Service/Notify_Service.cpp:
        * orbsvcs/Notify_Service/Notify_Service.mpc:
        * orbsvcs/orbsvcs/Trader/Trading_Loader.cpp:
        * MPC/config/tao_notify_service.mpb:
          Handle -ORBDeamon in these services directly, this is a work around
          until bugzilla 3335 gets resolved. This fixes bugzilla 3656

Mon Oct 19 12:18:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/Makefile.am:
          Add Daemon_Utilities

        * orbsvcs/Naming_Service/Naming_Service.cpp:
        * orbsvcs/Naming_Service/Naming_Service.mpc:
          Use Deamon_Utilities to handle -ORBDeamon in the naming service. This
          is because -ORBDeamon doesn't work for these services due to bugzilla
          3335. This is related to bugzilla 3656

Mon Oct 19 12:13:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/IFR_Service/IFR_Service.mpc:
          Use tao_idl_fe base project

        * orbsvcs/orbsvcs/Daemon_Utilities.cpp:
        * orbsvcs/orbsvcs/Daemon_Utilities.h:
        * orbsvcs/orbsvcs/Svc_Utils.mpc:
          New helper class which checks for -ORBDeamon and when this is specified
          it calls ACE::deamonize()

Mon Oct 19 00:26:06 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * orbsvcs/orbsvcs/Time/TAO_Time_Service_Server.cpp: Another shot
          at trying to fix the memory leaks in the servants.  Thanks to
          Johnny for reporting this.

Fri Oct 16 02:09:47 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/mcpp_tao_yyinput.h:

          Fixed potential signed/unsigned mismatch in macro definition
          for TAO_YY_INPUT.

Thu Oct 15 21:44:22 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/fe/mcpp_tao_yyinput.h:
        * TAO_IDL/fe/fe_extern.cpp:

          Made tao_preproc_buffer_pos an extern int, similar to
          its neighbor tao_preproc_buffer_length, so it can be
          reset to 0 for each new file processed in the same
          location that tao_preproc_buffer_length is reset. The
          failure to reset tao_preproc_buffer_pos was causing
          an error in the CoSMIC-specific backend, which is the
          only one currently processing multiple IDL files in
          a single execution. When reading the first token from
          the 2nd file, the lexer would not be at the top of
          the buffer and would therefore read garbage.

Thu Oct 15 17:02:54 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * orbsvcs/orbsvcs/Time/TAO_Time_Service_Server.cpp
          (universal_time): Replaced TAO_UTO_var with CosTime::UTO_var to
          fix a compile error.  Thanks to Johnny for reporting this.

Thu Oct 15 16:05:25 UTC 2009  Vladimir Zykov  <vz@prismtech.com>

        * bin/tao_other_tests.lst:
          Disabled HTIOP tests on static builds since they need
          dynamic loading for HTIOP library.

        * tao/Acceptor_Impl.cpp:
          Temporarily commented out problematic code until
          HTIOP is fixed.

Thu Oct 15 14:01:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_component/component_ch.cpp:
        * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
          Fixed typo in comment

Thu Oct 15 11:33:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/documentation.html:
          Updated link to the TPG

Thu Oct 15 07:20:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/tao_idl.mpc
        * TAO_IDL/tao_idl_be.mpc
        * TAO_IDL/tao_idl_fe.mpc
          Added seperate mpc files for the back end and the front end library

Wed Oct 14 23:05:35 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * TAO_IDL/contrib/mcpp/support.cpp:
          Now releases ownership of in-memory buffers when retrieved for
          preprocessing.  Fixes a crash when in-memory preprocessor
          was used multiple times per process invocation.

Wed Oct 14 18:31:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/tao_idl.mpc:
          Use the new tao_idl_fe base project

Wed Oct 14 18:26:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * MPC/config/tao_idl_fe.mpb:
          New base project for tao_idl_fe

Wed Oct 14 18:16:38 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/contrib/mcpp/system.cpp:
          Fixed argument not used warning

Wed Oct 14 17:42:38 UTC 2009  Vladimir Zykov  <vz@prismtech.com>

        * tao/Acceptor_Impl.cpp:
          Fixed bug#3748. It fixes a connection handler leak when
          server accepts a connection but then fails to open a connection
          handler.

Wed Oct 14 16:53:09 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_provides.cpp:

          Fixed bug in facet servant class generation.

        * TAO_IDL/be/be_interface.cpp(traverse_inheritance_graph):

          Added "!= 0" to an IF state checking the return value
          of a call to ACE_Unbounded_Queue, which returns an int.

Wed Oct 14 13:51:03 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * orbsvcs/orbsvcs/Time/TAO_Time_Service_Server.cpp (universal_time):
          Changed

          TAO_UTO *uto = 0;

          to

          TAO_UTO_Var uto;

          to avoid a memory leak.  Thanks to Chris Shaw <google at
          cshaw-tech dot co dot uk> for reporting this.

Tue Oct 13 15:54:44 UTC 2009  Vladimir Zykov  <vz@prismtech.com>

        * tests/Bug_3748_Regression/client.cpp:
        * tests/Bug_3748_Regression/Bug_3748_Regression.mpc:
        * tests/Bug_3748_Regression/Hello.cpp:
        * tests/Bug_3748_Regression/Test.idl:
        * tests/Bug_3748_Regression/server.cpp:
        * tests/Bug_3748_Regression/Makefile.am:
        * tests/Bug_3748_Regression/Hello.h:
        * tests/Bug_3748_Regression/README:
        * tests/Bug_3748_Regression/run_test.pl:
        * bin/tao_orb_tests.lst:
          Added a test for bug#3748.

Tue Oct 13 15:36:48 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_extended_port/extended_port_svs.cpp:
        * TAO_IDL/be_include/be_visitor_extended_port/extended_port_svs.h:

          New files, containing new visitor that generates the implementation
          of the facet servant class.

        * TAO_IDL/be/be_provides.cpp:
        * TAO_IDL/be/be_interface.cpp:
        * TAO_IDL/be_include/be_interface.h:
        * TAO_IDL/be_include/be_provides.h:

          Factored common code generation into the appropriate nodes.

        * TAO_IDL/narrow/narrow.cpp:

          Added port types to the group of types that can be
          transformed from scope to decl and vice versa.

        * TAO_IDL/be/be_visitor_extended_port/extended_port.cpp:
        * TAO_IDL/be/be_visitor_extended_port/extended_port_svh.cpp:
        * TAO_IDL/be/be_visitor_component/component_svh.cpp:
        * TAO_IDL/be/be_visitor_component/component_svs.cpp:
        * TAO_IDL/be/be_visitor_extended_port.cpp:
        * TAO_IDL/be_include/be_visitor_extended_port.h:
        * TAO_IDL/be_include/be_visitor_extended_port/extended_port.h:
        * TAO_IDL/be_include/be_visitor_extended_port/extended_port_svh.h:

          Added new files as includes, factored common visitor code into
          base class, other minor changes.

Mon Oct 12 14:03:48 CDT 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

              * TAO version 1.7.4 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: