summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 1e034adab181758b87925d8284ea624da77e5760 (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
Fri May  5 14:33:29 UTC 2006  Ciju John  <john_c@ociweb.com>

          This entry deals with the refactoring work on the ACE wide char
          support. The forces that drove the design are as follows:

          - Provide ACE a singular wchar_t type that can be used in
          conjunction with system services.
          - Allow CDR to use its own wchar type that can deviate from
          wchar_t.
          - Keep ACE interfaces consistent and backwards compatible.
          - Provide optimized conversion functions for all known use
          cases.

          ACE now uses wchar_t on all its wide-char interfaces. The type
          wchar_t could be defined by a platform's compiler, system headers,
          or the appropriate ACE platform configuration file. The extraneous
          wchar types ACE_WCHAR_T, ACE_WCHAR_TYPE, and ACE_OS::WChar have
          been removed. ACE_HAS_WCHAR is deprecated. A wchar_t type will
          always be defined.

          Since a wchar_t type is always defined we then always expose
          ACE's public wchar interfaces regardless of private
          implementation. If ACE_LACKS_XXXX defined for a function then
          either emulate or return <not supported>. This greatly cleans up the
          headers and eliminates the dependency on the symbol ACE_HAS_WCHAR.

          A pattern has been created for the few methods of ACE that CDR
          requires. The pattern allows for the compiler to emulate a
          function with any wchar type, provide a narrow-char specialization,
          a wchar specialization and defaults to the emulator if the wchar
          specialization is not possible (due to ACE_LACKS_XXXX). The pattern
          can easily be applied to other ACE methods and classes.

          The design and intent of ACE_USES_WCHAR has not been
          changed. Many cases of inconsistent use has been fixed. The
          fixes included simply changing types of local variables,
          expanding an interface to override on char and wchar_t, and
          forcing certain classes/functions to be templated and NOT based
          on ACE_TCHAR.

        * ACEXML/common/HttpCharStream.cpp:
        * ACEXML/common/URL_Addr.cpp:
        * ACEXML/common/XML_Types.h:

        * ACEXML/examples/SAXPrint/main.cpp:

        * ASNMP/agent/main.cpp:
        * ASNMP/agent/snmp_agent.cpp:

        * ASNMP/asnmp/sagent.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:

        * ASNMP/tests/test_config.h:

        * Kokyu/tests/EDF/test.cpp:

        * Kokyu/tests/FIFO/test.cpp:

        * ace/ACE.h:
        * ace/ACE.inl:
        * ace/ACE.cpp:

        * ace/Auto_Event.h:
        * ace/Auto_Event.cpp:

        * ace/CE_Screen_Output.cpp:
        * ace/Default_Constants.h:
        * ace/Dev_Poll_Reactor.cpp:
        * ace/Dynamic_Service.h:
        * ace/Dynamic_Service.inl:
        * ace/Env_Value_T.inl:
        * ace/FILE_Connector.cpp:
        * ace/Functor.h:
        * ace/Functor.inl:
        * ace/Functor_String.h:
        * ace/Functor_String.inl:

        * ace/Global_Macros.h:
        * ace/High_Res_Timer.h:
        * ace/High_Res_Timer.cpp:
        * ace/INET_Addr.h:
        * ace/INET_Addr.inl:
        * ace/INET_Addr.cpp:
        * ace/Lib_Find.h:
        * ace/Lib_Find.cpp:
        * ace/Local_Name_Space.h:
        * ace/Local_Name_Space.cpp:
        * ace/Local_Name_Space_T.cpp:
        * ace/Log_Msg.h:
        * ace/Log_Msg.cpp:
        * ace/Log_Msg_UNIX_Syslog.cpp:
        * ace/Log_Record.cpp:
        * ace/Logging_Strategy.cpp:
        * ace/MEM_Connector.cpp:
        * ace/Malloc_T.h:
        * ace/Malloc_T.cpp:
        * ace/Manual_Event.h:
        * ace/Manual_Event.cpp:
        * ace/Multihomed_INET_Addr.h:
        * ace/Multihomed_INET_Addr.cpp:
        * ace/Mutex.h:
        * ace/NT_Service.h:
        * ace/Name_Request_Reply.h:
        * ace/Name_Request_Reply.cpp:
        * ace/Naming_Context.cpp:
        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:
        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_dirent.inl:

        * ace/OS_NS_fcntl.h:
        * ace/OS_NS_fcntl.cpp:
        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdio.inl:
        * ace/OS_NS_stdio.cpp:

        * ace/OS_NS_stdlib.h:
        * ace/OS_NS_stdlib.inl:
        * ace/OS_NS_stdlib.cpp:

        * ace/OS_NS_strings.h:
        * ace/OS_NS_strings.inl:
        * ace/OS_NS_sys_mman.inl:
        * ace/OS_NS_sys_stat.h:
        * ace/OS_NS_sys_stat.inl:
        * ace/OS_NS_time.inl:

        * ace/OS_main.cpp:
        * ace/Object_Manager.h:
        * ace/Object_Manager_Base.cpp:
        * ace/Process.h:
        * ace/Process.inl:
        * ace/Process.cpp:
        * ace/Process_Mutex.h:
        * ace/Process_Mutex.cpp:
        * ace/Process_Semaphore.cpp:

        * ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:

        * ace/Registry_Name_Space.cpp:
        * ace/Remote_Name_Space.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_Dgram_Bcast.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:

        * ace/SSL/SSL_Asynch_Stream.cpp:
        * ace/SSL/SSL_Context.cpp:
        * ace/SSL/SSL_SOCK_Stream.cpp:

        * ace/SString.cpp:
        * ace/SStringfwd.h:
        * ace/SV_Semaphore_Simple.h:
        * ace/SV_Semaphore_Simple.inl:
        * ace/SV_Semaphore_Simple.cpp:
        * ace/Service_Config.h:
        * ace/Service_Config.inl:
        * ace/Service_Config.cpp:
        * ace/Service_Manager.cpp:
        * ace/Shared_Memory_Pool.cpp:
        * ace/Singleton.cpp:
        * ace/Sock_Connect.cpp:

        * ace/Svc_Conf_y.cpp:
        * ace/UNIX_Addr.h:
        * ace/UNIX_Addr.inl:
        * ace/UNIX_Addr.cpp:

        * ace/os_include/os_stddef.h:

        * apps/FaCE/FaCE.h:
        * apps/FaCE/FaCE.cpp:

        * apps/Gateway/Gateway/Config_Files.cpp:
        * apps/Gateway/Gateway/Options.cpp:

        * apps/Gateway/Peer/Options.cpp:

        * apps/JAWS/clients/Blobby/Blob_Handler.cpp:
        * apps/JAWS/clients/Blobby/Options.cpp:

        * apps/JAWS/clients/Caching/http_client.cpp:
        * apps/JAWS/clients/Caching/http_handler.cpp:
        * apps/JAWS/clients/Caching/test_URL.cpp:

        * apps/JAWS/server/HTTP_Server.cpp:
        * apps/JAWS/server/main.cpp:

        * apps/JAWS/stress_testing/benchd.cpp:
        * apps/JAWS/stress_testing/http_tester.cpp:

        * apps/JAWS2/JAWS/Server.cpp:

        * apps/JAWS2/main.cpp:

        * apps/JAWS3/bench/mkfiles.cpp:
        * apps/JAWS3/bench/rqfiles.cpp:

        * apps/JAWS3/http/HTTP_Service_Handler.cpp:

        * apps/JAWS3/jaws3/main.cpp:

        * apps/JAWS3/small/SS_Service_Handler.cpp:

        * apps/drwho/Options.cpp:
        * apps/drwho/client.cpp:
        * apps/drwho/server.cpp:

        * apps/gperf/src/Options.cpp:
        * apps/gperf/src/gperf.cpp:

        * apps/soreduce/Library.cpp:
        * apps/soreduce/soreduce.cpp:

        * bin/MakeProjectCreator/config/no_wchar.mpb:

        * bin/sandbox.cpp:

        * contrib/utility/Example/CommandLine/Foo/foo.cpp:

        * examples/APG/Config/ARGV_Example.cpp:
        * examples/APG/Config/Get_Opt.cpp:
        * examples/APG/Config/Get_Opt_Long.cpp:
        * examples/APG/Config/HA_Status.cpp:

        * examples/APG/Logging/Callback-2.h:

        * examples/APG/Svc_Config/HA_Status_Dynamic.cpp:
        * examples/APG/Svc_Config/HA_Status_Static.cpp:

        * examples/ASX/Event_Server/Event_Server/Options.cpp:

        * examples/ASX/Event_Server/Transceiver/transceiver.cpp:

        * examples/ASX/Message_Queue/buffer_stream.cpp:

        * examples/ASX/UPIPE_Event_Server/Options.cpp:
        * examples/ASX/UPIPE_Event_Server/Peer_Router.cpp:

        * examples/C++NPv1/Iterative_Logging_Server.cpp:
        * examples/C++NPv1/Logging_Client.cpp:
        * examples/C++NPv1/Logging_Handler.cpp:
        * examples/C++NPv1/Logging_Server.cpp:
        * examples/C++NPv1/Process_Per_Connection_Logging_Server.cpp:
        * examples/C++NPv1/RT_Thread_Per_Connection_Logging_Server.cpp:
        * examples/C++NPv1/Reactive_Logging_Server.cpp:
        * examples/C++NPv1/Reactive_Logging_Server_Ex.cpp:
        * examples/C++NPv1/Thread_Per_Connection_Logging_Server.cpp:

        * examples/C++NPv2/AC_Client_Logging_Daemon.cpp:
        * examples/C++NPv2/AIO_Client_Logging_Daemon.cpp:
        * examples/C++NPv2/Client_Logging_Daemon.cpp:
        * examples/C++NPv2/Logging_Event_Handler.cpp:
        * examples/C++NPv2/Reactor_Logging_Server.cpp:
        * examples/C++NPv2/Reactor_Logging_Server_Adapter.cpp:
        * examples/C++NPv2/Select_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/Service_Reporter.cpp:
        * examples/C++NPv2/TP_Logging_Server.h:
        * examples/C++NPv2/TP_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/WFMO_Reactor_Logging_Server.cpp:
        * examples/C++NPv2/display_logfile.cpp:

        * examples/Connection/blocking/SPIPE-acceptor.cpp:
        * examples/Connection/blocking/SPIPE-connector.cpp:
        * examples/Connection/blocking/test_spipe_acceptor.cpp:

        * examples/Connection/misc/test_upipe.cpp:

        * examples/Connection/non_blocking/test_tli_acceptor.cpp:
        * examples/Connection/non_blocking/test_tli_connector.cpp:

        * examples/IPC_SAP/SOCK_SAP/C-inclient.cpp:
        * examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp:
        * examples/IPC_SAP/SOCK_SAP/CPP-inserver-fancy.cpp:

        * examples/IPC_SAP/SSL_SAP/SSL-client-simple.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-client.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-server-poll.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-server-simple.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-server.cpp:

        * examples/IPC_SAP/TLI_SAP/CPP-ATM-client.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-ATM-server.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-client.cpp:
        * examples/IPC_SAP/TLI_SAP/CPP-server.cpp:
        * examples/IPC_SAP/TLI_SAP/db-client.cpp:
        * examples/IPC_SAP/TLI_SAP/db-server.cpp:
        * examples/IPC_SAP/TLI_SAP/ftp-client.cpp:
        * examples/IPC_SAP/TLI_SAP/ftp-server.cpp:

        * examples/Logger/Acceptor-server/server_loggerd.cpp:

        * examples/Logger/simple-server/Logging_Handler.cpp:
        * examples/Logger/simple-server/server_loggerd.cpp:

        * examples/Mem_Map/IO-tests/test_io.cpp:

        * examples/Misc/test_get_opt.cpp:

        * examples/NT_Service/main.cpp:

        * examples/OS/Process/imore.cpp:
        * examples/OS/Process/process.cpp:

        * examples/QOS/Change_Receiver_FlowSpec/QoS_Util.cpp:

        * examples/QOS/Change_Sender_TSpec/QoS_Util.cpp:

        * examples/QOS/Simple/QoS_Util.cpp:

        * examples/Reactor/Misc/notification.cpp:
        * examples/Reactor/Misc/pingpong.cpp:
        * examples/Reactor/Misc/test_reactors.cpp:
        * examples/Reactor/Misc/test_signals_2.cpp:
        * examples/Reactor/Misc/test_time_value.cpp:

        * examples/Reactor/Multicast/Log_Wrapper.cpp:
        * examples/Reactor/Multicast/client.cpp:
        * examples/Reactor/Multicast/server.cpp:

        * examples/Reactor/Ntalker/ntalker.cpp:

        * examples/Reactor/Proactor/Aio_Platform_Test_C.cpp:
        * examples/Reactor/Proactor/post_completions.cpp:
        * examples/Reactor/Proactor/simple_test_proactor.cpp:
        * examples/Reactor/Proactor/test_aiocb.cpp:
        * examples/Reactor/Proactor/test_aiocb_ace.cpp:
        * examples/Reactor/Proactor/test_aiosig.cpp:
        * examples/Reactor/Proactor/test_aiosig_ace.cpp:
        * examples/Reactor/Proactor/test_cancel.cpp:
        * examples/Reactor/Proactor/test_end_event_loop.cpp:
        * examples/Reactor/Proactor/test_multiple_loops.cpp:
        * examples/Reactor/Proactor/test_proactor.cpp:
        * examples/Reactor/Proactor/test_proactor2.cpp:
        * examples/Reactor/Proactor/test_proactor3.cpp:
        * examples/Reactor/Proactor/test_timeout.cpp:
        * examples/Reactor/Proactor/test_udp_proactor.cpp:

        * examples/Reactor/WFMO_Reactor/Handle_Close.cpp:
        * examples/Reactor/WFMO_Reactor/Multithreading.cpp:
        * examples/Reactor/WFMO_Reactor/Talker.cpp:

        * examples/Service_Configurator/IPC-tests/client/broadcast_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/local_fifo_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/local_pipe_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/local_stream_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/remote_dgram_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/remote_service_directory_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/remote_stream_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp:

        * examples/Service_Configurator/IPC-tests/server/Handle_Broadcast.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_CODgram.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Dgram.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_FIFO.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Pipe.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_R_Dgram.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.i:
        * examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_Timeout.i:

        * examples/Shared_Malloc/Options.cpp:
        * examples/Shared_Malloc/test_malloc.cpp:
        * examples/Shared_Malloc/test_position_independent_malloc.cpp:

        * examples/Synch/proc_sema.cpp:

        * examples/System_V_IPC/SV_Message_Queues/MQ_Client.cpp:
        * examples/System_V_IPC/SV_Message_Queues/MQ_Server.cpp:
        * examples/System_V_IPC/SV_Message_Queues/TMQ_Server.cpp:

        * examples/System_V_IPC/SV_Semaphores/Semaphores_1.cpp:
        * examples/System_V_IPC/SV_Semaphores/Semaphores_2.cpp:

        * examples/TMCast/Member/member.cpp:

        * examples/Threads/process_manager.cpp:
        * examples/Threads/reader_writer.cpp:
        * examples/Threads/recursive_mutex.cpp:
        * examples/Threads/task_one.cpp:

        * examples/Web_Crawler/Command_Processor.cpp:
        * examples/Web_Crawler/HTTP_URL.cpp:
        * examples/Web_Crawler/Options.cpp:
        * examples/Web_Crawler/URL_Addr.cpp:
        * examples/Web_Crawler/URL_Visitor.cpp:

        * netsvcs/clients/Naming/Client/Client_Test.cpp:

        * netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp:
        * netsvcs/clients/Naming/Dump_Restore/createfile.cpp:

        * netsvcs/clients/Tokens/collection/collection.cpp:
        * netsvcs/clients/Tokens/collection/rw_locks.cpp:

        * netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp:

        * netsvcs/clients/Tokens/invariant/invariant.cpp:

        * netsvcs/clients/Tokens/manual/manual.cpp:

        * netsvcs/clients/Tokens/mutex/test_mutex.cpp:

        * netsvcs/clients/Tokens/rw_lock/rw_locks.cpp:

        * netsvcs/lib/Client_Logging_Handler.cpp:
        * netsvcs/lib/Name_Handler.cpp:
        * netsvcs/lib/Server_Logging_Handler_T.cpp:
        * netsvcs/lib/TS_Clerk_Handler.cpp:
        * netsvcs/lib/TS_Server_Handler.cpp:
        * netsvcs/lib/Token_Handler.cpp:

        * performance-tests/Misc/basic_perf.cpp:
        * performance-tests/Misc/childbirth_time.cpp:
        * performance-tests/Misc/context_switch_time.cpp:
        * performance-tests/Misc/preempt.cpp:
        * performance-tests/Misc/test_guard.cpp:

        * performance-tests/RPC/client.cpp:

        * performance-tests/SCTP/Options_Manager.cpp:
        * performance-tests/SCTP/SOCK_SEQPACK_clt.cpp:
        * performance-tests/SCTP/SOCK_SEQPACK_srv.cpp:
        * performance-tests/SCTP/SOCK_STREAM_clt.cpp:
        * performance-tests/SCTP/SOCK_STREAM_srv.cpp:

        * performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp:
        * performance-tests/Server_Concurrency/Leader_Follower/leader_follower.cpp:

        * performance-tests/Server_Concurrency/Queue_Based_Workers/RT_CORBA_Workers.cpp:
        * performance-tests/Server_Concurrency/Queue_Based_Workers/workers.cpp:

        * performance-tests/Synch-Benchmarks/Base_Test/Baseline_Test.cpp:

        * performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test_Options.cpp:
        * performance-tests/Synch-Benchmarks/Perf_Test/guard_test.cpp:

        * performance-tests/TCP/tcp_test.cpp:

        * performance-tests/TTCP/ACE-C++/wrapper-new-ttcp.cpp:

        * performance-tests/TTCP/C/new-ttcp.cpp:

        * performance-tests/UDP/udp_test.cpp:

        * protocols/ace/HTBP/HTBP_Addr.cpp:
        * protocols/ace/HTBP/HTBP_ID_Requestor.cpp:
        * protocols/ace/HTBP/HTBP_Session.cpp:

        * tests/ACE_Init_Test.cpp:
        * tests/ARGV_Test.cpp:
        * tests/Aio_Platform_Test.cpp:
        * tests/Auto_Event_Test.cpp:
        * tests/Basic_Types_Test.cpp:
        * tests/Bound_Ptr_Test.cpp:
        * tests/CDR_Array_Test.cpp:
        * tests/CDR_File_Test.cpp:
        * tests/CDR_Test.cpp:
        * tests/Cache_Map_Manager_Test.cpp:
        * tests/Cached_Accept_Conn_Test.cpp:
        * tests/Cached_Conn_Test.cpp:
        * tests/Config_Test.cpp:
        * tests/Conn_Test.cpp:
        * tests/Dirent_Test.cpp:
        * tests/Enum_Interfaces_Test.cpp:
        * tests/Env_Value_Test.cpp:
        * tests/Get_Opt_Test.cpp:

        * tests/HTBP/Reactor_Tests/client.cpp:
        * tests/HTBP/Reactor_Tests/test_config.h:

        * tests/HTBP/Send_Large_Msg/client.cpp:

        * tests/HTBP/Send_Recv_Tests/SendRecv_Test.cpp:

        * tests/HTBP/ping/client.cpp:

        * tests/Hash_Map_Bucket_Iterator_Test.cpp:
        * tests/High_Res_Timer_Test.cpp:
        * tests/INET_Addr_Test_IPV6.cpp:
        * tests/IOStream_Test.cpp:
        * tests/Log_Msg_Test.cpp:
        * tests/Logging_Strategy_Test.cpp:
        * tests/MEM_Stream_Test.cpp:
        * tests/MT_Reactor_Upcall_Test.cpp:
        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:
        * tests/MT_Reference_Counted_Notify_Test.cpp:
        * tests/MT_SOCK_Test.cpp:
        * tests/Manual_Event_Test.cpp:
        * tests/Message_Block_Test.cpp:
        * tests/Multicast_Test.cpp:
        * tests/Multicast_Test_IPV6.cpp:
        * tests/Multihomed_INET_Addr_Test_IPV6.cpp:
        * tests/Network_Adapters_Test.cpp:
        * tests/NonBlocking_Conn_Test.cpp:
        * tests/Notify_Performance_Test.cpp:
        * tests/OS_Test.cpp:
        * tests/Pipe_Test.cpp:
        * tests/Priority_Reactor_Test.cpp:
        * tests/Proactor_Scatter_Gather_Test.cpp:
        * tests/Proactor_Test.cpp:
        * tests/Proactor_Test_IPV6.cpp:
        * tests/Proactor_Timer_Test.cpp:
        * tests/Process_Manager_Test.cpp:
        * tests/Process_Manual_Event_Test.cpp:
        * tests/Process_Mutex_Test.cpp:
        * tests/Process_Semaphore_Test.cpp:
        * tests/Process_Strategy_Test.cpp:
        * tests/Reactor_Dispatch_Order_Test.cpp:
        * tests/Reactor_Performance_Test.cpp:
        * tests/Reactor_Timer_Test.cpp:
        * tests/Reader_Writer_Test.cpp:
        * tests/Refcounted_Auto_Ptr_Test.cpp:
        * tests/Reference_Counted_Event_Handler_Test.cpp:
        * tests/SOCK_Connector_Test.cpp:
        * tests/SOCK_Dgram_Bcast_Test.cpp:
        * tests/SOCK_Send_Recv_Test.cpp:
        * tests/SOCK_Send_Recv_Test_IPV6.cpp:
        * tests/SOCK_Test.cpp:
        * tests/SOCK_Test_IPv6.cpp:
        * tests/SString_Test.cpp:
        * tests/Semaphore_Test.cpp:
        * tests/Signal_Test.cpp:
        * tests/Svc_Handler_Test.cpp:
        * tests/TP_Reactor_Test.cpp:
        * tests/Test_Output.cpp:
        * tests/Thread_Pool_Reactor_Resume_Test.cpp:
        * tests/Thread_Pool_Reactor_Test.cpp:
        * tests/Timer_Queue_Reference_Counting_Test.cpp:
        * tests/Upgradable_RW_Test.cpp:
        * apps/mkcsregdb/mkcsregdb.cpp:

          Apply the new conversion macros.
          Remove ACE_HAS_WCHAR usage. wchar_t will always get defined.
          Using template ACE_Get_Arg_Opt to properly handle argv input.
          Replaced main() with ACE_TMAIN().
          Using ACE_Argv_Type_Converter to convert argv to match API declarations.


        * ace/ARGV.h:
        * ace/ARGV.inl:
        * ace/ARGV.cpp:

          Convert class ACE_ARGV into template ACE_TARGV


        * ace/Arg_Shifter.h:
        * ace/Arg_Shifter.inl:
        * ace/Arg_Shifter.cpp:

          Convert class ACE_Arg_Shifter into template ACE_TArg_Shifter


        * ace/Argv_Type_Converter.h:
        * ace/Argv_Type_Converter.inl:
        * ace/Argv_Type_Converter.cpp:

          Use ACE::String_Conversion templates to manage local memory
          allocation/deallocation. Use the same for type conversions. Get
          rid of macro ACE_USES_WCHAR usage.


        * ace/Basic_Stats.h:
        * ace/Basic_Stats.cpp:

          Add wide variant of method ACE_Basic_Stats::dump_results()


        * ace/Basic_Types.h:

          Check for ACE_SIZEOF_WCHAR & ACE_WCHAR_MAX to be predefined. This
          frees us from making assumptions on the underlying wchar_t type.


        * ace/CDR_Base.h:

          The requirement for CDR customized wchar type is now isolated to
          CDR. ACE_CDR_WCHAR_OVERRIDE is used to force CDR to deviate from
          wchar_t. No other services in ACE deviates from wchar_t.


        * ace/Get_Opt.h:
        * ace/Get_Opt.inl:
        * ace/Get_Opt.cpp:

          Convert class ACE_Get_Opt into template ACE_Get_Arg_Opt


        * ace/OS_NS_ctype.h:
        * ace/OS_NS_ctype.inl:
        * ace/OS_NS_ctype_T.inl:

          Templated most of the functions. Add new file to hold the inlined
          template definitions.


        * ace/OS_NS_dlfcn.inl:

          Use ACE::String_Conversion templates to handle the wide char
          conversions across platforms.


        * ace/OS_NS_stdlib_base.h:
        * ace/OS_NS_stdlib_base.inl:
        * ace/OS_NS_stdlib_base.cpp:
        * ace/OS_NS_string_base.h:
        * ace/OS_NS_string_base.inl:
        * ace/OS_NS_string_base.cpp:

          Extracted a number of methods from OS_NS_stdlib to maintain
          backwards compatibility and have the string conversion classes
          reuse exising functions (not reimplement). The string conversion
          classes have to be declared in the configuration layer for
          backwards compatibility. Users will not have to change/add #include
          to access the conversion services.


        * ace/OS_NS_string.h:
        * ace/OS_NS_string.inl:
        * ace/OS_NS_string.cpp:

          Define/implement wide variant of functions for platforms that lack them.


        * ace/OS_NS_unistd.h:
        * ace/OS_NS_unistd.inl:
        * ace/OS_NS_unistd.cpp:
        * ace/OS_NS_unistd_T.inl:

          Templated string_to_argv. Moved definition to new file.


        * ace/OS_NS_wchar.h:
        * ace/OS_NS_wchar.inl:
        * ace/OS_NS_wchar.cpp:

          Changed APIs to use type wchar_t instead of WChar. There was no
          reason for using another defined type when wchar_t could be used directly.


        * ace/Stats.h:
        * ace/Stats.cpp:

          Define/implement wide variant of dump_results() & dump_throughput()


        * ace/String_Conversion_T.h:
        * ace/String_Conversion_T.inl:
        * ace/String_Conversion_T.cpp:

          The new string conversion namespace includes a set of functions
          and stack based classes to aid where ACE/TAO has to translate
          between char and wchar_t. See the ACE test wchar_conversion for
          usage.


        * ace/ace_wchar.h:
        * ace/ace_wchar.inl:

          Configuration level files which include wchar support files or
          construct the various wchar types.


        * ace/ace_wchar_win32_defs.h:

          Support for Windows specific API's. These were mostly if not all
          ripped out from ace_wchar.h. ace_wchar.h includes the file.


        * ace/config-all.h:
        * ace/config-borland-common.h:
        * ace/config-doxygen.h:
        * ace/config-freebsd.h:
        * ace/config-hpux-11.00.h:
        * ace/config-linux-common.h:
        * ace/config-lynxos.h:
        * ace/config-macosx-panther.h:
        * ace/config-macosx-tiger.h:
        * ace/config-macosx.h:
        * ace/config-netbsd.h:
        * ace/config-pharlap.h:
        * ace/config-rtems.h:
        * ace/config-tandem-nsk-mips-v2.h:
        * ace/config-vxworks5.x.h:
        * ace/config-win32-common.h:
        * ace/config-win32-dmc.h:
        * ace/config-win32-ghs.h:
        * ace/config-win32-mingw.h:
        * ace/config-win32-msvc-7.h:
        * ace/config-win32-msvc-8.h:
        * ace/config-win32-msvc.h:
        * ace/config-win32-visualage.h:

          Added new wchar configurations. The ACE_SIZEOF_WCHAR and
          ACE_WCHAR_MAX need to be defined in the configuration files.


        * apps/gperf/tests/tests.mpc:

          Avoid gperf build when doing a ACE_USES_WCHAR build.

        * tests/WChar_Conversion.cpp:

          wchar conversion test.


        * tests/tests.mpc:

          Add the wchar conversion test.

Sun May  7 21:03:30 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Config.{h,cpp}:

          Weeding out the remaining issues with single threaded
          builds. The implementation now relies on the ACE_TSS_* macros to
          abstract from the differences among build styles and platform
          support for TSS.

        * ace/Service_Gestalt.{h,cpp}:

          Eliminated commented out code. Minor reformatting in places.

        * ace/TSS_T.{h,inl,cpp}:

          Added some comments to help others avoid a few pitfalls. Made
          ts_init() a non-const, which eliminates a few const_cast's.

Sun May  7 07:02:51 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Config.h:
        * ace/Service_Config.cpp:

          Refactored the TSS usage (again) to fix a nasty
          order-of-initialization problem. The gist of which is that, if
          the ptr (to a template class instance) is a static member, in
          static builds, it will be initialized by the process prologue
          code *after* another static initializer has had the chance to
          use and assign it a value. The solution was to use a method
          scope static instance, which C++ guarantees to be initialized by
          the (first) exit from that method.

        * ace/Service_Gestalt.h:
        * ace/Service_Gestalt.cpp:

          Refactored the construction to avoid using straight new in
          constructor initializer lists. Replaced new with ACE_NEW_* where
          appropriate.

Sat May  6 18:08:13 UTC 2006  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Add feature tests for ACE_LACKS_ASCTIME, ACE_LACKS_ACSTIME_R,
          ACE_LACKS_GETCWD, ACE_LACKS_GMTIME, ACE_LACKS_GMTIME_R,
          ACE_LACKS_LOCALTIME, and ACE_LACKS_STRFTIME.

Sat May  6 09:52:06 2006  Douglas C. Schmidt  <schmidt@cse.wustl.edu>

        * examples/DLL/test_dll.cpp: Renamed the DLLs and removed the "./"
          from the pathname.  Thanks to Sam and Roopa for reporting this
          and tracking it down, respectively.

Sat May  6 10:23:13 UTC 2006  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_sunos5_sunc++.GNU: Add -lrt -laio to
          the LIBS. The Proactor framework needs this; I'm not sure why it
          never showed up until static builds were run.

Tue Apr 25 10:22:16 2006  Douglas C. Schmidt  <schmidt@cse.wustl.edu>

        * ace/OS_NS_string.cpp (strerror): Do a sanity check to make sure
          errnum >= 0 and < _sys_nerr and set errno to EINVAL if things
          are not sane.  Thanks to Aleksandar Vukajlovic <vukajlo at
          finsoft dot co dot yu> for this fix.

Fri May  5 19:37:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Default_Constants.h:
          Added a compile time check that ACE_DEFAULT_CDR_BUFSIZE must be
          defined to a value bigger then 0, it is 0 we get in a never ending
          loop in the CDR code

Fri May  5 17:01:32 UTC 2006  Steve Huston  <shuston@riverace.com>

        * examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp:
        * examples/Service_Configurator/IPC-tests/server/Handle_L_SPIPE.{cpp i h}:
          Wide-char corrections.

Fri May  5 13:11:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/FIFO.cpp:
        * ace/os_include/os_stddef.h:
          Removed psos support

        * ace/config-WinCE.h:
        * ace/os_include/os_stddef.h:
          Moved setting of ACE_LACKS_STDDEF_H and ACE_LACKS_PTRDIFF_T to the
          WinCE file

Fri May  5 13:08:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_openvms.GNU:
          Changed the way templates are handled

Fri May  5 11:42:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Reactor_Token_T.h:
          Removed workaround for vc6

Fri May  5 08:38:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/MMAP_Memory_Pool.{h,cpp}:
          Made guess_on_fault_ a real bool

Fri May  5 08:09:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/os_dirent.h:
        * ace/os_include/os_errno.h:
        * ace/os_include/os_netdb.h:
        * ace/os_include/os_stdint.h:
        * ace/os_include/os_time.h:
        * ace/os_include/os_string.h:
        * ace/os_include/os_stdlib.h:
          Removed psos support

        * ace/os_include/os_dlfcn.h:
        * ace/os_include/os_signal.h:
          Removed psos and kcc support

        * ace/os_include/os_pthread.h:
          Removed chorus support

        * ace/os_include/os_unistd.h:
          Removed chorus and psos support

Fri May  5 07:59:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_sys_utsname.cpp:
        * ace/OS.h
          Removed psos and chorus support

        * ace/OS_NS_fcntl.cpp:
        * ace/Lib_Find.cpp:
        * ace/OS_NS_netdb.inl:
          Removed psos support

        * ace/Mem_Map.cpp:
          Removed chorus support

        * ace/IOStream.h:
          Removed checks for KCC compiler

Fri May  5 07:42:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Base_Thread_Adapter.h:
        * ace/SPIPE_Connector.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/Select_Reactor_T.cpp:
        * ace/Handle_Set.cpp:
          Removed code for psos, support for this platform will be removed

        * ace/CDR_Base.h:
          Removed check for KCC compiler

        * ace/Malloc_Allocator.h:
          Doxygen improvement

Thu May  4 22:11:06 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/Message_Block.h: Made ACE_Data_Block::release_i() virtual.
          Thanks to Gary Fernandez <gary dot fernandez at ironmountain dot
          com> for this change.

Thu May  4 21:07:10 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/SPIPE_Acceptor.cpp (create_new_instance, close): Have to use
          ACE_TEXT_ALWAYS_CHAR to pass pipe name on wide-char w/
          ACE_HAS_STREAM_PIPES. Thanks to Gary Fernandez <gary dot
          fernandez at ironmountain dot com> for this fix.

        * THANKS: Added Gary Fernandez to the Hall of Fame.

Thu May  4 08:50:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        Reverted the change below, broke the sendfile test and Steve
        Huston changed things in such a way that sendfile is only
        used on Solaris 9 and newer

        Tue May  2 09:34:54 Pacific Daylight Time 2006    <ossama_othman at symantec dot com>
        * ace/OS_NS_sys_sendfile.inl (sendfile):
          Removed "::" global scope qualifier from platform sendfile()
          call.  It caused problem on Solaris 8.  Thanks to Simon Massey
          and Johnny Willemsen for analyzing the problem and suggesting
          this fix.

Thu May  4 08:36:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ace_for_tao.mpc:
          Added OS_NS_sys_sendfile

Thu May  4 00:43:32 UTC 2006  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Add Dynamic_Service_Dependency.{cpp,h} to appropriate lists.

Wed May  3 16:02:10 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Config.h:
        * ace/Service_Config.cpp:

          Fixed a problem due to an attempt to access current_ before it
          has been initialized (a static ACE_TSS instance). The current_
          is now just a pointer to an ACE_TSS instance, which gets
          dynamicaly allocated upon invoking the current() method. The
          deallocation of that instance is left up to the Object Manager
          with which the dynamic ACE_TSS instance is registered.

        * ace/TSS_T.h:

          Added a ACE_TSS_SET () to complete the set of TSS access
          operations, which should work regardless of threading, TSS
          emulation and TSS availability.

Wed May  3 11:52:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Mem_Map.inl:
          Small const improvements

Wed May  3 10:39:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Mem_Map.{h,cpp,inl}:
          Made close_handle_ a bool

Wed May  3 08:56:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-macros.h:
          Removed support for KCC

Wed May  3 08:14:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_sys_sendfile.h:
          Export sendfile_emulation to resolve link problems in the
          windows builds

Wed May  3 03:36:23 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Svc_Conf_y.cpp:

          Moved the ACE_BEGIN_VERSIONED_NAMESPACE_DECL macro to include
          ace_yyparse.

Tue May  2 09:34:54 Pacific Daylight Time 2006    <ossama_othman at symantec dot com>

        * ace/OS_NS_sys_sendfile.inl (sendfile):

          Removed "::" global scope qualifier from platform sendfile()
          call.  It caused problem on Solaris 8.  Thanks to Simon Massey
          and Johnny Willemsen for analyzing the problem and suggesting
          this fix.

Tue May  2 10:34:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-WinCE.h:
          Added ACE_LACKS_GETCWD, ACE_LACKS_ASCTIME, ACE_LACKS_ASCTIME_R,
          ACE_LACKS_GMTIME, ACE_LACKS_GMTIME_R, ACE_LACKS_LOCALTIME and
          ACE_LACKS_STRFTIME. These macros are new and will be used soon
          in the ACE_OS layer.

Mon May  1 19:49:45 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/ARGV.{h i cpp}: Filled out more of the documentation in this
          class, specifically mentioning that the class will enforce the
          "whitespace separates tokens, except when quoted" rule of command
          line parsing that's consistent with ACE_Get_Opt, etc. Also removed
          documentation of non-existant restrictions such as after using
          add(), can't use buf().
          Removed the State enum since the only value ever used was ITERATIVE,
          and changed "int state_" to "bool iterative_" (and removed the
          state() accessor). Changed substitute_env_args_ from int to bool.

        * ace/OS_NS_unistd.{h cpp} (argv_to_string, string_to_argv): Changed
          the substitute_env_args parameter from "int" to "bool" to better
          reflect what it is, a yes/no indicator.

Mon May  1 06:53:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_sunos5_g++.GNU:
        * include/makeinclude/platform_sunos5_sunc++.GNU:
          Also for solaris 10 link the sendfile lib

Sun Apr 30 04:21:37 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Svc_Conf_y.cpp:
          What I meant to commit last time.

Sun Apr 30 02:21:16 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Svc_Conf_y.cpp:
          Eliminating more warnings from the scoreboard. I'm not sure the
          best way to add this patch to ace/svcconf.mpb, since it affects
          more than just gnuace targets. The easiest would be to store the
          diff between this commit and the previous version and run patch,
          but I'm not sure how to integrate that solution.

Sat Apr 29 13:58:28 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Gestalt.cpp:
          More fuzz cleanup.

Sat Apr 29 13:17:24 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/ACE.cpp:
          Fuzz cleanup.

        * THANKS:
          Added credits.

Fri Apr 28 22:31:52 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Gestalt.cpp:

          Removed an ';' after ACE_TRACE, which was confusing GCC4 with
          "hidden visibility" enabled.

Fri Apr 28 21:22:53 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Config.cpp:
        * ace/Service_Gestalt.cpp:

          More re-formatting to weed out those pesky tabs.

Fri Apr 28 20:57:19 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/config-sunos5.8.h:
        * ace/config-sunos5.9.h: Moved ACE_HAS_SENDFILE from Solaris 8 to
          Solaris 9. Solaris 8 supports sendfilev[64] but not sendfile,
          at least not without some patches I don't know about.

Fri Apr 28 20:13:41 UTC 2006  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_sunos5_g++.GNU:
        * include/makeinclude/platform_sunos5_sunc++.GNU:
          Solaris 9 puts sendfile() is a separate library, so LIBS needs
          -lsendfile on Solaris 9.

Fri Apr 28 18:03:11 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/ACE.cpp:
        * ace/DLL.cpp:
        * ace/DLL_Manager.cpp:
        * ace/Dynamic_Service_Base.cpp:
        * ace/Dynamic_Service_Dependency.cpp:
        * ace/Parse_Node.cpp:
        * ace/Service_Config.inl:
        * ace/Service_Config.cpp:
        * ace/Service_Gestalt.cpp:
        * ace/Service_Object.cpp:
        * ace/Service_Repository.cpp:
        * ace/Service_Types.cpp:
        * ace/Shared_Object.cpp:

          Applied formatting style consistent with ACE convention.

Fri Apr 28 15:48:25 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/Service_Config.cpp (open_i): ACE_DEFAULT_SVC_CONF shouldn't
          be enclosed in ACE_LIB_TEXT since it's defined in terms of
          ACE_LIB_TEXT already.

Fri Apr 28 15:49:21 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Makefile.am:
          Added new Service_Gestalt files to the appropriate lists.

Fri Apr 28 15:42:59 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Service_Config.cpp:
          Fixed a problem killing some wchar builds.

        * ace/Service_Gestalt.h:
          Cleaned up the long-lines of the UNIMPLEMENTED functions.

Fri Apr 28 15:26:53 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/Timer_Queue_Adapters.h: Clarified the use and restrictions with
          ACE_Async_Timer_Queue_Adapter.

Fri Apr 28 15:22:35 UTC 2006  Steve Huston  <shuston@riverace.com>

        * apps/JAWS2/JAWS/Concurrency.cpp: Removed unused variables.

Fri Apr 28 14:54:04 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/config-macros.h: HP aC++ needs to see the statement in
          ACE_NOTREACHED up to the version 6 series (Integrity). Also see
          Tue Apr 11 13:12:36 UTC 2006  Simon McQueen  <sm@prismtech.com>

Fri Apr 28 14:31:48 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/Service_Gestalt.h: Removed extraneous ';' from
          ACE_UNIMPLEMENTED_FUNC usage.

        * m4/ace.m4: Fixed incorrect variable referenced in case during
          --enable-uses-wchar.

Fri Apr 28 14:03:50 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Dynamic_Service.h:
        * ace/Parse_Node.h:

          Fixed the usage of ACE_UNIMPLEMENTED_FUNC to remove the trailing
          semicolon. It was causing build errors on compilers that define
          the macro as empty.

Fri Apr 28 13:55:01 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Gestalt.h:

          Fixed the usage of ACE_UNIMPLEMENTED_FUNC to remove the trailing
          semicolon. It was causing build errors on compilers that define
          the macro as empty.

Fri Apr 28 13:29:08 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * bin/tao_orb_tests.lst:

          Updated the conditions for running the ORB-specific service
          repository tests.

Fri Apr 28 13:23:57 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Config.h:

          Updated the declaration of current_ to match the definition in
          its use of ACE_TSS_TYPE macro, as they are not equivalent for
          a single-threaded builds.

Fri Apr 28 13:21:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Process_Mutex_Test.cpp:
          When spawn fails log an error and exit instead of using an assert
          which causes an abort of the exe

Fri Apr 28 13:15:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Pipe_Test.cpp:
          When spawn fails log an error and exit instead of using an assert
          which causes an abort of the exe

Fri Apr 28 12:49:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-openvms.h:
          Added __SIGNED_INT_TIME_T so that we get a signed time_t that
          matches the POSIX spec that ACE expects.

Fri Apr 28 12:23:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-openvms.h:
          Removed comments, macros are documented in generally, added
          ACE_LACKS_PERFECT_MULTICAST_FILTERING

Fri Apr 28 11:11:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/PerlACE/Process_VMS.pm:
          New file to be able to run the tests automatically on OpenVMS

        * bin/PerlACE/Process.pm:
          When running on OpenVMS use Process_VMS

        * ace/config-openvms.h:
          Added ACE_HAS_SIGISMEMBER_BUG

        * tests/run_test.pl:
          If ACE_ROOT is not set, add ../bin to lib

Fri Apr 28 09:23:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Process_Manager_Test.cpp:
          Also create a logfile for each child process started

Fri Apr 28 08:06:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/run_test.lst:
          Added Sendfile_Test

Fri Apr 28 08:04:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Sendfile_Test.cpp:
          Added missing include

Thu Apr 27 21:04:08 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/OS_Memory.h: Allow configs to set ACE_bad_alloc to avoid
          extending the if-elif chain here further.

        * ace/config-win32-msvc.h: Regardless of MSVC version, MFC changes
          operator new to throw CMemoryException on out-of-memory condition.
          Version-specific settings still control the setting of
          ACE_HAS_NEW_NOTHROW. Thanks to Mohit Kapoor <Mohit dot Kapoor at
          siemens dot com> for this fix.

        * ace/Select_Reactor_T.cpp (handle_error): HACK ALERT! Some Linux
          kernels will return from select() with an "invalid" errno value,
          ERESTARTNOHAND, when compiled with profiling enabled. This works
          around the problem. This is a known kernel bug; see Red Hat Bugzilla
          https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=161468 and
          https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=123648 as well
          as Riverace support issue #167 and Riverace's complaint to Red Hat,
          support issue #17841808.

        * THANKS: Added Mohit Kapoor to the Hall of Fame.

Thu Apr 27 20:14:52 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Service_Gestalt.cpp:

          Fixed a complaint from a ACE_NDEBUG builds about unrefrenced
          variable (only used in ACE_ASSERT).

Thu Apr 27 18:33:18 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Aio_Platform_Test.cpp:
          When AIO is not available, just print an info message and exit

        * tests/run_test.lst:
          Added Aio_Platform_Test, it was not in this file at all

Thu Apr 27 18:21:17 UTC 2006  Steve Huston  <shuston@riverace.com>

        * ace/config-aix-5.x.h: Added ACE_HAS_SIGSUSPEND.

Thu Apr 27 14:57:10 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Svc_Conf.y:
        * ace/Svc_Conf_Tokens.h:
        * ace/Svc_Conf_y.cpp:

          Fixed fuzz complaint about #include inside a versioned namespace
          in Svc_Conf_y.cpp. It was due to a code that Bison generates a
          part of the parser, from Svc_Conf.y. Changed the versioned
          namespace to encloses the non-generated code only, while the
          rest of the parser seems to be designed so that multiple parses
          can coexist without name clashes.

Thu Apr 27 14:29:07 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Dynamic_Service_Dependency.h:
        * ace/Dynamic_Service_Dependency.cpp:

          Updated to remove an empty inl file.

        * ace/Dynamic_Service_Dependency.inl:

          Removed this file.

Thu Apr 27 14:00:18 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          Implemented get_ip_interfaces for OpenVMS

Thu Apr 27 11:19:18 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Array_Map.h:
        * ace/ATM_Addr.h:
        * ace/Atomic_Op_T.h:
        * ace/Base_Thread_Adapter.h:
        * ace/Cached_Connect_Strategy_T.h:
        * ace/Capabilities.h:
        * ace/Default_Constants.h:
        * ace/Hash_Map_Manager_T.h:
        * ace/Log_Msg_Callback.h:
        * ace/Log_Msg_IPC.h:
        * ace/Map_Manager.h:
        * ace/POSIX_Asynch_IO.h:
        * ace/POSIX_Proactor.h:
        * ace/RB_Tree.h:
        * ace/Strategies_T.h:
        * ace/Timer_Heap_T.h:
        * ace/Timer_List_T.h:
        * ace/Timer_Queue_Adapters.h:
        * ace/Timer_Queue_T.h:
        * ace/Timer_Wheel_T.h:
          Fixed doxygen warnings

Thu Apr 27 01:49:18 UTC 2006  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_sys_sendfile.h (sendfile, sendfile_emulation):
        * ace/OS_NS_sys_sendfile.cpp (sendfile_emulation):

          ACE_LOFF_T -> off_t.  Expected ACE_LOFF_T behavior is still
          under scrutiny.

        * ace/OS_NS_sys_sendfile.inl:

          Added missing <sys/sendfile.h> include directive.  Addresses
          infinite recursion at run-time when ACE_HAS_SENDFILE is defined.

          (sendfile):

          ACE_LOFF_T -> off_t, as above.

Wed Apr 26 22:00:21 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

        * ace/Parse_Node.h:
        * ace/Service_Gestalt.h:

          Correcting a build problem, caused by the extraneous semicolons
          after ACE_UNIMPLEMENTED_FUNC

Wed Apr 26 20:21:49 UTC 2006  Iliyan Jeliazkov  <iliyan@ociweb.com>

          The motivation for these changes was to enable support in ACE
          for multiple instances of Service Configuration Repository, or
          more appropriately - "Gestalt" (from the German word, meaning
          something that's more than the sum of its parts).  This is
          feature is necessary to enable support for ORB-specific, or more
          generally - service-specific sets of services, i.e. to be able
          to have dynamically loaded services to use their own private set
          of service objects. In the context of the implementation I will
          use "gestalt" as a synonym for service configuration context or
          service configuration repository.

          In order to accomplish this, the "instance"-related
          functionality of the former ACE_Service_Config class has been
          moved to another class - ACE_Service_Gestalt. The
          ACE_Service_Config retains all static interfaces and those
          members, pertaining to the concept of process-wide configuration
          state. The service config, as known today has been retained as a
          concept, but in its specialized semantics as holding a
          process-wide configuration state. The primary concept expressing
          an instance of configuration context is the gestalt. The
          implementation actually uses a specialization of
          ACE_Service_Gestalt in order to implement ACE_Service_Config as
          a singleton, special case of configuration context.

          The static methods in ACE_Service_Config provide access to
          process-wide gestalt (ubergestalt, anyone?) instance.

          For more details, here is the history of all included changes,
          with their motivation and explanation. It is ordered
          alphabetically, by the names of the changed files:

        * ace/ACE.cpp:

          Added to the condition evaluating ACE::debug() to include a
          check if environmental variable ACE_DEBUG has been set.

          Updated the debug() function to call getenv() only once by using
          a method-local static variable to hold the value from the
          environment.

        * ace/DLL.h:
        * ace/DLL.cpp:

          Implemented an operator=, needed in order to implement the
          ACE_Service_Configuration_Guard class.

        * ace/DLL_Manager.cpp:

          Improved the error diagnostics so that a "file not found" would
          not mask a "symbol not defined" error when loading a DLL.

        * ace/Dynamic_Service.h:

          "Privatized" copy ctor and operator= for ACE_Dynamic_Service
          objects since it is not designed for such operations.

        * ace/Dynamic_Service.inl:

          Added overloaded method instance() for ACE_ANTI_TCHAR.

        * ace/Dynamic_Service.cpp:

          Changes to enable instantiation of a service, based on the
          registration in a particular service repository. Adding a method
          that takes ACE_Service_Gestalt* additional parameter.

        * ace/Dynamic_Service_Base.h:
        * ace/Dynamic_Service_Base.cpp:

          Factored out a find_i() method to be used by the friend
          ACE_Dynamic_Service_Dependency class. It implements the specific
          lookup policy that extends the search to the global repository
          if the named service object can not be found locally.

          Added instance method, allowing the caller to explicitly specify
          the gestalt.

        * ace/Dynamic_Service_Dependency.h:
        * ace/Dynamic_Service_Dependency.inl:
        * ace/Dynamic_Service_Dependency.cpp:

          A newly introduced class, whose instances are designed to be
          embedded inside instances of other classes, typically created by
          DLL-based factories (service objects). This provides a way to
          declare dependency on a specific service, thus avoiding order of
          initialization issues with objects whose implementation code
          resides in dynamically loaded services.

          It is disastrous to have dynamically loadable services create
          and give away ownership of objects and then be unloaded before
          all those instances have been deleted. Normally the code for
          such objects classes resides within the TEXT segment of the DLL,
          which implements the service. If a service gets removed, its DLL
          may be unmapped from memory and then any attempt to invoke a
          method on the said objects will cause SEGV.

          Such instances must contain a member of
          ACE_Dynamic_Service_Dependency initialized with the service they
          depend on. @code ACE_Dynamic_Service_Dependency's constructor
          and destructor are "magical" - they work by maintaining the
          underlying dynamic service's DLL reference count.

          The problem was not present before because the one Service
          Repository outlived any other user objects. Now that an
          un-loadable service can own its configuration, the sequence of
          service finalization has been reversed.

          Updated the implementation of ACE_Dynamic_Service_Dependency
          class to ease debugging. ACE_Dynamic_Service_Dependency gets
          initialized whenever a dependent service gets loaded, to help us
          keep our access to dependent instances after their DLL is gone
          (by upping the ref count on the DLL).

          Updated usage of gestalt's instance() to current(). Removed
          unnecessary comments.

        * ace/Global_Macros.h:

          Changed the ACE_STATIC_SVC_DEFINE to use the new
          ACE_Service_Config::insert () method, which allows to streamline
          the Service Configuration interface and promote hiding the
          storage used for the static service descriptors.

        * ace/Parse_Node.h:
        * ace/Parse_Node.cpp:

          Changes to aid in keeping track of the gestalt, while deep in
          the guts of the svc.conf parser.

          Replaced the ACE_Service_Gestalt & in the method signatures with
          ACE_Service_Gestalt * to unify the interfaces.

          Updated the static function node's logic to use only
          ACE_Service_Gestalt public members and to no longer rely on
          knowledge about the internal storage representation of service
          repository.

          Removed a static_cast<> in ACE_Static_Function_Node::symbol()
          that was causing problems on some platforms. It was not even
          necessary as both sides were of the same type.

        * ace/Service_Config.{h,inl,cpp}:

          This separates the responsibilities between the service gestalt,
          which represents an _instance_ of configuration information, and
          the service config, which represents a special, process-wide,
          global configuration repository. Since both these entities
          represent the same concept - service configuration state, but
          from different aspects, the ACE_Service_Config now inherits
          (publicly) from ACE_Service_Gestalt.

          Lots of instance-related code moved to ACE_Service_Gestalt
          Replaced the use of char with ACE_ANTI_TCHAR and the appropriate
          ACE_TEXT_* macros.

          Moved the parsing of command-line options, pertaining to the
          process as a whole, here - in the parse_args_i () (protected,
          virtual).

          In order to resolve a problem caused by the inability of a
          dependent static service to determine which gestalt they need to
          register with, the concept of "current" was separated from the
          "global" gestalt. The current gestalt is pointed to by a
          pointer, stored in thread-specific storage (TSS) and manipulated
          by the ACE_Service_Config_Guard class that implements the
          "resource acquisition is initialization" idiom.

          Fixed an error in the separation of responsibilities between the
          instance gestalt and the global (ubergestalt), during
          initialization.  The bug can cause infinite recursion, when
          initializing an ORB, housed in a dynamic service. The singleton
          gestalt (i.e. ACE_Service_Config) must be initialized through
          open_i(), before open_i() can proceed initializing the specific
          gestalt instance. The difficulty is in that some use cases
          reverse the order of initialization by calling
          ACE_Service_Config::open () first and then, at some point call
          the instance gestalt open_i(). The solution is to use the
          is_initialized_ member together with an explicit call to
          ACE_Service_Config::global()->open_i().  To ease debugging of
          the process of registering static service, I have changes the
          ACE_Service_Config::static_svcs() to return
          ACE_Service_Gestalt::instance (), instead. Thus all the
          ACE_STATIC_SVC* macros are still working (no need to change
          existing code), but now there is a convenient place to debug -
          see the newly added ACE_Service_Gestalt::insert () method.  The
          header file no longer declares ACE_STATIC_SVCS,
          ACE_STATIC_SVCS_ITERATOR, ACE_SVC_QUEUE and
          ACE_SVC_QUEUE_ITERATOR. Those are now protected typedefs in
          ACE_Service_Gestalt, where they are actually used.

          Added new insert () method to use instead of the sequence
          static_svc ()->insert () which unnecessary exposes the internal
          storage structure of Service Configurator.  Made no_static_svcs_
          an instance member, instead of a class (static) member, thus
          providing for ability to set it per instance, not globally.

          Added default values for open_i() and declared private copy ctor
          and assignment operator for ACE_Service_Config_Guard, since it
          is not intended to be copied.

          Similarly, moved the parts of the open_i() functionality that
          did not belong in every instance of the gestalt.
          ACE_Service_Config is again a process-wide Singleton,registered
          with ACE_Object_Manager.

          Eliminated old #if 0-ed code in Service_Config.cpp.

        * ace/Service_Gestalt.h:
        * ace/Service_Gestalt.inl:
        * ace/Service_Gestalt.cpp:

          Encapsulates the idea of Service Configuration repository, or
          configuration context.

          Changed open_i to be able to detect if it is working on the
          special, process-wide instance (ubergestalt) or a "plain"
          gestalt instance, since there are things that must only be done
          once per process - like signal handler, logging key and
          daemon-ization of the whole process.

          Added an ignore_static_svcs parameter to
          ACE_Service_Gestalt::open_i in order to preserve the prior
          behavior of the singleton ACE_Service_Gestalt instance. Even
          though its no_static_svcs_ member was being initialized with 1,
          some clients (TAO) needs to be able to override it. Since now a
          call to open_i on an instance gestalt may precede in time the
          call to open_i on the ubergestalt, we need a mechanism to allow
          the no_static_svcs_ value to be overridden.

          Added the insert()'s implementation (described above).  Added a
          singleton() method to return the process-wide gestalt singleton
          (or ubergestalt?:). Used in open_i() to account for the fact
          that now a Service Gestalt may be called to open () prior to
          open () on the singleton instance, which would typically contain
          the bulk of the static service object descriptors.

          There was a problem with "hybrid" service objects, i.e. dynamic
          SO which contains static SO (dependent services).  The dependent
          services are typically registered via static ctor or static
          initializer at the point of loading of the dynamic SO's DLL.  As
          such, they end up registering before the dynamic SO.  Upon
          finalization of the service repository, the dynamic SO is
          finalized first, thus unloading its DLL and unmapping the TEXT
          segment, where the dependent static services code is.  When
          next, the static SO is to be finalized its memory is no longer
          at valid address.  The change ensures the dynamic service is
          registered *before* its dependent static services and will
          therefore be finalized last.  The solution is based upon the
          concept of forward declaring a dynamic service, named after the
          configuration file being processed.  Before processing a file,
          we simply check for an existing service with the same name and
          "pass" if we find one.

          Fixed the ACE_Service_Config_Guard's detection of the case where
          the forward service declaration was not replaced by a proper
          declaration as expected. It now properly removes the forward
          decl, not the "good" instance.

          Cleared up the TSS management issue, causing executable to crash
          on startup. The problem was due to an order-of-instantiation
          issue, involving the TSS-based pointer to the current
          gestalt. Used ACE_Object_Manager's shutting_down and starting_up
          methods to determine if it is safe to use the static ACE_TSS
          instance.

          Added const-ness for find().  Removed prototypes for initialize,
          resume, suspend and remove that used plain char type and
          conditionally compiled in only for WinCE and
          ACE_USES_WCHAR. Service_Config still declares and defines these
          (using ACE_ANTI_TCHAR). Updated to resolve problems when built
          with ACE_USES_WCHAR.

          Declared private copy ctor and assignment operator for
          ACE_Service_Gestalt and ACE_Service_Type_Factory, since their
          instances are not intended to be copied.  Added an
          ACE_UNIMPLEMENTED_FUNC macro for the copy-ctor and assignment
          operator of ACE_Service_Type_Factory.

          Reorganized to streamline the header file and remove unnecessary
          declarations and to add a decl for find_static_svc_descriptor().

          Changed the open() method's implementation to incorporate the
          additional parameter for open_i().

          Added the new find_static_svc_descriptor() member, which allows
          ACE_Static_Function_Node to not need to know how the static
          services are registered in the service repository.

        * ace/Service_Object.h:
        * ace/Service_Object.inl:
        * ace/Service_Object.cpp:

          Exposed the dll_ member through dll () const method because the
          reference is needed by the new ACE_Dynamic_Service_Dependency
          class. Fixed the dump () method.

        * ace/Service_Repository.h:
        * ace/Service_Repository.cpp:

          Added const-ness for the find* () methods. Added debugging.  The
          remove method changes the order of services registrations in the
          repository, which may break the Service Repository's invariant,
          imposed by the need to correctly finalize dynamic services with
          their own static services.

          For example, consider a case where a static service (S0) is
          registered in the repository. Then a DLL-based service (D1)
          registers its own static service (S1). So far the order is
          "finalization-compatible": S0 < D1 < S1, i.e. services will be
          finalized in reverse order and D1's DLL will still be available
          when finalizing S1.  Now let's remove (S0). Currently, after
          this operation the repository end up in this order: S1 < D1,
          which is trivially not finalization-compatible.

          Instead of replacing the pointer with the last ptr to a svc in
          the array (repository) and then decrementing the current size of
          the repo, the solution actually shifts left the rest of the
          array.

        * ace/Service_Types.cpp:
        * ace/Shared_Object.cpp:

          Removed some and updated existing debug statements. Eliminated
          dead partial instantiation code.

        * ace/Svc_Conf.y:
        * ace/Svc_Conf.h:
        * ace/Svc_Conf_Tokens.h:
        * ace/Svc_Conf_y.cpp:

          Changed to allow propagation of the knowledge about which
          gestalt is currently being used for service registrations.

          Factored the ACE_Svc_Conf_Param class out in its own translation
          unit.

        * ace/Svc_Conf_Param.h:

          Replaced the ACE_Service_Gestalt & in the method signatures with
          ACE_Service_Gestalt *

        * ace/svcconf.mpb:

          Updated the svcconf.mpb rule to allow building with Bison 2.0
          and up. The change adds #ifdef/#endif around the generated
          header file. A YYSTYPE_IS_DECLARED define is added in order to
          make sure the token declarations from the Svc_Conf_Tokens.h are
          used instead of those generated in the Svc_Conf_y.cpp file.

          Added the new Dynamic_Service_Dependency.* files.

        * bin/tao_orb_tests.lst:

          Adding the new tests to the automated test suite to run during
          the nightly builds.

Wed Apr 26 17:13:57 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * bin/tao_orb_tests.lst:
          Added test for Parallel_Connect_Strategy. This test will take
          about 9 minutes to run to completion.

Wed Apr 26 14:22:31 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * bin/tao_orb_tests.lst:
          Added tests for new POA features.

        * bin/MakeProjectCreator/config/endpointpolicy.mpb:
          Applications wishing to use the TAO EndpointPolicy should add
          this base project to their MPC files. This will include
          libTAO_EndpointPolicy in their link lines.

Wed Apr 26 14:10:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_hpux_kcc.GNU:
        * include/makeinclude/platform_irix6.x_kcc.GNU:
        * include/makeinclude/platform_linux_kcc.GNU:
        * include/makeinclude/platform_osf1_4.x_kcc.GNU:
        * include/makeinclude/platform_sunos5_kcc.GNU:
        * include/makeinclude/platform_tru64_kcc.GNU:
          Removed these files which are for the KAI C++ compiler. This
          compiler doesn't exist anymore and full support for KAI C++
          has been removed now from ACE/TAO. See bugzilla bug 2007

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

        * bin/tao_orb_tests.lst:
          Added TAO/tests/POA/Bug_2511_Regression

Wed Apr 26 12:52:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Process_Manager.cpp:
          Fixed fuzz errors and use const when possible

Wed Apr 26 12:02:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/CDR_Test.cpp:
          Boolean is now size 1 or bigger, the marshaling code will take
          care that a Boolean is marshaled as octet of size 1

Wed Apr 26 11:28:28 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * bin/tao_orb_tests.lst:
          Added TAO/tests/OBV/truncatable.

Wed Apr 26 10:05:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added TAO/tests/OBV

Wed Apr 26 09:56:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added TAO/tests/Portable_Interceptors/Bug_2510_Regression

Wed Apr 26 07:21:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks5.5.x.GNU:
          Increased template-depth to 50, hopefully this is large enough to
          also build CIAO

Tue Apr 25 16:44:04 UTC 2006  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/CDR_Stream.h:
        * ace/CDR_Stream.cpp:
          Added code to support rewinding the output CDR to some previous
          location and updating a value there. This is required to support
          marshaling offset values were the target of the offset is not
          known until the final offset target is actually reached.

Tue Apr 25 13:50:12 UTC 2006  Martin Corino  <mcorino@remedy.nl>

        * tests/Signal_Test.cpp:
          Fixed this test for (modern) Linux and Solaris at least.
          The crux is blocking signals before calling sigwait() when doing
          synchronous signal handling.

Tue Apr 25 09:35:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Base_Thread_Adapter.h:
        * ace/Cleanup.h:
          Fixed some errors I made

Tue Apr 25 09:23:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE-INSTALL.html:
          Updated supported platforms and use vc8 for the MPC examples

Tue Apr 25 08:49:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Base.h:
          Always use bool for Boolean, see bugzilla 2514 for more info

Tue Apr 25 06:33:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Log_Msg.h:
          Put back ACE_TSS_CLEANUP_NAME that got lost by accident with the
          vc6 cleanup. Thanks to Olli Savia for reporting this.

Mon Apr 24 17:39:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/run_test.lst:
          Added Signal_Test. Thanks to Martin Corino for notificing that
          we don't run this test on any platform.

Mon Apr 24 10:17:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added TAO/tests/Bug_1676_Regression

Mon Apr 24 09:57:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_vxworks5.5.x.GNU:
          Increase template depth to resolve compile errors when building
          TAO with the new sequence implementation

Mon Apr 24 09:17:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/sys/os_types.h:
          Added ACE_LOFF_T for LynxOS. Thanks to Simon Massey for delivering
          the patch

Fri Apr 21 16:28:26 UTC 2006  William R. Otte  <wotte@dre.vanderbilt.edu>

         Merge from ARMS Escher repository.

        * ace/OS_NS_Thread.cpp

          Updated sched_params() to not ignore the process id passed in.
          Also enhanced the Windows implementation to get a handle to the
          process specified before applying the priority class changes.

        * ace/Process_Manager.cpp
        * ace/Process_Manager.h

           Added methods set_scheduler and set_scheduler_all
           to set scheduling parameters for process(es) managed by this
           class.

        * bin/MakeProjectCreator/config/ciao_config_handlers.mpb

          Fixed build ordering problem in CIAO.

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

        * ace/Caching_Utility_T.cpp:
          Removed invalid added const

Thu Apr 20 19:27:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/sys/os_types.h:
          Added ACE_LOFF_T for the BSD variants, thanks to J.T. Conklin
          for delivering the patch

Thu Apr 20 18:16:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-macros.h:
          Removed setting of ACE_ANY_OPS_USE_NAMESPACE again. This causes
          problems when building CIAO. Thanks to Jeff Parsons for finding
          this.

Thu Apr 20 11:46:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/ACE_Init_Test.rc:
          Removed another msvc specific part

Thu Apr 20 11:06:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/fuzz.pl:
          Added a check for deprecated macros, first one to check is
          ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION

        * tests/*.cpp:
        * protocols/*.cpp:
        * ACEXML/*.cpp:
        * performance-tests/*.cpp
        * netsvcs/*.cpp
          Removed all explicit template instantiations

        * ace/os_include/sys/os_types.h:
          Added ACE_LOFF_T typedef for VxWorks 6.2 and newer

Thu Apr 20 07:23:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/os_include/sys/os_types.h:
          Always define ACE_LOFF_T so that we can use it in the sendfile
          wrapper

Thu Apr 20 07:17:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/svcconf.mpb:
          Removed Service_Templates.cpp

Wed Apr 19 19:18:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/*:
          Removed explicit template support

Wed Apr 19 15:09:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

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

Wed Apr 19 14:35:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_sys_sendfile.h:
          Updated include to get size_t and ACE_LOFF_T to fix compile
          errors on Solaris

Wed Apr 19 13:31:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/APG/Logging/Use_Multiple_Sinks.cpp:
        * examples/APG/Logging/Use_Ostream.cpp:
        * examples/APG/Logging/LogManager.h:
          Removed vc6 workarounds

Wed Apr 19 13:13:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Bug_2368_Regression_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:
          Added regression for bug 2368, this will fail because this bug
          isn't addressed yet

Wed Apr 19 13:08:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_sunos5_g++.GNU:
          Use -shared instead of -G when building shared libraries. Thanks to
          Alan L Batongbacal <alanlb at vt dot edu> for reporting this. This
          fixes bugzilla bug 1848.

Wed Apr 19 12:11:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/ACE_Init_Test.rc:
          Removed msvc specific lines

        * tests/tests.mpc:
          The ACE_Init_Test should use its resource file. Fixes bugzilla
          2495

        * ace/Capabilities.{h,cpp}:
          Prefix increment instead of postfix

        * ace/Hash_Map_Manager_T.{h,cpp}:
          Removed workaround for suncc 4.2

        * ace/Object_Manager.h:
        * ace/Parse_Node.h:
        * ace/POSIX_Proactor.h:
        * ace/Thread_Mutex.h:
          Doxygen improvements

        * ace/Parse_Node.cpp:
          Use prefix increment, initialise pointers with 0 and don't print
          an error message when we can't a dll, this gives false messages
          when using TAO. This fixes bugzilla 2383. Thanks to Ming Xiong
          for making a patch.

        * ace/Proactor.h:
          Removed all virtual keywords, not needed for this class. Fixes
          bugzilla 2178.

        * ace/Thread_Manager.h:
          Removed virtual keywords, not needed and safes footprint. Fixes
          bugzilla 2179.

        * bin/fuzz.pl:
          Added more msvc checks to detect code constructors for vc6 or
          vc7.0

Wed Apr 19 11:48:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        Merged ACE changes from sendfile branch. Also made a lot of const
        improvements throughout ACE.

        Tue Apr  4 10:20:36 2006  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Mem_Map.cpp (open):

        Only copy the filename to the ACE_Mem_Map::filename_ member
        if the call to open() succeeds.

        * ace/PI_Malloc.h (ACE_Malloc_Header):

        Added missing private and undefined copy constructor.  The
        corresponding assignment operator was already there.

        Wed Mar 29 14:51:12 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-sunos5.8.h:
        Solaris 8 and newer also support sendfile. It seems HPUX also
        supports it but with a different signature and semantics, so just
        don't try it there yet.

        Wed Mar 29 13:06:12 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/MMAP_Memory_Pool.{h,cpp,inl}:
        Added new .inl file to implement the new mmap accessors, include
        this new file in the header and implementation file

        Wed Mar 29 08:00:12 2006  Ossama Othman <ossama@dre.vanderbilt.edu>

        * ace/OS_NS_sys_sendfile.cpp
        * ace/OS_NS_sys_sendfile.h
        * ace/OS_NS_sys_sendfile.inl
        New sendfile wrapper

        * ace/MMAP_Memory_Pool.h:
        Added accessors for mmap

        * ace/ace.mpc
        Added OS_NS_sys_sendfile

        * ace/config-linux-common.h
        Added ACE_HAS_SENDFILE

Wed Apr 19 07:48:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        Merged ACE changes from sequpdate3 branch

        * ace/config-osf1-3.2.h:
          Removed, very old

        * ace/config-tru64.h:
          Removed include of config-osf1-3.2.h

        * ace/OS_Dirent.cpp:
        * ace/OS_Memory.{cpp,inl}:
        * ace/OS_String.{cpp,inl}:
        * ace/Sync.cpp:
          Removed these files, where not build for a long time already

        * ace/ace.mpc:
          Removed files above

        * ace/OS_Memory.h:
        * ace/OS_String.h:
          Removed include of inline files

        * ace/config-win32-msvc6.h:
        * ace/config-kcc-common.h:
          Removed these files, vc6 and kcc are deprecated

        * ace/config-irix6.x-kcc.h:
        * ace/config-osf1-4.0.h:
        * ace/config-sunos5.5.h:
          Removed support for KCC

        * ace/Asynch_IO_Impl.h:
          Removed workarounds for KCC

        * ace/config-win32-msvc.h:
          Removed support for vc6 and vc7.0

        * ace/Array_Base.cpp:
        * ace/Array_Map.{h,cpp}:
        * ace/Base_Thread_Adapter.h:
        * ace/Cleanup.h:
        * ace/Log_Msg.h:
        * ace/Versioned_Namespace.h:
        * ace/Get_Opt.cpp:
        * ace/WIN32_Proactor.cpp:
        * ace/Message_Queue.cpp:
        * ace/CDR_Base.h:
          Removed work arounds for vc6

        * ace/README
        * ace/config-win32-msvc6.h:
        * ace/Global_Macros.h:
          Deprecated ACE_HAS_BROKEN_NAMESPACES, we drop msvc6 and I am
          removing the workarounds for this compiler one by one as part of the
          new sequence implementation. Because we deprecate this also
          ACE_NESTED_CLASS is deprecated

        * ace/config-win32-msvc6.h:
        * ace/config-win32-msvc7.h:
        * ace/config-win32-msvc8.h:
          Removed ACE_HAS_BROKEN_IMPLICIT_CONST_CAST, not used in ACE

        * ace/config-win32-msvc6.h:
        * ace/config-win32-visualage.h:
        * ace/Registry.h
          Removed ACE_HAS_BROKEN_NESTED_TEMPLATES, only used for msvc6 and
          visual age, both are being dropped

Wed Apr 19 07:48:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added Bug_2503_Regression

Tue Apr 18 20:49:16 2006  Wallace Zhang  <zhangw@ociweb.com>

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