summaryrefslogtreecommitdiff
path: root/ACE/ChangeLog
blob: 2ea189eab6eeb5ed2e1366889c3f769a7ef2461f (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
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
Sun Jun 28 22:15:47 UTC 2009  Carlos O'Ryan  <coryan@glamdring>

        * ace/ace.mpc:
        * ace/Abstract_Timer_Queue.h:
        * ace/Abstract_Timer_Queue.cpp:
        * ace/Timer_Queue_Iterator.h:
        * ace/Timer_Queue_Iterator.inl:
        * ace/Timer_Queue_Iterator.cpp:
        * ace/Timer_Queuefwd.h:
        * ace/Timer_Queue.h:
        * ace/Timer_Queue_T.h:
        * ace/Timer_Queue_T.inl:
        * ace/Timer_Queue_T.cpp:
        * ace/Timer_List_T.h:
        * ace/Timer_List_T.cpp:
        * ace/Timer_Wheel_T.h:
        * ace/Timer_Wheel_T.cpp:
        * ace/Timer_Hash_T.h:
        * ace/Timer_Hash_T.cpp:
        * ace/Timer_Heap_T.h:
        * ace/Timer_Heap_T.cpp:
          Heavy refactoring in ACE_Timer_Queue_T class and friends.
          First, created a template base class (ACE_Abstract_Timer_Queue) that:
          1) Only depends on the type held by the timer queue, not to lock
             or upcall strategy. 
          2) It is a pure abstract class, i.e., none of its member
             functions have any implementation.
          3) Provides new pure virtual functions to encapsulates some
             logic that was spread between tests, TP_Reactor and
            Dev_Poll_Reactor.
          Then I re-wrote all the standard timer queue objects in terms of
          this class.  In particular, the reactors use only the abstract
          interface.
          I also re-factored the Timer_Queue_Iterator to only depend on
          the type of objects held by the timer queue.  The rest of the
          parameters where not used either.
          Implement functionality that was spread in Dev_Poll_Reactor,
          TP_Reactor and a test into expire_single.

        * ace/Proactor.h:
        * ace/TP_Reactor.cpp:
        * ace/Dev_Poll_Reactor.cpp:
          Both classes implemented the logic to dispatch a single timer
          but release a mutex before the upcall.  This was confusing as
          well as required exposing too much detail about the Timer_Queue
          classes.
          The new mechanism is a single function in (expire_single)
          ACE_Abstract_Timer_Queue<> (implemented in ACE_Timer_Queue_T<>)
          which receives a command object to encapsulate the mutex release.

        * ace/Functor.h:
        * ace/Functor.cpp:
        * ace/Functor_T.h:
        * ace/Functor_T.inl:
          Add helper ACE_Command_* objects.  One is a no-op, for the test
          below.  The other is a callback that ignores the silly void*
          argument in the ACE_Command_Base::execute() member function.

        * tests/Timer_Queue_Reference_Counting_Test.cpp:
          Re-factored test in terms of expire_single()

