summaryrefslogtreecommitdiff
path: root/ACE/ChangeLog
blob: 3db1bdf1e4bbc7f02a3923e5292842c2ff2e9f53 (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
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: