summaryrefslogtreecommitdiff
path: root/ACE/ChangeLog
blob: ab065f6ca701e6a21e9868b1eff486d7b50deb38 (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
Fri Jun  7 14:39:01 UTC 2013  Phil Mesnier  <mesnier_p@ociweb.com>

        * tests/SOCK_Dgram_Test.cpp:

          Potential fix for a warning on the wchar scoreboard.

Thu Jun  6 17:02:06 UTC 2013  Phil Mesnier  <mesnier_p@ociweb.com>

        * include/makeinclude/rules.lib.GNU:

          The rule for generating versioned_so=2 style libraries would create
          names such as "-6.2.0.so" in cases where the SHLIB was reset to empty,
          for instance if a precondition isn't met. As an example, ACE_TkReactor
          should skip the build if macro tk=1 isn't set. but with versioned_so=2
          the VSHLIB target was non-empty so the build was attempted. Now the
          VSHLIB and related targets are modified only if the source libname
          is not empty.

Wed Jun  5 20:09:59 UTC 2013  Phil Mesnier  <mesnier_p@ociweb.com>

        * tests/FlReactor_Test.cpp:
        * tests/QtReactor_Test.cpp:

          Fixed wchar build compile errors

Fri May 31 14:02:11 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ETCL/ETCL_Constraint.inl:
          Fixed coverity warning

Thu May 30 18:50:44 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Malloc_Allocator.h:
        * ace/Shared_Memory_Pool.h:
          Doxygen changes

        * ace/Shared_Memory_Pool.cpp:
          Fixed Coverity 300041 Dereference after null check

Wed May 29 03:35:59 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Connector.h: Used reinterpret_cast<const
          peer_addr_type&>(peer_addr_type::sap_any) instead of C cast to
          avoid a warning when compiling with -Wcast-qual.  Thanks to
          Milan Cvetkovic <milan dot cvetkovic at mpathix dot com> for
          reporting this.

Wed May 29 13:57:15 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/auto_run_tests.pl:
        * tests/run_test.pl:
          Commented out setting of the Coverity environment variables
          seperately for each test, that looks to cause a huge additonal
          resource usage

Wed May 29 06:58:53 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-sunos5.7.h:
          Fixed possible redefinition warning

        * docs/ACE-development-process.html:
          Extended bczar instructions, updated link

        * tests/Compiler_Features_20_DLL.h:
        * tests/Compiler_Features_20_DLL.cpp:
        * tests/Compiler_Features_20_DLL_Export.h:
        * tests/tests.mpc:
          New C++11 compiler feature test

Tue May 28 09:12:20 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/Download.html:
        * etc/index.html:
          Make x.2.0 links available to the public

Mon May 27 17:46:40 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libtao-orbsvcs-2.2.0.install:
        * debian/libtao-orbsvcs-dev.install:
          Added new libTAO_Async_ImR_Client_IDL

Mon May 27 12:46:56 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libtao-2.2.0.install:
        * debian/libtao-dev.install:
          Added new Async IOR Table, needed to build prebuild packages

Mon May 27 10:18:26 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * debian/debian.changelog:
        * docs/bczar/bczar.html:
          Updates in preparation of releasing x.2.0

        * bin/make_release.py:
          Fixed generation of ace.dsc file

Mon May 27 10:09:24 CEST 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.2.0 released.

Tue May 21 17:24:39 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Compiler_Features_16_Test.cpp:
          Added a forward declared enum after it has been declared

Mon May 20 18:40:20 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Compiler_Features_16_Test.cpp:
          Added also a forward declared enum

Fri May 17 13:48:34 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * bin/fuzz.pl:

          Updated regex for finding logging macros.

Fri May 17 09:32:04 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/tests.mpc:
          Add NOMINMAX to macros for compiler features test 16/17

Fri May 17 09:26:22 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Compiler_Features_19_Test.cpp:
          Added missing include

Thu May 16 17:52:36 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * ace/Select_Reactor_T.cpp:

          If a handler has to be removed by check_handles(),
          also remove it from the three masks in the wait_set_.

        * ace/Handle_Set.inl:
        * ace/OS_NS_unistd.inl:
        * ace/config-vxworks6.9.h:
        * bin/PerlACE/ProcessVX.pm:
        * tests/Log_Msg_Test.cpp:

          Updated for port to 64-bit VxWorks 6.9 (x86 RTP static).

        * bin/fuzz.pl:

          Updated check for logging macros for the case
          where the current directory is ACE_ROOT.

Mon May 13 17:27:37 UTC 2013  Phil Mesnier  <mesnier_p@ociweb.com>

        Merging from branch OCI_Asynch_IMR:
        Wed May  8 21:42:24 UTC 2013  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/Countdown_Time_T.cpp:
        * ace/Countdown_Time_T.h:

          Make the countdown time instances nestable. Prior to this change,
          if a function using the countdown time to subtract a duration
          happened to call another function that also used a countdown time
          instance to subtract from the same instance, the inner countdown
          would subtract its span and then the outer one would do the same
          resulting in the same span of time being subtracted twice.

Mon May 13 17:34:28 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/INET_Addr_Test.cpp:
          Fixed error in logging

        * tests/Multihomed_INET_Addr_Test.cpp:
          Unicode fixes

Mon May 13 07:13:57 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Make 6.1.9 public and prepare for the next minor release

Mon May 13 08:52:11 CEST 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.1.9 released.

Fri May 10 20:36:13 UTC 2013  Steve Huston  <shuston@riverace.com>

        * examples/C++NPv2/AIO_Client_Logging_Daemon.cpp: Advance the
          iterator while freeing items in close() to avoid an infinite
          loop. Thanks to George Chen for finding this problem.

        * tests/Unbounded_Set_Test.cpp: Added a allocate/iterate/free cycle
          similar to the one above to catch this type of thing if it pops
          up again.

        * THANKS: Added George Chen.

Fri May 10 08:59:43 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Compiler_Features_17_Test.cpp:
          Added another C++11 test case

Thu May  9 17:14:47 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * tests/Thread_Manager_Test.cpp (worker): Fixed %s to %C to work
          properly with ACE_DEBUG.  Thanks to Johnny for reporting this.

Thu May  9 14:05:28 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * tests/Thread_Manager_Test.cpp (worker): Removed unused "len"
          variable to fix a warning.  Thanks to Johnny for reporting this.

Wed May  8 19:04:22 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/OS_NS_Thread.inl (ACE_OS::thr_id): Fixed a warning on
          Windows.  Thanks to Johnny for reporting this.

Wed May  8 13:52:54 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/OS_NS_Thread.inl (ACE_OS::thr_id): Replaced the call to
          ACE_Thread::self() with ACE_OS::thr_self().  Thanks to Johnny
          Willemsen for reporting this.

Tue May  7 15:04:24 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/OS_NS_Thread.{h,inl}: Added a new ACE_OS::thr_id() method
          that stores a string version of the current thread id into
          buffer and returns the size of this thread id in bytes.

Thu Apr 25 16:51:06 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Svc_Handler.h:
          ace/Connector.h:
          ace/Acceptor.h:  Added template parameter documentation.
          Thanks to Clyde Gerber <clyde_gerber at symantec dot com> for
          contributing this.

Thu Apr 25 07:20:58 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * etc/ace.doxygen:
          Set MAX_DOT_GRAPH_DEPTH to 5, thanks to Clyde Gerber
          <clyde_gerber at symantec dot com> for motivating this.

Wed Apr 24 14:43:25 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Acceptor.{h,cpp}, ace/Connector.{h,cpp}:
        * ace/Svc_Handler.{h,cpp}: Replaced all the obsolete
          ACE_PEER_{STREAM,ACCEPTOR,CONNECTOR} macros that have been
          deprecated.  Thanks to Clyde Gerber <clyde_gerber at symantec
          dot com> for motivating this.

Wed Apr 24 14:42:50 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Global_Macros.h: Added comments that indicate the
          ACE_PEER_{STREAM,ACCEPTOR,CONNECTOR} macros have been
          deprecated.  Thanks to Clyde Gerber <clyde_gerber at symantec
          dot com> for motivating this.

Wed Apr 24 13:57:02 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Svc_Handler.{h,cpp}: Zapped the obsolete ACE_PEER_STREAM*
          macros since compilers that ACE supports now should handle the
          traits classes properly.

Thu Apr 18 16:42:03 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Svc_Handler.h: Updated the documentation for
          ACE_Svc_Handler::open() method.  Thanks to Andreas Florath
          <andreas at florath dot org> for motivating this.

Mon Apr 15 01:59:34 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * examples/Connection/misc/Connection_Handler.cpp: Improved the
          documentation.

Mon Apr 22 14:43:53 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Hash_Map_Manager_T.inl:
        * ace/Hash_Map_Manager_T.cpp:
          Fixed maybe unitialized warnings

Fri Apr 19 19:15:42 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * bin/fuzz.pl:

          Added a fuzz check for the category-specifc ACE log macros.

        * ace/XML_Utils/XML_Helper.tpp:

          Fixed fuzz error.

Fri Apr 19 14:39:41 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.cpp:
        * ace/Log_Record.cpp:

        Fixed Coverity warnings.

Fri Apr 19 12:02:36 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * contrib/minizip/unzip.c:
        * contrib/minizip/zip.c:
          Fixed warnings

Fri Apr 19 11:15:43 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp:
        * examples/IPC_SAP/SSL_SAP/SSL-client.cpp:
          Fixed warnings in single threaded builds

Thu Apr 18 16:21:32 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.h:
        * ace/Log_Category.cpp:

        Fixed main thread Log_Category_TSS object not cleaned up before
        program exits.

Mon Apr 15 22:45:14 UTC 2013  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.h:
        * ace/Dev_Poll_Reactor.cpp: Changed the repository lock (repo_token_)
          from an ACE_DEV_POLL_TOKEN to ACE_SYNCH_MUTEX and renamed it
          repo_lock_. Gets a few more percent improvement in performance.

Mon Apr 15 17:46:24 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.inl:

        Fixed linking problem for ST build.

Mon Apr 15 14:28:43 UTC 2013  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.cpp: Fixed single-threaded build issues.
          Fuzz tweaks.

Mon Apr 15 13:59:55 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * ace/Log_Record.inl:

          Fixed ACE_TRACE macro to match actual method name.

Fri Apr 12 19:49:50 UTC 2013  Steve Huston  <shuston@riverace.com>

        * ace/Dev_Poll_Reactor.cpp:
        * ace/Dev_Poll_Reactor.h: Take advantage of the thread-safe behavior
          of epoll_ctl/epoll_wait and allow changes to the wait set to be made
          without interrupting the waiting leader thread. To make timers and
          notifies more predictable, still allow only one thread to wait for
          events at a time, but allow registrations, removals, etc. to the
          wait set to be made by any thread. The "reactor token" now controls
          the leader/followers for event dispatching; a new repository token
          is added to synchronize access to the handler repository, independent
          of waiting for events.

Fri Apr 12 19:43:34 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.cpp:
        Fixed problem caused by pervious commit.

Fri Apr 12 19:30:05 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.h:
        * ace/Log_Category.cpp:
        Fixed problem for ST build

        * tests/Log_Msg_Test.cpp:
        Fixed problem for WCHAR build

Thu Apr 11 19:53:22 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.h:
        Fixed some documentation problems.

Thu Apr 11 19:42:14 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.h:
        Fixed ACELIB_ERROR_RETURN()  control reaches end of non-void function warning.

        * tests/Log_Msg_Test.cpp:
        Added test for ACE_Log_Category

Thu Apr 11 17:54:55 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/ace_for_tao.mpc:
        Added missing file.

Thu Apr 11 15:45:41 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/ACE.cpp:
        * ace/ARGV.cpp:
        * ace/ATM_Acceptor.inl:
        * ace/ATM_Acceptor.cpp:
        * ace/ATM_Addr.cpp:
        * ace/ATM_Connector.inl:
        * ace/ATM_Connector.cpp:
        * ace/ATM_QoS.cpp:
        * ace/ATM_Stream.cpp:
        * ace/Acceptor.cpp:
        * ace/Activation_Queue.cpp:
        * ace/Addr.cpp:
        * ace/Assert.cpp:
        * ace/Asynch_Acceptor.cpp:
        * ace/Asynch_Connector.cpp:
        * ace/Asynch_Pseudo_Task.cpp:
        * ace/Atomic_Op.cpp:
        * ace/Atomic_Op_GCC_T.cpp:
        * ace/Atomic_Op_T.cpp:
        * ace/Auto_IncDec_T.cpp:
        * ace/Barrier.cpp:
        * ace/Based_Pointer_T.cpp:
        * ace/Basic_Stats.cpp:
        * ace/Bound_Ptr.inl:
        * ace/CE_Screen_Output.cpp:
        * ace/Cache_Map_Manager_T.cpp:
        * ace/Cached_Connect_Strategy_T.cpp:
        * ace/Caching_Strategies_T.inl:
        * ace/Caching_Strategies_T.cpp:
        * ace/Capabilities.cpp:
        * ace/Codecs.cpp:
        * ace/Condition_Recursive_Thread_Mutex.cpp:
        * ace/Condition_T.cpp:
        * ace/Condition_Thread_Mutex.cpp:
        * ace/Configuration.cpp:
        * ace/Connector.cpp:
        * ace/Containers_T.cpp:
        * ace/DEV_Addr.cpp:
        * ace/DEV_Connector.h:
        * ace/DEV_Connector.inl:
        * ace/DEV_IO.cpp:
        * ace/DLL.cpp:
        * ace/DLL_Manager.cpp:
        * ace/Dev_Poll_Reactor.inl:
        * ace/Dev_Poll_Reactor.cpp:
        * ace/Dirent.inl:
        * ace/Dump.cpp:
        * ace/Dynamic_Message_Strategy.cpp:
        * ace/Dynamic_Service_Base.cpp:
        * ace/Dynamic_Service_Dependency.cpp:
        * ace/Event.cpp:
        * ace/Event_Base.cpp:
        * ace/FIFO.cpp:
        * ace/FIFO_Recv.cpp:
        * ace/FIFO_Recv_Msg.cpp:
        * ace/FIFO_Send.cpp:
        * ace/FIFO_Send_Msg.cpp:
        * ace/FILE_Addr.cpp:
        * ace/FILE_Connector.h:
        * ace/FILE_Connector.inl:
        * ace/FILE_Connector.cpp:
        * ace/FILE_IO.cpp:
        * ace/File_Lock.cpp:
        * ace/Filecache.cpp:
        * ace/Framework_Component.cpp:
        * ace/Future.cpp:
        * ace/Get_Opt.cpp:
        * ace/Guard_T.cpp:
        * ace/Handle_Set.inl:
        * ace/Handle_Set.cpp:
        * ace/Hash_Map_Manager_T.h:
        * ace/Hash_Map_Manager_T.inl:
        * ace/Hash_Map_Manager_T.cpp:
        * ace/Hash_Multi_Map_Manager_T.h:
        * ace/Hash_Multi_Map_Manager_T.inl:
        * ace/Hash_Multi_Map_Manager_T.cpp:
        * ace/High_Res_Timer.cpp:
        * ace/ICMP_Socket.cpp:
        * ace/INET_Addr.cpp:
        * ace/IO_SAP.cpp:
        * ace/IPC_SAP.cpp:
        * ace/Intrusive_Auto_Ptr.inl:
        * ace/LSOCK.cpp:
        * ace/LSOCK_Acceptor.cpp:
        * ace/LSOCK_CODgram.cpp:
        * ace/LSOCK_Connector.cpp:
        * ace/LSOCK_Dgram.cpp:
        * ace/LSOCK_Stream.cpp:
        * ace/Lib_Find.cpp:
        * ace/Local_Memory_Pool.cpp:
        * ace/Local_Name_Space_T.cpp:
        * ace/Local_Tokens.h:
        * ace/Local_Tokens.inl:
        * ace/Local_Tokens.cpp:
        * ace/Log_Category.h:
        * ace/Log_Msg.cpp:
        * ace/Log_Msg_NT_Event_Log.cpp:
        * ace/Log_Msg_UNIX_Syslog.cpp:
        * ace/Log_Record.cpp:
        * ace/Logging_Strategy.h:
        * ace/Logging_Strategy.cpp:
        * ace/MEM_Acceptor.cpp:
        * ace/MEM_Addr.cpp:
        * ace/MEM_Connector.cpp:
        * ace/MEM_IO.cpp:
        * ace/MEM_SAP.cpp:
        * ace/MMAP_Memory_Pool.cpp:
        * ace/Malloc.h:
        * ace/Malloc.cpp:
        * ace/Malloc_Allocator.cpp:
        * ace/Malloc_T.cpp:
        * ace/Map_Manager.inl:
        * ace/Map_Manager.cpp:
        * ace/Mem_Map.cpp:
        * ace/Message_Block.cpp:
        * ace/Message_Queue.cpp:
        * ace/Message_Queue_NT.cpp:
        * ace/Message_Queue_T.cpp:
        * ace/Message_Queue_Vx.cpp:
        * ace/Module.cpp:
        * ace/Monitor_Admin.cpp:
        * ace/Monitor_Base.cpp:
        * ace/Monitor_Control/BSD_Network_Interface_Monitor.cpp:
        * ace/Monitor_Control/CPU_Load_Monitor.cpp:
        * ace/Monitor_Control/Constraint_Interpreter.cpp:
        * ace/Monitor_Control/FreeBSD_Network_Interface_Monitor.cpp:
        * ace/Monitor_Control/Linux_Network_Interface_Monitor.cpp:
        * ace/Monitor_Control/Memory_Usage_Monitor.cpp:
        * ace/Monitor_Control/Monitor_Query.cpp:
        * ace/Monitor_Control/Num_Threads_Monitor.cpp:
        * ace/Monitor_Control/Solaris_Network_Interface_Monitor.cpp:
        * ace/Monitor_Control/Windows_Monitor.cpp:
        * ace/Monitor_Control/Windows_Multi_Instance_Monitor.cpp:

        * ace/Monitor_Point_Registry.cpp:
        * ace/Multihomed_INET_Addr.cpp:
        * ace/Mutex.cpp:
        * ace/NT_Service.cpp:
        * ace/Name_Proxy.cpp:
        * ace/Name_Request_Reply.cpp:
        * ace/Naming_Context.cpp:
        * ace/OS_NS_Thread.cpp:
        * ace/OS_NS_dirent.cpp:
        * ace/OS_NS_stdio.cpp:
        * ace/OS_NS_unistd.cpp:
        * ace/Obchunk.cpp:
        * ace/Object_Manager.cpp:
        * ace/Obstack_T.cpp:
        * ace/PI_Malloc.cpp:
        * ace/POSIX_Asynch_IO.cpp:
        * ace/POSIX_CB_Proactor.cpp:
        * ace/POSIX_Proactor.cpp:
        * ace/Pagefile_Memory_Pool.cpp:
        * ace/Parse_Node.cpp:
        * ace/Ping_Socket.cpp:
        * ace/Pipe.cpp:
        * ace/Priority_Reactor.cpp:
        * ace/Proactor.cpp:
        * ace/Process.cpp:
        * ace/Process_Manager.cpp:
        * ace/Process_Mutex.cpp:
        * ace/Process_Semaphore.cpp:
        * ace/Profile_Timer.cpp:
        * ace/QoS/QoS_Manager.cpp:
        * ace/QoS/QoS_Session_Factory.cpp:
        * ace/QoS/QoS_Session_Impl.inl:
        * ace/QoS/QoS_Session_Impl.cpp:
        * ace/QoS/SOCK_Dgram_Mcast_QoS.cpp:
        * ace/RB_Tree.inl:
        * ace/RB_Tree.cpp:
        * ace/RW_Mutex.cpp:
        * ace/RW_Process_Mutex.cpp:
        * ace/Reactor_Token_T.cpp:
        * ace/Read_Buffer.cpp:
        * ace/Recursive_Thread_Mutex.cpp:
        * ace/Refcounted_Auto_Ptr.inl:
        * ace/Registry_Name_Space.cpp:
        * ace/Remote_Name_Space.cpp:
        * ace/Remote_Tokens.cpp:
        * ace/SOCK.cpp:
        * ace/SOCK_Acceptor.cpp:
        * ace/SOCK_CODgram.cpp:
        * ace/SOCK_Connector.cpp:
        * ace/SOCK_Dgram.cpp:
        * ace/SOCK_Dgram_Bcast.cpp:
        * ace/SOCK_Dgram_Mcast.cpp:
        * ace/SOCK_Netlink.cpp:
        * ace/SOCK_SEQPACK_Acceptor.cpp:
        * ace/SOCK_SEQPACK_Association.cpp:
        * ace/SOCK_SEQPACK_Connector.cpp:
        * ace/SPIPE_Acceptor.cpp:
        * ace/SPIPE_Connector.cpp:
        * ace/SSL/SSL_Asynch_Stream.cpp:
        * ace/SSL/SSL_Context.cpp:
        * ace/SSL/SSL_SOCK_Acceptor.cpp:
        * ace/SSL/SSL_SOCK_Connector.cpp:
        * ace/SSL/SSL_SOCK_Stream.cpp:
        * ace/SUN_Proactor.cpp:
        * ace/SV_Message_Queue.cpp:
        * ace/SV_Semaphore_Complex.cpp:
        * ace/SV_Semaphore_Simple.cpp:
        * ace/SV_Shared_Memory.cpp:
        * ace/Sample_History.cpp:
        * ace/Sbrk_Memory_Pool.cpp:
        * ace/Select_Reactor_Base.cpp:
        * ace/Select_Reactor_T.cpp:
        * ace/Semaphore.cpp:
        * ace/Service_Config.cpp:
        * ace/Service_Gestalt.cpp:
        * ace/Service_Manager.cpp:
        * ace/Service_Object.cpp:
        * ace/Service_Repository.cpp:
        * ace/Shared_Memory_Pool.cpp:
        * ace/Signal.cpp:
        * ace/Singleton.cpp:
        * ace/Sock_Connect.cpp:
        * ace/Stack_Trace.h:
        * ace/Stats.h:
        * ace/Stats.inl:
        * ace/Strategies_T.inl:
        * ace/Strategies_T.cpp:
        * ace/Stream.cpp:
        * ace/Svc_Conf_y.cpp:
        * ace/Svc_Handler.cpp:
        * ace/System_Time.cpp:
        * ace/TLI.cpp:
        * ace/TLI_Acceptor.cpp:
        * ace/TLI_Connector.h:
        * ace/TLI_Connector.inl:
        * ace/TP_Reactor.cpp:
        * ace/TSS_T.inl:
        * ace/TSS_T.cpp:
        * ace/Task_Ex_T.cpp:
        * ace/Task_T.cpp:
        * ace/Thread_Manager.h:
        * ace/Thread_Manager.cpp:
        * ace/Thread_Mutex.cpp:
        * ace/Throughput_Stats.cpp:
        * ace/Timeprobe_T.cpp:
        * ace/Timer_Hash_T.cpp:
        * ace/Timer_Heap_T.cpp:
        * ace/Timer_List_T.cpp:
        * ace/Timer_Queue_Adapters.cpp:
        * ace/Timer_Queue_Iterator.cpp:
        * ace/Timer_Queue_T.cpp:
        * ace/Timer_Wheel_T.cpp:
        * ace/Token.cpp:
        * ace/Token_Collection.cpp:
        * ace/Token_Invariants.cpp:
        * ace/Token_Manager.cpp:
        * ace/Token_Request_Reply.cpp:
        * ace/Trace.cpp:
        * ace/Typed_SV_Message_Queue.cpp:
        * ace/UNIX_Addr.h:
        * ace/UPIPE_Acceptor.cpp:
        * ace/UPIPE_Connector.inl:
        * ace/UPIPE_Connector.cpp:
        * ace/UUID.cpp:
        * ace/Unbounded_Queue.cpp:
        * ace/Unbounded_Set.cpp:
        * ace/Unbounded_Set_Ex.cpp:
        * ace/WFMO_Reactor.inl:
        * ace/WFMO_Reactor.cpp:
        * ace/WIN32_Asynch_IO.cpp:
        * ace/WIN32_Proactor.cpp:
        * ace/XML_Utils/XML_Error_Handler.cpp:
        * ace/XTI_ATM_Mcast.inl:
        Change the use of ACE_ERROR/ACE_DEBUG macros inside ace to ACELIB_ERROR/ACELIB_DEBUG.


Thu Apr 11 15:20:21 UTC 2013  Huang-Ming Huang  <huangh@ociweb.com>

        * ace/Log_Category.h:
        * ace/Log_Category.inl:
        * ace/Log_Category.cpp:
        * ace/Log_Msg.h:
        * ace/Log_Msg.cpp:
        * ace/Log_Record.h:
        * ace/Log_Record.inl:
        * ace/Log_Record.cpp:
        * ace/ace.mpc:
        * tests/Log_Msg_Test.cpp:
        Added ACE_Log_Category class so that log messages can be separated into
        different categories and be enabled/disabled independently.

Thu Apr 11 11:13:34 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * README: Updated this file, which was horribly out of date!

Sun Apr  7 00:20:49 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Global_Macros.h: Added documentation for the arguments to
          the ACE_GUARD_XXX macros.  Thanks to Neil Youngman <ny at
          youngman dot org dot uk> for contributing this.

Thu Apr  4 16:29:07 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * examples/Connection/non_blocking/CPP-acceptor.{h,cpp},
          examples/Connection/non_blocking/CPP-connector.{h,cpp}: Replaced
          the use of macros with actual traits since they should be
          available on all C++ compilers we support now.

Thu Apr  4 18:41:36 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/ace.dsc:
        * debian/debian.changelog:
        * debian/debian.control:
          Updated for new release, thanks to Michael Ganz <michael_ganz at t-online dot de>
          for reporting this

Wed Apr  3 13:41:19 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * tests/Manual_Event_Test.cpp:

          Corrected time value to actually be 200 msec as noted in the comment.

Wed Apr  3 08:13:00 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/auto_run_tests.pl:
        * tests/run_test.pl:
          Set some additional variables that can be used with coverity

Tue Apr  2 09:07:13 UTC 2013  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_stdio.h:
          Fix missing intptr_t declaration on QNX.

Sat Mar 30 18:11:06 UTC 2013  Martin Corino  <mcorino@remedy.nl>

        * examples/C++NPv1/Reactive_Logging_Server_Ex.h:
          Fixed truncating cast error.

Sat Mar 30 09:44:50 UTC 2013  Martin Corino  <mcorino@remedy.nl>

        * ace/config-win32-mingw64.h:
          Minor comment update.

Sat Mar 30 09:30:10 UTC 2013  Martin Corino  <mcorino@remedy.nl>

        * include/makeinclude/platform_mingw32.GNU:
          Added support for latest GCC from MinGW64.

        * ace/config-win32.h:
        * ace/config-win32-mingw.h:
          Split support for MinGW64 variants of MinGW compilers
          into separate files because of tricky differences between
          MinGW32 and MinGW64 APIs.

        * ace/config-win32-mingw64.h:
          Added separate support file for MinGW64 compilers (both
          32 and 64 bit).

        * ace/CDR_Base.inl:
          More standardized use of ACE_LACKS_INLINE_ASSEMBLY for benefit
          of MinGW64 64bit compiler.

        * ace/Functor_T.h:
        * ace/Functor_T.inl:
        * ace/OS_NS_stdio.h:
        * ace/OS_NS_stdio.inl:
        * ace/OS_NS_sys_stat.inl:
        * ace/Process.cpp:
        * ace/SV_Semaphore_Simple.cpp:
        * ace/Timer_Wheel_T.cpp:
        * apps/Gateway/Gateway/Gateway.cpp:
        * examples/C++NPv1/Reactive_Logging_Server.h:
        * examples/C++NPv1/Reactive_Logging_Server_Ex.h:
        * examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp:
        * examples/Reactor/Misc/test_early_timeouts.cpp:
        * performance-tests/SCTP/SOCK_STREAM_srv.cpp:
        * tests/Map_Test.h:
        * tests/Process_Env_Test.cpp:
        * tests/Thread_Timer_Queue_Adapter_Test.cpp:
          All kinds of minor updates and corrections to silence
          warnings and errors relating to either 64bit Windows or
          the very latest GCC (4.8.0). Mostly precision loss and
          truncating casts.

Thu Mar 28 08:52:43 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/ACE-bug-process.html:
          Fixed typo

Mon Mar 25 21:03:54 UTC 2013  Abdullah Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_iOS.GNU:

          Minor updates to fix iOS builds.

Fri Mar 22 02:58:06 UTC 2013  Abdullah Sowayan  <sowayan@gmail.com>

        * include/makeinclude/platform_macosx_iOS.GNU:

          Minor updates to fix iOS builds.

Thu Mar 14 12:44:10 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/make_release.py:
          Exclude new workspace

Thu Mar 14 10:08:55 UTC 2013  Marcel Smit  <msmit@remedy.nl>

        * bin/fuzz.pl:
          Checking the last part of the given @file entry, instead of
          the filename only.

Thu Mar 14 08:38:57 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ChangeLog:
        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Making new x.1.8 public available

Thu Mar 14 09:04:46 CET 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.1.8 released.

Thu Mar  7 19:17:15 UTC 2013  Phil Mesnier  <mesnier_p@ociweb.com>

        * ace/OS_NS_Thread.cpp:

          QNX also only supports system scope for threads.

Fri Mar  1 11:21:33 UTC 2013  Martin Corino  <mcorino@remedy.nl>

        * bin/auto_run_tests.pl:
          Fix for problems with explicit test root and test folders
          that are also available in default roots.

Thu Feb 28 19:45:03 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Compiler_Features_19_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:
          Added C++11 test for template alias support

Wed Feb 27 13:54:27 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Wild_Match_Test.cpp:
          Extended this test to get 100% coverage for ACE::wild_match, resolves
          Coverity 753117

Tue Feb 26 23:07:17 UTC 2013  Steve Huston  <shuston@riverace.com>

        * include/makeinclude/platform_g++_common.GNU: When turning on
          no-strict-aliasing, add the option to FLAGS_C_CC instead of
          CCFLAGS so that both C and C++ compilers get it.

Fri Feb 22 14:29:39 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Message_Queue_Vx.inl (defined): Added a fix for RTP.  Thanks
          to Thomas dot Lockhart at jpl dot nasa dot gov for contributing this.

Mon Feb 25 08:09:24 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sock_Connect.cpp:
          Don't use MAX_IF as constant, is a system defined constant on
          some operating systems

        * tests/OS_Test.cpp:
          Call compiler version methods, should fix some Coverity test
          coverage issues

Mon Feb 18 01:57:31 UTC 2013  Kevin Stanley  <stanleyk@ociweb.com>

        * ace/SSL/SSL_Context.cpp:

          Removed what appeared to be extraneous characters '3D'
          from cut and paste.

Sun Feb 17 03:37:42 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/SSL/SSL_Context.h (ACE_SSL_Context): Added a missing comma.
          Thanks to Johnny for reporting this.

Sat Feb 16 21:53:26 UTC 2013  Kevin Stanley  <stanleyk@ociweb.com>

        * ace/SSL/SSL_Context.h:

          Fixed missing ',' in enumerated type value.

Sat Feb 16 14:42:54 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * examples/C++NPv2/AIO_Client_Logging_Daemon.cpp: Moved the definition of

          ACE_FACTORY_DEFINE (AIO_CLD, AIO_Client_Logging_Daemon)

          to the right place in the #ifdefs.  Thanks to Journeyer J. Joh
          <oosaprogrammer at gmail dot com> for reporting this.

Sat Feb 16 14:34:30 UTC 2013  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/SSL/SSL_Context.cpp (ACE_SSL_Context::set_mode),
        * ace/SSL/SSL_Context.h (ACE_SSL_Context): Added support for TLS
          1.1 and 1.2.  Thanks to pkow88776 at onet dot pl for
          contributing this.

Wed Feb 13 14:29:09 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * include/makeinclude/platform_vxworks6.7.GNU:

          Removed workaround for RTP shared libraries.  With the current
          updates to VxWorks 6.7, the workaround is not only not needed,
          but it creates RTP executables that will not run on the target.

Fri Feb  8 19:03:33 UTC 2013  Phillip LaBanca  <labancap@ociweb.com>

        * ace/Message_Block.cpp:

          Fix Coverity Issue 972919 - Fixed possible dereference
          of null pointer

Fri Feb  8 13:26:17 UTC 2013  Kevin Stanley  <stanleyk@ociweb.com>

        * ace/CDR_Stream.h:

          Fix Coverity Issue 972947 - Non virtual destructor. Made
          TAO_InputCDR destructor virtual.

Wed Feb  6 01:55:37 UTC 2013  Kevin Stanley  <stanleyk@ociweb.com>

        * ace/Message_Block.cpp:

          Fixed fuzz error. Return 0 instead of NULL.

Tue Feb  5 21:04:17 UTC 2013  "Kevin Stanley"  <stanleyk@ociweb.com>

    Several new features and bug fixes captured in Bugzilla 4091, 4092, 4093,
    4094, 4095, and 4096. Also includes Bugzilla 3247. Specific details of the
    changes described below through the tag at the end bookmarked with:
    *****  OCI_Reliability_Enhancements Changes

    Tue Feb  5 17:01:48 UTC 2013  "Kevin Stanley"  <stanleyk@ociweb.com>

            * ace/Auto_Event.h:
            * bin/valgrind.supp:
            * protocols/ace/INet/inet.mpc:
            * protocols/examples/INet:
            * tests/CDR_Test.cpp:
            * protocols/ace/INet/FTP_Simple_exec.cpp:
            * protocols/ace/INet/HTTP_Simple_exec.cpp:

              Merged changes from trunk in preparation for merge. The
              above files had changes.

    Thu Jan 31 22:39:53 UTC 2013  Phillip LaBanca  <labancap@ociweb.com>

            * ace/Message_Block.cpp:

              Fixed problem with allocator in clone and duplicate

            * tests/Message_Block_Large_Copy_Test.cpp:

              Added reference count output

    Thu Jan 31 18:41:26 UTC 2013  Phillip LaBanca  <labancap@ociweb.com>

            * tests/Message_Block_Large_Copy_Test.cpp:

              Corrected test for scoreboard

    Thu Jan 31 14:38:03 UTC 2013  "Kevin Stanley"  <stanleyk@ociweb.com>

            * tests/Message_Block_Large_Copy_Test.cpp:

              Fixed another error in allocation missed the first time.

    Thu Jan 31 14:31:17 UTC 2013  Kevin Stanley  <stanleyk@ociweb.com>

            * tests/Message_Block_Large_Copy_Test.cpp:

              Fixed error in allocation of character array.

    Wed Jan 30 23:54:14 UTC 2013  Phillip LaBanca  <labancap@ociweb.com>

            * ace/Message_Block.cpp:

              Applied bug 3247 duplicate patch that replaced recursion with
              iteration to support the copying of large message blocks.

            * tests/Message_Block_Large_Copy_Test.cpp:
            * tests/run_test.lst:
            * tests/tests.mpc:

              Created test to cover the cloning and duplication of
              large Message_Blocks.

    Tue Jan 29 15:15:09 UTC 2013  "Kevin Stanley"  <stanleyk@ociweb.com>

            * include/makeinclude/platform_sunos5_g++.GNU:

              Merged trunk into branch.

    Mon Jan 28 16:13:07 UTC 2013  "Kevin Stanley"  <stanleyk@ociweb.com>

            * ace/config-macosx-lion.h:
            * ace/config-macosx-mountainlion.h:
            * ace/config-macosx-snowleopard.h:
            * examples/Shared_Memory/test_MM.cpp:
            * examples/Shared_Memory/test_SV.cpp:
            * include/makeinclude/platform_macosx_mountainlion.GNU:
            * ace/config-macosx-mountain-lion.h:
            * include/makeinclude/platform_macosx_mountain_lion.GNU:

              Merged trunk into branch. The above files were changed in the
              trunk.

    Wed Dec 19 17:52:25 UTC 2012  Phil Mesnier  <mesnier_p@ociweb.com>

            * ace/Mem_Map.inl:

              Fix a warning about signed/unsigned mix.

            * include/makeinclude/platform_clang_common.GNU:

              Increase the warning level used by the CLang++ compiler to show all warnings

    Mon Dec 17 14:39:07 UTC 2012  Brian Johnson  <johnsonb@ociweb.com>

            * ACEXML/common/FileCharStream.cpp:

              Fixed to not close the infile_ if it was passed to the
              FileCharStream.

    Fri Dec 14 17:31:22 UTC 2012  Brian Johnson  <johnsonb@ociweb.com>

            * ACEXML/common/FileCharStream.h:
            * ACEXML/common/FileCharStream.cpp:

              Added interface to accept an already open FILE stream.

    Mon Oct 15 18:26:57 UTC 2012  Phil Mesnier  <mesnier_p@ociweb.com>

            * OCI_RE_ChangeLog:
              Created change log for the OCI Reliability Enhancements branch

    *****  OCI_Reliability_Enhancements Changes

Mon Feb  4 08:58:35 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/ace/INet/inet.mpc:
        * protocols/ace/INet/FTP_Simple_exec.cpp:
        * protocols/ace/INet/HTTP_Simple_exec.cpp:
        * protocols/examples/INet/FTP_Simple_exec.cpp:
        * protocols/examples/INet/HTTP_Simple_exec.cpp:
        * protocols/examples/INet/inet.mpc:
          Moved INet examples out of the ace/INet directory and into
          a new example directory

Sat Feb  2 19:08:18 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Auto_Event.h:
          Layout changes

Thu Jan 31 19:21:31 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/CDR_Test.cpp:
          Test CDR_Size::write_boolean_array, according to Coverity
          this method was not tested

Wed Jan 30 11:58:00 UTC 2013  Simon Massey  <simon dot massey at prismtech dot com>

        * bin/valgrind.supp:
          Add a supression for a faulty system zlib.

Mon Jan 28 23:33:25 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * include/makeinclude/platform_sunos5_g++.GNU:

          Define _POSIX_PTHREAD_SEMANTICS is threads=1,
          making this config similar to SunCC.

Mon Jan 28 07:55:27 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-macosx-mountainlion.h:
        * ace/config-macosx-mountain-lion.h:
        * include/makeinclude/platform_macosx_mountainlion.GNU:
        * include/makeinclude/platform_macosx_mountain_lion.GNU:
          Renamed mountain-lion to mountainlion to simplify packaging

Tue Jan 22 12:28:19 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Size.h:
          Doxygen changs

        * tests/FlReactor_Test.cpp:
          Unicode fixes

Mon Jan 21 08:24:11 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * html/Stats/index.shtml:
          Corrected link

Thu Jan 17 12:25:40 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/debian.control:
          Fixed depencency on libssl-dev, thanks to Michael Ganz
          <michael_ganz at t-online dot de> for reporting this

Thu Jan 17 12:23:42 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sig_Handler.cpp:
          Layout changes

        * docs/bczar/bczar.html:
          Updated packages

        * html/Stats/index.shtml:
          Added another page

Fri Jan  4 21:52:14 UTC 2013  Adam Mitz  <mitza@ociweb.com>

        * include/makeinclude/platform_linux_clang.GNU:

          Added clang command-line option required to build TAO.

Fri Jan  4 12:11:12 UTC 2013  Johnny Willemsen  <jwillemsen@remedy.nl>

        * 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:
          Add $network to Required-Start line, thanks to John Fletcher
          <john dot fletcher at rd dot bbc dot co dot uk> for reporting
          this.

Thu Jan  3 22:53:44 UTC 2013  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_netdb.cpp (ACE_OS::getmacaddress): On Linux, search for
          an interface to get the MAC address for; don't assume eth0 is
          present and usable.

        * tests/Bug_3744_Regression_Test.cpp: Fix ACE_LOG_MSG output.

Wed Jan  2 19:19:58 UTC 2013  Thomas Girard  <thomas.g.girard@free.fr>

        * ace/Service_Config.h: ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE
          fix when ACE_VERSIONED_SO=2. Because of '.' in the version,
          addition of prefix ACE_DLL_PREDIX and suffix ACE_DLL_SUFFIX
          is skipped, preventing ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE
          from working when ACE+TAO is built with versioned_so=2.

Thu Dec 27 09:18:39 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Updated in preparation of next release

Thu Dec 27 10:00:49 CET 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.1.7 released.

Fri Dec 21 09:22:41 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * protocols/tests/HTBP/Reactor_Tests/run_test.pl:
        * protocols/tests/HTBP/Send_Large_Msg/run_test.pl:
        * protocols/tests/HTBP/Send_Recv_Tests/run_test.pl:
        * protocols/tests/HTBP/ping/run_test.pl:
          Check return value of spawn, if it fails directly exit the
          test run

Wed Dec 19 14:46:24 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cegcc.GNU:
        * include/makeinclude/platform_g++_common.GNU:
        * include/makeinclude/platform_rtems.x_g++.GNU:
        * include/makeinclude/platform_vxworks6.2.GNU:
        * include/makeinclude/platform_vxworks6.3.GNU:
          Install tao_idl3_to_idl2 and tao_idl3_to_xmi into ACE_ROOT/bin
          to handle cross compilation in a flat layout more easily, this
          way we can use the same approach as tao_idl does

Mon Dec 17 20:53:22 UTC 2012  Adam Mitz  <mitza@ociweb.com>

        * ace/Message_Queue_Vx.inl:

          Updated for VxWorks 6.9 32-bit kernel mode.

Mon Dec 17 18:26:27 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Acceptor.cpp:
          Fixed warning

Mon Dec 17 13:40:00 UTC 2012  Simon Massey  <simon dot massey at prismtech dot com>

        * ace/SOCK_Dgram.cpp: ACE_SOCK_Dgram::make_multicast_ifaddr ()
          Uncovered due to TAO UIPMC option -ORBListenOnAll 1 being
          enabled. The SOCK_Dgram_Mcast.cpp ACE_SOCK_Dgram_Mcast::subscribe_ifs()
          call iterates through the list of IP addresses for all interfaces
          NOT the list of Interface Names. This works only for windows and newer
          linuxes (where they are automatically converted into interface names).
          Older linuxes do not and expect the actual interface names (eg. "Eth0")
          to be given. This fix allows both forms to be given on older linuxes as well.
          (Test TAO/orbscvc/tests/Miop/McastHello updated to enable -ORBListenOnAll 1.)

Mon Dec 17 09:59:45 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.inl:
        * ace/OS_NS_sys_shm.cpp:
        * ace/OS_NS_sys_socket.cpp:
        * ace/OS_NS_sys_stat.cpp:
        * ace/OS_NS_sys_uio.cpp:
          Zapped empty lines

Mon Dec 17 09:31:49 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Acceptor.cpp:
          Fixed one-shot acceptor, could call null ptr

        * ace/Throughput_Stats.cpp:
          Simplified code

        * protocols/tests/RMCast/Receiver.cpp:
          Fixed incorrect argument to memcpy

Fri Dec 14 19:36:20 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/bczar/bczar.html:
          Added patch

Sun Dec  9 14:38:27 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/POSIX_Proactor.cpp:
        * ace/Parse_Node.cpp:
        * ace/SV_Message_Queue.inl:
        * ace/SV_Message_Queue.cpp:
          Fixed coverity errors

Fri Dec  7 20:14:27 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_g++_common.GNU:
          Improved support for gcov=1

Fri Dec  7 13:06:07 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Strategies_T.cpp:
          Check return value of enable (ACE_NONBLOCK), fixes Coverity
          reported errors

Thu Nov 29 15:08:26 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/ACE.cpp (handle_timed_complete): Adapt to an occasionally seen
          scenario where only the POLLERR bit is set on a failed connect.
          This is for the poll() case, not select().

Thu Nov 29 10:31:05 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Stream.cpp:
          Removed another occurance of arm handling here, gets handled
          at a lower layer already

Thu Nov 29 10:10:56 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.h:
          Fixed compile errors in xml builds

Thu Nov 29 08:49:39 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/CDR_Stream.cpp:
          Removed arm handling here, gets handled at a lower layer
          already

Wed Nov 28 09:34:00 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libace-dev.install:
          rle has no install files

Wed Nov 28 08:55:49 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/ace.dsc:
        * debian/debian.changelog:
        * debian/debian.compat:
        * debian/debian.control:
        * debian/debian.rules:
        * debian/libace-6.1.6.install:
        * debian/libace-dev.install:
        * debian/libtao-dev.install:
          Added rle compressor and added files as currently work
          on OBS

Wed Nov 28 07:35:14 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/debian.control:
        * debian/ace-netsvcs.doc-base:
        * debian/ace-netsvcs.docs:
        * debian/ace-netsvcs.install:
        * debian/ace-netsvcs.manpages:
        * debian/libnetsvcs-6.1.6.docs:
        * debian/libnetsvcs-6.1.6.install:
        * debian/libnetsvcs-dev.docs:
        * debian/libnetsvcs-dev.install:
        * debian/mwc_workspace.txt:
          Don't package netsvcs

Tue Nov 27 14:41:19 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/ace-netsvcs.manpages:
        * debian/tao-idl.manpages:
        * debian/tao-log.manpages:
        * debian/tao-tls.manpages:
        * debian/tao-utils.manpages:
          No manpage for the moment

Tue Nov 27 14:10:46 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/mpc-ace.manpages:
          No manpage for the moment

Tue Nov 27 12:43:06 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-log.docs:
          Debian package improvements

Tue Nov 27 11:53:18 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-trading.docs:
          Debian package improvements

Tue Nov 27 11:23:41 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-naming.docs:
        * debian/tao-notify.docs:
          Debian package improvements

Tue Nov 27 10:26:32 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-utils.docs:
          Don't install test

Mon Nov 26 12:37:04 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/mwc_workspace.txt:
          Added netsvcs/servers

Sun Nov 25 20:08:55 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/rules.local.GNU:
          Fixex AIX errors

Sun Nov 25 20:05:25 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/mwc_workspace.txt:
        * debian/TAO_ACE.mwc:
          Renamed to .txt, resolves problems on windows builds

Fri Nov 23 19:28:35 UTC 2012  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Sergey Onuchin <sonuchin at parallels dot com>.

Fri Nov 23 16:49:35 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-imr.docs:
        * debian/tao-log.docs:
        * debian/tao-notify.docs:
        * debian/tao-trading.docs:
          Updated README locations

Fri Nov 23 15:26:38 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-concurrency.docs:
        * debian/tao-cosconcurrency.docs:
        * debian/tao-cosevent.docs:
        * debian/tao-cosnotification.docs:
        * debian/tao-costime.docs:
        * debian/tao-costrading.docs:
        * debian/tao-event.docs:
        * debian/tao-ft.docs:
        * debian/tao-ifr.docs:
        * debian/tao-imr.docs:
        * debian/tao-load.docs:
        * debian/tao-log.docs:
        * debian/tao-naming.docs:
        * debian/tao-notify.docs:
        * debian/tao-time.docs:
        * debian/tao-tls.docs:
        * debian/tao-utils.docs:
          We are going to install the README files also

Fri Nov 23 14:21:18 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-cosnaming.docs:
          Updated path

Fri Nov 23 12:58:40 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libtao-doc.docs:
          Install fix

Fri Nov 23 12:33:16 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/rules.lib.GNU:
          Fix for AIX

Fri Nov 23 12:28:20 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.h:
          msvc fix

Fri Nov 23 12:19:09 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libace-dev.docs:
        * debian/libace-doc.docs:
        * debian/libnetsvcs-6.1.6.docs:
        * debian/libnetsvcs-6.1.6.install:
        * debian/libtao-2.1.6.docs:
        * debian/libtao-dev.docs:
        * debian/libnetsvcs-6.1.2.docs:
        * debian/libnetsvcs-6.1.2.install:
          Doc install fixes

Fri Nov 23 09:51:01 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/README.source:
          Removed comment of patch that got integrated

        * debian/libtao-2.1.6.install:
        * debian/libtao-dev.install:
          Added missing libraries

Fri Nov 23 09:39:17 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/TAO_ACE.mwc:
        * debian/libace-6.1.6.docs:
        * debian/libace-dev.docs:
        * debian/libace-dev.install:
        * debian/libace-doc.docs:
        * debian/libtao-2.1.6.docs:
        * debian/libtao-dev.docs:
        * debian/libtao-doc.docs:
          More install fixes

Fri Nov 23 08:07:23 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/ETCL/ETCL_Constraint.inl:
          Fixed coverity error by initializing pointer value

        * ace/Message_Queue.h:
        * ace/Timer_Queue_Iterator.h:
          Doxygen improvements

        * ace/Timer_Queue_Iterator.cpp:
          Initialize all members in default constructor

Thu Nov 22 13:31:20 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/tao-log.install:
          Fixed executable name

Thu Nov 22 12:56:20 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/ACE-DPKG.mwc:
        * debian/TAO-DPKG.mwc:
          Removed these files.

Thu Nov 22 12:55:05 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/default.features:
        * debian/libtao-2.1.6.install:
        * debian/libtao-dev.install:
        * debian/platform_macros.GNU:
          Remove lzo1 compressor

Thu Nov 22 12:38:34 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Service_Config.h:
          Added new ACE_DYNAMIC_VERSIONED_SERVICE_DIRECTIVE which accepts
          an explicit version to be loaded. Needed for debian for example

        * debian/patches/series:
        * debian/patches/15-fix-lzo-flags.diff:
        * debian/patches/34-bts386713.diff:
          Cleanup

        * debian/platform_macros.GNU:
          Set versioned_so=2

        * include/makeinclude/platform_g++_common.GNU:
          When versioned_so=2 add ACE_VERSIONED_SO=2 as
          define

Thu Nov 22 09:20:46 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_g++_common.GNU:
        * include/makeinclude/rules.lib.GNU:
        * include/makeinclude/rules.local.GNU:
        * include/makeinclude/wrapper_macros.GNU:
          Added support for versioned_so=2, that will create
          for example libACE-6.1.6.so instead of libACE.so.6.1.6

        * debian/patches/20-versioned_libs.diff:
          Removed this file.

Wed Nov 21 10:18:22 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * debian/libace-xml-utils-6.1.6.install:
        * debian/libace-xml-utils-dev.install:
          New files

        * debian/platform_macros.GNU.in:
          Removed this file.

Tue Nov 20 23:55:57 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/config-hpux-11.00.h:
        * ace/OS_NS_netdb.inl: Although HP-UX 11 doesn't have the _r
          netdb calls, the regular ones are reentrant for multiple threads.
          Therefore, do not use the mutex-acquiring wrapper for HP-UX 11.

Tue Nov 20 19:10:38 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/XML_Utils/ACE_XML_Utils.pc.in:
        * ace/XML_Utils/XML.mpc:
          Added missing pc.in file for ACE_XML_Utils

Tue Nov 13 18:17:24 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/run_test.lst:
          Bug_4055_Regression_Test needs threads

Tue Nov 13 13:29:28 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Condition_Attributes.h:
        * ace/Condition_Attributes.inl:
        * ace/Condition_Attributes.cpp:
          Now also needed in single threaded builds

Mon Nov 12 19:26:41 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Malloc.cpp:
        * ace/Naming_Context.h:
        * ace/Naming_Context.cpp:
        * ace/Read_Buffer.cpp:
        * ace/Recursive_Thread_Mutex.cpp:
        * ace/SV_Semaphore_Simple.cpp:
          Coverity fixes

Mon Nov 12 17:21:25 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.inl:
          Fixed win32 compile errors

Mon Nov 12 13:34:35 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Sig_Adapter.cpp:
          Fixed coverity errors

        * ace/Signal.h:
          Doxygen change

Mon Nov 12 12:19:18 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.inl:
          Fixed missing ACE_INLINE

Mon Nov 12 10:45:51 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:
          Added constructor for ACE_event_t to initialize pointers
          explicitly to 0, fixes coverity #743165

        * tests/Bug_4055_Regression_Test.cpp:
          Check return value of clock_settime, fixes coverity #743164

Mon Nov 12 10:06:57 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Updated for next release

Mon Nov 12 09:34:14 CET 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.1.6 released.

Sun Nov 11 14:26:17 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * tests/Monotonic_Manual_Event_Test.cpp:
        * tests/Monotonic_Message_Queue_Test.cpp:
        * tests/Monotonic_Task_Test.cpp:
          Further narrowing of preprocessor test to prevent running
          test on unsupported platforms.

Sat Nov 10 11:35:57 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * tests/Monotonic_Manual_Event_Test.cpp:
        * tests/Monotonic_Message_Queue_Test.cpp:
        * tests/Monotonic_Task_Test.cpp:
          Further narrowing of preprocessor test to prevent running
          test on unsupported platforms.
          Small logging changes.

Fri Nov  9 10:29:37 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * tests/Monotonic_Manual_Event_Test.cpp:
        * tests/Monotonic_Message_Queue_Test.cpp:
        * tests/Monotonic_Task_Test.cpp:
          Narrowing down the selection test for supported platforms.

Fri Nov  9 08:28:23 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_Thread.inl:
          Fixed compile error resulting from previous change.

Wed Nov  7 19:16:47 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_Thread.inl:
          Fix for unused arg warnings.

Wed Nov  7 13:51:14 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SSL/SSL_Context.h:
        * ace/SSL/SSL_Context.cpp:
        * protocols/ace/INet/HTTP_Simple_exec.cpp:
          Resolve compile problems with OpenSSL on recent debian/ubuntu
          versions which don't ship SSLv2 anymore

        * debian/patches/series:
        * debian/patches/35_disable_sslv2.diff:
          Patch is not needed anymore

Sat Oct 20 14:13:07 UTC 2012  Douglas C. Schmidt  <schmidt@dre.vanderbilt.edu>

        * ace/Timer_Hash_T.h: Added a forward declaration of
          ACE_Event_Handler to ensure ACE compiles properly on certain
          platforms.  Thanks to Peng Xu <pengxu7 at gmail dot com> for
          reporting this.

Tue Nov  6 18:59:48 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * ace/ace_for_tao.mpc:
          Reflect fact that Event classes are now templates.
          Added new Event base class.

Tue Nov  6 14:44:38 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/OS_NS_Thread.cpp (ACE_TSS_Cleanup::thread_detach_key): If
          given a key which was never set, ignore it. Only throw an assertion
          if the key's table slot is used but does not match the key asked
          to free. The never-set case happens if a ACE_TSS object fails
          when setting its value; the later cleanup would cause an assert.

Tue Nov  6 13:34:20 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * NEWS:
          Updated for new time policy support for ACE Events.

Tue Nov  6 11:46:45 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * bin/fuzz.pl:
          Fixed missing 'next;' in check_for_ACE_Thread_Mutex()
          fuzzer.

Tue Nov  6 11:42:26 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * tests/Monotonic_Manual_Event_Test.cpp:
          Fixed file comment.

Tue Nov  6 10:55:47 UTC 2012  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_Thread.h:
        * ace/OS_NS_Thread.inl:
        * ace/OS_NS_Thread.cpp:
          Extended OS wrappers for event and sema with
          variants excepting condition attributes.

        * ace/Event_Base.h:
        * ace/Event_Base.inl:
        * ace/Event_Base.cpp:
          Added non-template base class for events.

        * ace/Auto_Event.h:
        * ace/Auto_Event.inl:
        * ace/Auto_Event.cpp:
        * ace/Event.h:
        * ace/Event.inl:
        * ace/Event.cpp:
        * ace/Manual_Event.h:
        * ace/Manual_Event.inl:
        * ace/Manual_Event.cpp:
          Refactored into TIME_POLICY based templates.
          Added inlined derived classes of default
          template instantiations to satisfy old code.

        * ace/ace.mpc:
          Reflect fact that Event classes are now templates.
          Added new Event base class.

        * docs/ACE-monotonic-timer.html:
          Added documentation concerning Event changes.

        * tests/Manual_Event_Test.cpp:
          Removed dead code.

        * tests/Monotonic_Manual_Event_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:
          Added new regression test for time policy
          support of events.

Tue Oct 30 07:48:18 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * rpmbuild/ace-tao.spec:
          Fixes for OpenSuSE 12.2

Sat Oct 27 18:59:36 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/TSS_T.inl:
          Use the word error in the ACE_ERROR messages in this file

Tue Oct 23 20:09:07 UTC 2012  Abdullah Sowayan  <sowayan@gmail.com>

        * ace/config-macosx-mountain-lion.h:
        * include/makeinclude/platform_macosx_mountain_lion.GNU:

          Adding Mountain Lion support

Fri Oct 12 10:50:28 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Updated for x.1.5

Fri Oct 12 11:20:25 CEST 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.1.5 released.

Wed Oct 10 22:45:23 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Reactor.h: Corrected the comments concerning removal of
          signal handler registrations - they DO call handle_close() now.

        * tests/Network_Adapters_Test.{cpp, h}: Corrected the call to remove
          signal handlers and added a check in Stop_Handler::handle_close()
          to ignore calls as a result of removing a signal handler.

Wed Oct 10 18:47:12 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * docs/bczar/bczar.html:
          Package updates

Mon Oct  8 13:27:58 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Sig_Handler.{cpp, inl}: Reverted change from:
          Fri Oct  5 23:09:40 UTC 2012  Steve Huston  <shuston@riverace.com>
          to initialize signal_handlers_ array. It's static so can't be
          changed all the time. Thanks to Johnny Willemsen for finding this.

Fri Oct  5 23:09:40 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Sig_Handler.{cpp, inl}: Initialize signal_handlers_ array.

        * ace/WFMO_Reactor.cpp: Shut things down in close() and make all the
          info changes to avoid referencing unregistered handlers later, when
          they may be invalid. The lifetime can't be controlled via close() as
          it can via remove_handler() so be sure no references bleed out.

        * tests/Bug_2368_Regression_Test.cpp: Clean up text literals.

Thu Oct  4 10:24:52 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux_icc.GNU:
          Added support for c++11 as feature

Wed Oct  3 09:59:08 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux_icc.GNU:
          Added support for coverage which enabled code coverage with
          Intel C++

Thu Sep 27 06:30:22 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-g++-common.h:
          Introduced a new ACE_HAS_CPP11 which is set with GCC 4.7 at
          the moment the C++11 features are enabled

        * tests/Compiler_Features_15_Test.cpp:
        * tests/Compiler_Features_16_Test.cpp:
        * tests/Compiler_Features_17_Test.cpp:
        * tests/Compiler_Features_18_Test.cpp:
        * tests/run_test.lst:
        * tests/tests.mpc:
          Added some new compiler tests to validate the compiler C++11
          support

Mon Sep 24 12:56:50 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/valgrind.supp:
          Extended this file to work on OpenSuSE 12.2

Fri Sep 21 08:06:31 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_linux_icc.GNU:
          Use -Wno-deprecated with C++11 due to the heavy usage of auto_ptr

Thu Sep 20 07:09:41 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/Network_Adapters_Test.cpp:
          Removed arg_unused macros.

Sat Sep 15 01:11:15 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Atomic_Op.h:
        * ace/Atomic_Op.inl: PPC doesn't have the requisite support for
          the long long specializations below.

Thu Sep 13 16:46:03 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Atomic_Op.h:
        * ace/Atomic_Op.inl: Added specializations for "long long" and
          "unsigned long long" for GCC to get the better performance
          for 64-bit integers.

Tue Sep 11 18:59:35 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/TSS_T.cpp (ACE_TSS_Guard::init_key): Fix compile error.

Mon Sep 10 13:57:27 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/DLL.h:
        * ace/DLL.cpp:
        * ace/DLL_Manager.h:
        * ace/DLL_Manager.cpp:
          Use bool for become_owner

Mon Sep 10 00:16:29 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * bin/mail_test_stats.sh:
          Make sure we compare with the latest micro

Fri Sep  7 20:00:51 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/SSL/SSL_SOCK_Stream.inl (recv_i): Remove the incorrect comment
          form the syscall case about falling through to the default. That's
          not right. Thanks to Simon Massey for pointing this out.

Fri Sep  7 19:43:12 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Sig_Handler.cpp (remove_handler_i): Check if the event handler
          pointer is 0 before calling through it. Thanks to Adam Mitz
          for catching this one.

Thu Sep  6 18:51:47 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Sig_Handler.h:
        * ace/Sig_Handler.cpp: Call back to ACE_Event_Handler::handle_close()
          when a signal handler is removed by any means. The callback was
          previously made only when dispatched handle_signal() returned -1.
          This adds the callback when the signal handler is unregistered
          either explicitly or by a containing reactor closing. Resolves
          Bugzilla #2368.

        * ace/Process_Manager.h:
        * ace/Process_Manager.cpp: Added a handle_close() method to be notified
          when a reactor with which SIGCHLD is registered closes, so no
          attempt is later made to remove the SIGCHLD registration.

        * NEWS: Describe the above enhancement.

        * tests/Bug_2368_Regression_Test.cpp: Register the two handlers for
          different signals so they're both tracked and removed properly.

        * tests/run_test.lst: Enable Bug_2368_Regression_Test.

Thu Sep  6 15:06:15 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/Log_Msg.cpp (close): Don't try to lock/unlock the
          ACE_LOG_MSG_INSTANCE lock if it's already been freed.

Wed Sep  5 20:09:09 UTC 2012  Steve Huston  <shuston@riverace.com>

        * ace/SSL/SSL_SOCK_Stream.inl (recv_i): Added back in logic to wait
          for data available to receive when called with a timeout. Thanks
          to Ossama Othman for helping to sort this out. For reference, the
          issues involved here are well-explained in "SSL and TLS" by
          Eric Rescorla, section 8.9.

        * ace/SSL/SSL_SOCK_Stream.cpp (recv_n): Removed the hack-y retry on
          EWOULDBLOCK - the proper handling of timeouts is now in its proper
          place in recv_i() - see above.

Thu Aug 30 19:25:33 UTC 2012  Jeff Parsons <j.parsons@vanderbilt.edu>

        * THANKS:

          Added Andrés Senac González <andres at senac dot es>

Thu Aug 30 06:26:46 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/config-macosx-leopard.h:
          Added missing defines to get ACE to compile on MacOSX, thanks to
          Thomas Lockhart <Thomas dot Lockhart at jpl dot nasa dot gov>
          for reporting this

Wed Aug 29 09:41:28 UTC 2012  johnny  <jwillemsen@remedy.nl>

        * Kokyu/Dispatch_Deferrer.h:
        * Kokyu/Dispatch_Deferrer.inl:
        * Kokyu/Dispatch_Deferrer.cpp:
          These files have been removed. They appear to be completly unreferenced by any
          other files in the whole ACE/TAO/CIAO/DAnCE distribution and are not even currently
          built within the Kokyu library itself. They appear to be incomplete relics of the
          original 2003 development of this library, and include references to an incomplete
          class Dispatch_Deferrer_Attributes which has no declaration or definition anywhere
          in the current distribution. These files would not compile even if they where listed
          in the kokyu MPC file.

Wed Aug 29 07:31:28 UTC 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ChangeLog:
        * ChangeLogs/ChangeLog-2012a:
        * NEWS:
        * bin/diff-builds-and-group-fixed-tests-only.sh:
        * docs/Download.html:
        * docs/bczar/bczar.html:
        * etc/index.html:
          Prepared for the next release

Wed Aug 29 08:16:04 CEST 2012  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 6.1.4 released.

Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End: