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

        * MPC/config/taoidldefaults.mpb:
        
          Made ace_idl_dependencies feature a base project
          of taoidldefaults. Setting ace_idl_dependencies=1
          in a .features file will generate idl dependency 
          rules in gnuace makefiles.

Mon Nov  07 10:31:14 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * docs/compilet.html:
        Add option -oE and -oN .

Mon Nov  07 10:10:14 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be/be_produce.cpp:
        * TAO_IDL/be/be_util.cpp:
        * TAO_IDL/be_include/be_global.h:
        * TAO_IDL/be_include/be_util.h:
        Add option -oE: Output directory for the generated CIAO executor files
        and option -oN for not overwrite CIAO executor files.



Sat Nov 05 18:18:13 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3531b_Regression/server.cpp:
          Fixed WChar build problems.

Fri Nov  4 07:28:29 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Options.html:
          Extended documentation for ORBWaitStrategy mt_noupcall

Thu Nov 03 09:51:13 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
        Fixed error in previous commit

Thu Nov 03 08:45:13 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * tests/Bug_3531b_Regression/server.cpp:
          Fixed compile warning on Solaris10 build.

Wed Nov 02 13:30:13 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
          Put narrow in var, use ACE_NEW  with CIAO_FACET


Wed Nov 02 08:30:13 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        Merged changes from Remedy work branch.

        === start changelog ===

        Tue Nov  1 14:29:07 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/executor_exs.cpp:
                  Fixed link issues on windows.

        Tue Nov  1 12:52:03 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/component_ex_idl.cpp:
                * TAO_IDL/be/be_visitor_component/component_exh.cpp:
                * TAO_IDL/be/be_visitor_component/executor_exh.cpp:
                * TAO_IDL/be/be_visitor_component/executor_exs.cpp:
                  Reverted a few of my last changes. An derived executor
                  is not directly derived from its base anymore (on
                  executor IDL level as well as on implementation level).

        Mon Oct 31 15:14:05 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_type.cpp:
                  Fixed new line.

        Fri Oct 28 11:22:03 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * tests/Bug_3768_Regression/TestCallback.cpp:
                * tests/Bug_3768_Regression/TestServer.cpp:
                * tests/Bug_3768_Regression/client.cpp:
                * tests/Bug_3768_Regression/server.cpp:
                  Fuzz.

        Fri Oct 28 10:35:06 UTC 2011  Martin Corino  <mcorino@remedy.nl>

                * tests/Bug_3531b_Regression/server.cpp:

                  Fix for Windoze runtime problem with TSS.

        Fri Oct 28 10:22:48 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_array.cpp:
                * TAO_IDL/be/be_codegen.cpp:
                * TAO_IDL/be/be_component.cpp:
                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_type.cpp:
                * TAO_IDL/be/be_visitor_array/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_array/array_ch.cpp:
                * TAO_IDL/be/be_visitor_array/array_cs.cpp:
                * TAO_IDL/be/be_visitor_component/servant_svh.cpp:
                * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
                * TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp:
                * TAO_IDL/be/be_visitor_exception/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_exception/exception_ch.cpp:
                * TAO_IDL/be/be_visitor_exception/exception_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/amh_rh_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/direct_proxy_impl_sh.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ih.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/smart_proxy_cs.cpp:
                * TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
                * TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp:
                * TAO_IDL/be/be_visitor_operation/direct_proxy_impl_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
                * TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/tie_ss.cpp:
                * TAO_IDL/be/be_visitor_root/root_ch.cpp:
                * TAO_IDL/be/be_visitor_root/root_sth.cpp:
                * TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_sequence/sequence_ch.cpp:
                * TAO_IDL/be/be_visitor_sequence/sequence_cs.cpp:
                * TAO_IDL/be/be_visitor_structure/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_structure/structure_cs.cpp:
                * TAO_IDL/be/be_visitor_template_export.cpp:
                * TAO_IDL/be/be_visitor_typedef/typedef_ci.cpp:
                * TAO_IDL/be/be_visitor_union/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_union/discriminant_ci.cpp:
                * TAO_IDL/be/be_visitor_union_branch/public_ci.cpp:
                * TAO_IDL/be/be_visitor_valuebox/cdr_op_cs.cpp:
                * TAO_IDL/be/be_visitor_valuebox/valuebox_ci.cpp:
                * TAO_IDL/be/be_visitor_valuebox/valuebox_cs.cpp:
                * TAO_IDL/be/be_visitor_valuetype/cdr_op_cs.cpp:
                * TAO_IDL/be/be_visitor_valuetype/field_cdr_cs.cpp:
                * TAO_IDL/be/be_visitor_valuetype/field_cs.cpp:
                * TAO_IDL/be/be_visitor_valuetype/valuetype.cpp:
                * TAO_IDL/be/be_visitor_valuetype/valuetype_ci.cpp:
                * TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:
                * TAO_IDL/be/be_visitor_valuetype/valuetype_init_cs.cpp:
                * TAO_IDL/be/be_visitor_valuetype/valuetype_ss.cpp:
                  Reduced whitespaces in generated code.

                * TAO_IDL/be/be_visitor_interface/tie_ss.cpp:
                  Removed tabs from generated code.


        Fri Oct 28 09:23:52 UTC 2011  Martin Corino  <mcorino@remedy.nl>

                * tests/Bug_3531b_Regression/server.cpp:

                  Fix for Windoze compile problem.

        Fri Oct 28 07:36:43 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/executor_exh.cpp:
                * TAO_IDL/be/be_visitor_component/executor_exs.cpp:
                * TAO_IDL/be/be_visitor_component/executor_private_exh.cpp:
                * TAO_IDL/be/be_visitor_component/facet_exh.cpp:
                * TAO_IDL/be/be_visitor_component/facet_exs.cpp:
                  Fixed compile issues.

        Thu Oct 27 08:05:28 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/executor_exh.cpp:
                * TAO_IDL/be/be_visitor_component/executor_exs.cpp:
                  Removed the overrides of _is_a, marshal and _repository_id since
                  these methods are not needed anymore.

        Wed Oct 26 13:38:02 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/component_ex_idl.cpp:
                * TAO_IDL/be/be_visitor_component/component_exh.cpp:
                * TAO_IDL/be/be_visitor_component/component_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/executor_exs_attr_init.cpp:
                * TAO_IDL/be/be_visitor_component/executor_private_exh.cpp:
                * TAO_IDL/be/be_visitor_component/facet_exh.cpp:
                * TAO_IDL/be/be_visitor_component/facet_exs.cpp:
                  Fixed issues regarding derived components. Derived component
                  were not derived from the base implementation. Instead of deriving
                  from the base implementation, a whole new base executor was
                  generated and still wasn't derived from this. Now there's
                  one base implementation where the derived executor is derived from.

                * TAO_IDL/be/be_visitor_component/executor_ex_idl.cpp:
                  Fixed compile issues when a derived interface supports
                  another interface.

        Mon Oct 24 11:50:33 UTC 2011  Martin Corino  <mcorino@remedy.nl>

                * tao/Connection_Handler.cpp:
                * tao/Leader_Follower.h:
                * tao/Leader_Follower.inl:
                * tao/Leader_Follower.cpp:
                * tao/Wait_On_LF_No_Upcall.h:
                * tao/Wait_On_LF_No_Upcall.cpp:
                * tao/Wait_On_Leader_Follower.h:
                * tao/Wait_Strategy.h:
                * tao/Wait_Strategy.cpp:

                  Implemented a solution for two known problems:
                  a) deadlocking possibility because of upcall handling
                    in client leader threads without abdicating
                    leadership
                  b) inefficient handling of nested upcalls in
                    client leader threads in case MT_NOUPCALL
                    strategy
                  This solution implements leadership abdication
                  (as also proposed by Russell Mora in Bugzilla #3531
                  and David Kinder in Bugzilla #3768) when a client
                  leader thread receives an upcall (triggering a
                  call to Leader_Follower::set_upcall_thread) so
                  any waiting (regular) leader thread could now
                  take over. Futhermore leader abdication for client
                  leader threads is also implemented in case an event
                  causes a client leader thread to wake up and it detects
                  leader threads waiting which are capable to take over
                  leadership.
                  With this out of the way the solution for MT_NOUPCALL
                  could now be optimized with a 'handle deferring'
                  mechanism which allows a client leader thread to
                  temporarily defer an upcall until the client leader
                  thread has abdicated and leadership switches (which
                  should happen almost immediately after the client
                  leader thread deferred the upcall handle(r)).

                * tao/Resume_Handle_Deferred.h:
                * tao/Resume_Handle_Deferred.cpp:

                  Removed these files. Part of previous, non-optimal,
                  MT_NOUPCALL solution.

                * tao/tao.mpc:

                  Removed Resume_Handle_Deferred.{h,cpp}

                * tests/Bug_3531b_Regression/Bug_3531b_Regression.mpc:
                * tests/Bug_3531b_Regression/server.cpp:

                  Fixed compile problems due to TAO version
                  incompatibilities and removed dummy_label
                  restriction.

                * tests/Bug_3768_Regression:
                * tests/Bug_3768_Regression/Bug_3768_Test.mpc:
                * tests/Bug_3768_Regression/Test.idl:
                * tests/Bug_3768_Regression/TestCallback.h:
                * tests/Bug_3768_Regression/TestCallback.cpp:
                * tests/Bug_3768_Regression/TestServer.h:
                * tests/Bug_3768_Regression/TestServer.cpp:
                * tests/Bug_3768_Regression/client.cpp:
                * tests/Bug_3768_Regression/run_test.pl:
                * tests/Bug_3768_Regression/server.cpp:

                  Added new test for Bugzilla #3768.

                * bin/tao_orb_tests.lst

                  Added Bug_3531_Regression, Bug_3531b_Regression and
                  Bug_3768_Regression to regular test runs.

        === end changelog ===

Tue Nov 01 14:34:13 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>
        * On_Demand_Act_Direct_Coll/Collocated_Test.cpp:
        * On_Demand_Act_Direct_Coll/test_i.cpp:
        * On_Demand_Act_Direct_Coll/test_i.h:
        * On_Demand_Act_Direct_Coll/Client_Task.cpp:
        * On_Demand_Act_Direct_Coll/test.idl:
        Clean up test.


Tue Nov 01 10:54:13 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        Merged changes from Remedy SA work branch.

        === start changelog ===

        Mon Oct 31 13:14:04 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

                * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
                Add safe_servant_base in CIAO consumers servant


        Fri Oct 28 11:37:40 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

                * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
                Changes for removing activators for CIAO consumers

        Wed Oct 26 07:18:40 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

                * TAO_IDL/be/be_codegen.cpp:
                Remove include files for ciao servant- and port_activator.

                * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
                Changes for removing activators in CIAO

        === end changelog ===

Thu Oct 27 16:16:09 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * utils/logWalker/HostProcess.h:
        * utils/logWalker/HostProcess.cpp:
        * utils/logWalker/Log.cpp:

          Clean up treatment of connection closure and reuse of handles.

Thu Oct 27 12:13:40 UTC 2011  Simon Massey <sma at prismtech dot com>

        * tao/PI_Server/PI_Server_include.pidl:
        Was duplicating the tao/PortableServer/PortableServer_include.pidl
        #define guard name.

Tue Oct 25 08:10:00 UTC 2011  Marijke Hengstmengel <mhengstmengel@remedy.nl>

        * tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp:
        Solved error in destroying the orb.

Fri Oct 21 14:44:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/IORManipulation/IORManipulation.mpc:
        * tao/IORTable/IORTable.mpc:
        * tao/ZIOP/ZIOP.mpc:
          Generate export files as part of the build

        * tao/IORManipulation/ior_manip_export.h:
        * tao/IORTable/iortable_export.h:
        * tao/ZIOP/ziop_export.h:
          Removed these files.

        * tao/ZIOP/ZIOP.h:
          Doxygen fix

Thu Oct 20 17:34:00 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/POA/On_Demand_Act_Direct_Coll/On_Demand_Act_D_Coll.mpc:
          Don't build this test with minimum corba and CORBA/e

Thu Oct 20 12:50:09 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be_include/be_interface.h:
          Fixed gcc warning

Tue Oct 20 09:30:13 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        Merged changes from Remedy work branch.

        === start changelog ===

        Thu Oct 20 08:42:33 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>

                * On_Demand_Act_Direct_Coll:
                * On_Demand_Act_Direct_Coll/Collocated_Test.cpp:
                * On_Demand_Act_Direct_Coll/Servant_Activator.cpp:
                * On_Demand_Act_Direct_Coll/test_i.cpp:
                * On_Demand_Act_Direct_Coll/Server_Task.h:
                * On_Demand_Act_Direct_Coll/run_test.pl:
                * On_Demand_Act_Direct_Coll/test_i.h:
                * On_Demand_Act_Direct_Coll/Client_Task.cpp:
                * On_Demand_Act_Direct_Coll/Server_Task.cpp:
                * On_Demand_Act_Direct_Coll/Servant_Activator.h:
                * On_Demand_Act_Direct_Coll/Client_Task.h:
                * On_Demand_Act_Direct_Coll/On_Demand_Act_D_Coll.mpc:
                * On_Demand_Act_Direct_Coll/test.idl:
                Test with Servant Activator and thru_poa- and direct collocation.

                * bin/tao_orb_tests.lst
                Added On_Demand_Act_Direct_Coll test.


        Wed Oct 19 14:15:57 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * docs/tutorials/Quoter/RTCORBA/Broker.cpp:
                * docs/tutorials/Quoter/RTCORBA/docs/distributor.html:
                  Fixed typos.

                * orbsvcs/orbsvcs/CosEvent/CEC_TypedProxyPushConsumer.h:
                  Fixed typo.

                * orbsvcs/orbsvcs/CosEvent/CEC_TypedProxyPushConsumer.cpp:
                  ++x instead of x++;

        Tue Oct 18 13:47:54 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/context_svh.cpp:
                * TAO_IDL/be/be_visitor_component/context_svs.cpp:
                  Reverted last changes. Need a more robust implementation to
                  fix re-entrancy

        Tue Oct 18 11:35:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_visitor_exception/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
                * TAO_IDL/be/be_visitor_structure/any_op_cs.cpp:
                  Layout changes to the generated code

        Tue Oct 18 10:51:21 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/context_svh.cpp:
                * TAO_IDL/be/be_visitor_component/context_svs.cpp:
                  Using recursive mutexes instead of normal mutexes.

        Tue Oct 18 10:39:23 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/context_svs.cpp:
                  Fixed a minor indentation issue.

        Tue Oct 18 10:03:32 UTC 2011  Marcel Smit  <msmit@remedy.nl>

                * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
                  Using the container_ variable in a thread safe way.

        Tue Oct 18 07:01:33 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>
                * tests/Collocated_DerivedIF/Collocated_DerivedIF.mpc:
                Changes for duplicate project names.

        Mon Oct 17 13:08:33 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>
                * tests/Collocated_DerivedIF:
                * tests/Collocated_DerivedIF/Client_Task.h:
                * tests/Collocated_DerivedIF/Client_Task.cpp:
                * tests/Collocated_DerivedIF/Collocated_DerivedIF.mpc:
                * tests/Collocated_DerivedIF/Collocated_Test.cpp:
                * tests/Collocated_DerivedIF/Hello.h:
                * tests/Collocated_DerivedIF/Hello.cpp:
                * tests/Collocated_DerivedIF/Server_Task.h:
                * tests/Collocated_DerivedIF/Server_Task.cpp:
                * tests/Collocated_DerivedIF/Test.idl:
                * tests/Collocated_DerivedIFl/run_test.pl:
                * tests/Collocated_DerivedIFl/README:
                Test for -ORBCollocationStrategy direct and interface inheritance

                * tests/Collocated_Best/README:
              Add ID

        Mon Oct 17 12:33:33 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>
                * docs/Options.html
                Added new define TAO_DEFAULT_COLLOCATION_STRATEGY .

        Mon Oct 17 11:41:33 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>
                * docs/Options.html
                Add new ORBCollocationStrategy best .

        Thu Oct 13 12:57:25 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be_include/be_valuetype.h:
                * TAO_IDL/be/be_valuetype.cpp:
                  Removed gen_skel_helper from here, not used at all

                * orbsvcs/tests/Notify/lib/Options_Parser.cpp:
                  Fixed compile error with gcc 4.6

        Thu Oct 13 12:14:00 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/amh_si.cpp:
                  static_cast seems to be required, not sure why, reverting this part
                  to get our branch build green again

        Thu Oct 13 11:15:06 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tao/AnyTypeCode/Any_Impl.cpp:
                  Layout changes

                * tao/LocalObject.cpp:
                * tao/Object.cpp:
                  Log an error before throwing a NO_IMPLEMENT system exception

        Thu Oct 13 07:15:34 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/amh_si.cpp:
                  Further reduction of code being generated in case of interface
                  inheritance

        Thu Oct 13 06:46:25 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_interface.cpp:
                  Fixed problem with num_args that still was generated for arguments

        Wed Oct 12 14:14:32 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_si.cpp:
                  Changed indentation and removed not needed static cast in the
                  generated code

        Wed Oct 12 12:06:33 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>
                * tests/Collocated_NoColl:
                * tests/Collocated_NoColl/Client_Task.h:
                * tests/Collocated_NoColl/Client_Task.cpp:
                * tests/Collocated_NoColl/Collocated_NoColl.mpc:
                * tests/Collocated_NoColl/Collocated_Test.cpp:
                * tests/Collocated_NoColl/Hello.h:
                * tests/Collocated_NoColl/Hello.cpp:
                * tests/Collocated_NoColl/Server_Task.h:
                * tests/Collocated_NoColl/Server_Task.cpp:
                * tests/Collocated_NoColl/Test.idl:
                * tests/Collocated_NoColl/run_test.pl:
                Test for -ORBCollocation NO


        Wed Oct 12 12:02:04 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tao/Collocation_Strategy.h:
                * tao/Invocation_Adapter.cpp:
                  Print the collocation strategy that we have determined

                * tests/Hello/run_test.pl:
                  Added -cdebug that enables ORBDebugLevel 10 for the client

        Wed Oct 12 10:09:25 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_visitor_operation/direct_proxy_impl_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/proxy_impl_xh.cpp:
                * tao/Abstract_Servant_Base.h:
                * tao/PortableServer/Direct_Collocation_Upcall_Wrapper.cpp:
                * tao/PortableServer/Operation_Table.h:
                  Removed the num_args argument for the direct collocation skeleton
                  functions because it was not used at all

        Wed Oct 12 09:55:38 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
                * tao/Object_T.h:
                * tao/Object_T.cpp:
                * tao/PolicyC.cpp:
                * tao/Valuetype/AbstractBase_T.h:
                * tao/Valuetype/AbstractBase_T.cpp:
                  unchecked_narrow method was available with and without repository_id
                  argument but that wasn't used at all. merged both methods into one
                  and updated tao_idl code generation to not generate the repository_id
                  anymore

        Wed Oct 12 09:01:19 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/cdr_op_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                * tao/Object_T.h:
                * tao/Object_T.cpp:
                * tao/PolicyC.cpp:
                * tao/PortableServer/PolicyS.cpp:
                * tao/Valuetype/AbstractBase_T.h:
                * tao/Valuetype/AbstractBase_T.cpp:
                  Removed the collocation opportunity from the narrow calls, the
                  boolean collocated only means whether the servant is collocated or
                  not and shouldn't include the fact whether we have a collocation
                  opportunity or not

        Tue Oct 11 17:38:06 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tests/Collocated_Best/Collocated_Best_Direct/Client_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_NoColl/Client_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_ThuP/Client_Task.cpp:
                  Also check the string that returned

        Tue Oct 11 10:53:17 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tao/Object_T.cpp:
                  Don't use collocation opportunity, just determine whether the
                  object is collocated or not. If this doesn't break any tests, we
                  need to do some more cleanup here

        Tue Oct 11 10:41:02 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tao/CORBANAME_Parser.cpp:
                * tao/Remote_Object_Proxy_Broker.cpp:
                  Enable through poa collocation by default

        Tue Oct 11 07:17:47 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                  Layout changes and just always generate the orb optimize flags

        Mon Oct 10 17:43:50 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tao/IIOP_Connector.cpp:
                * tao/Invocation_Adapter.h:
                * tao/Invocation_Adapter.cpp:
                * tao/ORB_Core.h:
                * tao/ORB_Core.cpp:
                  Moved collocation_strategy from the orb core to the invocation adapter

                * tests/Collocated_ThruP_Sp/Collocated_Test.cpp:
                * tests/Collocated_ThruP_Sp/README:
                * tests/Collocated_ThruP_Sp/Server_Task.cpp:
                * tests/Collocated_ThruP_Sp/run_test.pl:
                * tests/Collocated_ThruP_Sp_Gd/README:
                * tests/Collocated_ThruP_Sp_Gd/run_test.pl:
                  Add -debug to the script, layout changes, missing Id

        Fri Oct  7 10:54:09 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * tao/ORB_Core.cpp:
                  Tweaked collocation strategy a little bit more, for direct we need
                  a servant, not for poa. If we are not collocated, we just go remote and
                  not give an exception

        Fri Oct  7 09:17:36 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                  Layout change to generated code

                * tao/Invocation_Adapter.cpp:
                  Removed the check that servant != 0 before being able to invoke
                  collocated, collocation opportunities test shows a case where this
                  happens

                * tao/ORB_Core.cpp:
                  Added logging before we throw an exception related to collocation
                  mis configuration. If we are collocated with best opportunity without
                  any opportunity we default to remote instead of having an exception.
                  Through poa seems possible without a servant pointer

        Thu Oct  6 09:34:57 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

              * tao/DynamicInterface/DII_Invocation_Adapter.cpp:
              Set collocation_opportunity to TAO_CO_THRU_POA_STRATEGY instead of 0.

        Thu Oct  6 08:56:57 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * orbsvcs/ImplRepo_Service/ImplRepo_Service.mpc:
                * orbsvcs/examples/RtEC/IIOPGateway/RtEC_IIOPGateway.mpc:
                * tests/Oneway_Buffering/Oneway_Buffering.mpc:
                * tests/Policies/Policies.mpc:
                  requires for corba_messaging is already pulled in through the
                  base projects

        Wed Oct  5 18:49:30 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
                * TAO_IDL/be/be_visitor_root/root_ch.cpp:
                * TAO_IDL/be_include/be_global.h:
                * TAO_IDL/be_include/be_interface.h:
                * TAO_IDL/be_include/be_visitor_root/root_ch.h:
                  Even more cleanup of old stuff

        Wed Oct  5 18:42:43 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_home.cpp:
                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
                * TAO_IDL/be_include/be_interface.h:
                * TAO_IDL/be/be_visitor_operation/base_proxy_impl_ch.cpp:
                * TAO_IDL/be/be_visitor_operation/remote_proxy_impl_cs.cpp:
                  More cleanup

                * TAO_IDL/be_include/be_visitor_operation/base_proxy_impl_ch.h:
                * TAO_IDL/be_include/be_visitor_operation/remote_proxy_impl_cs.h:
                  Removed these files.

        Wed Oct  5 18:34:21 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_home.cpp:
                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
                * TAO_IDL/be_include/be_interface.h:
                  Cleanup of very old stuff

                * TAO_IDL/be/be_visitor_operation/ami_cs.cpp:
                  Fixed cpb

                * tao/Valuetype/AbstractBase_T.h:
                * tao/Valuetype/AbstractBase_T.cpp:
                  Updated for changes below

                * tests/CSD_Collocation/svc.conf.csd:
                  Removed deprecated arguments

        Wed Oct  5 13:01:20 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>

                * tests/Collocated_Best/README
                * tests/Collocated_ThruP_Sp/README
                * tests/Collocated_ThruP_Sp_Gd/README
                * tests/Bug_2241_Regression/README
                Add README's

                * bin/tao_orb_tests.lst
                Added Collocated_ThruP_Sp_Gd test.

        Wed Oct  5 12:41:20 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/cdr_op_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/operation.cpp:
                * tao/PolicyC.cpp:
                * tao/Collocation_Strategy.h:
                * tao/PortableServer/PolicyS.cpp:
                Change define TAO_CO_DIRECT_POA,remove POA

                * tao/DynamicInterface/DII_Invocation_Adapter.h:
                * tao/DynamicInterface/DII_Invocation_Adapter.cpp:
                * tao/Messaging/Asynch_Invocation_Adapter.h:
                * tao/Messaging/Asynch_Invocation_Adapter.cpp:
                * tao/Valuetype/AbstractBase_Invocation_Adapter.h:
                * tao/Valuetype/AbstractBase_Invocation_Adapter.cpp:
                Change proxybroker for collocation opertunities

                * tao/ORB_Core.cpp:
                * tao/Invocation_Adapter.cpp:
                Extended collocation_strategy with opertunities
                Handling of BEST strategy and checking other strategies.

                * tests/Collocated_Best/Collocated_Best_Direct/run_test.pl:



        Wed Oct  5 08:35:20 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

                * TAO_IDL/be/be_codegen.cpp:
                * TAO_IDL/be/be_component.cpp:
                * TAO_IDL/be/be_interface.cpp:
                * TAO_IDL/be/be_visitor_interface.cpp:
                * TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
                * TAO_IDL/be/be_visitor_interface/cdr_op_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ci.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/ami_cs.cpp:
                * TAO_IDL/be/be_visitor_operation/direct_proxy_impl_ss.cpp:
                * TAO_IDL/be/be_visitor_operation/operation.cpp:
                * TAO_IDL/be/be_visitor_root/root_ch.cpp:
                * TAO_IDL/be/be_visitor_valuetype/valuetype_sh.cpp:
                * TAO_IDL/be_include/be_component.h:
                * TAO_IDL/be_include/be_interface.h:
                * TAO_IDL/be_include/be_visitor_interface.h:
                * tao/Abstract_Servant_Base.h:
                * tao/Collocated_Invocation.h:
                * tao/Collocated_Invocation.cpp:
                * tao/Collocation_Strategy.h:
                * tao/Invocation_Adapter.h:
                * tao/Invocation_Adapter.inl:
                * tao/Invocation_Adapter.cpp:
                * tao/ORB_Core.h:
                * tao/ORB_Core.cpp:
                * tao/Object.h:
                * tao/Object.cpp:
                * tao/Object_T.h:
                * tao/Object_T.cpp:
                * tao/PolicyC.h:
                * tao/PolicyC.inl:
                * tao/PolicyC.cpp:
                * tao/PortableServer/Direct_Collocation_Upcall_Wrapper.h:
                * tao/PortableServer/PolicyS.h:
                * tao/PortableServer/PolicyS.cpp:
                * tao/PortableServer/Servant_Base.h:
                * tao/PortableServer/Servant_Base.cpp:
                * tao/tao.mpc:
                  Rough reimplementatin of handling of collocated call. A pre condition
                  for using collocation is having a servant pointer. The core of TAO
                  also couldn't detect whether through poa collocation is requested
                  without having -Gp being enabled. The collocated proxy broker (cpb)
                  was only used for direct collocation, but didn't contain any interface
                  specific code. TAO_IDL now generated a collocation opportunity to
                  indicate which support it did generate, when the core than has
                  a servant pointer it can determine which opportunities it has an
                  what is requested.

                  As side effect we get smaller generated code, less complexity, and
                  better performance

                  This has to be finished but committing it right now.

                * TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_sh.cpp:
                * TAO_IDL/be/be_visitor_interface/strategized_proxy_broker_ss.cpp:
                * TAO_IDL/be_include/be_visitor_interface/strategized_proxy_broker_sh.h:
                * TAO_IDL/be_include/be_visitor_interface/strategized_proxy_broker_ss.h:
                * tao/Collocation_Proxy_Broker.h:
                * tao/Collocation_Proxy_Broker.cpp:
                  Removed these files.

        Wed Oct  5 07:15:46 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>

                * tao/PortableServer/Collocated_Object_Proxy_Broker.cpp:
                  Add prefix TAO_COLLOCATION_ to Collocated strategy Thru_POA

        Tue Oct  4 16:36:46 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                Clean up debug text

                * tao/Invocation_Adapter.cpp:
                * tao/ORB_Core.h:
                * tao/ORB_Core.cpp:
                Change Exception for collocated errors.
                Add prefix TAO_COLLOCATION_ to Collocated strategies DIrect, Best and Thru_POA
                Add TAO_DEFAULT_COLLOCATION_STRATEGY

                * tao/orbconf.h:
                Add TAO_DEFAULT_COLLOCATION_STRATEGY

                * tests/Bug_2241_Regression/run_test.pl:
                * tests/Collocated_Best/Collocated_Best_Direct/Collocated_Best_Direct.mpc:
                * tests/Collocated_Best/Collocated_Best_NoColl/Hello.cpp:
                * tests/Collocated_Best/Collocated_Best_ThuP/Collocated_Best_ThruP.mpc:

                * tests/Collocated_ThruP_Sp_Gd:
                * tests/Collocated_ThruP_Sp_Gd/Client_Task.h:
                * tests/Collocated_ThruP_Sp_Gd/Client_Task.cpp:
                * tests/Collocated_ThruP_Sp_Gd/Collocated_Test.cpp:
                * tests/Collocated_ThruP_Sp_Gd/Collocated_ThruP_Sp_Gd.mpc:
                * tests/Collocated_ThruP_Sp_Gd/Hello.h:
                * tests/Collocated_ThruP_Sp_Gd/Hello.cpp:
                * tests/Collocated_ThruP_Sp_Gd/Server_Task.h:
                * tests/Collocated_ThruP_Sp_Gd/Server_Task.cpp:
                * tests/Collocated_ThruP_Sp_Gd/Test.idl:
                * tests/Collocated_ThruP_Sp_Gd/run_test.pl:
                New test for combination Sp and Gd

        Mon Oct  3 15:33:35 UTC 2011  Marijke Hengstmengel  <hengstmengel_m@remedy.nl>

                * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
                Change dead to 0 for Collocation_Proxy_Broker

                * tao/Collocation_Strategy.h:
                * tao/Invocation_Adapter.cpp:
                * tao/ORB_Core.h:
                * tao/ORB_Core.cpp:
                Add exceptions for situations if not used -Gp or used -Sp idl flags and
                ORBCollocationStrategies Direct and Thru_Poa. Add strategie BEST.
                To do: add prefix COLLOCATION_.

                * tests/Bug_2241_Regression/Client_Task.cpp:
                * tests/Bug_2241_Regression/Hello.cpp:
                * tests/Bug_2241_Regression/run_test.pl:
                Catch expected exceptions.

                * tests/Collocated_Best:
                * tests/Collocated_Best/Collocated_Best_Direct:
                * tests/Collocated_Best/Collocated_Best_Direct/Client_Task.h:
                * tests/Collocated_Best/Collocated_Best_Direct/Client_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_Direct/Collocated_Best_Direct.mpc:
                * tests/Collocated_Best/Collocated_Best_Direct/Collocated_Test.cpp:
                * tests/Collocated_Best/Collocated_Best_Direct/Hello.h:
                * tests/Collocated_Best/Collocated_Best_Direct/Hello.cpp:
                * tests/Collocated_Best/Collocated_Best_Direct/Server_Task.h:
                * tests/Collocated_Best/Collocated_Best_Direct/Server_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_Direct/Test.idl:
                * tests/Collocated_Best/Collocated_Best_Direct/run_test.pl:

                * tests/Collocated_Best/Collocated_Best_NoColl:

                * tests/Collocated_Best/Collocated_Best_NoColl/Client_Task.h:
                * tests/Collocated_Best/Collocated_Best_NoColl/Client_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_NoColl/Collocated_Best_NoColl.mpc:
                * tests/Collocated_Best/Collocated_Best_NoColl/Collocated_Test.cpp:
                * tests/Collocated_Best/Collocated_Best_NoColl/Hello.h:
                * tests/Collocated_Best/Collocated_Best_NoColl/Hello.cpp:
                * tests/Collocated_Best/Collocated_Best_NoColl/Server_Task.h:
                * tests/Collocated_Best/Collocated_Best_NoColl/Server_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_NoColl/Test.idl:
                * tests/Collocated_Best/Collocated_Best_NoColl/run_test.pl:

                * tests/Collocated_Best/Collocated_Best_ThuP:

                * tests/Collocated_Best/Collocated_Best_ThuP/Client_Task.h:
                * tests/Collocated_Best/Collocated_Best_ThuP/Client_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_ThuP/Collocated_Best_ThruP.mpc:
                * tests/Collocated_Best/Collocated_Best_ThuP/Collocated_Test.cpp:
                * tests/Collocated_Best/Collocated_Best_ThuP/Hello.h:
                * tests/Collocated_Best/Collocated_Best_ThuP/Hello.cpp:
                * tests/Collocated_Best/Collocated_Best_ThuP/Server_Task.h:
                * tests/Collocated_Best/Collocated_Best_ThuP/Server_Task.cpp:
                * tests/Collocated_Best/Collocated_Best_ThuP/Test.idl:
                * tests/Collocated_Best/Collocated_Best_ThuP/run_test.pl:

                * tests/Collocated_ThruP_Sp:

                * tests/Collocated_ThruP_Sp/Client_Task.h:
                * tests/Collocated_ThruP_Sp/Client_Task.cpp:
                * tests/Collocated_ThruP_Sp/Collocated_Test.cpp:
                * tests/Collocated_ThruP_Sp/Collocated_ThruP_Sp.mpc:
                * tests/Collocated_ThruP_Sp/Hello.h:
                * tests/Collocated_ThruP_Sp/Hello.cpp:
                * tests/Collocated_ThruP_Sp/Server_Task.h:
                * tests/Collocated_ThruP_Sp/Server_Task.cpp:
                * tests/Collocated_ThruP_Sp/Test.idl:
                * tests/Collocated_ThruP_Sp/run_test.pl:
                tests for COLLOCATION_DIRECT. To do: add readme

        === end changelog ===

Mon Oct 10 08:48:51 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO version 2.0.5 released.

Fri Oct  7 10:45:41 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * docs/tutorials/Quoter/Event_Service/stock_list.txt:
        * docs/tutorials/Quoter/Event_Service/stock_list1.txt:
        * docs/tutorials/Quoter/Event_Service/stock_list2.txt:

        * docs/tutorials/Quoter/Simple/ImprovedServer/stock_list.txt:

        * orbsvcs/examples/Notify/MC/TkMonitor/modules/GeometryStore.pm:
        * orbsvcs/examples/Notify/MC/TkMonitor/modules/MonitorControl.pm:

        * performance-tests/Protocols/set_lksctp_params.sh:
        * performance-tests/Protocols/set_sctp_params.sh:
        * performance-tests/Protocols/show_lksctp_params.sh:
        * performance-tests/Protocols/show_sctp_params.sh:
          Fuzz

Fri Oct  7 09:45:58 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * docs/PP_Memory_Management.txt:
        * orbsvcs/tests/FT_App/replica.cmd:
        * orbsvcs/tests/InterfaceRepo/Union_Forward_Test/README.txt:
        * orbsvcs/tests/Log/README:
        * orbsvcs/tests/Time/README:
          Fuzz.

Fri Oct  7 09:12:23 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * DevGuideExamples/AMH/README:
        * DevGuideExamples/AMH_AMI/README:
        * DevGuideExamples/BiDirectionalGIOP/README:
        * DevGuideExamples/GettingStarted/README:
        * DevGuideExamples/Messaging/AMIcallback/README:
        * DevGuideExamples/Messaging/RelativeRoundtripTimeout/README:
        * DevGuideExamples/Multithreading/GracefulShutdown/README:
        * DevGuideExamples/Multithreading/README:
        * DevGuideExamples/Multithreading/Reactive/README:
        * DevGuideExamples/Multithreading/ThreadPerConnection/README:
        * DevGuideExamples/Multithreading/ThreadPool/README:
        * DevGuideExamples/PortableInterceptors/Auth/README:
        * DevGuideExamples/PortableInterceptors/IOR/README:
        * DevGuideExamples/PortableInterceptors/PICurrent/README:
        * DevGuideExamples/PortableInterceptors/SimpleCodec/README:
        * DevGuideExamples/RTCORBA/README:
        * DevGuideExamples/SmartProxies/README:
        * DevGuideExamples/ValueTypes/Bank/README:
        * DevGuideExamples/ValueTypes/Messenger/README:
        * DevGuideExamples/readme.txt:
        * README:
        * examples/AMI/FL_Callback/README:
        * examples/Buffered_AMI/README:
        * examples/Buffered_Oneways/README:
        * examples/CSD_Strategy/ThreadPool/README:
        * examples/CSD_Strategy/ThreadPool2/README:
        * examples/CSD_Strategy/ThreadPool3/README:
        * examples/CSD_Strategy/ThreadPool4/README:
        * examples/CSD_Strategy/ThreadPool6/README:
        * examples/Load_Balancing/README:
        * examples/OBV/Typed_Events/README:
        * examples/RTCORBA/Activity/README:
        * interop-tests/wchar/README:
        * orbsvcs/DevGuideExamples/EventServices/OMG_Basic/README:
        * orbsvcs/DevGuideExamples/EventServices/OMG_SupplierSideEC/README:
        * orbsvcs/DevGuideExamples/EventServices/OMG_TypedEC/README:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Basic/README:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Federated/README:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Filter/README:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/README:
        * orbsvcs/DevGuideExamples/ImplRepo/README:
        * orbsvcs/DevGuideExamples/NamingService/Messenger/README:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Client/README:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/README:
        * orbsvcs/DevGuideExamples/NamingService/Naming_Server/README:
        * orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger/README:
        * orbsvcs/DevGuideExamples/NotifyService/EventSequence/README:
        * orbsvcs/DevGuideExamples/NotifyService/Filtering/README:
        * orbsvcs/DevGuideExamples/NotifyService/Messenger/README:
        * orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/README:
        * orbsvcs/DevGuideExamples/NotifyService/QoSProperties/README:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/README:
        * orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC/README:
        * orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/README:
        * orbsvcs/DevGuideExamples/Security/PolicyControllingApp/README:
        * orbsvcs/DevGuideExamples/Security/SecurityUnawareApp/README:
        * orbsvcs/DevGuideExamples/ValueTypes/Notify/readme.txt:
        * orbsvcs/FT_ReplicationManager/README:
        * orbsvcs/ImplRepo_Service/README.txt:
        * orbsvcs/LoadBalancer/README:
        * orbsvcs/TAO_Service/README:
        * orbsvcs/examples/CosEC/Factory/README:
        * orbsvcs/examples/CosEC/RtEC_Based/README:
        * orbsvcs/examples/CosEC/RtEC_Based/bin/README:
        * orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/README:
        * orbsvcs/examples/CosEC/Simple/README:
        * orbsvcs/examples/Log/Basic/README:
        * orbsvcs/examples/Log/Event/README:
        * orbsvcs/examples/Log/Notify/README:
        * orbsvcs/examples/Log/README:
        * orbsvcs/examples/Log/RTEvent/README:
        * orbsvcs/examples/Notify/Federation/Agent/README:
        * orbsvcs/examples/Notify/Federation/SpaceCraft/README:
        * orbsvcs/examples/Notify/Filter/README:
        * orbsvcs/examples/Notify/Lanes/README:
        * orbsvcs/examples/Notify/MC/TkMonitor/README:
        * orbsvcs/examples/Notify/README:
        * orbsvcs/examples/Notify/Subscribe/README:
        * orbsvcs/examples/Notify/ThreadPool/README:
        * orbsvcs/examples/RtEC/IIOPGateway/README:
        * orbsvcs/examples/RtEC/MCast/README:
        * orbsvcs/examples/RtEC/Schedule/README:
        * orbsvcs/examples/RtEC/Simple/README:
        * orbsvcs/examples/Security/README:
        * orbsvcs/examples/Security/SecurityLevel1/README:
        * orbsvcs/orbsvcs/HTIOP/README.txt:
        * orbsvcs/orbsvcs/Naming/README:
        * orbsvcs/tests/AVStreams/Component_Switching/README:
        * orbsvcs/tests/AVStreams/Latency/README:
        * orbsvcs/tests/AVStreams/Multicast/README:
        * orbsvcs/tests/AVStreams/Multicast_Full_Profile/README:
        * orbsvcs/tests/AVStreams/README:
        * orbsvcs/tests/AVStreams/Simple_Three_Stage/README:
        * orbsvcs/tests/AVStreams/mpeg/README.uav:
        * orbsvcs/tests/Bug_1334_Regression/README:
        * orbsvcs/tests/Bug_1393_Regression/README:
        * orbsvcs/tests/Bug_1395_Regression/README:
        * orbsvcs/tests/Bug_1436_Regression/README:
        * orbsvcs/tests/Bug_1437_Regression/README:
        * orbsvcs/tests/Bug_2137_Regression/README:
        * orbsvcs/tests/Bug_2247_Regression/README:
        * orbsvcs/tests/Bug_2248_Regression/README:
        * orbsvcs/tests/Bug_2285_Regression/README:
        * orbsvcs/tests/Bug_2287_Regression/README:
        * orbsvcs/tests/Bug_2615_Regression/README:
        * orbsvcs/tests/Bug_2709_Regression/README:
        * orbsvcs/tests/Bug_2777_Regression/README:
        * orbsvcs/tests/Bug_3215_Regression/README:
        * orbsvcs/tests/Bug_3216_Regression/README:
        * orbsvcs/tests/CosEvent/Timeout/README:
        * orbsvcs/tests/EC_Custom_Marshal/README:
        * orbsvcs/tests/EC_MT_Mcast/README:
        * orbsvcs/tests/EC_Mcast/README:
        * orbsvcs/tests/EC_Multiple/README:
        * orbsvcs/tests/EC_Throughput/README:
        * orbsvcs/tests/Event/Mcast/AddrServer/README:
        * orbsvcs/tests/Event/Mcast/RTEC_MCast_Federated/README:
        * orbsvcs/tests/Event/Mcast/Two_Way/README:
        * orbsvcs/tests/Event/Performance/README:
        * orbsvcs/tests/Event/lib/README:
        * orbsvcs/tests/FaultTolerance/IOGR/README:
        * orbsvcs/tests/ImplRepo/Bug_2604_Regression/README:
        * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/ReadMe.txt:
        * orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/ReadMe.txt:
        * orbsvcs/tests/InterfaceRepo/Bug_3174_Regression/ReadMe.txt:
        * orbsvcs/tests/InterfaceRepo/IFR_Self_Recursive_IDL_Test/README:
        * orbsvcs/tests/InterfaceRepo/Union_Forward_Test/README.txt:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/README:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/README:
        * orbsvcs/tests/Log/Basic_Log_Test/README:
        * orbsvcs/tests/Notify/lib/README:
        * orbsvcs/tests/Notify/performance-tests/scripts/1_Path_Period_0_Lanes/README:
        * orbsvcs/tests/Notify/performance-tests/scripts/3_Path_Period_10ms_Lanes/README:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/README:
        * orbsvcs/tests/Redundant_Naming/README:
        * orbsvcs/tests/Security/Big_Request/README:
        * orbsvcs/tests/Security/Bug_1107_Regression/README:
        * orbsvcs/tests/Security/Bug_2908_Regression/README:
        * orbsvcs/tests/Security/Callback/README:
        * orbsvcs/tests/Security/Secure_Invocation/README:
        * orbsvcs/tests/Security/cert/README:
        * orbsvcs/tests/Security/ssliop_CSD/README:
        * orbsvcs/tests/Simple_Naming/README:
        * orbsvcs/tests/unit/Notify/MC/MonitorControlExt/README:
        * performance-tests/Cubit/README:
        * performance-tests/Latency/README:
        * performance-tests/README:
        * performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/README:
        * performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/README:
        * performance-tests/Sequence_Latency/Sequence_Operations_Time/README.txt:
        * tests/Any/Recursive/README:
        * tests/BiDirectional_DelayedUpcall/README:
        * tests/Big_AMI/README:
        * tests/Bug_1330_Regression/README:
        * tests/Bug_1551_Regression/README:
        * tests/Bug_1627_Regression/README:
        * tests/Bug_2119_Regression/README:
        * tests/Bug_2122_Regression/README:
        * tests/Bug_2124_Regression/README:
        * tests/Bug_2126_Regression/README:
        * tests/Bug_2134_Regression/README:
        * tests/Bug_2183_Regression/README:
        * tests/Bug_2186_Regression/README:
        * tests/Bug_2289_Regression/README:
        * tests/Bug_2375_Regression/README:
        * tests/Bug_2399_Regression/README:
        * tests/Bug_2419_Regression/README:
        * tests/Bug_2424_Regression/README:
        * tests/Bug_2429_Regression/README:
        * tests/Bug_2549_Regression/README:
        * tests/Bug_2669_Regression/README:
        * tests/Bug_2791_Regression/README:
        * tests/Bug_2805_Regression/README.txt:
        * tests/Bug_2935_Regression/README.txt:
        * tests/Bug_3068_Regression/README:
        * tests/Bug_3276_Regression/README:
        * tests/Bug_3299_Regression/README:
        * tests/Bug_3311_Regression/README:
        * tests/Bug_3513_Regression/README:
        * tests/Bug_3524_Regression/README:
        * tests/Bug_3574_Regression/README:
        * tests/Bug_3575_Regression/README:
        * tests/Bug_3632_Regression/README:
        * tests/Bug_3676_Regression/README:
        * tests/Bug_3743_Regression/README:
        * tests/Bug_3748_Regression/README:
        * tests/Bug_3755_Ext_Regression/README:
        * tests/Bug_3790_Regression/README:
        * tests/Bug_3821_Regression/README:
        * tests/Bug_3827_Regression/README:
        * tests/Bug_3837_Regression/README:
        * tests/Bug_3926_Regression/README:
        * tests/Bug_3941_Regression/README:
        * tests/CSD_Strategy_Tests/TP_Test_4/README:
        * tests/CodeSets/simple/README:
        * tests/Collocation_Opportunities/README:
        * tests/DIOP/README:
        * tests/DSI_Gateway/README:
        * tests/FL_Cube/README:
        * tests/Faults/README:
        * tests/HandleExhaustion/README:
        * tests/Hello/README:
        * tests/ICMG_Any_Bug/README:
        * tests/IPV6/README:
        * tests/Leader_Followers/README:
        * tests/LongUpcalls/README:
        * tests/MProfile/README:
        * tests/MProfile_Connection_Timeout/README:
        * tests/MT_BiDir/README:
        * tests/MT_Client/README:
        * tests/MT_Server/README:
        * tests/MT_Timeout/README:
        * tests/Multiple/README:
        * tests/Multiple_Inheritance/README:
        * tests/Muxed_GIOP_Versions/README:
        * tests/Muxing/README:
        * tests/Native_Exceptions/README:
        * tests/Nested_Event_Loop/README:
        * tests/No_Server_MT_Connect_Test/README:
        * tests/OBV/Any/README:
        * tests/OBV/Supports/README:
        * tests/ORB_Local_Config/Bug_1459/README:
        * tests/ORB_Local_Config/Bug_3049/README:
        * tests/ORB_Local_Config/README:
        * tests/ORB_Local_Config/Two_DLL_ORB/README:
        * tests/ORB_destroy/README:
        * tests/Object_Loader/README:
        * tests/Objref_Sequence_Test/README:
        * tests/OctetSeq/README:
        * tests/POA/Adapter_Activator/README:
        * tests/POA/Bug_1592_Regression/README:
        * tests/POA/DSI/README:
        * tests/POA/Explicit_Activation/Alt_Resources/README:
        * tests/POA/Explicit_Activation/README:
        * tests/POA/FindPOA/README:
        * tests/POA/README:
        * tests/POA/Reference_Counted_Servant/README:
        * tests/POA/RootPOA/README:
        * tests/Policies/README:
        * tests/Portable_Interceptors/Benchmark/README:
        * tests/Portable_Interceptors/Dynamic/README:
        * tests/Portable_Interceptors/ForwardRequest/README:
        * tests/Portable_Interceptors/IORInterceptor/README:
        * tests/Portable_Interceptors/ORB_Shutdown/README:
        * tests/Portable_Interceptors/PICurrent/README:
        * tests/Portable_Interceptors/Request_Interceptor_Flow/README:
        * tests/RTScheduling/Current/README:
        * tests/RTScheduling/DT_Spawn/README:
        * tests/RTScheduling/Thread_Cancel/README:
        * tests/RTScheduling/VoidData/README:
        * tests/Smart_Proxies/Collocation/README:
        * tests/Timed_Buffered_Oneways/README:
        * tests/Timeout/README:
        * tests/TransportCurrent/Framework/README:
        * tests/Xt_Stopwatch/README:
          Fuzz: Missing Id-tags.

Fri Oct  7 07:55:46 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * examples/PluggableUDP/tests/Performance/svc.conf.xml:
        * examples/PluggableUDP/tests/SimplePerformance/svc.conf.xml:
        * examples/Simple/time-date/client.conf.xml:
        * examples/Simple/time-date/svc.conf.xml:
        * interop-tests/wchar/build.xml:
        * orbsvcs/Concurrency_Service/svc.conf.xml:
        * orbsvcs/ImplRepo_Service/repository.xml:
        * orbsvcs/Notify_Service/svc.conf.xml:
        * orbsvcs/TAO_Service/svc.conf.xml:
        * orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/svc.conf.xml:
        * orbsvcs/tests/CosEvent/Basic/svc.pull.conf.xml:
        * orbsvcs/tests/Event/Basic/control.conf.xml:
        * orbsvcs/tests/Event/UDP/svc.conf.xml:
        * orbsvcs/tests/FaultTolerance/IOGR/svc.conf.xml:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/windows.conf.xml:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/windows.conf.xml:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/windows.conf.xml:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Manage_Object_Group/windows.conf.xml:
        * orbsvcs/tests/Miop/McastHello/client.conf.xml:
        * orbsvcs/tests/Miop/McastHello/server.conf.xml:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/listener.conf.xml:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/lookup.conf.xml:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/reactive.conf.xml:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/svc.conf.xml:
        * orbsvcs/tests/Security/MT_IIOP_SSL/client.conf.xml:
        * orbsvcs/tests/Security/MT_IIOP_SSL/server.conf.xml:
        * orbsvcs/tests/Security/MT_SSLIOP/client.conf.xml:
        * orbsvcs/tests/Security/MT_SSLIOP/server.conf.xml:
        * orbsvcs/tests/Security/ssliop_corbaloc/client.conf.xml:
        * orbsvcs/tests/Security/ssliop_corbaloc/server.conf.xml:
        * orbsvcs/tests/unit/Notify/MC/MonitorManager/svc.conf.xml:
        * performance-tests/RTCorba/Thread_Pool/native-svc.conf.xml:
        * performance-tests/RTCorba/Thread_Pool/svc.conf.xml:
        * performance-tests/Throughput/svc.conf.xml:
        * tests/AMI/exclusive.conf.xml:
        * tests/AMI/muxed.conf.xml:
        * tests/AMI/server.conf.xml:
        * tests/AMI_Timeouts/svc.conf.xml:
        * tests/Bug_3251_Regression/Bug_3251.conf.xml:
        * tests/Bug_3801_Regression/exclusive.conf.xml:
        * tests/Bug_3801_Regression/muxed.conf.xml:
        * tests/ORB_Local_Config/Service_Dependency/Service_Config_Test.conf.xml:
        * tests/POA/Explicit_Activation/alternate.conf.xml:
        * tests/RTCORBA/Banded_Connections/svc.conf.xml:
        * tests/RTCORBA/Client_Propagated/svc.conf.xml:
        * tests/RTCORBA/Client_Protocol/svc.conf.xml:
        * tests/RTCORBA/Collocation/continuous.conf.xml:
        * tests/RTCORBA/Collocation/svc.conf.xml:
        * tests/RTCORBA/Destroy_Thread_Pool/continuous.conf.xml:
        * tests/RTCORBA/Dynamic_Thread_Pool/continuous.conf.xml:
        * tests/RTCORBA/Dynamic_Thread_Pool/svc.conf.xml:
        * tests/RTCORBA/Explicit_Binding/svc.conf.xml:
        * tests/RTCORBA/Linear_Priority/svc.conf.xml:
        * tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf.xml:
        * tests/RTCORBA/Persistent_IOR/continuous.conf.xml:
        * tests/RTCORBA/Policy_Combinations/svc.conf.xml:
        * tests/RTCORBA/Priority_Inversion_With_Bands/continuous.conf.xml:
        * tests/RTCORBA/Priority_Inversion_With_Bands/svc.conf.xml:
        * tests/RTCORBA/Server_Declared/continuous.conf.xml:
        * tests/RTCORBA/Server_Declared/svc.conf.xml:
        * tests/RTCORBA/Server_Protocol/server_iiop.conf.xml:
        * tests/RTCORBA/Server_Protocol/server_reverse.conf.xml:
        * tests/RTCORBA/Server_Protocol/server_reverse_nt.conf.xml:
        * tests/RTCORBA/Server_Protocol/server_shmiop.conf.xml:
        * tests/RTCORBA/Server_Protocol/server_uiop.conf.xml:
        * tests/RTCORBA/Thread_Pool/continuous.conf.xml:
        * tests/RTCORBA/Thread_Pool/svc.conf.xml:
          Fuzz: No Id-tags.

Wed Sep 28 12:46:14 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/BiDir_GIOP/BiDir_GIOP.mpc:
        * tao/CodecFactory/CodecFactory.mpc:
          Added the generated export files so that they get installed

Wed Sep 28 12:42:14 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Generic_Sequence_T.h:
        * tao/Valuetype/AbstractBase.h:
        * tao/Valuetype/Valuetype_Adapter_Impl.h:
          Doxygen changes

        * tao/Object.cpp:
        * tao/PortableServer/Basic_SArgument_T.h:
        * tao/DynamicAny/DynAny_i.h:
          Layout changes

Wed Sep 28 12:39:12 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/AV/AVStreams_i.h:
        * orbsvcs/tests/Notify/lib/Peer_T.cpp:
          Layout changes and cleanup

Wed Sep 28 12:37:05 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Persistent_Grid/Grid_i.h:
        * examples/Simple/bank/AccountManager_i.h:
        * examples/Simple/echo/Echo_i.h:
        * examples/Simple/grid/Grid_i.h:
        * examples/Simple/time/Time_i.h:
          Layout changes, remove workarounds

Wed Sep 28 12:35:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_array/cdr_op_cs.cpp:
        * TAO_IDL/be/be_visitor_interface/cdr_op_cs.cpp:
          Layout changes to the generated code

Wed Sep 28 12:34:31 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_3683_Regression/Echo_i.h:
          Remove workaround

        * tests/IDL_Test/typedef.idl:
        * tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h:
          Layout changes

Wed Sep 28 12:31:44 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/HandleExhaustion/run_test.pl:
          Added missing GetFile

Wed Sep 28 11:39:31 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * tests/Bug_2241_Regression:
        * tests/Bug_2241_Regression/Bug_2241_Regression.mpc:
        * tests/Bug_2241_Regression/Client_Task.h:
        * tests/Bug_2241_Regression/Client_Task.cpp:
        * tests/Bug_2241_Regression/Collocated_Test.cpp:
        * tests/Bug_2241_Regression/Hello.h:
        * tests/Bug_2241_Regression/Hello.cpp:
        * tests/Bug_2241_Regression/Server_Task.h:
        * tests/Bug_2241_Regression/Server_Task.cpp:
        * tests/Bug_2241_Regression/Test.idl:
        * tests/Bug_2241_Regression/run_test.pl:
        * bin/tao_orb_tests.lst:
        New test for '-ORBCollocationStrategy direct'

Sun Sep 25 17:02:27 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Parallel_Connect_Strategy/run_test.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

Wed Sep 21 13:40:30 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/MT_Client/run_test.pl:
          Removed conf files that are not in the repo at all

Tue Sep 20 06:43:33 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/AMI/run_mt_noupcall.pl:
        * tests/MT_Client/run_test.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

Tue Sep 20 06:27:42 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Oneway_Send_Timeouts/run_test.pl:
          Fixed runtime issues

Fri Sep 16 12:01:35 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * DevGuideExamples/Multithreading/ThreadPerConnection/run_test.pl:
        * tests/CSD_Collocation/run_test.pl:
        * tests/Connection_Purging/run_test.pl:
        * tests/Hang_Shutdown/run_test.pl:
        * tests/LongUpcalls/run_test.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

Fri Sep 16 07:55:50 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Faults/run_test.pl:
        * tests/Faults/run_test_pp.pl:
        * tests/MT_NoUpcall_Client_Leader/run_test.pl:
        * tests/POA/EndpointPolicy/run_test_dh.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

Fri Sep 16 07:37:12 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Connect_Strategy_Test/run_test.pl:
        * tests/MT_BiDir/run_test.pl:
        * tests/MT_Server/run_test.pl:
        * tests/No_Server_MT_Connect_Test/run_test.pl:
        * tests/RTCORBA/Server_Protocol/run_test.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

Fri Sep 16 07:02:26 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Bug_3163_Regression/run_test.pl:
        * tests/Bug_3630_Regression/run_test.pl:
        * tests/Bug_3683_Regression/run_test.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

        * tests/Bug_3630_Regression/server.cpp:
          Added \n

Thu Sep 15 07:42:01 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/AMI/run_test.pl:
        * tests/Bug_2183_Regression/run_test.pl:
        * tests/Bug_2186_Regression/run_test.pl:
        * tests/Bug_2935_Regression/run_test.pl:
        * tests/Bug_3068_Regression/run_test.pl:
        * tests/Leader_Followers/run_test.pl:
        * tests/Oneway_Send_Timeouts/run_test.pl:
          Copy only those configuration files that are needed by the targets.
          We don't want to solve this in the test framework; the script knows
          which configuration files should be copied.

Wed Sep 14 07:34:56 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/TAO_Internal.cpp:
          When we can't find the service config file output a message that
          has error in it, so that the scoreboard parser also detects those
          errors

Wed Sep  7 18:07:24 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/CodecFactory/CodecFactory.h:
        * tao/CodecFactory/CodecFactory.cpp:
        * tao/CodecFactory/CodecFactory.mpc:
          export file is now generated by tao_idl

        * tao/CodecFactory/codecfactory_export.h:
          Removed this file.

Wed Sep  7 17:31:31 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/BiDir_GIOP/BiDirGIOP.h:
        * tao/BiDir_GIOP/BiDirGIOP.cpp:
        * tao/BiDir_GIOP/BiDirPolicy_Validator.h:
        * tao/BiDir_GIOP/BiDir_GIOP.mpc:
          export file is now generated by tao_idl

        * tao/BiDir_GIOP/bidirgiop_export.h:
          Removed this file.

Wed Sep  7 17:27:01 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * MPC/modules/IDLHelper.pm:
        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be/be_util.cpp:
        * TAO_IDL/be_include/be_global.h:
          Added skel_export_file and stub_export_file to define an explicit
          filename for these export files that are different than the stub/skel
          export_include which could be a full path. This fixes bugzilla 3980

Tue Sep  6 11:45:16 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/PortableServer/Servant_Base.h:
          Fixed problem with versioned namespace support

Tue Sep  6 08:14:42 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/AnyTypeCode/Any.h:
        * tao/AnyTypeCode/Any.cpp:
          Added support for std::wstring

Tue Sep  6 08:06:46 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/PortableServer/Basic_SArguments.h:
          Added support for std::wstring

Thu Sep  1 09:59:22 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/AnyTypeCode/AnyTypeCode_Adapter_Impl.h:
        * tao/AnyTypeCode/AnyTypeCode_Adapter_Impl.cpp:
        * tao/AnyTypeCode_Adapter.h:
        * tao/Basic_Arguments.h:
          Added support for std::wstring

Thu Sep  1 06:31:53 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/PortableServer/BD_String_SArgument_T.cpp:
        * tao/PortableServer/Basic_SArgument_T.cpp:
        * tao/PortableServer/Fixed_Array_SArgument_T.cpp:
        * tao/PortableServer/Fixed_Size_SArgument_T.cpp:
        * tao/PortableServer/Object_SArgument_T.cpp:
        * tao/PortableServer/Special_Basic_SArgument_T.cpp:
        * tao/PortableServer/UB_String_SArgument_T.cpp:
        * tao/PortableServer/Var_Array_SArgument_T.cpp:
        * tao/PortableServer/Var_Size_SArgument_T.cpp:
        * tao/PortableServer/Vector_SArgument_T.cpp:
          Fixed coverity issues

Mon Aug 29 07:20:29 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * orbsvcs/orbsvcs/ESF/ESF_Copy_On_Write.cpp:
          Fixed runtime issues in orbsvcs.

        * tests/OBV/ValueBox/client.cpp:
          Fixed runtime issues.

Fri Aug 26 11:09:12 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * DevGuideExamples/ValueTypes/Bank/client.cpp:
        * examples/AMH/Sink_Server/client.cpp:
        * examples/Event_Comm/supplier.cpp:
        * examples/Simple/bank/server.cpp:
        * examples/Simple/echo/server.cpp:
        * examples/Simple/grid/server.cpp:
        * examples/Simple/time/server.cpp:
        * orbsvcs/orbsvcs/ESF/ESF_Copy_On_Write.cpp:
        * orbsvcs/tests/Bug_2112_Regression/client.cpp:
        * orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/client.cpp:
        * orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/test_idl.cpp:
        * orbsvcs/tests/InterfaceRepo/Bug_3174_Regression/test_idl.cpp:
        * orbsvcs/tests/InterfaceRepo/Union_Forward_Test/client.cpp:
        * performance-tests/Sequence_Latency/Sequence_Operations_Time/test.cpp:
        * tests/Bug_1383_Regression/SimpleClient.cpp:
        * tests/Bug_3506_Regression/client.cpp:
        * tests/Bug_3548_Regression/client.cpp:
        * tests/CDR/allocator.cpp:
        * tests/Connection_Failure/client.cpp:
        * tests/DII_AMI_Forward/client.cpp:
        * tests/DynAny_Test/driver.cpp:
        * tests/OBV/ValueBox/client.cpp:
        * tests/POA/EndpointPolicy/server.cpp:
        * tests/POA/Loader/server.cpp:
        * tests/Param_Test/driver.cpp:
        * tests/Portable_Interceptors/AdvSlot/client.cpp:
        * tests/Portable_Interceptors/AdvSlot/server.cpp:
        * tests/Portable_Interceptors/AdvSlotDblCpy/client.cpp:
        * tests/Portable_Interceptors/AdvSlotExt/client.cpp:
        * tests/RTScheduling/Scheduling_Interceptor/test_client.cpp:
        * tests/RTScheduling/VoidData/test_client.cpp:
        * tests/Sequence_Unit_Tests/bounded_object_reference_sequence_ut.cpp:
        * tests/Sequence_Unit_Tests/bounded_sequence_cdr_ut.cpp:
        * tests/Sequence_Unit_Tests/bounded_string_sequence_ut.cpp:
        * tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp:
        * tests/Sequence_Unit_Tests/object_reference_sequence_element_ut.cpp:
        * tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp:
        * tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp:
        * tests/Sequence_Unit_Tests/unbounded_object_reference_sequence_ut.cpp:
        * tests/Sequence_Unit_Tests/unbounded_octet_sequence_nocopy_ut.cpp:
        * tests/Sequence_Unit_Tests/unbounded_octet_sequence_ut.cpp:
        * tests/Sequence_Unit_Tests/unbounded_sequence_cdr_ut.cpp:
        * tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp:
        * tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp:
        * utils/nslist/nsadd.cpp:
        * utils/nslist/nsdel.cpp:
        * utils/nslist/nslist.cpp:
          Fixed issues regarding exceptions which are not caught.

Tue Aug 23 18:19:01 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
          Prepared for next release

Tue Aug 23 19:01:44 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO version 2.0.4 released.

Mon Aug 22 15:39:52 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * orbsvcs/tests/Security/BiDirectional/ssl/ca.pem:
        * orbsvcs/tests/Security/BiDirectional/ssl/client-cert.pem:
        * orbsvcs/tests/Security/BiDirectional/ssl/client-key.pem:
        * orbsvcs/tests/Security/BiDirectional/ssl/server-cert.pem:
        * orbsvcs/tests/Security/BiDirectional/ssl/server-key.pem:

          Regenerated these certs so the test works.

Thu Aug 11 18:55:10 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * NEWS:

          Edited existing entry about generation of argument traits.

Mon Aug  8 14:26:30 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
          Don't generate arg traits if they are disabled

Mon Aug  8 09:01:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be/be_util.cpp:
        * TAO_IDL/be/be_visitor_connector/connector_dds_exh.cpp:
        * TAO_IDL/be/be_visitor_root/root_ch.cpp:
        * TAO_IDL/be/be_visitor_root/root_cs.cpp:
        * TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
        * TAO_IDL/be/be_visitor_structure/cdr_op_cs.cpp:
        * TAO_IDL/be/be_visitor_structure/structure_cs.cpp:
        * TAO_IDL/be/be_visitor_traits.cpp:
        * TAO_IDL/be_include/be_global.h:
          Added support for -Scdr which suppresses the CDR streaming operations.
          This safes footprint when we are using IDL defined types, but these
          are not intended to be send through remote CORBA interfaces

Thu Aug  4 15:47:33 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * TAO-INSTALL.html:

          Added note about building for Android.

        * tests/Sequence_Unit_Tests/string_sequence_tester.hpp:

          Additional compiler macro added to build on Android.

          Thanks to Trevor Fields of OCI for doing the heavy lifting
          for porting TAO to Android.

Sat Jul 23 22:40:39 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * TAO_IDL/be/be_visitor_arg_traits.cpp:

          Fuzz fix.

Sat Jul 23 14:55:15 UTC 2011  Phil Mesnier <mesnier_p@ociweb.com>

        * TAO/tao/IFR_Client/IFR_Client.mpc

          Fixed dependencies on new IFR_Client_Skel project so it
          builds on windows.

Wed Jul 20 18:53:29 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/ast/ast_interface:

          Removed an unnecessary 'seen' flag for arg traits, it was
          not only unneeded, but also pulling in #includes in the
          *S.h file that wouldn't compile if the IDL contains
          valuetypes and no non-local interfaces.

Tue Jul 19 13:25:22 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_arg_traits.cpp:

          Added global scope double colons to code generation of
          arg traits template plate arg names. Some builds had
          confusion, thinking that the name was scoped inside the
          TAO namespace.

        * TAO_IDL/be/be_codegen.cpp:

          Added #include generation check for valuetypes/valueboxes
          when generating the proper arg traits base class
          includes.

Mon Jul 18 20:02:59 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_arg_traits.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be_include/be_global.h:

          Added new option to IDL compiler -Gata, which
          generates arg traits instantiations using the
          AnyTypeCode_Adapter version of the last template
          parameter (if Any support is not suppressed). The
          option is used when processing IDL for the
          sequences of basic types, so their arg traits
          may be included by application whether or not
          the application is suppressing Any support.

        * tao/tao.mpc:

          Added the new option to the basic sequence PIDL files.

        * tao/AnyTypeCode/AnyTypeCode_Adapter_Impl.h:
        * tao/AnyTypeCode/AnyTypeCode_Adapter_Impl.cpp:
        * tao/AnyTypeCode_Adapter.h:

          Added new overloads to the AnyTypeCode_Adapter and
          AnyTypeCode_Adapter_Impl classes, with the basic
          type sequences as the second argument.

        * docs/compiler.html:

          Documented the new IDL compiler option.

Mon Jul 18 19:01:17 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * MPC/config/ifr_client_skel.mpb:

          Fix suggested by Johnny to get build order correct on windows.

Mon Jul 18 18:22:55 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * orbsvcs/IFR_Service/IFR_Service.cpp:

          Fixed the include path for IFR_ComponentS.h

Mon Jul 18 06:37:53 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * TAO_IDL/be/be_codegen.cpp:
          Changed server header start and end generation in case of
          skeleton file suppression (-SS) to fix versioning bracketing
          problems as a result of changed arg traits generation.

Fri Jul 15 12:46:14 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_root/root_sh.cpp:
        * TAO_IDL/be/be_visitor_root/root_ch.cpp:

          Added missing check for suppress option before generating
          skeleton arg traits, and made layout changes to both stub
          and skeleton root visitors.

Fri Jul 15 11:59:37 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Monitor/Monitor.h:
          Fixed compile error

Fri Jul 15 09:00:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_util.cpp:
          Fixed layout of one of the help messages

Fri Jul 15 08:33:20 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * MPC/config/ifr_client_skel.mpb:
        * MPC/config/ifrservice.mpb:
        * orbsvcs/IFR_Service/IFR_Service.mpc:
        * orbsvcs/orbsvcs/IFRService.mpc:
        * orbsvcs/orbsvcs/IFRService/ComponentContainer_i.h:
        * orbsvcs/orbsvcs/IFRService/ComponentDef_i.h:
        * orbsvcs/orbsvcs/IFRService/EventPortDef_i.h:
        * orbsvcs/orbsvcs/IFRService/HomeDef_i.h:
        * orbsvcs/orbsvcs/IFRService/IFR_Service_Utils.cpp:
        * orbsvcs/orbsvcs/IFRService/IRObject_i.h:
        * orbsvcs/orbsvcs/IFRService/ProvidesDef_i.cpp:
        * tao/IFR_Client/IFR_Client.mpc:
        * tao/IFR_Client/ifr_client_skel_export.h:
          Generate a new IFR_Client_skel library that contains all
          skeletons for the IFR_Client. This is generated under TAO/tao/IFR_Client
          and than used by the IFRService

        * orbsvcs/orbsvcs/IFRService/IFR_BaseS.h:
        * orbsvcs/orbsvcs/IFRService/IFR_BaseS.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_BaseS.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_BaseS_T.h:
        * orbsvcs/orbsvcs/IFRService/IFR_BaseS_T.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_BaseS_T.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_BasicS.h:
        * orbsvcs/orbsvcs/IFRService/IFR_BasicS.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_BasicS.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_BasicS_T.h:
        * orbsvcs/orbsvcs/IFRService/IFR_BasicS_T.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_BasicS_T.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_ComponentsS.h:
        * orbsvcs/orbsvcs/IFRService/IFR_ComponentsS.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_ComponentsS.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_ComponentsS_T.h:
        * orbsvcs/orbsvcs/IFRService/IFR_ComponentsS_T.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_ComponentsS_T.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_ExtendedS.h:
        * orbsvcs/orbsvcs/IFRService/IFR_ExtendedS.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_ExtendedS.cpp:
        * orbsvcs/orbsvcs/IFRService/IFR_ExtendedS_T.h:
        * orbsvcs/orbsvcs/IFRService/IFR_ExtendedS_T.inl:
        * orbsvcs/orbsvcs/IFRService/IFR_ExtendedS_T.cpp:
          Removed these files, it are generated files that shouldn't be in
          the repository

Fri Jul 15 07:29:03 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/orbsvcs/IFRService/AliasDef_i.h:
        * orbsvcs/orbsvcs/IFRService/ArrayDef_i.h:
        * orbsvcs/orbsvcs/IFRService/InterfaceAttrExtension_i.h:
        * orbsvcs/orbsvcs/IFRService/LocalInterfaceDef_i.h:
        * orbsvcs/orbsvcs/IFRService/ModuleDef_i.h:
        * orbsvcs/orbsvcs/IFRService/NativeDef_i.h:
        * orbsvcs/orbsvcs/IFRService/OperationDef_i.h:
        * orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.h:
        * orbsvcs/orbsvcs/IFRService/ProvidesDef_i.h:
        * orbsvcs/orbsvcs/IFRService/PublishesDef_i.h:
        * orbsvcs/orbsvcs/IFRService/Repository_i.h:
        * orbsvcs/orbsvcs/IFRService/SequenceDef_i.h:
        * orbsvcs/orbsvcs/IFRService/StringDef_i.h:
        * orbsvcs/orbsvcs/IFRService/StructDef_i.h:
        * orbsvcs/orbsvcs/IFRService/TypedefDef_i.h:
        * orbsvcs/orbsvcs/IFRService/ValueMemberDef_i.h:
        * orbsvcs/orbsvcs/IFRService/WstringDef_i.h:
          Layout changes

Fri Jul 15 07:11:02 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/IFR_Client/IFR_Client_Adapter_Impl.h:
        * tao/IFR_Client/IFR_Client_Adapter_Impl.cpp:
          Layout changes, removed hardcrafted arg_trait

Thu Jul 14 19:49:02 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/PolicyC.cpp:
        * tao/PortableServer/PolicyS.cpp:

          Removed arg traits instantiations and #includes from these
          hand_crafted files.

        * tao/tao.mpc:

          - Added IDL compiler option to suppress Any operator
            generation for Policy_Forward.pidl.

          - Added new IDL compiler option (see below) to
            suppress arg traits generation for ParameterMode.pidl.

        * tests/Param_Test/Param_Test.mpc:

          Added header and inline file lists.

        * TAO_IDL/include/idl_global.h:
        * TAO_IDL/be/be_attribute.cpp:
        * TAO_IDL/be/be_visitor_arg_traits.cpp:
        * TAO_IDL/be/be_valuetype.cpp:
        * TAO_IDL/be/be_visitor_operation/arglist.cpp:
        * TAO_IDL/be/be_visitor_operation/operation_cs.cpp:
        * TAO_IDL/be/be_visitor_operation/operation.cpp:
        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_visitor_valuebox.cpp:
        * TAO_IDL/be/be_visitor_union.cpp:
        * TAO_IDL/be/be_visitor_structure.cpp:
        * TAO_IDL/be/be_visitor_root/root_cs.cpp:
        * TAO_IDL/be/be_visitor_root/root_sh.cpp:
        * TAO_IDL/be/be_visitor_root/root_ss.cpp:
        * TAO_IDL/be/be_visitor_root/root_ch.cpp:
        * TAO_IDL/be/be_type.cpp:
        * TAO_IDL/be/be_visitor_valuebox/valuebox_ch.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
        * TAO_IDL/be/be_valuebox.cpp:
        * TAO_IDL/be/be_decl.cpp:
        * TAO_IDL/be/be_util.cpp:
        * TAO_IDL/be/be_visitor_sequence.cpp:
        * TAO_IDL/be/be_visitor_array/array_ch.cpp:
        * TAO_IDL/be/be_argument.cpp:
        * TAO_IDL/be/be_visitor_valuetype.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be/be_visitor_enum/enum_ch.cpp:
        * TAO_IDL/be/be_sequence.cpp:
        * TAO_IDL/be/be_operation.cpp:
        * TAO_IDL/be/be_enum.cpp:
        * TAO_IDL/be/be_string.cpp:
        * TAO_IDL/ast/ast_interface.cpp:
        * TAO_IDL/ast/ast_interface_fwd.cpp:
        * TAO_IDL/be_include/be_visitor_root/root_ch.h:
        * TAO_IDL/be_include/be_visitor_root/root_cs.h:
        * TAO_IDL/be_include/be_visitor_root/root_sh.h:
        * TAO_IDL/be_include/be_visitor_root/root_ss.h:
        * TAO_IDL/be_include/be_codegen.h:
        * TAO_IDL/be_include/be_util.h:
        * TAO_IDL/be_include/be_decl.h:
        * TAO_IDL/be_include/be_global.h:
        * TAO_IDL/util/utl_global.cpp:

          - Moved arg traits generation targets from the stub
            and skeleton source files to the corresponding
            header files. This checking addresses [BUGID:3969].

          - Many changes to #include file generation logic,
            since arg traits generation is now triggered from the IDL
            declaration and not from its use as an operation argument.

          - Added a new command line option -Sat to suppress
            the generation of arg tratis altogether.

        * tao/docs/compiler.html:

          Added the new IDL compiler command line option to the table.

Tue Jul 12 13:15:24 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_codegen.cpp:

          Added code generation of a preprocessor version check that
          will output an error message if the generated file's version
          doesn't match the IDL compiler's (TAO's) version. This fix
          closes [BUGID:3979].

Mon Jul 11 14:55:57 UTC 2011  Adam Mitz  <mitza@ociweb.com>

        * TAO_IDL/be/be_util.cpp:

          Removed usage text for command line options that were
          removed a long time ago.

Fri Jul  8 14:57:31 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_arg_traits.cpp:

          Relocated the spot where a typedef node is marked as having
          its arg traits instantiation generated. There is a use case
          where the old location gave rise to infinite recursion and
          a stack overflow. Thanks to Johnny Willemsen
          <jwillemsen@remedy.nl> for uncovering the bug and submitting
          example IDL. This fix closes [BUGID:3978].

        * tests/IDL_Test/interface.cpp:

          Added the example IDL above to the test.

Fri Jul  8 06:39:27 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/PortableServer/Servant_Base.h:
          Added some typedefs useful for template meta programming

Mon Jul  4 11:02:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
        * orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
          Fixed Coverity error

        * orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.cpp:
          Fixed mismatched delete as reported by Coverity

Wed Jun 29 12:44:21 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Advanced/TO-DO:
        * examples/Advanced/ch_21/client.cpp:
        * examples/Quoter/Quoter_i.cpp:
        * examples/Simple/bank/README:
          Cleanup

Wed Jun 29 11:27:19 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/OBV/Simple/Client_i.h:
        * tests/OBV/Simple/OBV_impl.h:
        * tests/OBV/Simple/Server_i.h:
        * tests/OBV/Simple/Server_i.cpp:
        * tests/OBV/Simple/server.cpp:
          Cleanup

Wed Jun 29 11:13:02 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/AnyTypeCode/TypeCode_Case_T.h:
        * tao/Basic_Argument_T.h:
        * tao/Invocation_Adapter.h:
        * tao/Bounded_Basic_String_Sequence_T.h:
        * tao/Generic_Sequence_T.h:
          Layout changes

        * tao/Object.cpp:
          Fixed coverity errors

        * tao/Incoming_Message_Stack.h:
          Removed borland workaround

Wed Jun 29 10:47:05 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/ORB_Core.cpp:
          Fixed coverity errors

Mon Jun 27 10:28:15 UTC 2011  Martin Corino  <mcorino@remedy.nl>

        * tao/CDR.h:
        * tao/CDR.inl:
          Added CDR streaming ops for std::wstring and helper classes
          and streaming ops to extract bounded strings into std strings.

Thu Jun 23 12:39:08 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/*.doxygen:
          Disable html help, seems doxygen now disables the search option
          when html help is enabled

Thu Jun 23 13:46:08 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO version 2.0.3 released.

Wed Jun 22 18:25:21 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/AnyTypeCode/Any_Basic_Impl.cpp:
        * tao/AnyTypeCode/Any_Basic_Impl.h:
        * tests/LongDouble/client.cpp:
        * tests/IDL_Test/constants.idl:
        * tests/IDL_Test/union.idl:
        * TAO_IDL/include/ast_expression.h:
        * TAO_IDL/be/be_helper.cpp:
        * TAO_IDL/be/be_visitor_constant/constant_cs.cpp:
        * TAO_IDL/be/be_visitor_constant/constant_ch.cpp:
        * TAO_IDL/ast/ast_constant.cpp:
        * TAO_IDL/ast/ast_expression.cpp:
        * NEWS:

          Reverted all changes related to support for long double
          constants in IDL.

Wed Jun 22 15:15:05 UTC 2011  Phil Mesnier  <mesnier_p@ociweb.com>

        * orbsvcs/orbsvcs/Naming/Naming_Server.cpp:

          Ensure the naming service can use the CSD_TP strategy if necessary.
          Since the naming service is single threaded, it can become a
          bottleneck when there is very heavy use.

          The need for this change may also indicate a problem with the
          CSD strategy implementation. It appears that the thread pool at
          least is only initialized when the POA Manager is activated. If
          A POA is created with using a POA Manager already in the active
          state, the TP is not initialized. Alternatively this might be a
          problem with the POA creation, that create_POA can be supplied a
          POA Manager that is already been activated, and the new POA is
          itself instantly active.

Wed Jun 22 14:49:09 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/tests/Security/BiDirectional/run_test.pl:
        * orbsvcs/tests/Security/Big_Request/run_test.pl:
          Added -clog and -slog to write a separate client and server log file
          to disk

Tue Jun 21 13:07:15 UTC 2011  Olli Savia  <ops@iki.fi>

        * TAO_IDL/util/utl_err.cpp:
          Fixed typo.

Thu Jun 16 15:30:23 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/IDL_Test/constants.idl:

          Guarded out the long double constant set to the double max
          value, for MinGW, which outputs a floating point error
          for this value.

Thu Jun 16 14:00:53 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tests/LongDouble/client.cpp:

          Replaced '==' with equivalent '<' and '>' expressions for
          a long double, some platoforms warn that '==' shouldn't
          be used with floating point types.

Thu Jun 16 07:56:54 UTC 2011  Simon Massey  <sma at prismtech dot com>

        * orbsvcs/tests/Security/Big_Request/cacert.pem:
        * orbsvcs/tests/Security/Big_Request/client_cert.pem:
        * orbsvcs/tests/Security/Big_Request/client_key.pem:
        * orbsvcs/tests/Security/Big_Request/server_cert.pem:
        * orbsvcs/tests/Security/Big_Request/server_key.pem:

          Updated certificates - Missed one.

Wed Jun 15 14:36:54 UTC 2011  William R. Otte  <wotte@dre.vanderbilt.edu>

        * orbsvcs/tests/Security/Bug_1107_Regression/cacert.pem:
        * orbsvcs/tests/Security/Bug_1107_Regression/client_cert.pem:
        * orbsvcs/tests/Security/Bug_1107_Regression/client_key.pem:
        * orbsvcs/tests/Security/Bug_1107_Regression/server_cert.pem:
        * orbsvcs/tests/Security/Bug_1107_Regression/server_key.pem:
        * orbsvcs/tests/Security/Callback/cacert.pem:
        * orbsvcs/tests/Security/Callback/client_cert.pem:
        * orbsvcs/tests/Security/Callback/client_key.pem:
        * orbsvcs/tests/Security/Callback/server_cert.pem:
        * orbsvcs/tests/Security/Callback/server_key.pem:
        * orbsvcs/tests/Security/Crash_Test/cacert.pem:
        * orbsvcs/tests/Security/Crash_Test/client_cert.pem:
        * orbsvcs/tests/Security/Crash_Test/client_key.pem:
        * orbsvcs/tests/Security/Crash_Test/server_cert.pem:
        * orbsvcs/tests/Security/Crash_Test/server_key.pem:
        * orbsvcs/tests/Security/Null_Cipher/cacert.pem:
        * orbsvcs/tests/Security/Null_Cipher/client_cert.pem:
        * orbsvcs/tests/Security/Null_Cipher/client_key.pem:
        * orbsvcs/tests/Security/Null_Cipher/server_cert.pem:
        * orbsvcs/tests/Security/Null_Cipher/server_key.pem:
        * orbsvcs/tests/Security/Secure_Invocation/cacert.pem:
        * orbsvcs/tests/Security/Secure_Invocation/client_cert.pem:
        * orbsvcs/tests/Security/Secure_Invocation/client_key.pem:
        * orbsvcs/tests/Security/Secure_Invocation/server_cert.pem:
        * orbsvcs/tests/Security/Secure_Invocation/server_key.pem:
        * orbsvcs/tests/Security/mixed_security_test/cacert.pem:
        * orbsvcs/tests/Security/mixed_security_test/client_cert.pem:
        * orbsvcs/tests/Security/mixed_security_test/client_key.pem:
        * orbsvcs/tests/Security/mixed_security_test/server_cert.pem:
        * orbsvcs/tests/Security/mixed_security_test/server_key.pem:

          Updated certificates.

        * orbsvcs/tests/Security/cert:
        * orbsvcs/tests/Security/cert/DOCCA:
        * orbsvcs/tests/Security/cert/DOCCA/cacert.pem:
        * orbsvcs/tests/Security/cert/DOCCA/certs:
        * orbsvcs/tests/Security/cert/DOCCA/index.txt:
        * orbsvcs/tests/Security/cert/DOCCA/index.txt.attr:
        * orbsvcs/tests/Security/cert/DOCCA/index.txt.attr.old:
        * orbsvcs/tests/Security/cert/DOCCA/index.txt.old:
        * orbsvcs/tests/Security/cert/DOCCA/newcerts:
        * orbsvcs/tests/Security/cert/DOCCA/newcerts/1000.pem:
        * orbsvcs/tests/Security/cert/DOCCA/newcerts/1001.pem:
        * orbsvcs/tests/Security/cert/DOCCA/private:
        * orbsvcs/tests/Security/cert/DOCCA/private/cakey.pem:
        * orbsvcs/tests/Security/cert/DOCCA/serial:
        * orbsvcs/tests/Security/cert/DOCCA/serial.old:
        * orbsvcs/tests/Security/cert/README:
        * orbsvcs/tests/Security/cert/cacert.pem:
        * orbsvcs/tests/Security/cert/client_cert.pem:
        * orbsvcs/tests/Security/cert/client_key.pem:
        * orbsvcs/tests/Security/cert/openssl.cnf:
        * orbsvcs/tests/Security/cert/server_cert.pem:
        * orbsvcs/tests/Security/cert/server_key.pem:

          Added the full CA information used to sign the above certs.  These certs
          are good for the next 20 years.

        * orbsvcs/tests/Security/Secure_Invocation/client_key_nopasswd.pem:
        * orbsvcs/tests/Security/Secure_Invocation/server_key_nopasswd.pem:
        * orbsvcs/tests/Security/mixed_security_test/client_key_nopasswd.pem:
        * orbsvcs/tests/Security/mixed_security_test/server_key_nopasswd.pem:

          Removed these files.

Wed Jun 15 08:54:50 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
          Reverted 3971 change, broke some CCM tests

Tue Jun 14 13:12:05 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_valuetype.cpp:
        * TAO_IDL/be/be_valuetype.h:
        * TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
        * TAO_IDL/be/be_visitor_valuetype/valuetype_ci.cpp:

          Added code generation for AMH exception holder's default
          constructor to initialize the CORBA::Exception* member
          to 0. This fix closes [BUGID:3970].

Tue Jun 14 12:18:00 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
          Only the methods for operations in local interfaces need to be
          virtual. This reduces footprint and improves performance, this
          fixes bugzilla 3971

Fri Jun 10 19:08:19 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_helper.cpp:

          Used the recently added ACE_LONG_DOUBLE_FORMAT_SPECIFIER_ASCII
          to generate long double literals portably.

Fri Jun 10 12:41:00 UTC 2011  Simon Massey <sma at prismtech dot com>

        * tests/MT_NoUpcall_Client_Leader/run_test.pl:

          This test wasn't capable of exiting with an error, it was
          always successful even if the test failed.

        * tests/MT_NoUpcall_Client_Leader/client.cpp:
        * tests/MT_NoUpcall_Client_Leader/server.cpp:

          The mutex needed to be locked prior to worker thread creation
          and the stop_condition.wait condition, then released after,
          otherwise worker threads can signal prior to the server/client
          being ready to deal with the event. Client needed to
          pause before the issuing the shutdown request to the server
          so as to allow it to finish its own worker thread.

        * tests/MT_NoUpcall_Client_Leader/police.cpp:

          The stat test in the loop was occationally detecting the creation
          of the ior file before the contents had been written. Moving
          the sleep after the stat and before the test allows the contents to
          be output before allowing the client/server to use the ior it
          has just detected.

        * tests/MT_NoUpcall_Client_Leader/chatter.cpp:
        * tests/MT_NoUpcall_Client_Leader/chatter.h:

          Need to mutex control access to the two nrequests_ and nreplies_
          counts, as the client has two concurrent worker threads competing
          to update them, these counts also need to be volitile.

Thu Jun  9 19:38:48 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_helper.cpp:

          Changed print format of long double literal to be conditional,
          based on the existence of a native 16-byte long double, in
          order to eliminate warnings of rhs and lhs type mismatch.

Thu Jun  9 17:28:25 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_visitor_constant/constant_ch.cpp:
        * TAO_IDL/be/be_visitor_constant/constant_cs.cpp:

          Changed generated code to always use a constructor with an
          ACE_CDR::LongDoubleAssign argument for long double constants.

Thu Jun  9 07:05:59 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * orbsvcs/examples/FaultTolerance/RolyPoly/client.cpp:
        * orbsvcs/tests/Bug_2709_Regression/Client_Task.cpp:
          Fixed gcc 4.6 warnings

Thu Jun  9 01:09:40 UTC 2011  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp (TAO_Notify_ThreadPool_Task::execute):
          Fixed a memory leak that occurred when the enqueue() failed.
          Thanks to Jochen Meier <gesammeltimusenet2009 at arcor dot de> for
          reporting this and suggesting a fix.

Mon Jun  6 19:53:54 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/AnyTypeCode/Any_Basic_Impl.cpp:
        * tao/AnyTypeCode/Any_Basic_Impl.h:

          Restored the long double member back to the member union of
          Any_Basic_Impl. A change suggested by Adam Mitz <mitza at
          ociweb dot com> enabled the use of the LongDouble emulator
          struct without constructors or assignment operators.

        * TAO_IDL/be/be_visitor_constant/constant_ch.cpp:
        * TAO_IDL/be/be_visitor_constant/constant_cs.cpp:

          Changed code generation for long double constant initialization,
          when 16-byte native long double does not exist, to use the
          new LongDoubleAssign struct in ACE_CDR.

        * tests/IDL_Test/union.idl:

          Added a test case of a union containing a long double, to
          test that the generated union doesn't contain a member
          with a constructor.

Mon Jun  6 18:59:41 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_helper.cpp:

          Restored minimum significant digit suggestions for the format
          string for double, and added them to the format string for
          long double.

Mon Jun  6 17:28:05 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/AnyTypeCode/Any_Basic_Impl.cpp:
        * tao/AnyTypeCode/Any_Basic_Impl.h:

          Added a separate member for long doubles, rather than have
          support for long doubles on all platforms disabled because
          the struct that is now used for some long double representations
          has a constructor.

        * tests/DynAny_Test/test_dynany.cpp:

          Reverted the change in

          Fri Jun  3 18:54:59 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

          since that part of the test will work again.

Mon Jun  6 15:06:42 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_codegen.cpp:
        * TAO_IDL/be/be_global.cpp:
        * TAO_IDL/be/be_visitor_connector/connector_dds_exh.cpp:
        * TAO_IDL/be_include/be_global.h:
        * TAO_IDL/fe/lex.yy.cpp:
        * TAO_IDL/include/idl_global.h:
        * TAO_IDL/util/utl_global.cpp:
          Extended DDS support

Fri Jun  3 18:54:59 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * tao/AnyTypeCode/Any_Basic_Impl.cpp:
        * tao/AnyTypeCode/Any_Basic_Impl.h:

          On platforms where native long doubles aren't 16 bytes,
          eliminated case where an Any contains a CORBA::LongDouble.
          The class contains a C++ union, which can't contain a
          non-native LongDouble ( a struct) since it now has a constructor.
          A fair tradeoff since in return for the recent changes to
          ACE_CDR::LongDouble, we now have support for IDL constants
          of type CORBA::LongDouble on all platforms.

        * tests/DynAny_Test/test_dynany.cpp:

          Similarly to the above item, eliminated the test for long
          double on platforms where a non-native struct alternative
          is used.

Thu Jun  2 12:24:59 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/be/be_helper.cpp:

          - Fixed print format for long double, eliminated warnings.
          - Added '#' flag to all floating point print formats, forces
            printing of decimal point even if not present in IDL.

Wed Jun  1 19:39:08 UTC 2011  Jeff Parsons <j.parsons@vanderbilt.edu>

        * TAO_IDL/include/AST_Expression.h:
        * TAO_IDL/ast/AST_Expression.cpp
        * TAO_IDL/ast/AST_Constant.cpp
        * TAO_IDL/be/be_helper.cpp:
        * TAO_IDL/be/be_visitor_constant/constant_ch.cpp:
        * TAO_IDL/be/be_visitor_constant/constant_cs.cpp:

          Added support for long double constants in IDL.

        * tests/IDL_Test/constants.idl:

          Added test cases for long double constants.

        * NEWS:

          Added item about long double constant support.

Wed Jun  1 09:46:54 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * orbsvcs/tests/AVStreams/Multicast_Full_Profile/ftp.cpp:
        * orbsvcs/tests/Log/Basic_Log_Test/client.cpp:
        * tests/ORB_Local_Config/Two_DLL_ORB/client.cpp:
        * tests/ORB_Local_Config/Two_DLL_ORB/server.cpp:
          Fixed Coverity warnings regarding uncaught exceptions.

Tue May 31 05:47:19 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Sequence_Unit_Tests/string_sequence_tester.hpp:
          Fixed gcc 4.6 warnings: variable was set but not used.

Mon May 30 10:21:08 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * examples/Logging/Logger_i.cpp:
          Resolved gcc 4.6 warning: variable may be used uninitialized
          in this function

Mon May 30 10:00:33 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * orbsvcs/LoadBalancer/LoadMonitor.cpp:
          Fixed compiler error on Windows.

Mon May 30 06:39:12 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Sequence_Unit_Tests/string_sequence_tester.hpp:
        * tests/Smart_Proxies/Benchmark/client.cpp:
          Resolved gcc 4.6 warnings: variable was set but not used.

Fri May 27 14:35:57 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Bug_2936_Regression/bug2936.cpp:
        * tests/Bug_3926_Regression/Client_Request_Interceptor.cpp:
        * tests/Exposed_Policies/RT_Properties.cpp:
        * tests/IOR_Endpoint_Hostnames/list_interfaces.cpp:
          Resolved gcc 4.6 warnings: variable was set but not used.

        * tests/POA/Bug_2511_Regression/server.cpp:
          Resolved gcc 4.6 warnings: variable was set but not used.
          Code alignment.

Fri May 27 14:13:08 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * performance-tests/POA/Demux/demux_test_server.cpp:
        * tests/Bug_2677_Regression/DllORB.cpp:
        * tests/Bug_2683_Regression/server.cpp:
          Resolved gcc 4.6 warnings: variable was set but not used.

Fri May 27 13:52:37 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_union/union_ch.cpp:
          Removed generation of holder_ member of an union, it is not used
          at all

Fri May 27 10:09:25 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * orbsvcs/examples/ImR/Advanced/TestClient.cpp:
        * orbsvcs/tests/IOR_MCast/client.cpp:
        * orbsvcs/tests/Security/Bug_1107_Regression/client.cpp:
          Statisfy Coverity and the GNU 4.6 gcc compiler. Using a
          returned value either by using ACE_UNUSED_ARG or to print
          in a log message.

        * tests/Sequence_Unit_Tests/value_sequence_tester.hpp:
          Fuzz.

Fri May 27 09:14:29 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * orbsvcs/LoadBalancer/LoadMonitor.cpp:
        * orbsvcs/examples/ImR/Advanced/TestClient.cpp:
        * orbsvcs/tests/Bug_3486_Regression/server.cpp:
        * orbsvcs/tests/IOR_MCast/client.cpp:
        * orbsvcs/tests/Notify/Bug_2926_Regression/server.cpp:
        * orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp:
        * orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp:
        * orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp:
        * orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp:
        * orbsvcs/tests/Notify/Bug_3688b_Regression/server.cpp:
        * orbsvcs/tests/Security/Bug_1107_Regression/client.cpp:
          Resolved gcc 4.6 warnings: variable was set but not used.

Thu May 26 15:25:36 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * TAO_IDL/fe/fe_utils.cpp:
          tmp variable wasn't necessary. Removed it.

Thu May 26 14:13:05 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * TAO_IDL/be/be_visitor_valuebox/valuebox_ci.cpp:
        * TAO_IDL/fe/fe_utils.cpp:
        * tao/Strategies/COIOP_Acceptor.cpp:
          Resolved gcc 4.6 warnings: variable was set but not used.

Thu May 26 13:48:29 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tests/Sequence_Unit_Tests/Bounded_Simple_Types.cpp:
        * tests/Sequence_Unit_Tests/Bounded_String.cpp:
        * tests/Sequence_Unit_Tests/Unbounded_Octet.cpp:
        * tests/Sequence_Unit_Tests/Unbounded_Simple_Types.cpp:
        * tests/Sequence_Unit_Tests/Unbounded_String.cpp:
          Catch uncaught exceptions in main.

Thu May 26 13:11:19 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tao/Generic_Sequence_T.h:
          Added file name to doxygen documentation

        * tests/Sequence_Unit_Tests/value_sequence_tester.hpp:
          Resolved Coverity warning: catching a uncaught BAD_PARAM exception.

Fri May 20 22:07:56 UTC 2011  Adam Mitz  <mitza@ociweb.com>

        * tao/AnyTypeCode/TAO_AnyTypeCode.rc:
        * tao/Codeset/TAO_Codeset.rc:
        * tao/PI/TAO_PI.rc:
        * tao/PI_Server/TAO_PI_Server.rc:
        * tao/Utils/TAO_Utils.rc:
        * tao/ZIOP/TAO_ZIOP.rc:

          Add resource files to get TAO version number on DLLs.

Fri May 20 14:20:53 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Oneway_Timeouts/test.mpc:
          Added explicit idl project to get correct build order on VMS

Thu May 19 14:53:55 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * tests/QtTests/client.cpp:
        * tests/QtTests/client.h:
        * tests/QtTests/QtTests.mpc:
        * tests/QtTests/server.cpp:
        * tests/QtTests/test_i.h:
        Adapted to qt4.

Tue May 17 19:20:55 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/OBV/Indirection/MessengerServer.cpp:
        * tests/Portable_Interceptors/Slot/driver.cpp:
          Catch exceptions in main

Tue May 17 11:32:18 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
        * TAO_IDL/be/be_visitor_operation/direct_proxy_impl_ss.cpp:
          Layout changes to the generated code

Fri May 13 08:04:48 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tao/Bounded_Basic_String_Sequence_T.h:
        * tao/Bounded_Object_Reference_Sequence_T.h:
        * tao/Bounded_Value_Sequence_T.h:
        * tao/Unbounded_Basic_String_Sequence_T.h:
        * tao/Unbounded_Object_Reference_Sequence_T.h:
          Doxygen changes.

Wed May 11 18:43:15 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/ObjectKey_Table.h:
        * tao/orbconf.h:
        * tao/params.h:
          Doxygen changes

Wed May 11 13:35:28 UTC 2011  Marijke Hengstmengel  <mhengstmengel@remedy.nl>

        * tao/QtResource/QtResource_Loader.h:
        Changed for QT4 deprecated include QT/..

Tue May 10 18:15:28 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/ImR_Client/ImR_Client.cpp:
          changed variable name to not match method argument

        * utils/catior/catior.cpp:
        * utils/nslist/nsadd.cpp:
        * utils/nslist/nsdel.cpp:
        * utils/nslist/nslist.cpp:
          Fixed coverity errors, not leak exceptions

Tue May 10 06:15:43 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * tao/IORManipulation/IORManip_IIOP_Filter.cpp:
          Fixed compile error.

Mon May  9 19:10:54 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_interface.cpp:
        * tao/CSD_ThreadPool/CSD_TP_Task.cpp:
        * tao/IORManipulation/IORManip_IIOP_Filter.cpp:
          Fixed coverity errors

Wed Apr 27 13:35:10 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO.mwc:
          Exclude DAnCE, thanks to Remko Duppen <remko dot duppen at syntel dot nl>
          for reporting this

Tue Apr 26 13:12:03 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_sequence/cdr_op_ch.cpp:
        * TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
          Layout changes generated code

Tue Apr 26 13:04:11 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Collocation_Resolver.h:
        * tao/Connect_Strategy.h:
        * tao/Endpoint_Selector_Factory.h:
        * tao/GIOP_Message_Base.h:
        * tao/GIOP_Message_Generator_Parser.h:
        * tao/GIOP_Message_Generator_Parser_10.h:
        * tao/GIOP_Message_Generator_Parser_11.h:
        * tao/GIOP_Message_Generator_Parser_Impl.h:
        * tao/GIOP_Message_State.h:
        * tao/GIOP_Utils.h:
        * tao/GUIResource_Factory.h:
        * tao/LF_Connect_Strategy.h:
        * tao/LF_Follower.cpp:
          Doxygen changes

Tue Apr 26 12:50:24 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/ORB_Core.cpp:
        * tao/Thread_Lane_Resources.h:
        * tao/Thread_Lane_Resources_Manager.h:
        * tao/Thread_Per_Connection_Handler.h:
        * tao/Transport.h:
        * tao/Transport_Connector.h:
        * tao/TypeCodeFactory_Adapter.h:
          Doxygen changes

Tue Apr 26 12:21:05 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Acceptor_Impl.h:
        * tao/Acceptor_Impl.cpp:
        * tao/Acceptor_Registry.h:
        * tao/Adapter_Registry.h:
        * tao/Bind_Dispatcher_Guard.h:
        * tao/Blocked_Connect_Strategy.h:
        * tao/Blocked_Connect_Strategy.cpp:
        * tao/Cleanup_Func_Registry.h:
        * tao/Collocated_Invocation.cpp:
        * tao/LF_Event_Loop_Thread_Helper.inl:
        * tao/LF_Follower_Auto_Adder.inl:
        * tao/Leader_Follower.cpp:
        * tao/Queued_Message.h:
        * tao/Transport_Cache_Manager_T.cpp:
        * tao/Wait_On_LF_No_Upcall.h:
        * tao/Wait_On_LF_No_Upcall.cpp:
        * tao/Wait_On_Reactor.h:
        * tao/Wait_On_Read.h:
          Doxygen changes

Tue Apr 26 11:57:42 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Leader_Follower.h:
        * tao/Leader_Follower.inl:
        * tao/Wait_On_LF_No_Upcall.h:
        * tao/Wait_On_Leader_Follower.h:
        * tao/Wait_On_Reactor.h:
        * tao/Wait_On_Read.h:
        * tao/Wait_Strategy.h:
          Use explicit for single argument constructors, doxygen improvements

Tue Apr 26 11:13:59 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/MT_NoUpcall_Client_Leader/client.cpp:
        * tests/MT_NoUpcall_Client_Leader/run_test.pl:
        * tests/MT_NoUpcall_Client_Leader/server.cpp:
          Make it possible to pass number of threads through the commandline

Tue Apr 26 09:42:36 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Leader_Follower.h:
        * tao/Leader_Follower.inl:
          Use bool instead of int for several methods

        * tao/Thread_Lane_Resources.cpp:
          Simplied some code

Tue Apr 26 09:26:48 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          MT_NoUpcall_Client_Leader shouldn't run when there is no messaging

Tue Apr 26 09:00:31 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Disabled some tests with CORBA/e micro

        * tao/Connection_Handler.cpp:
        * tao/Resume_Handle_Deferred.h:
        * tao/Resume_Handle_Deferred.cpp:
          Use reference counting for deletion, also log an error and return -1
          when schedule_timer fails, we have a critical error at that moment

        * tao/Policy_Validator.cpp:
        * tao/TAO_Singleton.cpp:
        * tao/Leader_Follower.cpp:
          Use %@ for logging pointers

Fri Apr 22 12:41:53 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * orbsvcs/tests/Bug_3418_Regression/b.conf:
        * orbsvcs/tests/HTIOP/HT_Config.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/non-windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_App_Ctrl/windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/non-windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/windows.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Manage_Object_Group/windows.conf:
        * orbsvcs/tests/Notify/Lanes/consumer.conf:
        * orbsvcs/tests/Notify/Lanes/notify.conf:
        * performance-tests/Protocols/lksctp_params.conf:
        * performance-tests/Protocols/sctp_params.conf:
        * performance-tests/RTCorba/Thread_Pool/native-svc.conf:
        * tests/Bug_3068_Regression/server.conf:
        * tests/ORB_Local_Config/Bug_1459/m.conf:
        * tests/ORB_Local_Config/Two_DLL_ORB/secondary-empty.conf:
        * tests/RTCORBA/Explicit_Binding/svc.conf:
          Fuzz: added $Id string

Fri Apr 22 12:14:18 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Connection_Handler.cpp:
        * tao/Resume_Handle_Deferred.h:
        * tao/Resume_Handle_Deferred.cpp:
          Notify a specific event handler

        * tao/Resume_Handle_Deferred.inl:
          Removed this file, virtual methods may not be inline

Fri Apr 22 11:56:20 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Resume_Handle_Deferred.h:
        * tao/Resume_Handle_Deferred.inl:
        * tao/Resume_Handle_Deferred.cpp:
          We should only trigger the reactor

        * tao/Transport.cpp:
          Doxygen changes

Fri Apr 22 07:28:43 UTC 2011  Marcel Smit  <msmit@remedy.nl>

        * DevGuideExamples/Multithreading/Reactive/svc.conf:
        * DevGuideExamples/Multithreading/ThreadPerConnection/server.conf:
        * DevGuideExamples/RTCORBA/svc.conf:
        * docs/tutorials/Quoter/Event_Service/ec.conf:
        * examples/PluggableUDP/tests/Performance/svc.conf:
        * examples/PluggableUDP/tests/SimplePerformance/svc.conf:
        * examples/RTCORBA/Activity/client.conf:
        * examples/RTCORBA/Activity/server.conf:
        * examples/RTCORBA/Activity/svc.conf.client:
        * examples/RTCORBA/Activity/svc.conf.server:
        * examples/RTScheduling/Fixed_Priority_Scheduler/svc.conf.client:
        * examples/RTScheduling/Fixed_Priority_Scheduler/svc.conf.server:
        * examples/RTScheduling/MIF_Scheduler/svc.conf.client:
        * examples/RTScheduling/MIF_Scheduler/svc.conf.server:
        * orbsvcs/Concurrency_Service/svc.conf:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Federated/supplier.conf:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_Filter/ec.conf:
        * orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/supplier.conf:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/notify.conf:
        * orbsvcs/DevGuideExamples/NotifyService/RTNotify/nsclient.conf:
        * orbsvcs/DevGuideExamples/ValueTypes/Notify/notify.conf:
        * orbsvcs/Event_Service/svc.conf:
        * orbsvcs/Logging_Service/Notify_Logging_Service/svc.conf:
        * orbsvcs/TAO_Service/svc.conf:
        * orbsvcs/examples/ImR/Combined_Service/dynserver.conf:
        * orbsvcs/examples/ImR/Combined_Service/start_all.conf:
        * orbsvcs/examples/Notify/Lanes/client.conf:
        * orbsvcs/examples/Notify/Lanes/notify.conf:
        * orbsvcs/examples/Notify/ThreadPool/client.conf:
        * orbsvcs/examples/Notify/ThreadPool/notify.conf:
        * orbsvcs/examples/RtEC/IIOPGateway/ec.conf:
        * orbsvcs/examples/RtEC/IIOPGateway/gateway.conf:
        * orbsvcs/examples/RtEC/Kokyu/svc.conf:
        * orbsvcs/examples/RtEC/MCast/svc.conf:
        * orbsvcs/examples/RtEC/Schedule/svc.conf:
        * orbsvcs/examples/RtEC/Simple/ec.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.dispatching_reactive.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.dispatching_rtcorba.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.dispatching_threaded.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.filter_null.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.filter_per_supplier.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.locking_copy_on_read.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.locking_copy_on_write.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.locking_delayed.conf:
        * orbsvcs/performance-tests/RTEvent/Colocated_Roundtrip/ec.locking_immediate.conf:
        * orbsvcs/performance-tests/RTEvent/Federated_Roundtrip/roundtrip.conf:
        * orbsvcs/performance-tests/RTEvent/RTCORBA_Baseline/realtime.conf:
        * orbsvcs/performance-tests/RTEvent/RTCORBA_Callback/realtime.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.dispatching_reactive.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.dispatching_rtcorba.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.dispatching_threaded.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.locking_copy_on_read.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.locking_copy_on_write.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.locking_delayed.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.locking_immediate.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.supplier_filter_null.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/ec.supplier_filter_per_supplier.conf:
        * orbsvcs/performance-tests/RTEvent/Roundtrip/roundtrip.conf:
        * orbsvcs/tests/AVStreams/Component_Switching/components_svc.conf:
        * orbsvcs/tests/AVStreams/Pluggable_Flow_Protocol/svc.conf:
        * orbsvcs/tests/Bug_2316_Regression/svc.conf:
        * orbsvcs/tests/Bug_2377_Regression/svc.conf:
        * orbsvcs/tests/Bug_2925_Regression/svc.conf:
        * orbsvcs/tests/Bug_3387_Regression/NotSvc.conf:
        * orbsvcs/tests/Bug_3418_Regression/m.conf:
        * orbsvcs/tests/Bug_3444_Regression/diop_svc.conf:
        * orbsvcs/tests/Bug_3444_Regression/miop_svc.conf:
        * orbsvcs/tests/CosEvent/Basic/svc.pull.conf:
        * orbsvcs/tests/CosEvent/Timeout/cosevent.conf:
        * orbsvcs/tests/EC_MT_Mcast/svc.conf:
        * orbsvcs/tests/EC_Mcast/svc.conf:
        * orbsvcs/tests/EC_Throughput/ec.conf:
        * orbsvcs/tests/Event/Basic/control.conf:
        * orbsvcs/tests/Event/Basic/mt.svc.conf:
        * orbsvcs/tests/Event/Basic/observer.conf:
        * orbsvcs/tests/Event/Basic/svc.complex.conf:
        * orbsvcs/tests/Event/Basic/svc.conf:
        * orbsvcs/tests/Event/Mcast/Complex/consumer-ec.conf:
        * orbsvcs/tests/Event/Mcast/Complex/supplier-ec.conf:
        * orbsvcs/tests/Event/Mcast/RTEC_MCast_Federated/supplier.conf:
        * orbsvcs/tests/Event/Mcast/Two_Way/gateway.conf:
        * orbsvcs/tests/Event/Performance/ec.list.conf:
        * orbsvcs/tests/Event/Performance/ec.mt.conf:
        * orbsvcs/tests/Event/Performance/ec.rb_tree.conf:
        * orbsvcs/tests/Event/Performance/ec.st.conf:
        * orbsvcs/tests/Event/Performance/latency.conf:
        * orbsvcs/tests/Event/UDP/svc.conf:
        * orbsvcs/tests/HTIOP/AMI/exclusive.conf:
        * orbsvcs/tests/HTIOP/AMI/muxed.conf:
        * orbsvcs/tests/ImplRepo/scale/client.conf:
        * orbsvcs/tests/InterfaceRepo/Persistence_Test/svc.conf:
        * orbsvcs/tests/LoadBalancing/GenericFactory/Application_Controlled/svc.conf:
        * orbsvcs/tests/Miop/McastHello/svc.conf:
        * orbsvcs/tests/Notify/Basic/notify.mt.conf:
        * orbsvcs/tests/Notify/Basic/notify.reactive.conf:
        * orbsvcs/tests/Notify/Basic/notify.rt.conf:
        * orbsvcs/tests/Notify/Blocking/notify.conf:
        * orbsvcs/tests/Notify/Bug_1385_Regression/notify.conf:
        * orbsvcs/tests/Notify/Bug_1884_Regression/ecf.conf:
        * orbsvcs/tests/Notify/Lanes/consumer.conf:
        * orbsvcs/tests/Notify/Persistent_Filter/NS.conf:
        * orbsvcs/tests/Notify/PluggableTopology/plugtop_ns.conf:
        * orbsvcs/tests/Notify/Reconnecting/event.conf:
        * orbsvcs/tests/Notify/Reconnecting/ns_mt.conf:
        * orbsvcs/tests/Notify/Reconnecting/ns_mt_both.conf:
        * orbsvcs/tests/Notify/Reconnecting/ns_mt_topo.conf:
        * orbsvcs/tests/Notify/Reconnecting/ns_st.conf:
        * orbsvcs/tests/Notify/Reconnecting/ns_st_both.conf:
        * orbsvcs/tests/Notify/Reconnecting/ns_st_topo.conf:
        * orbsvcs/tests/Notify/ThreadPool/consumer.conf:
        * orbsvcs/tests/Notify/ThreadPool/notify.conf:
        * orbsvcs/tests/Notify/ThreadPool/supplier.conf:
        * orbsvcs/tests/Notify/Validate_Client/notify.conf:
        * orbsvcs/tests/Notify/XML_Persistence/svc.conf:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/listener.conf:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/lookup.conf:
        * orbsvcs/tests/Notify/performance-tests/RedGreen/svc.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/1_Path_Period_0_Lanes/cos_notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/1_Path_Period_0_Lanes/rt_notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/3_Path_Period_10ms_Lanes/cos_notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/3_Path_Period_10ms_Lanes/rt_notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/Notify/notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/Max_Throughput/Notify_RTCORBA/notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/cos_notify.conf:
        * orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/rt_notify.conf:
        * orbsvcs/tests/Security/BiDirectional/client.conf:
        * orbsvcs/tests/Security/BiDirectional/server.conf:
        * orbsvcs/tests/Security/Bug_2908_Regression/client.conf:
        * orbsvcs/tests/Security/Bug_2908_Regression/server.conf:
        * orbsvcs/tests/Security/EndpointPolicy/svc.conf:
        * orbsvcs/tests/Security/InsecureReferences/client.conf:
        * orbsvcs/tests/Security/MT_IIOP_SSL/client.conf:
        * orbsvcs/tests/Security/MT_IIOP_SSL/server.conf:
        * orbsvcs/tests/Security/MT_SSLIOP/client.conf:
        * orbsvcs/tests/Security/MT_SSLIOP/server.conf:
        * orbsvcs/tests/Security/ssliop_CSD/csd.conf:
        * orbsvcs/tests/Security/ssliop_corbaloc/client.conf:
        * orbsvcs/tests/Security/ssliop_corbaloc/server.conf:
        * orbsvcs/tests/unit/Notify/MC/MonitorManager/svc.conf:
        * performance-tests/Protocols/altq.conf:
        * performance-tests/Protocols/svc.conf:
        * performance-tests/RTCorba/Thread_Pool/svc.conf:
        * tests/AMI/muxed.conf:
        * tests/AMI_Timeouts/svc.conf:
        * tests/Bug_2186_Regression/server.conf:
        * tests/Bug_2935_Regression/middle.conf:
        * tests/Bug_3000_Regression/rw.conf:
        * tests/Bug_3068_Regression/client.conf:
        * tests/Bug_3163_Regression/server.conf:
        * tests/Bug_3251_Regression/Bug_3251.conf:
        * tests/Bug_3598a_Regression/svc.conf:
        * tests/Bug_3630_Regression/TAO Conf File.conf:
        * tests/Bug_3630_Regression/TAO_Conf_File.conf:
        * tests/Bug_3683_Regression/svc.conf:
        * tests/Bug_3801_Regression/exclusive.conf:
        * tests/Bug_3801_Regression/muxed.conf:
        * tests/Bug_3837_Regression/logger.conf:
        * tests/CSD_Strategy_Tests/TP_Test_Dynamic/svc.conf:
        * tests/CSD_Strategy_Tests/TP_Test_Static/svc.conf:
        * tests/CodeSets/simple/cs_test.conf:
        * tests/CodeSets/simple/svc.conf:
        * tests/CodeSets/simple/wcs_test.conf:
        * tests/Collocation_Opportunities/svc.conf:
        * tests/Exposed_Policies/svc.conf:
        * tests/Leader_Followers/select_mt.conf:
        * tests/Leader_Followers/tp.conf:
        * tests/ORB_Local_Config/Bug_1459/a.conf:
        * tests/ORB_Local_Config/Bug_1459/b.conf:
        * tests/ORB_Local_Config/Bug_1459/d.conf:
        * tests/ORB_Local_Config/Bug_1459/m1.conf:
        * tests/ORB_Local_Config/Bug_3049/a.conf:
        * tests/ORB_Local_Config/Service_Dependency/Service_Config_Test.conf:
        * tests/ORB_Local_Config/Two_DLL_ORB/primary-csd.conf:
        * tests/ORB_Local_Config/Two_DLL_ORB/primary-ssl.conf:
        * tests/ORB_Local_Config/Two_DLL_ORB/secondary-csd.conf:
        * tests/ORB_Local_Config/Two_DLL_ORB/secondary-ssl.conf:
        * tests/Oneway_Send_Timeouts/block_flush.conf:
        * tests/Oneway_Send_Timeouts/lf_flush.conf:
        * tests/Oneway_Send_Timeouts/reactive_flush.conf:
        * tests/Optimized_Connection/oc_svc.conf:
        * tests/POA/EndpointPolicy/multi_prot.conf:
        * tests/POA/Explicit_Activation/alternate.conf:
        * tests/Parallel_Connect_Strategy/blocked.conf:
        * tests/Parallel_Connect_Strategy/reactive.conf:
        * tests/RTCORBA/Banded_Connections/svc.conf:
        * tests/RTCORBA/Bug_3382_Regression/svc.conf:
        * tests/RTCORBA/Bug_3643_Regression/svc.conf.dynamic:
        * tests/RTCORBA/Client_Propagated/svc.conf:
        * tests/RTCORBA/Client_Protocol/svc.conf:
        * tests/RTCORBA/Collocation/continuous.conf:
        * tests/RTCORBA/Collocation/svc.conf:
        * tests/RTCORBA/Destroy_Thread_Pool/continuous.conf:
        * tests/RTCORBA/Dynamic_Thread_Pool/continuous.conf:
        * tests/RTCORBA/Dynamic_Thread_Pool/svc.conf:
        * tests/RTCORBA/Linear_Priority/svc.conf:
        * tests/RTCORBA/MT_Client_Protocol_Priority/svc.conf:
        * tests/RTCORBA/Persistent_IOR/continuous.conf:
        * tests/RTCORBA/Policy_Combinations/svc.conf:
        * tests/RTCORBA/Priority_Inversion_With_Bands/continuous.conf:
        * tests/RTCORBA/Priority_Inversion_With_Bands/svc.conf:
        * tests/RTCORBA/Profile_And_Endpoint_Selection/svc.conf:
        * tests/RTCORBA/Server_Declared/continuous.conf:
        * tests/RTCORBA/Server_Declared/svc.conf:
        * tests/RTCORBA/Server_Protocol/server_iiop.conf:
        * tests/RTCORBA/Server_Protocol/server_iiop_shmiop.conf:
        * tests/RTCORBA/Server_Protocol/server_iiop_uiop.conf:
        * tests/RTCORBA/Server_Protocol/server_reverse.conf:
        * tests/RTCORBA/Server_Protocol/server_reverse_nt.conf:
        * tests/RTCORBA/Server_Protocol/server_shmiop.conf:
        * tests/RTCORBA/Server_Protocol/server_uiop.conf:
        * tests/RTCORBA/Thread_Pool/continuous.conf:
        * tests/RTCORBA/Thread_Pool/svc.conf:
        * tests/TransportCurrent/Framework/client-static.conf:
        * tests/TransportCurrent/Framework/client.conf:
        * tests/TransportCurrent/Framework/server-static.conf:
        * tests/TransportCurrent/Framework/server.conf:
        * tests/TransportCurrent/IIOP/client_dynamic.conf:
        * tests/TransportCurrent/IIOP/client_static.conf:
        * tests/TransportCurrent/IIOP/server_dynamic.conf:
        * tests/TransportCurrent/IIOP/server_static.conf:
          Fuzz. Added lacking $Id string.

Thu Apr 21 13:02:25 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Updated test list

        * tests/AMI/mt_noupcall.conf:
        * tests/AMI/run_mt_noupcall.pl:
        * tests/AMI/run_test.pl:
          New run_mt_noupcall, the existing script was using -ORBCollocation no
          which doesn't work with AMI and mt_noupcall

        * tests/AMI/simple_client.cpp:
          Layout change

Thu Apr 21 12:07:41 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Run AMI test with more options

        * tests/AMI/exclusive.conf:
        * tests/AMI/server.conf:
          Added Id tag

        * tests/AMI/mt_noupcall.conf:
          New file for testing with mt_noupcall

        * tests/AMI/run_test.pl:
          Add option -mt_noupcall and give client/server separate debug levels

Thu Apr 21 11:17:36 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Wait_On_LF_No_Upcall.cpp:
          Log transport id

Thu Apr 21 10:31:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Connection_Handler.cpp:
          Use the orb core reactor which is the LF reactor

Wed Apr 20 08:59:58 UTC 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

        * TAO_IDL/be/be_visitor_connector/connector_dds_exh.cpp:
          Improved portability

        * bin/tao_orb_tests.lst:
          Added new test

        * tao/Leader_Follower.h:
          Layout change

        * tao/Strategies/SHMIOP_Acceptor.cpp:
        * tao/Wait_On_LF_No_Upcall.cpp:
          Fixed coverity errors

        * tests/Bug_3531b_Regression:
        * tests/Bug_3531b_Regression/Bug_3531b_Regression.mpc:
        * tests/Bug_3531b_Regression/run_test.pl:
        * tests/Bug_3531b_Regression/server.cpp:
          New test

Wed Apr 20 09:52:52 CEST 2011  Johnny Willemsen  <jwillemsen@remedy.nl>

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