Sat Jun 27 00:55:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Updated suse

        * rpmbuild/ace-tao-init-suse/fillup-templates/*:
          Moved to tao

Sat Jun 27 00:44:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/tao:
        * rpmbuild/logrotate.d:
          Moved to the new etc directory

        * rpmbuild/ace-tao-ciao.spec:
          Updated for move above

Fri Jun 26 22:55:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/non_mpc_makefile/run_test.pl:
        * tests/non_mpc_makefile/Bug_3708_Regression.pl:
          renamed to get better test stats

        * bin/ace_tests.lst:
          Updated for rename above

Fri Jun 26 16:19:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Added missing DANCE_ROOT

Fri Jun 26 16:10:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-init-suse/fillup-templates/*:
          Missing files for x.7.0

        * rpmbuild/ace-tao-init-suse/tao:
          Removed, this are Fedora files

        * rpmbuild/ace-tao-ciao.spec:
          Copy the correct files for SuSE and print the g++ version in the
          build log which makes it easier to see which g++ version is
          used

Fri Jun 26 02:16:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux.GNU:
          Mandriva 2007 fix

Fri Jun 26 00:46:10 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/ACE-guidelines.html:
          Fixed typo

Thu Jun 25 21:46:10 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * tests/non_mpc_makefile/foo.cpp:

          Fuzz fix.

Thu Jun 25 14:20:08 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * bin/ace_tests.lst:
        * tests/non_mpc_makefile:
        * tests/non_mpc_makefile/CustomMakefile:
        * tests/non_mpc_makefile/foo.cpp:
        * tests/non_mpc_makefile/run_test.pl:

          Added a test for non-MPC-generated Makefile compatibility with
          the files in include/makeinclude.

Thu Jun 25 13:26:13 UTC 2009  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/wrapper_macros.GNU: Restore pre-5.7 build
          functionality for non-MPC-generated Makefiles that use LIB to
          specify what library to build. Fixes Bugzilla 3708.

Thu Jun 25 02:09:51 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          More fixes

        * rpmbuild/ace-tao-init-fedora/rc.d/init.d/tao-cosconcurrency
        * rpmbuild/ace-tao-init-fedora/rc.d/init.d/tao-cosevent
        * rpmbuild/ace-tao-init-fedora/rc.d/init.d/tao-cosnaming
        * rpmbuild/ace-tao-init-fedora/rc.d/init.d/tao-cosnotification
        * rpmbuild/ace-tao-init-fedora/rc.d/init.d/tao-costrading
        * rpmbuild/ace-tao-init-fedora/rc.d/init.d/tao-rtevent
        * rpmbuild/ace-tao-init-suse/init.d/tao-cosconcurrency
        * rpmbuild/ace-tao-init-suse/init.d/tao-cosevent
        * rpmbuild/ace-tao-init-suse/init.d/tao-cosnaming
        * rpmbuild/ace-tao-init-suse/init.d/tao-cosnotification
        * rpmbuild/ace-tao-init-suse/init.d/tao-costrading
        * rpmbuild/ace-tao-init-suse/init.d/tao-rtevent
          Set svn:executable

Wed Jun 24 19:33:51 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Some more fixes

Wed Jun 24 18:19:24 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * ace/OS_NS_ctype.inl:
        * ace/config-win32-msvc.h:

          Revised the change from yesterday to only apply to Visual C++ and not
          the other Win32 compilers.

Wed Jun 24 08:51:51 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          First set of fixed to get x.7.0 compiling on OpenSuSE Build

Sun Jun 21 14:34:13 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Log_Msg.cpp (log): Changed the use of
          ACE_Log_Record::MAXLOGMSGLEN to ACE_MAXLOGMSGLEN to avoid
          problems with "off-by-one" buffer overflow errors.  Thanks to
          Brendan Murphy <brendan dot murphy at euro dot apple dot com>
          for contributing this.

Tue Jun 23 20:12:51 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * ace/Argv_Type_Converter.cpp:

          Allow a 0-length argv list (argc == 0), argv[0] may not be valid.

        * ace/OS_NS_ctype.inl:

          This WinCE/Mobile work-around applies to Win32 w/ wchar as well.

        * ace/OS_NS_stdio.cpp:

          Removed the check for Unicode BOM in ACE_OS::fopen().  This was only
          checked in Win32 builds with ACE_USES_WCHAR.  This resolves bug#3705.

Tue Jun 23 15:09:50 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * etc/index.html:
          Post release updates.

Mon Jun 22 09:33:40 CDT 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE version 5.7 released.

Tue Jun 16 15:14:52 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * ace/OS_main.cpp:

          For Windows CE/Mobile: when constructing argv[0], quote the full
          path to the exe if it contains spaces (\Program Files\...).

Mon Jun 15 07:45:04 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_3673_Regression_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:
          Added a new test for bugzilla 3673, this test whether exception handling
          works correctly. This doesn't work with CB2007 which is really a compiler
          bug. This test makes it easier to see if other compilers have the same
          bug

Fri Jun 12 19:05:43 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * ace/OS_NS_sys_socket.inl:

          Windows Mobile 6 can return WSAENOPROTOOPT instead of WSAEOPNOTSUPP
          for setsockopt with an unsupported option.

Fri Jun 12 19:16:04 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        Revert the change below, Adam has a better fix
        * ace/config-WinCE.h
          Set ACE_LACKS_SO_RCVBUF for WinCE 5, it is not supported

Fri Jun 12 18:37:04 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-WinCE.h
          Set ACE_LACKS_SO_RCVBUF for WinCE 5, it is not supported

Fri Jun 12 14:12:04 UTC 2009  Steve Huston  <shuston@riverace.com>

        * tests/run_test.lst: Removed !FIXED_BUGS_ONLY from Process_Test. Not
          sure why it's there and I never see Process_Test fail.

Fri Jun 12 11:24:09 UTC 2009  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.cpp: Added missing ifdef ACE_HAS_EVENT_POLL.

        * tests/run_test.lst: Removed !FIXED_BUGS_ONLY from those fixed:
          Reactor_Dispatch_Order_Test_Dev_Poll
          Reactor_Remove_Resume_Test_Dev_Poll
          Refcounted_Event_Handler_Test_DevPoll

Fri Jun 12 00:45:09 UTC 2009  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.{h cpp inl}: Fixed multi-thread behavior of
          ACE_Dev_Poll_Reactor to resolve Bugzilla 2740, 3178, 3188, 3279.
          Note that fixing 3178 involved adding the manual-resume behavior from
          ACE_TP_Reactor which was easy after the other fixes. Essentially
          what was done is:
             - Change epoll_wait() from returning all ready events to just one.
             - Registered events now include the EPOLLONESHOT flag, so once
               an event is delivered for a handle, no more will be until
               epoll_ctl() is called again to reset the events.
          This has the effect of suspending handlers around I/O upcalls and
          preventing registration changes from happening while another thread
          is waiting for events.

        * tests/Reactor_Dispatch_Order_Test.cpp:
        * tests/Reactor_Dispatch_Order_Test_Dev_Poll.cpp:
        * tests/Refcounted_Event_Handler_Test_DevPoll.cpp:
          When registering the test handle for events, register for read and
          write, not everything. Registering for everything leaves 'connect'
          set when 'write' is removed, but they both map to the same event
          on non-Windows reactors.
          For the _Dev_Poll test, remove the BSD, VxWorks, Lynx-only case for
          removing write-mask - this should always be done.

        * tests/MT_Reactor_Upcall_Test.cpp: When setting up the
          ACE_Dev_Poll_Reactor, set the restart flag.

        * tests/Bug_2740_Regression_Test.cpp: Tweaks for more informative
          logging and remove false-fails on peer socket closes.

        * tests/run_test.lst: Removed !FIXED_BUGS_ONLY from
          Bug_2740_Regression_Test.

Thu Jun 11 19:27:33 UTC 2009  Steven Stallion  <stallions@ociweb.com>

        * PROBLEM-REPORT-FORM:

          Added additional PRF question about build method (commit performed
          on behalf of Chris Cleeland).

Thu Jun 11 13:25:09 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-cygwin32.h:
          Only define the custom export macros when they are not defined yet

        * ace/TP_Reactor.cpp:
          owner_ is a bool

Thu Jun 11 13:15:09 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks6.3.GNU:
          Use $(HOST_EXE_EXT) when host_root is set

        * include/makeinclude/platform_cegcc.GNU:
          Set qos to 1 and updated header

Wed Jun 10 18:18:09 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-msvc-9.h:
        * ace/OS_NS_stdio.inl:
          Fix for Windows CE with msvc9

Wed Jun 10 14:07:09 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * include/makeinclude/platform_vxworks6.3.GNU:

          Minor adjustment to the part of the change below concerning
          "Allow in-place (no HOST_ROOT) cross-compilation on Win32 hosts."
          If the host tool variables (like $(TAO_IDL)) are already end in .exe
          don't add .exe again.

Mon Jun  8 18:39:58 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * ace/Message_Queue_Vx.h:
        * ace/OS_main.h:

          Added ACE_Export to ACE_Message_Queue_Vx.
          Added "exports" for the symbols ace_os_main_i and ace_main_i.
          This allows them to work with GCC 4.x hidden visibility on platforms
          that use redefinition of main (VxWorks).

        * contrib/minizip/minizip.mwc:

          Added a workspace so minizip will be "found" when running
          mwc.pl -recurse.

        * include/makeinclude/platform_lynxos.GNU:
        * include/makeinclude/platform_vxworks6.3.GNU:

          Both VxWorks and LynxOS:
          For shared library builds (RTP), use -rpath-link to silence
          warnings from the linker.  We assume the libraries in $ACE_ROOT/lib
          will be present at runtime.

          VxWorks only:
          Allow in-place (no HOST_ROOT) cross-compilation on Win32 hosts.

        * include/makeinclude/platform_sunos5_sunc++.GNU:

          Default "distrib" to 1, which means we will not set RPATH, similar to
          other platforms.  This resolves bug #3678.

        * tests/Network_Adapters_Test.h:
        * tests/Process_Manager_Test.cpp:
        * tests/Signal_Test.cpp:
        * tests/run_test.lst:

          Fix ACE tests that were failing in single-threaded builds.

Mon Jun  8 09:51:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_1890_Regression_Test.cpp:
        * tests/Bug_2540_Regression_Test.cpp:
          Put the reactors on the heap to get these tests running
          with Windows CE where we only get a 64Kb main thread

Sun Jun  7 17:53:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Tokenizer_T.cpp
        * ace/Tokenizer_T.h
        * ace/SString.cpp
        * ace/SString.h
          Moved ACE_Tokenizer to its own file and reworked it to
          the C++ template ACE_Tokenizer_T. ACE_Tokenizer is then a
          typedef of ACE_Tokenizer_T<ACE_TCHAR>. This makes it
          possible to use a char tokenizer in a wchar build

        * ace/ace.mpc:
        * ace/ace_for_tao.mpc:
        * ace/Makefile.am:
          Added new files

        * ace/Configuration.cpp:
        * ace/Process.cpp:
        * examples/OS/Process/process.cpp:
          Added include of Tokenizer_T.h

        * ace/OS_NS_Thread.cpp
        * ace/OS_NS_Thread.h
        * ace/OS_NS_Thread.inl
          Changed important_writer_ to bool

Fri Jun  5 18:20:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SString.h:
          Doxygen changes

Fri Jun  5 18:16:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ETCL/ETCL_Interpreter.cpp:
          Prefix increment and const changes

        * ace/SString.h:
          Doxygen changes

Thu Jun  4 10:14:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Select_Reactor_T.cpp:
          Only call the notify_handler_ when we have a valid pointer

Thu Jun  4 09:42:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * contrib/FaCE/CE_ARGV.h:
        * contrib/FaCE/FaCE.cpp:
          Fixed GCC 4.4 warnings

Thu Jun  4 09:12:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdio.h:
          Fixed MinGW compile problem

Thu Jun  4 08:56:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.inl (isatty):
          Check the return value of _open_osfhandle, if it returns -1,
          it failed and then calling _isatty with -1 will cause an
          assert of the msvc9 runtime

Wed Jun  3 07:52:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessWinCE.pm:
        * bin/PerlACE/ProcessWinCE_Unix.pm:
          If we can't find the vxtest file, log it as error but just
          continue

Mon Jun  1 08:09:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Lib_Find.cpp:
          Fixed gcc4.4 warning in a different way, broke other builds

        * ace/config-win32-borland.h:
          Changed version checks to not have to patch again for a next
          path from Embarcadero

Mon Jun  1 05:22:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Lib_Find.cpp:
          Fixed gcc4.4 warnings

Mon Jun  1 05:15:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-borland.h:
          We new require to have update pack 3 installed

Fri May 29 16:08:32 UTC 2009  Steve Huston  <shuston@riverace.com>

        * tests/Bug_2740_Regression_Test.cpp:
        * tests/tests.mpc:
        * tests/run_test.lst: New test based on code submitted in
          Bugzilla 2740.

Fri May 29 13:36:05  2009  Marcel Smit  <msmit@remedy.nl>

        * ace/OS_NS_stropts.cpp:
        * ace/OS_NS_sys_socket.cpp:
        * include/makeinclude/platform_cegcc.GNU:

          Fixed compiler error for QoS when compiler is CE gcc.
          Removed UNDER_CE < 500.

Fri May 29 11:41:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/QoS/qos.mpc:
          Use prop:windows

Tue May 26 06:56:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Configuration.{h,cpp}
          Removed my WinCE code again, it seems to break another part
          of the test

        * ace/os_include/netinet/os_in.h:
          Layout change

        * ace/config-win32-msvc-10.h:
        * ace/config-win32-msvc-9.h:
          If we compile for Vista or higher then enable the native
          windows condition variables

Tue May 26 05:56:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/JAWS/server/HTTP_Server.cpp:
          Fixed include

Mon May 25 18:47:24 UTC 2009  Carlos O'Ryan  <coryan@atdesk.com>

        * ace/config-linux-common.h:
        * ace/OS_NS_dirent.h:
          Johnny Willemsen found a more elegant fix.  Applied.

Mon May 25 18:21:40 UTC 2009  Carlos O'Ryan  <coryan@atdesk.com>

        * ace/OS_NS_dirent.h:
        * ace/config-linux-common.h:
          Fixed bug 3681, code would not build with glibc-2.10 because the
          prototype for scandir() changed.  Automatically detect the
          version of glibc and use the right prototype for it.

Mon May 25 11:26:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/JAWS/server/IO.cpp
        * apps/JAWS/server/IO.h
        * apps/JAWS/server/JAWS_IO.cpp
        * apps/JAWS/server/JAWS_IO.h
          Renamed to JAWS_IO

        * apps/JAWS/server/HTTP_Handler.h
        * apps/JAWS/server/HTTP_Response.cpp
        * apps/JAWS/server/JAWS_Concurrency.h
        * apps/JAWS/server/Makefile.am
        * apps/JAWS/server/server.mpc
          Updated because of change above

Mon May 25 09:47:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_sys_mman.inl:
          Don't pass unsupported flags with WinCE. This fixes the Mem_Map_Test

Sun May 24 18:27:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Configuration.{h,cpp}
          With WinCE RegKeyDelete just does a recursive delete, on regular
          Windows RegKeyDelete only works when there are no subkeys. Added
          WinCE specific code to check if we have subkeys, if yes, then
          return with an error

Fri May 22 16:20:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Message_Queue_Test.cpp:
          Run part of this test again on VxWorks and reduced the number
          it messages in the counting test for WinCE, the amount of messages
          is too much for CE to finish the test in time

Fri May 22 16:10:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/ACE_Init_Test.cpp:
          Improved message

        * tests/Dirent_Test.cpp:
          Initialise pointer to 0

        * tests/SOCK_Connector_Test.cpp:
          Print errno to get some more feedback why this fails on WinCE

Fri May 22 12:11:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessWinCE.pm:
        * bin/PerlACE/ProcessWinCE_Unix.pm:
          Only use the vxtest file in a non static test

Fri May 22 11:12:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:
          Fixed casing of include for cegcc

Fri May 22 10:57:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          Some defines only have to be set, not to 1

Fri May 22 10:51:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/JAWS3/jaws3/IO.cpp
        * apps/JAWS3/jaws3/IO.h
        * apps/JAWS3/jaws3/Jaws_IO.cpp
        * apps/JAWS3/jaws3/Jaws_IO.h
          Renamed to Jaws_IO to fix problems on windows

        * apps/JAWS3/jaws3/Asynch_IO.cpp
        * apps/JAWS3/jaws3/Asynch_IO.h
        * apps/JAWS3/jaws3/Asynch_IO_Helpers.h
        * apps/JAWS3/jaws3/jaws3.mpc
        * apps/JAWS3/jaws3/Makefile.am
        * apps/JAWS3/jaws3/Reactive_IO.cpp
        * apps/JAWS3/jaws3/Reactive_IO.h
        * apps/JAWS3/jaws3/Reactive_IO_Helpers.h
        * apps/JAWS3/jaws3/Synch_IO.cpp
        * apps/JAWS3/jaws3/Synch_IO.h
        * apps/JAWS3/jaws3/Templates.cpp
          Updated includes and filenames

Fri May 22 08:31:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Module.h:
          Doxygen fixes

Fri May 22 07:41:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/run_all.pl:
        * bin/run_all_win32.pl:
          Not maintained for some time and seems they are broken

Fri May 22 07:26:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * apps/JAWS2/JAWS/IO.cpp
        * apps/JAWS2/JAWS/IO.h
        * apps/JAWS2/JAWS/Jaws_IO.cpp
        * apps/JAWS2/JAWS/Jaws_IO.h
          Renamed to Jaws_IO to fix problems on windows

        * apps/JAWS2/JAWS/Concurrency.h
        * apps/JAWS2/JAWS/IO_Acceptor.h
        * apps/JAWS2/JAWS/IO_Handler.cpp
        * apps/JAWS2/JAWS/jaws2.mpc
        * apps/JAWS2/JAWS/Makefile.am
        * apps/JAWS2/JAWS/Pipeline_Tasks.cpp
        * apps/JAWS2/JAWS/Server.cpp
          Updated includes and filenames

Wed May 20 12:13:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessVX.pm:
        * bin/PerlACE/ProcessVX_Unix.pm:
        * bin/PerlACE/ProcessVX_Win32.pm:
        * bin/PerlACE/ProcessWinCE.pm:
        * bin/PerlACE/ProcessWinCE_Unix.pm:
          Use SYSTEM_LIBS when they are defined. List of dlls that are
          copied from the lib directory seperate by a semi colon

Wed May 20 12:00:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/TestTarget.pm:
          Added SYSTEM_LIBS support, these have to be copied before we
          can run an executable

Wed May 20 11:29:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/Process_Unix.pm:
          Support cross platform testing

Wed May 20 07:38:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdio.inl:
          On some platforms fileno is a macro

        * ace/OS_NS_dirent.cpp:
          Layout and const changes

Tue May 19 13:23:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          Added _WIN32_IE=0x0500 to RCFLAGS

Tue May 19 13:14:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * contrib/FaCE/FaCE.mpc:
        * contrib/FaCE/FaCENOACE.mpc:
          Added missing lib

Tue May 19 11:22:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          Set RCFLAGS

Tue May 19 10:12:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * contrib/FaCE/CE_Screen_Output.h:
          Added missing include of stdio.h for FILE

Tue May 19 07:13:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Mem_Map/IO-tests/IO_Test.cpp:
          Use ACE_OS::fileno

Tue May 19 06:52:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Countdown_Time.cpp (stop):
          Make sure elapsed_time is equal or bigger then zero to prevent
          expanding the max_wait_time at the moment the system time
          has been changed. Thanks to Michael Guntli
          <michael dot guntli at leica-geosystems dot com> for reporting this.

Tue May 19 06:50:05  2009  Marcel Smit  <msmit@remedy.nl>

        * ace/config-win32-cegcc.h
          Removed compiler flags since they are now in platform_cegcc.GNU.

Tue May 19 06:31:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          Pass mandatory compiler flags from here

Tue May 19 06:17:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Added fileno to ACE_OS check

Tue May 19 06:14:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdio.inl:
          Added fileno wrapper which returns ACE_HANDLE. The CEGCC developers
          fixed their header files

        * ace/ETCL/ETCL_l.cpp:
        * ace/ETCL/ETCL_l.cpp.diff
          Use ACE_OS::fileno

        * ace/os_include/os_unistd.h:
          Removed obsolete casts for WinCE

        * ace/OS_NS_Thread.inl:
          Const changes

Mon May 18 19:58:35 UTC 2009  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-5.x.h: Add explicit instantiation for the
          ACE_EXPORT_SINGLETON_DECLARE - the compiler needs to be forced to
          generate the template code even if there's no use of it. Fixes
          unsats for ACE_Utils::UUID_Generator singleton.
          Also removed settings for AIX Visual Age, etc. earlier than V6.

Mon May 18 17:11:28 UTC 2009  Steve Huston  <shuston@riverace.com>

        * ace/UUID.cpp: Reverted:
          Mon May 18 15:33:17 UTC 2009  Steve Huston  <shuston@riverace.com>
          It breaks g++ builds. Working on another solution...

Mon May 18 15:33:17 UTC 2009  Steve Huston  <shuston@riverace.com>

        * ace/UUID.cpp: Add explicit instantiation of UUID_Generator singleton.
          Ensures the code is compiled; resolves missing extern sym on AIX.

Mon May 18 14:44:27 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * bin/fuzz.pl:

          Added and enabled check_for_TAO_Local_RefCounted_Object.

Mon May 18 10:11:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/High_Res_Timer.cpp:
        * ace/High_Res_Timer.inl:
          Const changes

        * ace/Token.h:
          When not defined ACE_USES_WINCE_SEMA_SIMULATION use the
          semaphore implementation

Mon May 18 08:26:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Countdown_Time.cpp
        * ace/Countdown_Time.h
        * ace/Countdown_Time.inl
        * ace/Makefile.am:
          Added inline file for Countdown_Time

        * ace/os_include/sys/os_time.h:
          Removed workaround for deprecated sco

Mon May 18 07:48:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Condition_Recursive_Thread_Mutex.cpp:
          Const change

        * ace/OS_NS_stdio.{h,inl}:
          Removed ACE_OS::fileno(), gives problems with CE at this moment

        * ace/Recursive_Thread_Mutex.cpp (get_nesting_level):
          Disabled again for WinCE, the fact that it compiled is a bug
          in the CEGCC header files

        * ace/OS_NS_Thread.cpp:
          Bool changes

        * ace/OS_NS_stdlib.cpp:
          WinCE has ExitProcess

Mon May 18 06:45:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Recursive_Thread_Mutex.cpp (get_nesting_level):
          Enabled for WinCE

Mon May 18 06:17:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdio.{h,inl}:
          Added ACE_OS::fileno()

Mon May 18 06:15:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Dirent_Test.cpp:
          Fixed argument not used warning

        * tests/Based_Pointer_Test.cpp:
          Improved debug message

        * tests/Config_Test.cpp:
          Const change

        * tests/Thread_Pool_Reactor_Test.cpp:
          Fixed rcsid

Mon May 18 06:12:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/Reactor/TP_Reactor/AcceptHandler.cpp:
        * examples/Reactor/TP_Reactor/server.cpp:
          Use ACE_ERRNO_GET

Sun May 17 10:34:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-cegcc.h:
          Use lib prefix, the gcc toolchain expects it

        * ace/Future.cpp:
          Layout changes

        * include/makeinclude/platform_cegcc.GNU:
          Just use the default lib prefix

        * ace/Configuration.cpp:
          Removed mingw check, that code also works with other compilers

Sat May 16 18:03:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/OS/Process/imore.cpp:
          Fixed cegcc compile warnings

Fri May 15 13:57:29 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * bin/MakeProjectCreator/config/ipv6.mpb:

          Replaced: specific(vc6, vc7, vc71, vc8, vc9, vc10, nmake, bmake, bds4)
          With: specific(prop:windows)

          Zapped references to em3, we no longer support that environement.

        * bin/MakeProjectCreator/config/vcfullmacros.mpt:
        * bin/MakeProjectCreator/config/vcpartialmacros.mpt:

          Zapped references to em3, we no longer support that environement.

Fri May 15 12:36:35 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * ace/UUID.h:

          Removed the unnecessary semicolon.

Fri May 15 07:10:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Logging_Strategy_Test.cpp:
          Added debug statement to assist in analyzing the cegcc failure

Thu May 14 12:06:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Default_Constants.h:
          Only define ACE_DLL_PREFIX when it has not been defined yet,
          that way the mingw specific define can move to the mingw config
          file

        * ace/config-win32-mingw.h:
          Define ACE_DLL_PREFIX here

        * ace/OS_NS_dlfcn.inl:
          Initialise pointer with 0

        * ace/OS_NS_sys_mman.inl:
          Const change

        * ace/OS_NS_Thread.cpp:
          Removed some not needed ACE_UNUSED_ARG

        * ace/OS_Thread_Adapter.h:
        * ace/Process.cpp:
        * ace/Sig_Handler.cpp:
        * ace/Thread_Manager.inl:
          Layout change

        * ace/Thread_Manager.cpp:
          Const change, initialise pointer with 0

Thu May 14 19:39:58 UTC 2009  Abdullah Sowayan  <sowayan@gmail.com>

        * bin/MakeProjectCreator/config/ace_fl.mpb:
        * bin/MakeProjectCreator/config/ace_gl.mpb:
        * bin/MakeProjectCreator/config/ace_mc.mpb:
        * bin/MakeProjectCreator/config/ace_qt.mpb:
        * bin/MakeProjectCreator/config/ace_x11.mpb:
        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/crosscompile.mpb:

          Replaced: specific(nmake, vc71, vc8, vc9, vc10)
          With: specific(prop:microsoft)

Thu May 14 18:27:53 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * ace/UUID.h:
        * ace/UUID.cpp:

          Fixed compilation errors related to namespace issues when
          declaring the UUID_Generator singleton.

Thu May 14 10:18:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Process_Manager_Test.cpp:
          Set the process_name in the process options for WinCE

Thu May 14 10:10:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Network_Adapters_Test.cpp:
          Only register signal handlers for SIGINT, SIGQUIT and SIGTERM when
          they are not equal zero

        * tests/Process_Manager_Test.cpp:
          Const changes, prefix increment/decrement

Thu May 14 07:17:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/DLL_Test.cpp:
          Directly assign a local variable

        * tests/Message_Queue_Notifications_Test.cpp:
        * tests/Message_Queue_Test.cpp:
        * tests/Multicast_Test.cpp
          Initialise some pointers with 0

Thu May 14 00:01:54 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * ace/UUID.h:
        * ace/UUID.inl:
        * ace/UUID.cpp:
        * tests/UUID_Test.cpp:

          The constructor for the UUID generator now calls init ().

          Added ACE_SINGLETON_DECLARE to the UUID_GENERATOR singleton
          so it will be properly exported from the ACE library.

Wed May 13 17:02:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Network_Adapters_Test.cpp:
          When registering the signal handlers fails also print the
          signal number that failed

Tue May 12 18:26:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp
        * protocols/tests/HTBP/Reactor_Tests/client.cpp
        * protocols/tests/HTBP/Send_Large_Msg/client.cpp
          More usage of ACE_ERRNO_GET

Tue May 12 12:35:07 UTC 2009  Vladimir Zykov  <vz@prismtech.com>

        * apps/gperf/src/Key_List.cpp:

          Fixed an incorrect check which resulted in valgrind warning.

Tue May 12 08:31:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_errno.h:
          Added ACE_ERRNO_GET, this has to be used when errno is passed to a
          C variable length argument . With WinCE errno is a class instance
          which we can't pass through a variable length argument, the cegcc
          compiler gives a warning about this, it results to an abort at
          runtime. ACE_ERRNO_GET will return the errno as int with WinCE

        * ace/DLL_Manager.cpp:
        * examples/Reactor/TP_Reactor/AcceptHandler.cpp:
        * examples/Reactor/TP_Reactor/client.cpp:
        * examples/Reactor/TP_Reactor/ReadHandler.cpp:
        * tests/Mem_Map_Test.cpp:
        * tests/MT_Reactor_Timer_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/New_Fail_Test.cpp:
        * tests/Priority_Task_Test.cpp:
        * tests/Reactor_Performance_Test.cpp:
        * tests/SOCK_Connector_Test.cpp:
        * tests/Thread_Pool_Reactor_Resume_Test.cpp:
          Use ACE_ERRNO_GET

        * tests/Reactor_Notify_Test.cpp:
          Fixed typo in comment

Mon May 11 18:28:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          Some WinCE workarounds are only needed for older WinCE versions
          and when IPv6 is enabled

Mon May 11 18:17:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.cpp:
        * ace/Pagefile_Memory_Pool.cpp:
        * ace/Pagefile_Memory_Pool.h:
          Fixed cegcc compile warnings

Sun May 10 14:50:46 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * m4/aio.m4 (Test_Aio): Removed all the commented out 'cout'
          lines.  Thanks to Johnny for this suggestion.

Sat May  9 03:29:08 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * m4/aio.m4: Change #include <iostream.h> to #include <iostream>.
          Thanks to Boyan Kasarov <bkasarov at gmail dot com> for
          reporting this.

Mon May 11 06:54:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdio.inl (fflush):
          Don't handle fflush(0) special for VxWorks. On VxWorks
          fflush(0) is not supported and returns -1, just pass that
          error back to the caller and not hide it.

        * ace/Mem_Map_Test.cpp:
          Updated for VxWorks 6.7

Sun May 10 10:31:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/*
          Changed the _ in the directory names to ., the MPC clonebuild tree
          can handle the .d now

Thu May  7 01:32:22 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Process.cpp(command_line):

          Added check for buffer overflow. Thanks to Russ
          Noseworthy <j dot russell dot noseworthy at saic dot com>
          for submitting the patch.

        * Monitor_Admin.h:
        * Monitor_Control/Auto_Update_Starter.h:

          Cosmetic changes.

Tue May  5 13:23:57 UTC 2009  Olli Savia  <ops@iki.fi>

        * apps/drwho/CM_Server.cpp:
          Fixed memset's parameter order.

Sat May  2 03:21:01 UTC 2009  Carlos O'Ryan  <coryan@atdesk.com>

        * include/makeinclude/rules.lib.GNU:
        * include/makeinclude/wrapper_macros.GNU:
          Moved the definition of LIB_PREFIX from rules.lib.GNU to
          wrapper_macros.GNU.
          Now that the checks for library dependencies (i.e. the LIB_CHECK
          variable) depends on LIB_PREFIX, this latter variable needs to
          be defined in all Makefiles.
          However, Makefiles for binaries do not include rules.lib.GNU.
          I am pretty sure they call include wrapper_macros, thus my
          choice for the new location.

Fri May  1 18:54:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/*
          Changed the . in the directory names to _, the MPC clonebuild tree
          can't handle that

Fri May  1 18:35:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.cpp (add_to_argv):
          Do nothing if the length of the string is zero

Fri May  1 18:17:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.cpp:
          Only add the arg from vx_execae when the string has data.

Fri May  1 17:46:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Map_Manager_Test.cpp:
          If table_size equals zero we fail directly

Fri May  1 17:29:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Default_Constants.h:
          Made sure ACE_DEFAULT_TIMERS is defined and not zero

Fri May  1 12:27:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Default_Constants.h:
          ACE_DEFAULT_MAP_SIZE and ACE_DEFAULT_TIMERS shouldn't be zero

Fri May  1 12:19:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/INET_Addr_Test_IPV6.cpp:
          No need for ACE_UNUSED_ARG

        * tests/Map_Manager_Test.cpp:
          Use ACE_TEST_ASSERT and added some more checks

        * tests/test_config.h:
          Removed ghs workaround and check return value of log_msg open
          call

Fri May  1 11:43:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Event_Handler.cpp:
          Initialise members in the ACE_Notification_Buffer constructor

        * ace/Log_Record.h:
          Doxygen fix

        * ace/Notification_Queue.cpp:
          Layout change

        * ace/Select_Reactor_Base.cpp:
          Small code simplification

Fri May  1 09:13:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          opt files are allowed in svn

        * bin/make_release.py:
          Don't generate Pocket PC 2003 and Smartphone 2003 projects

Fri May  1 07:37:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-rpmlintrc.txt:
          Fixed line wrapper

        * rpmbuild/ace-tao.txt:
          Removed, we are not maintaining this file anymore

        * rpmbuild/README:
          Small updates

Fri May  1 07:31:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/*:
          Changed location of config files for suse

Fri May  1 07:15:05  2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/*:
          Extract all archives and put them in subdirectories, makes it much
          easier to update these files

Wed Apr 29 16:30:05  2009  Steve Huston  <shuston@riverace.com>

        * ace/Asynch_Acceptor.cpp (handle_accept): Pass the ACT to accept()
          when restarting the accept. Thanks to Dicky for this fix.

        * THANKS: Added Dicky <qianchendi at gmail dot com>.

Wed Apr 29 13:52:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Active_Objects/active_objects.mpc
        * examples/APG/Config/config.mpc
        * examples/APG/Containers/containers.mpc
        * examples/APG/Misc_IPC/misc_ipc.mpc
        * examples/APG/Naming/naming.mpc
        * examples/APG/Proactor/proactor.mpc
        * examples/APG/Processes/processes.mpc
        * examples/APG/Shared_Memory/shared_memory.mpc
        * examples/APG/Streams/streams.mpc
        * examples/APG/Svc_Config/svc_config.mpc
        * examples/APG/ThreadPools/threadpools.mpc
        * examples/APG/ThreadSafety/threadsafety.mpc
        * examples/ASX/Event_Server/Event_Server/Event.mpc
        * examples/ASX/UPIPE_Event_Server/UPIPE_Event.mpc
        * examples/C++NPv1/C++NPv1.mpc
        * examples/C++NPv2/C++NPv2.mpc
        * examples/Connection/blocking/Connection_Blocking.mpc
        * examples/Connection/misc/Connection_Misc.mpc
        * examples/Connection/non_blocking/Connection_Non_Blocking.mpc
        * examples/IPC_SAP/DEV_SAP/reader/dev_sap_reader.mpc
        * examples/IPC_SAP/DEV_SAP/writer/dev_sap_writer.mpc
        * examples/IPC_SAP/FIFO_SAP/fifo_sap.mpc
        * examples/IPC_SAP/FILE_SAP/file_sap_client.mpc
        * examples/IPC_SAP/SOCK_SAP/sock_sap.mpc
        * examples/IPC_SAP/SSL_SAP/SSL_SAP.mpc
        * examples/IPC_SAP/UPIPE_SAP/UPIPE_SAP.mpc
        * examples/Mem_Map/file-reverse/Mem_Map_File_Reverse.mpc
        * examples/Mem_Map/IO-tests/Mem_Map_IO_Tests.mpc
        * examples/Misc/Misc.mpc
        * examples/Naming/Naming.mpc
        * examples/OS/Process/OS_Process.mpc
        * examples/QOS/Diffserv/QOS_Diffserv.mpc
        * examples/Reactor/Dgram/Reactor_Dgram.mpc
        * examples/Reactor/FIFO/Reactor_FIFO.mpc
        * examples/Reactor/Proactor/Proactor.mpc
        * examples/Reactor/WFMO_Reactor/WFMO_Reactor.mpc
        * examples/Semaphores/Semaphores.mpc
        * examples/Service_Configurator/IPC-tests/client/Svc_Cfg_IPC_Client.mpc
        * examples/Service_Configurator/IPC-tests/server/Svc_Cfg_IPC_Server.mpc
        * examples/Shared_Malloc/Shared_Malloc.mpc
        * examples/Shared_Memory/Shared_Memory.mpc
        * examples/Synch/Synch.mpc
        * examples/System_V_IPC/SV_Message_Queues/SV_Message_Queues.mpc
        * examples/System_V_IPC/SV_Semaphores/SV_Semaphores.mpc
        * examples/Threads/Threads.mpc
        * examples/Web_Crawler/Web_Crawler.mpc
          Use the avoids_ace_for_tao base project

Wed Apr 29 09:47:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/templates/gnu.mpd:
          Don't use a harcoded lib prefix when checking the existance of the
          libraries, but use $(LIB_PREFIX)

Wed Apr 29 09:29:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          Set LIB_PREFIX to empty

Wed Apr 29 06:09:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks6.3.GNU:
        * include/makeinclude/platform_vxworks6.7.GNU:
          Moved the workaround to the vxworks 6.7 file

Tue Apr 28 18:52:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SSL/SSL_Context.cpp (set_mode):
           Fix compile error with OpenSSL 1.0 beta 2. Thanks to
           Jules Colding  <colding at 42tools dot com> for reporting this

Tue Apr 28 18:33:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessVX_Unix.pm
        * bin/PerlACE/ProcessVX_Win32.pm
        * bin/PerlACE/ProcessWinCE.pm
        * bin/PerlACE/ProcessWinCE_Unix.pm
        * bin/PerlACE/TestTarget_VxWorks.pm
          Improved waiting for the prompt

Tue Apr 28 18:00:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          No prelib for cegcc

Tue Apr 28 17:42:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessWinCE_Unix.pm:
        * bin/PerlACE/TestTarget_WinCE.pm:
          Extended for WinCE cross platform testing

Tue Apr 28 11:42:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SSL/SSL_Context.cpp (set_mode):
          Reverted change below, it breaks current ssl support

Tue Apr 28 09:39:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SSL/SSL_Context.cpp (set_mode):
        Fix compile error with OpenSSL 1.0 beta 2. Thanks to
        Jules Colding  <colding at 42tools dot com> for reporting this

Tue Apr 28 09:30:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks6.3.GNU:
          Fixed vxworks 6.7 rtp shared library link

Tue Apr 28 09:26:12 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.cpp:
          Fixed vxworks warning

        * ace/Service_Object.cpp:
          Layout changes

Tue Apr 28 07:58:16 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * bin/PerlACE/ProcessVX.pm:
        * bin/PerlACE/ProcessWinCE_Unix.pm:
        * bin/PerlACE/Run_Test.pm:
        * bin/PerlACE/TestTarget_WinCE.pm:
          Changed to run Windows CE tests, build with CE gcc, on Linux.

Fri Apr 24 20:40:16 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * docs/ace_guidelines.vsmacros:

          Excluded Purify files from edit macros.

Fri Apr 24 12:21:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Condition_Recursive_Thread_Mutex.h:
          Doxygen change

        * ace/config-cygwin32.h:
          Change for Cygwin 1.7

        * ace/OS_NS_unistd.cpp (num_processors_online):
          Don't use a hard max of 32.

Wed Apr 22 10:14:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.cpp:
          Implemented num_processors and num_processors_online using the
          VxWorks cpu lib

        * ace/config-vxworks6.6.h:
          VxWorks 6.6 and newer have cpuLib

        * ace/OS_NS_unistd.inl:
          Const change

Wed Apr 22 09:48:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Atomic_Op_T.cpp:
        * ace/Guard_T.cpp:
          Fixed compile problems when ACE_HAS_DUMP is enabled. Thanks to
          Skrzyniarz Alexandre <alexandre dot skrzyniarz at fr dot thalesgroup dot com>
          for reporting this

Tue Apr 21 14:50:23 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * docs/ace_guidelines.vsmacros:

          Prevented the macros from saving .rc files.

Tue Apr 21 13:50:48 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * bin/diff-builds-and-group-fixed-tests-only.sh:

          Fixed the olddate to be consistent with the release of 5.6.9.

Tue Apr 21 07:02:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/OS/Process/imore.cpp:
        * tests/Recursive_Mutex_Test.cpp:
          Fixed cegcc warning

Mon Apr 20 20:01:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_string.cpp:
          Fixed argument not used warning

Mon Apr 20 19:51:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Malloc_Test.cpp:
          Fixed argument not used warning with cegcc

Mon Apr 20 18:16:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_gnuwin32_common.GNU:
          dlltool is also dependent on architecture

Mon Apr 20 18:08:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ETCL/ETCL_l.cpp:
        * ace/ETCL/ETCL_l.cpp.diff:
          Added a cast for WinCE with GCC

Mon Apr 20 17:47:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/WFMO_Reactor.cpp:
          Fixed argument not used warning with WinCE

        * include/makeinclude/platform_gnuwin32_common.GNU:
          dlltool is also dependent on architecture

Mon Apr 20 17:43:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          Include iphlpapi.h with all lower cases to resolve compile
          error when using cross compilation using a linux host

Mon Apr 20 17:39:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_unistd.h:
          Added a cast to resolve cegcc compile error

Mon Apr 20 17:34:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_errno.h:
          Prevent redefinitions and when we don't have errno.h, define
          the error numbers if they are not defined yet. Needed for cegcc

Mon Apr 20 17:26:06 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-cegcc.h:
          Include _mingw.h and check the MinGW version

Mon Apr 20 17:16:06 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/config-win32-cegcc.h:
          Fixes compiler error on CE gcc

Mon Apr 20 13:52:06 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/config-win32-cegcc.h:
          Made a few define's CE gcc version depended.

        * include/makeinclude/platform_cegcc.GNU:
          Included ACE_HAS_CEGCC as define

Mon Apr 20 12:53:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/wrapper_macros.GNU:
          For quantify use PURELINK, quantify shouldn't be used when
          linking a shared library. This fixes bugzilla 1865, thanks
          to <moyyo at freetekno dot cz> for reporting this.

Mon Apr 20 11:40:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/wrapper_macros.GNU:
          Addes support for SOLINK.cc.override

Mon Apr 20 11:38:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
          Only set COMPARCH when it has not been set yet

Mon Apr 20 10:17:32 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/Basic_Types.h:
        * ace/config-WinCE.h:
        * ace/OS_NS_stropts.h:
        * ace/OS_NS_sys_socket.h:
        * ace/OS_NS_Thread.cpp:
          Removed WinCE support for versions < 5.0.

        * ace/config-win32-cegcc.h:
          Removed temporary defines.

        * ace/config-win32-common.h:
          Replaced UNDER_CE with _WIN32_WCE.

        * ace/OS_main.cpp:
        * ace/OS_main.h:
          Removed CE gcc compiler warning by
          adding destructor.

        * ace/OS_NS_Thread.inl:
          Removed WinCE support for versions before 5.0.
          Added ACE_LACKS_CE_THREAD_PRIORITY define in order
          to compile on CE gcc.

        * ace/Process.cpp:
          Removed CE gcc compiler warning by
          using ACE_UNUSED_ARG.

        * ace/Registry.cpp:
        * ace/Registry.h:
          Removed CE gcc compiler warning by
          adding destructor.
          Removed CE gcc compiler warning by
          using ACE_UNUSED_ARG.

        * ace/SV_Semaphore_Simple.cpp:
          Removed pragma's for CE gcc compiler. Removed
          check on ACE_WIN64 define.

        * include/makeinclude/platform_cegcc.GNU:
          Default platform macros for CE gcc compiler.

        * include/makeinclude/platform_gnuwin32_common.GNU:
          Added support for CE gcc compiler.

Mon Apr 20 09:01:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks6.6.h:
        * ace/config-vxworks6.4.h:
          VxWorks 6.6 and newer have cpuset_t and taskCpuAffinitySet

Mon Apr 20 08:51:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks6.6.h:
        * NEWS:
          Enabled the vxAtomicLib by default for VxWorks 6.6 and newer.
          If you don't want to use this library, undef ACE_HAS_VXATOMICLIB
          in your config.h file

Mon Apr 20 08:45:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          Another fix for HPUX

Sun Apr 19 19:10:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-hpux-11.00.h
        * ace/Sock_Connect.cpp:
          Added ACE_HAS_STRUCT_LIFNUM, hpux doesn't have this

Sun Apr 19 06:57:04 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * ace/UUID.h:
        * ace/UUID.inl:
        * ace/UUID.cpp:
        * tests/UUID_Test.cpp:

          Redesigned the internal structure of the UUID so that its key
          data members are a contiguous chunk of memory.

          Implemented a hash () method for the UUID. This will enable it
          to be used in ACE_Hash_Map_Manager objects.

          Remvoed the default constructor (), copy constructor () and
          assignmetnt operator from the UUID_Node object since the UUID
          performs such operations.

Fri Apr 17 15:06:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debianbuild/patches/19-gcc43.dpatch:
          Removed, not needed anymore

Fri Apr 17 15:03:32 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Atomic_Op.{h,inl}:
          Added support for VxWorks vxAtomicLib. If you want to use
          that library add ACE_HAS_VXATOMICLIB to your config.h file

        * ace/config-vxworks6.4.h:
          VxWorks 6.4 has cpuset_t and taskCpuAffinitySet

        * ace/os_include/os_sched.h:
          VxWorks has cpuset_t

        * ace/OS_NS_sys_mman.inl:
          Updated VxWorks version checks

        * ace/OS_NS_sys_utsname.cpp:
          const change

        * ace/OS_NS_Thread.cpp:
          Added support for taskCpuAffinitySet

        * ace/Sock_Connect.cpp:
          Changed the checks for VxWorks to correctly detect which
          implementation of get_ip_interfaces we have to use

        * rpmbuild/ace-tao-orbsvcs-daemon.patch:
          This patch doesn't work anymore with svn head, if this
          is a real issue, it has to be addressed in the real code
          and not with a patch. This should already be possible with
          the -ORBDeamon flag

        * rpmbuild/ace-tao-ciao.spec:
          Don't apply ace-tao-orbsvcs-daemon.patch, fixed a small
          provides bug

Thu Apr 16 16:03:32 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * bin/make_release.py:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
        * rpmbuild/ace-tao-ciao.spec:

          Updated in anticipation of 5.7 release.

Tue Apr 14 10:06:19 CDT 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE version 5.6.9 released.

Tue Apr 14 13:57:16 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * NEWS:

          Reworded entries to be consistent with release note.

Mon Apr 13 12:19:18 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/config-linux-common.h:

          Reverted previous change.

Sun Apr 12 20:37:11 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/config-linux-common.h:

          The Rawhide nightly build shows that the scandir and alphasort
          functions have been redefined to finally take dirrent args. The
          detectable difference appears to be in the glibc version code,
          which is 2.9 on the Rawhide build machine.

Sat Apr 11 13:13:49 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/config-macosx-leopard.h:

          Darwin also has a variation that varies the signature of
          unsetenv().

Fri Apr 10 10:26:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-openvms.h
          OpenVMS lacks setenv/unsetenv

Fri Apr 10 03:32:04 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_stdlib.inl:

          Fix typo from previous commit.

Fri Apr 10 03:00:44 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_stdlib.inl:
        * ace/config-qnx-rtp-common.h:

          The newly added [un]setenv wrappers don't compile on qnx rtp
          because that platform defines unsetenv as having a void
          return. It is possible that other platforms have this as well,
          as legacy linux man pages show that signature.

Thu Apr  9 12:34:41 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/OS_NS_stdio.inl:
          Reverted renaming of ACE_HAS_NONCONST_WFDOPEN define

Thu Apr  9 11:45:08 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/OS_NS_stdio.inl:
          Resolved compiler error on WinCE 5 VC 8.

Wed Apr  8 10:59:59 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/config-win32-cegcc.h:
          Added to support CE gcc compiler

        * ace/config-win32-common.h:
          Prevent ACE_HAS_CUSTOM_EXPORT_MACROS from
          being defined a second time.

        * ace/config-win32.h:
          Introduced ACE_HAS_CEGCC. When defined,
          config-win32-cegcc is included.

        * ace/Numeric_Limits.h:
          "#ifdef" replace by "#if defined"

        * ace/os_include/sys/os_stat.h:
          Prevent defines from being defined a second time.

        * ace/OS_NS_stdio.inl:
          Prevent compiler errors when compiling
          with CE gcc compiler.

          Using global namespace for fseek

        * ace/OS_NS_stdlib.inl:
          Prevent compiler errors when compiling
          with CE gcc compiler.

        * ace/OS_NS_Thread.h:
          Defining STACK_SIZE_PARAM_IS_A_RESERVATION (when it
          isn't defined yet).

        * ace/OS_NS_time.h:
        * ace/Time_Value.inl:
          Prevent pragma warnings when compiling with
          CE gcc compiler.

Wed Apr  8 10:13:28 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-lynxos.h:
          LynxOS 5.0 has setenv/unsetenv.

Wed Apr  8 10:01:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessVX_Unix.pm:
          Increased number of telnet retries

Tue Apr  7 20:29:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-lynxos.h
          LynxOS lacks setenv/unsetenv

Tue Apr  7 16:44:37 UTC 2009  James H. Hill  <hillj@isis.vanderbilt.edu>

        * docs/ace_guidelines.vsmacros:

          Bug fix where the script was trying to run on unsupported
          text files, which was causing an exception.

Tue Apr  7 09:33:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-sunos5.5.h
          Solaris lacks setenv/unsetenv

Tue Apr  7 09:32:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * configure.ac:
          Added setenv/unsetenv

Tue Apr  7 09:20:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-hpux-11.00.h
          HPUX lacks setenv/unsetenv

Tue Apr  7 06:56:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/config-vxworks6.4.h:
          VxWorks kernel model lacks setenv/unsetenv

        * bin/fuzz.pl:
          Added setenv/unsetenv

Mon Apr  6 21:59:51 UTC 2009  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_sunos5_g++.GNU: Don't acc CFLAGS to
          CCFLAGS; set options that make sense to C and C++ in the
          respective CFLAGS/CCFLAGS. Not all options are cross-compatible
          so they shouldn't be blindly included. Has the side-affect of
          removing the double -pipe (and other options included twice)
          and fixes Bugzilla #3232.

Mon Apr  6 15:17:23 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * tests/Message_Queue_Test.cpp: Added a new close_test() function
          to test the fix to Message_Queue_T::close().  Thanks to Igor
          Rayak <igor dot rayak at gmail dot com> for providing this.

Mon Apr  6 14:46:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
          Windows doesn't have setenv/unsetenv

Mon Apr  6 13:44:31 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Message_Queue_T.cpp (close): Added a comment explaining why
          we don't need to check the return value of deactivate_i().

Mon Apr  6 09:43:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-WinCE.h:
          Added missing ACE_LACKS_GETENV

Mon Apr  6 07:25:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-integritySCA.h:
          Added ACE_LACKS_PUTENV_PROTOTYPE

        * ace/config-WinCE.h:
          WinCE doesn't have environment variables

        * ace/OS_NS_stdlib.cpp:
        * ace/OS_NS_stdlib.h:
        * ace/OS_NS_stdlib.inl:
        * ace/OS_NS_unistd.cpp:
          Added setenv/unsetenv wrappers and used a specific define per
          environment method

Sun Apr  5 19:08:47 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Message_Queue_T.cpp (close): Fixed this method so it returns
          the number of messages that were flushed from the queue, as per
          its documentation.  Thanks to Igor Rayak <igor dot rayak at
          gmail dot com> for reporting this.

Sun Apr  5 18:39:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_main.cpp:
          Added missing ACE_Export

Sat Apr  4 11:49:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks6.4.h:
          Removed not needed define

Fri Apr  3 13:28:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/arpa/os_inet.h:
        * ace/os_include/sys/os_select.h:
        * ace/os_include/sys/os_socket.h:
        * ace/os_include/sys/os_un.h:
        * ace/Token.h:
        * ace/config-vxworks6.4.h:
          Moved some VxWorks checks to the config file and added some
          new defines

Thu Apr  2 19:33:13 UTC 2009  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_lynxos.GNU:
          Added -lXp to PLATFORM_X11_LIBS.

Thu Apr  2 10:05:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Sig_Handlers_Test.cpp:
          Fixed compile error and warning

Wed Apr  1 19:48:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Log_Msg_Test.cpp:
          Fix for vxworks 6.7

        * tests/Recursive_Condition_Test.cpp:
          Const change and added a debug statement

        * tests/Sig_Handlers_Test.cpp:
          Removed not needed include and fixed compile issue

        * tests/tests.mpc:
          Added missing Sig_Handlers_Test

Wed Apr  1 15:12:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Repository.h:
          Removed unicode character. Thanks to Alon Diamant
          <diamant dot alon at gmail dot com> for reporting this

Tue Mar 31 07:18:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          VxWorks 6.7 also has an issue with in6_addr

Tue Mar 31 14:59:49 UTC 2009  Adam Mitz  <mitza@ociweb.com>

        * ace/High_Res_Timer.cpp:

          Linux configured with "clock=pit" on the boot line (commonly used
          for virtual machines) can report a 0 MHz CPU, in which case ACE
          must run calibration for the High Res Timer to avoid a division by 0.

Mon Mar 30 14:32:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_Thread.inl:
          Refactored VxWorks version checks to new macros

Fri Mar 27 13:24:58 UTC 2009  Olli Savia  <ops@iki.fi>

        * bin/MakeProjectCreator/config/ace_athena3d.mpb:
        * tests/XtAthenaReactor_Test.cpp:
        * tests/tests.mpc:
          Added support for Athena-3D widgets.

Fri Mar 27 11:19:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessVX_Unix.pm:
        * bin/PerlACE/ProcessVX_Win32.pm:
          Improved error handling

Thu Mar 26 17:10:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessVX_Unix.pm:
        * bin/PerlACE/ProcessVX_Win32.pm:
          Changed waiting for the prompt, VxWorks 6.7 telnet server seems to
          have slight different timing behaviour

Thu Mar 26 12:48:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/ProcessVX.pm:
        * bin/PerlACE/ProcessVX_Unix.pm:
        * bin/PerlACE/ProcessVX_Win32.pm:
          Added support for ACE_RUN_VX_TGT_STARTUP_SCRIPT. This is a script
          on the host system that is loaded and then executed on the target

Thu Mar 26 09:21:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Added explicit provides for mpc

Thu Mar 26 09:02:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.inl (condattr_destroy, condattr_init):
          Simplified these methods

Wed Mar 25 19:27:45 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_Thread.inl:
          Address the possibility that both PTHREADS and STHREADS are
          available, which is the case on Solaris 5.5 and newer. The
          header prefers PTHREAD definitions to STHREAD, so now this code
          does the same.

Wed Mar 25 19:09:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_limits.h:
        * Kokyu/DSRT_Dispatcher_Impl_T.h:
          Fixed VxWorks 6.7 compile problems

        * Kokyu/Kokyu.cpp:
          Initialise pointers with 0

Wed Mar 25 13:04:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks6.7.h:
          isascii still gives a problem with VxWorks 6.7.

Wed Mar 25 09:15:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks.GNU:
          Added support for VxWorks 6.7

Tue Mar 24 15:16:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
          When the user defines ACE_HAS_WTHREADS_CONDITION_VARIABLE we don't
          define ACE_LACKS_COND_T

        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:
          Windows Vista/Server 2008 and newer do have native support for
          condition variables. Added a compilation time flag
          ACE_HAS_WTHREADS_CONDITION_VARIABLE, when this is defined ACE will
          use the native Windows condition api's. Did some unrelated const,
          performance, and code improvements.

        * ace/OS_NS_stdio.cpp (checkUnicodeFormat):
          Slightly change the check for the return value

Tue Mar 24 15:16:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Timer_Heap_T.cpp:
        * ace/Timer_Queue_Adapters.cpp:
          Const changes

Tue Mar 24 13:43:14 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * tests/Sig_Handlers_Test.cpp: Added a new test to ensure that the
          ACE_Sig_Handlers class is working properly.

Tue Mar 24 11:45:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_3532_Regression_Test.cpp:
          Use ACE_TEXT

Tue Mar 24 11:38:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_stdio.cpp (checkUnicodeFormat):
          Fixed a bug that the file pointer wasn't set to the start of the
          file when the file is just 1 byte large. This fixes bugzilla
          3532, thanks to Martin Gaus <gaus at gmx dot de> for reporting
          this.

Mon Mar 23 23:11:49 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Sig_Handler.cpp: Fixed a silly bug in the use of
          ACE_Fixed_Set_Iterator that was causing every other signal in
          ACE_Sig_Handlers to be skipped.  Thanks to Andreas Drescher <ace
          at anticat dot ch> for reporting this bug.

Sun Mar 22 19:21:06 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Acceptor.cpp (accept_svc_handler): Zapped the 'const' before
          the 'bool'.

Fri Mar 20 13:40:47 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Acceptor.cpp (accept_svc_handler): Added a check for a NULL
          reactor to avoid a race condition.  Thanks to JD Robertson
          <JD.Robertson at ni dot com> for reporting this.

Sun Mar 22 06:46:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.cpp:
          For ACE_BEGINTHREADEX with WinCE only pas supported flags

Fri Mar 20 16:15:15 UTC 2009  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Updated email address for Max Khon.

Fri Mar 20 08:07:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_unistd.{h,inl}:
          Use correct type for pid and WinCE change

Thu Mar 19 16:07:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/acedefaults.mpb:
        * bin/MakeProjectCreator/config/svc_conf_files.mpb:
          Add all .conf and .conf.xml files to a Svc Conf Files group
          and use it for all ace/tao projects. That way any service
          config file is part of the generated visual studio solution
          which makes it easier to edit these files

Thu Mar 19 12:42:07 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_unistd.inl:

          Further clean up to maintain style consistency in new dup()
          impl.

Thu Mar 19 11:57:46 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_unistd.inl:

          Clean up compile errors.

Wed Mar 18 14:48:23 UTC 2009  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/OS_NS_unistd.{h,inl}: Added a new ACE_OS::dup() method with
          one more parameter as process id of target process
          [ACE_OS:dup(ACE_HANDLE handle, int pid)], so that handle
          duplicated by dup() can be used in target process.  Thanks to
          kashif khan <kashif_khan198227 at yahoo dot com> for
          contributing this.

Wed Mar 18 14:28:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/ace/RMCast/Acknowledge.cpp:
        * protocols/ace/RMCast/Protocol.h:
          Initialise pointers with 0

Wed Mar 18 11:23:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-cygwin32.h:
          Added some support for Cygwin 1.7

Wed Mar 18 09:17:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.cpp:
          For ACE_BEGINTHREADEX with WinCE, just past all flags to CreateThread,
          that way the user can also specify STACK_SIZE_PARAM_IS_A_RESERVATION
          as flag

Tue Mar 17 09:10:00 UTC 2009  Simon Massey  <sma at prismtech dot com>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
          Correct Fri Mar 13 08:16:54 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>
          so that CIAO_ROOT and TAO_ROOT are actually set.

Mon Mar 16 20:04:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Let gnuplot figure our the yrange high

Mon Mar 16 19:46:53 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * THANKS
          Added MarcusM for fixing Bugzilla 3618.

Mon Mar 16 19:35:53 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/Service_Gestalt.cpp:
          Applied patch attached to Bugzilla 3618.
          Fixed Bugzilla 3618.

Mon Mar 16 18:42:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/analyticsTracking.php:
        * docs/Download.html:
          Added tracking

Mon Mar 16 13:01:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Asynch_IO.h:
        * ace/Based_Pointer_Repository.h:
          Added private copy constructor/assignment operator to prevent
          making a copy which leads to a double delete

Mon Mar 16 12:29:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Configuration.cpp:
        * ace/System_Time.cpp:
          Initialise pointers with 0

        * ace/MEM_Acceptor.h:
          Doxygen fix

        * ace/Monitor_Control_Types.cpp (operator=):
          Check for self assignment

        * ace/Name_Space.cpp:
        * ace/Name_Space.h:
          Let operator= return a value

        * ace/SOCK.h:
          Layout change

        * ace/UUID.cpp:
          Simplified operator=

Sun Mar 15 18:44:22 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Removed workarounds for TAO_IDL lib version numbers

Sat Mar 14 22:05:15 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-lynxos.h:
          Updated for LynxOS 5.0

Fri Mar 13 19:21:54 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Removed checks for OS version, we now use the gcc version

Fri Mar 13 08:16:54 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
          Check also the lst files in the TAO_ROOT/bin and CIAO_ROOT/bin
          directory.

        * ace/MEM_Connector.h
        * ace/SOCK_Connector.h
        * ace/SOCK_SEQPACK_Connector.h
        * ace/SSL/SSL_SOCK_Connector.h
          Fixed typo in comment

Mon Mar  9 13:39:08 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/*:
          Moved all TAO and CIAO files to TAO_ROOT/etc and CIAO_ROOT/etc

        * bin/generate_doxygen.pl:
          Updated for doxygen file change

Mon Mar  9 07:22:08 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace_qt3reactor.mpc:
          Explicitly list moc file to resolve compile warning on fc6

Mon Mar  9 07:08:08 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_footprint_chart.sh:
          Changed location of footer

        * bin/MakeProjectCreator/config/global.features:
          lzo1 is disabled by default

Fri Mar  6 20:28:50 UTC 2009  Steven Stallion  <stallions@ociweb.com>

        * bin/PerlACE/Process_Unix.pm:
        * bin/PerlACE/Run_Test.pm:

          Added add_lib_path support for Mac OS X (DYLD_LIBRARY_PATH).

Fri Mar  6 09:07:08 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * html/Stats/footprint.shtml:
          Corrected links

Thu Mar  5 20:18:42 UTC 2009  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_linux_common.GNU:
          Improved support for systems that lack 'lsb_release' command
          and systems which getconf doesn't support 'GNU_LIBPTHREAD_VERSION'
          variable.

Thu Mar  5 19:22:08 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace_qt3reactor.mpc:
        * ace/ace_qt4reactor.mpc:
          Moved moc step to seperate project to get the correct build order
          with incredibuild

        * ace/Select_Reactor_T.h:
        * ace/Sig_Handler.h:
        * ace/WFMO_Reactor.h:
          Doxygen changes

Wed Mar  4 20:01:11 UTC 2009  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_g++_common.GNU:
          Add -ftemplate-depth-23 to CCFLAGS when compiling with GCC 2.x.

Wed Mar  4 10:04:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_footprint_chart.sh:
        * bin/generate_performance_chart.sh:
        * bin/performance_stats.sh:
          Updated size and scale of the graphs

Wed Mar  4 08:14:35 UTC 2009  Olli Savia  <ops@iki.fi>

        * tests/Process_Manager_Test.cpp:
          Added missing ACE_TEXT.

Tue Mar  3 19:59:10 UTC 2009  Olli Savia  <ops@iki.fi>

        * apps/JAWS/clients/Blobby/Blob_Handler.cpp:
          Fixed compile warning.

Tue Mar  3 19:43:42 UTC 2009  Olli Savia  <ops@iki.fi>

        * tests/Process_Manager_Test.cpp:
          Fixed gcc's "zero-length format string" warning.

Tue Mar  3 13:32:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
        * bin/performance_stats.sh:
        * html/Stats/performance.shtml:
        * html/Stats/simple_footprint.shtml:
          Don't generate thumbnails, just show the original graphs on 320x240

Tue Mar  3 11:13:48 UTC 2009  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_lynxos.GNU:
          Fixed cross compilation settings and changed default cross compilation
          platform to Linux.

Tue Mar  3 10:42:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * html/Stats/compilation.shtml:
        * html/Stats/footprint.shtml:
        * html/Stats/navigation.html:
        * html/Stats/performance.shtml:
          Updated links to the new results

Tue Mar  3 07:46:45 UTC 2009  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_lynxos.GNU:
          Add -lrpc to LIBS if rpc=1.

Tue Mar  3 07:35:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Unbounded_Set_Test.cpp:
          Also test the is_empty() method

        * tests/Log_Msg_Backend_Test.cpp:
          Directly assign variable

Tue Mar  3 05:27:13 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/os_include/net/os_if.h:
          Fixed errors caused by previous commit.

Mon Mar  2 19:58:57 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/README:
        * ace/os_include/net/os_if.h:
        * configure.ac:
        * m4/config_h.m4:
          Removed legacy ACE_HAS_STL_MAP_CONFLICT macro.

Mon Mar  2 14:51:20 UTC 2009  Olli Savia  <ops@iki.fi>

        * examples/Misc/test_XtReactor1.cpp:
        * examples/Misc/test_XtReactor2.cpp:
        * tests/XtAthenaReactor_Test.cpp:
        * tests/XtMotifReactor_Test.cpp:
          Fixed compile warning and run-time crash on 64-bit systems.

Mon Mar  2 11:44:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Auto_IncDec_T.h:
        * ace/OS_Memory.h:
        * ace/OS_NS_Thread.h:
          Doxygen fixes

Mon Mar  2 10:35:41 UTC 2009  Vladimir Zykov  <vz@prismtech.com>

        * apps/gperf/src/Key_List.cpp:

          Fixed memory leaks in gperf code.

Mon Mar  2 07:53:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * html/Stats/index.shtml:
          Added some more links

Mon Mar  2 07:37:59 UTC 2009  Olli Savia  <ops@iki.fi>

        * performance-tests/RPC/client.cpp:
          Fixed compile error on LynxOS 4.2

Sun Mar  1 20:35:34 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-sunos5.5.h:
          Removed ACE_HAS_STL_MAP_CONFLICT.

Sun Mar  1 20:20:16 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/os_include/netinet/os_in.h:
        * ace/os_include/os_netdb.h:
        * ace/os_include/os_stropts.h:
        * configure.ac:
        * m4/config_h.m4:
          Removed legacy ACE_HAS_STL_QUEUE_CONFLICT macro.

Sun Mar  1 18:45:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_footprint_chart.sh
        * bin/generate_performance_chart.sh
        * bin/generate_topinfo_charts.sh
        * bin/performance_stats.sh
          Rotate xlabel to make them more readable

Sun Mar  1 07:36:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_performance_chart.sh:
        * bin/performance_stats.sh:
        * html/Stats/configuration.shtml:
        * html/Stats/footprint.shtml:
          Extended these files to that we can use them on emulab

Fri Feb 27 12:31:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Generate a link to the raw data file

Fri Feb 27 10:09:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          If the object size is smaller then 1Kb, generate the graph in
          bytes

Fri Feb 27 10:09:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Changed gnuplot generation

Fri Feb 27 09:50:47 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/ace_qt3reactor.mpc:
        * ace/ace_qt4reactor.mpc:
          Preventing QtReactor_moc.cpp to be included twice

Fri Feb 27 08:21:47 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/FlReactor/FlReactor.cpp:
        * ace/FoxReactor/FoxReactor.cpp:
        * tests/FlReactor_Test.cpp:
          Fixed includes.

Fri Feb 27 07:52:36 UTC 2009  Olli Savia  <ops@iki.fi>

        * performance-tests/RPC/client.cpp:
          Added #include "ace/Throughput_Stats.h" to fix compile errors.

Fri Feb 27 07:08:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Corrected sorting order

Thu Feb 26 12:26:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Addr.cpp:
          Layout change

        * ace/Event_Handler.h:
        * ace/Free_List.h:
        * ace/Logging_Strategy.h:
        * ace/Process_Manager.h:
        * ace/Select_Reactor_Base.h:
        * ace/Select_Reactor_T.h:
        * ace/SSL/SSL_SOCK_Acceptor.inl:
        * ace/Timer_Heap_T.h:
        * ace/Timer_Wheel_T.h:
          Doxygen change

        * ace/Service_Config.cpp:
        * ace/Service_Gestalt.cpp:
        * ace/Service_Gestalt.h:
          Changed the default value of the logger_key argument
          to open to 0. That way we can easier check if the user
          has overridden the default. Also check the logger_key
          in Service_Gestalt, so that it can be set through TAO.
          This fixes bugzilla 3597

Thu Feb 26 10:45:58 UTC 2009  Olli Savia  <ops@iki.fi>

        * include/makeinclude/platform_linux_common.GNU:
          Fixed TCL/TK flags for Ubuntu.

Thu Feb 26 09:24:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Don't generate the LAST file anymore, it only takes disk space
          and is not used

Thu Feb 26 08:39:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/*:
          Improved these files

Thu Feb 26 08:02:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Don't use the .metrics directory, on emulab we always get a fresh
          system. Just use the DEST directory directly

Mon Feb 23 19:34:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/generate_compile_stats.sh:
          Use mkdir -p

Mon Feb 23 19:25:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_sys_socket.h:
          Doxygen changes

Mon Feb 23 13:11:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-vxworks5.x.h:
        * ace/config-vxworks6.2.h:
        * ace/config-vxworks6.3.h:
          Removed, these VxWorks versions aren't maintained anymore

        * ace/config-vxworks.h:
          Updated

Mon Feb 23 08:16:15 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/global.features
          Layout changes

        * bin/PerlACE/ProcessVX_Unix.pm
          Improved quote handling

        * debianbuild/dsc:
          New file

        * ace/Activation_Queue.cpp
        * ace/ATM_Addr.cpp
        * ace/ATM_Connector.inl
        * ace/Configuration_Import_Export.cpp
        * ace/Dynamic_Message_Strategy.cpp
        * ace/Future.cpp
        * ace/Message_Queue_T.cpp
        * ace/Naming_Context.cpp
        * ace/POSIX_Asynch_IO.cpp
        * ace/QoS/QoS_Session_Impl.cpp
        * ace/Timer_Heap_T.cpp
        * ace/Timer_Wheel_T.cpp
        * ace/TP_Reactor.cpp
        * ace/WIN32_Asynch_IO.cpp
        * ACEXML/examples/SAXPrint/main.cpp
        * apps/gperf/src/Options.cpp
        * apps/JAWS/server/HTTP_Handler.cpp
        * apps/mkcsregdb/mkcsregdb.cpp
        * ASNMP/examples/get/get.cpp
        * ASNMP/examples/get/get_async.cpp
        * ASNMP/examples/next/next.cpp
        * ASNMP/examples/set/set.cpp
        * ASNMP/examples/trap/trap.cpp
        * ASNMP/examples/walk/walk.cpp
        * examples/APG/Containers/DLList.cpp
        * examples/APG/Containers/Hash_Map.cpp
        * examples/APG/Containers/Hash_Map_Hash.cpp
        * examples/APG/Containers/Map_Manager.cpp
        * examples/APG/Containers/Map_Manager_Specialization.cpp
        * examples/APG/Containers/RB_Tree.cpp
        * examples/APG/Containers/RB_Tree_Functors.cpp
        * examples/APG/ThreadManagement/Coop_Cancel.cpp
        * examples/APG/ThreadManagement/ExitHandler.cpp
        * examples/APG/ThreadManagement/Pool.cpp
        * examples/APG/ThreadManagement/Signals2.cpp
        * examples/APG/ThreadManagement/Start_Hook.cpp
        * examples/APG/ThreadSafety/Atomic_Op.cpp
        * examples/APG/ThreadSafety/TSS.cpp
        * examples/APG/Timers/Task.cpp
        * examples/ASX/Event_Server/Event_Server/Options.cpp
        * examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
        * examples/ASX/Event_Server/Transceiver/transceiver.cpp
        * examples/ASX/UPIPE_Event_Server/Options.cpp
        * examples/ASX/UPIPE_Event_Server/Peer_Router.cpp
        * examples/Connection/misc/Connection_Handler.cpp
        * examples/IPC_SAP/ATM_SAP/CPP-client.cpp
        * examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp
        * examples/IPC_SAP/SSL_SAP/SSL-server.cpp
        * examples/QOS/Change_Receiver_FlowSpec/receiver.cpp
        * examples/QOS/Change_Receiver_FlowSpec/sender.cpp
        * examples/QOS/Change_Sender_TSpec/receiver.cpp
        * examples/QOS/Change_Sender_TSpec/sender.cpp
        * examples/QOS/Simple/receiver.cpp
        * examples/QOS/Simple/sender.cpp
        * examples/Reactor/Proactor/post_completions.cpp
        * examples/Reactor/Proactor/test_aiosig.cpp
        * examples/Reactor/Proactor/test_aiosig_ace.cpp
        * examples/Reactor/Proactor/test_end_event_loop.cpp
        * examples/Threads/auto_event.cpp
        * examples/Threads/manual_event.cpp
        * examples/Timer_Queue/Async_Timer_Queue_Test.cpp
        * Kokyu/DSRT_CV_Dispatcher_Impl_T.cpp
        * Kokyu/DSRT_Direct_Dispatcher_Impl_T.cpp
        * Kokyu/tests/DSRT_MIF/MIF.cpp
        * netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp
        * netsvcs/lib/Name_Handler.cpp
        * NEWS
        * performance-tests/SCTP/Options_Manager.cpp
        * performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp
        * performance-tests/Server_Concurrency/Queue_Based_Workers/RT_CORBA_Workers.cpp
        * performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test_Options.cpp
        * performance-tests/TCP/tcp_test.cpp
        * performance-tests/TTCP/ACE-C++/wrapper-new-ttcp.cpp
        * performance-tests/UDP/udp_test.cpp
        * protocols/tests/HTBP/Reactor_Tests/server.cpp
        * protocols/tests/HTBP/Send_Large_Msg/server.cpp
        * protocols/tests/HTBP/Send_Recv_Tests/client.cpp
        * protocols/tests/HTBP/Send_Recv_Tests/server.cpp
        * tests/Cache_Map_Manager_Test.cpp
        * tests/CDR_Array_Test.cpp
        * tests/CDR_Test.cpp
        * tests/DLList_Test.cpp
        * tests/Get_Opt_Test.cpp
        * tests/Hash_Map_Manager_Test.cpp
        * tests/Hash_Multi_Map_Manager_Test.cpp
        * tests/IOStream_Test.cpp
        * tests/Logging_Strategy_Test.cpp
        * tests/Max_Default_Port_Test.cpp
        * tests/Max_Default_Port_Test_IPV6.cpp
        * tests/Message_Queue_Notifications_Test.cpp
        * tests/MT_Reference_Counted_Event_Handler_Test.cpp
        * tests/Multicast_Test.cpp
        * tests/Multicast_Test_IPV6.cpp
        * tests/Naming_Test.cpp
        * tests/Network_Adapters_Test.cpp
        * tests/Pipe_Test.cpp
        * tests/QtReactor_Test.cpp
        * tests/Reactor_Notification_Queue_Test.cpp
        * tests/Reactor_Remove_Resume_Test.cpp
        * tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp
        * tests/Reactors_Test.cpp
        * tests/Signal_Test.cpp
        * tests/SOCK_Netlink_Test.cpp
        * tests/SOCK_SEQPACK_SCTP_Test.cpp
        * tests/SString_Test.cpp
        * tests/Thread_Pool_Reactor_Resume_Test.cpp
        * tests/Upgradable_RW_Test.cpp
          Zapped empty spaces at the end of a line

Fri Feb 20 13:50:33 UTC 2009  Johnny Willemsen <jwillemsen@remedy.nl>

        * ace/config-win32-mingw.h:
          Support MinGW 3.15

        * include/makeinclude/platform_gnuwin32_common.GNU:
          Improvement for cross compilation

          Thanks to Jani Hakala <jahakala at iki dot fi> for delivering some
          patches

        * ace/config-vxworks6.7.h:
          Improved support

Fri Feb 20 09:54:33 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * ace/config-win32-common.h:
        * tests/Process_Manager_Test.cpp:
          Added define ACE_HAS_WIN32_PRIORITY_CLASS. On win32
          platforms where process priority classes exists,
          one can use this define.

Fri Feb 20 09:28:33 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg_IPC.h:
          Added include of Default_Constants.h

Fri Feb 20 07:29:18 UTC 2009  Olli Savia  <ops@iki.fi>

        * tests/Based_Pointer_Test_Lib.cpp:
          Reverted the last changes made by Johnny
          (ace/svc_export.h is back again).

        * tests/Based_Pointer_Test_Lib_Export.h:
          Removed from repository (ace/svc_export.h is back again).

Fri Feb 20 07:29:18 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-openbsd.h:
          Added ACE_LACKS_LOG2 and ACE_LACKS_ISCTYPE.

Thu Feb 19 20:27:33 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-freebsd.h:
          Removed ACE_HAS_SIG_MACROS.

Thu Feb 19 17:38:33 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * tests/Process_Manager_Test.cpp:
          Expanded test with process priority on Windows platforms.

Thu Feb 19 14:01:33 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Default_Constants.h:
        * ace/Log_Msg_IPC.cpp:
        * ace/Log_Msg_IPC.h:
        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Client_Logging_Handler.h:
          Added new ACE_HAS_STREAM_LOG_MSG_IPC which controls whether the
          ACE Log_Msg IPC should use streams or not. When ACE_HAS_STREAM_PIPES
          is defined we default to 1, else to 0. We do see that using stream
          pipes causes problems on at least Solaris, so the user can decide
          to set this value explicitly to 0

        * ace/CDR_Stream.cpp:
        * ace/CDR_Stream.h:
        * ace/Message_Block.inl:
          Doxygen and layout changes

        * ace/Message_Block.cpp:
          Use %@ for pointers

Wed Feb 18 20:51:33 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/minizip.mpb:
          Added new base project for minizip

Wed Feb 18 19:36:33 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-msvc-7.h:
          Layout change

        * ace/config-win32-msvc-8.h:
          Disable warning 4250, and 4355, we do this for the other
          msvc versions but not for vc8

Wed Feb 18 19:06:33 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Client_Logging_Handler.h:
          Just use ACE_HAS_STREAM_PIPES, there are too much other
          dependencies on this define

Wed Feb 18 15:34:33 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * tests/tests.mpc:
          Reverted the last changes made by Johnny
          (ace/svc_export.h is back again).

Wed Feb 18 12:58:33 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-freebsd.h:
          Added ACE_LACKS_ISCTYPE.

Wed Feb 18 10:25:49 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/config-g++-common.h:
          Define ACE_LACKS_NUMERIC_LIMITS and ACE_LACKS_ISCTYPE if
          compiling with GCC 2.x.

        * ace/config-lynxos.h:
        * ace/config-vxworks5.x.h:
          Do not define ACE_LACKS_NUMERIC_LIMITS. It is now handled by
          config-g++-common.h.

Wed Feb 18 09:22:29 UTC 2009  Marcel Smit  <msmit@remedy.nl>

        * tests/DLL_Test.h:
          Revert changes made by Johnny (just use
          ace/svc_export.h again).

        * tests/DLL_Test_Export.h:
          Removed since ace/svc_export.h is
          used again.

Tue Feb 17 23:56:45 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/global.features:

          Disabled xerces by default as well.

Tue Feb 17 20:19:06 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/os_include/os_stddef.h:
          Removed unneeded definitions for NULL and offsetof.

Tue Feb 17 18:08:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.h:
        * netsvcs/lib/Name_Handler.cpp:
        * netsvcs/lib/Name_Handler.h:
        * netsvcs/lib/Server_Logging_Handler.h:
        * netsvcs/lib/Server_Logging_Handler_T.cpp:
        * netsvcs/lib/Time_Request_Reply.cpp:
        * netsvcs/lib/Time_Request_Reply.h:
        * netsvcs/lib/Token_Handler.cpp:
        * netsvcs/lib/Token_Handler.h:
        * netsvcs/lib/TS_Clerk_Handler.cpp:
        * netsvcs/lib/TS_Clerk_Handler.h:
        * netsvcs/lib/TS_Server_Handler.cpp:
        * netsvcs/lib/TS_Server_Handler.h:
          Revert svc_export.h file, much more dependencies then I expected

Tue Feb 17 17:46:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
        * ace/ace_for_tao.mpc:
        * ace/Makefile.am:
          Readded svc_export.h

Tue Feb 17 17:45:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/svc_export.h:
          Readded this file, removing it breaks a lot of examples which all
          first have to be updated

Tue Feb 17 14:27:50 UTC 2009  Olli Savia  <ops@iki.fi>

        * ace/os_include/os_signal.h:
          Removed some legacy Linux code.

Tue Feb 17 14:20:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Based_Pointer_Test_Lib.cpp:
        * tests/Based_Pointer_Test_Lib_Export.h:
        * tests/DLL_Test.h:
        * tests/DLL_Test_Export.h:
        * tests/tests.mpc:
          Added specific export files for these tests

Tue Feb 17 13:13:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp:
          Runtime fix

Tue Feb 17 12:53:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp:
          logger_key_ is only required when using stream_pipes

Tue Feb 17 11:52:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Client_Logging_Handler.h:
          Added new ACE_NETSVCS_CLIENT_LOGGING_HANDLER_USES_STREAM_PIPES which
          can be explicitly set to 0 to just use sockets

Tue Feb 17 10:57:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace.mpc:
        * ace/ace_for_tao.mpc:
        * ace/Makefile.am:
        * ace/svc_export.h:
        * netsvcs/lib/svc_export.h:
        * netsvcs/lib/Makefile.am
          Moved svc_export to the netsvcs lib directory, it belongs there

        * ace/CDR_Stream.cpp:
          Layout change

        * ace/Lock_Adapter_T.h:
        * ace/Message_Block.cpp:
        * ace/Message_Block.h:
        * ace/Reverse_Lock_T.h:
          Doxygen change

        * netsvcs/lib/Client_Logging_Handler.cpp:
          Make sure we receive the expected length

        * netsvcs/lib/lib.mpc:
          Set the correct export define

        * netsvcs/lib/Client_Logging_Handler.h:
        * netsvcs/lib/Name_Handler.cpp:
        * netsvcs/lib/Name_Handler.h:
        * netsvcs/lib/Server_Logging_Handler.h:
        * netsvcs/lib/Server_Logging_Handler_T.cpp:
        * netsvcs/lib/Time_Request_Reply.cpp:
        * netsvcs/lib/Time_Request_Reply.h:
        * netsvcs/lib/Token_Handler.cpp:
        * netsvcs/lib/Token_Handler.h:
        * netsvcs/lib/TS_Clerk_Handler.cpp:
        * netsvcs/lib/TS_Clerk_Handler.h:
        * netsvcs/lib/TS_Server_Handler.cpp:
        * netsvcs/lib/TS_Server_Handler.h:
          Updated include of svc_export and no need to set the
          build define

Mon Feb 16 18:58:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Stream.h:
        * ace/FIFO_Recv_Msg.h:
        * ace/FIFO_Send_Msg.h:
        * ace/SPIPE_Stream.h:
          Doxygen changes

Mon Feb 16 17:09:40 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/global.features:

          Disabled ofccm by default.

Mon Feb 16 13:30:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Array_Base.h:
        * ace/Local_Tokens.h:
        * ace/SPIPE_Stream.h:
        * ace/Stream.h:
        * ace/Unbounded_Set_Ex.h:
        * ace/Vector_T.h
          Doyxgen change

        * ace/Hash_Map_Manager_T.cpp:
          Use prefix increment

        * ace/Hash_Map_Manager_T.h:
        * ace/Hash_Map_Manager_T.inl:
          Removed cur_size method, current_size does the same and is
          public

        * ace/Log_Msg.cpp:
          Layout change

        * netsvcs/lib/Client_Logging_Handler.cpp:
          If we don't receive the exact number of bytes with spipe stream
          see that as error

Mon Feb 16 10:57:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg_IPC.cpp:
          Check all stream insertion return values

Sat Feb 14 14:53:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg.cpp:
          Print null if we get a nill string for a %p format specifier instead
          of causing a crash. This fixes bugzilla 3571

        * tests/Log_Msg_Test.cpp:
          Extended this test.

Fri Feb 13 13:30:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Dev_Poll_Reactor.cpp
        * ace/Log_Msg.cpp
        * ace/MEM_Acceptor.cpp
        * ace/MMAP_Memory_Pool.cpp
        * ace/POSIX_Asynch_IO.cpp
        * ace/POSIX_CB_Proactor.cpp
        * ace/POSIX_Proactor.cpp
        * ace/Registry_Name_Space.cpp
        * ace/Remote_Tokens.cpp
        * ace/Service_Config.cpp
        * ace/Service_Gestalt.cpp
        * ace/Shared_Memory_Pool.cpp
        * ace/SOCK_Dgram_Bcast.cpp
        * ace/SUN_Proactor.cpp
        * ace/TLI.cpp
          Use ACE_TEXT() with %p in ACE_DEBUG/ACE_ERROR. The log string
          passed to ACE_DEBUG/ACE_ERROR is converted automatically to
          unicode in an unicode build. The %p expects an unicode string,
          if a plain ascii string is passed in, this is just handled as
          unicode string and could lead to a crash because then we are
          just reading random memory

Fri Feb 13 12:18:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Server_Logging_Handler_T.cpp:
          Log a message when insert/extract fails

Fri Feb 13 11:12:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Server_Logging_Handler_T.cpp:
          When demarshaling fails return 0 instead of -1. That keeps the
          event handler registered with the reactor for the next log
          message.

Thu Feb 12 07:33:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-common.h:
        * ace/os_include/sys/os_types.h:
          Added ACE_LACKS_MODE_T, ACE_LACKS_CADDR_T, ACE_LACKS_NLINK_T,
          ACE_LACKS_UID_T, and ACE_LACKS_GID_T as new defines. This makes
          it possible for an enduser to disable the typedefs by undefining
          these defines. Thanks to Bill Rizzi <rizzi at softserv dot com>
          for pointing this out

Wed Feb 11 22:26:26  2009  Steve Huston  <shuston@riverace.com>

        * ace/LSOCK_CODgram.h: Improved the comments and usage scenario.

Wed Feb 11 16:20:19 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * include/makeinclude/wrapper_macros.GNU:

          Removed xerces from this file, as its no longer a feature.
          Thanks to Adam Mitz for pointing this out.

Wed Feb 11 06:59:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-win32-msvc.h:
          Disable msc_ver check in this file

Wed Feb 11 06:52:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux.GNU:
          Fixed Red Hat detection

Tue Feb 10 20:38:27 UTC 2009  William R. Otte  <wotte@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/global.features:

          Made xerces2 and xerces3 disabled by default.

Tue Feb 10 20:16:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_ctype.inl:
        * ace/Process_Manager.cpp:
        * ace/WFMO_Reactor.cpp:
          Updated old msvc ver checks to fix fuzz errors

Tue Feb 10 18:27:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/lib/Server_Logging_Handler_T.h:
          Doxygen change

Tue Feb 10 18:26:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux.GNU:
          Changed how we detect broken GCC versions, not check on the platform
          but check on the gcc version (RedHat 4.1.1 or 4.1.2)

Tue Feb 10 18:25:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao-ciao.spec:
          Updated for the next release

Tue Feb 10 18:23:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/bczar/bczar.html:
          Extended bczar release instructions

        * bin/fuzz.pl:
          Extended msvc_ver check

        * debianbuild/control:
          Updated for the next release

Tue Feb 10 18:20:28 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-pharlap.h:
          Define ACE_HAS_WINSOCK1 to 1

        * ace/config-vxworks.h:
          Added support for VxWorks 6.7

        * ace/config-win32-borland.h:
          Removed support for C++Builder 2007

        * ace/os_include/sys/os_types.h:
        * ace/OS_NS_arpa_inet.cpp:
        * ace/OS_NS_unistd.inl:
          Fixes for VxWorks 6.7

Tue Feb 10 05:39:28 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * NEWS:
          revision bump.

Tue Feb 10 05:08:24 UTC 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * docs/Download.html:
        * etc/index.html:
        * bin/diff-builds-and-group-fixed-tests-only.sh
          Update latest micro version links and date.

        * ChangeLogs/ChangeLog-09a:
          Added this file.

Mon Feb 09 12:01:28 CST 2009  Phil Mesnier  <mesnier_p@ociweb.com>

        * ACE version 5.6.8 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: