summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 2df9aaf583ecf4e74697aa8e3579fbe0609eb4ea (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
Wed Jun 08 08:43:59 2005  Simon McQueen  <sm@prismtech.com>

        * ACE version 5.4.6 released.

Wed Jun  8 11:21:50 2005  Simon McQueen  <sm@prismtech.com>

        * NEWS:

          Updated with release note entries.

Fri Jun  3 13:42:18 2005  Steve Huston  <shuston@riverace.com>

	* ace/String_Base.h: Removed ACE_INLINE from the operator+ functions.
	  The functions are defined in String_Base.cpp. Fixes compile errors
	  on Solaris autoconf build.

	* examples/C++NPv2/AIO_Client_Logging_Daemon.cpp: Added missing
	  #include for ace/Null_Mutex.h and ace/Null_Condition.h since this
	  example uses ACE_Task<ACE_NULL_SYNCH>.

	* Kokyu/DSRT_Sched_Queue_T.h: Added missing #include "ace/Null_Mutex.h"

Thu Jun  2 13:58:29 2005  Steve Huston  <shuston@riverace.com>

	* ace/Local_Tokens.cpp (~ACE_TSS_TPQ_Entry): Replaced missing '}' from:
	  Mon May 30 18:10:56 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

Wed Jun  1 18:33:29 2005  Steve Huston  <shuston@riverace.com>

	* examples/C++NPv2/AC_Client_Logging_Daemon.cpp: Reordered some
	  #include directives so files needed by ace/Connector.h are in before
	  ace/Connector.h. Fixes optimized autoconf build on AIX.

Wed Jun  1 12:19:27 2005  Steve Huston  <shuston@riverace.com>

	* ace/OS_NS_signal.inl: Reverted:
	  Tue May 31 18:51:31 2005  Steve Huston  <shuston@riverace.com>
	  It broke builds on Linux and BSD, at least, with compile errors like:
	  `::' does not have a class or union named `sigaction'
	  I think this is probably an issue of including files in the wrong
	  order and it only trips up HP-UX, but I'm not sure.

Wed Jun  1 07:10:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Removed bug 2088 test for the time being, the fix isn't the correct one
          and now the test has wrong expectations

Tue May 31 18:51:31 2005  Steve Huston  <shuston@riverace.com>

	* ace/OS_NS_signal.inl (sigaction): Added "::" qualifier to references
	  to "struct sigaction" to distinguish it from sigaction in the
	  ACE_OS namespace. This was tripping up HP aC++ in certain use cases.

Tue May 31 18:46:29 2005  Steve Huston  <shuston@riverace.com>

	* ace/INET_Addr.cpp (set_address): When needing to plug in an
	  IPv4-mapped IPv6 address, avoid any possibility of compiler struct
	  member non-contiguous alignment. Use the ip6 address type and
	  plug the values in where they go. Thanks to Robert Iakobashvili
	  <coroberti at gmail dot com> for this idea.

Tue May 31 21:45:10 2005  Boris Kolpackov  <boris@kolpackov.net>

	* NEWS:

	  Updated RMCast-related information.

Tue May 31 11:49:23 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

	* ace/Free_List.inl:
	* ace/Message_Queue_T.inl:
	* ace/POSIX_CB_Proactor.inl:
	* ace/SUN_Proactor.inl:

	  Removed these empty inline files.

	* ace/Free_List.cpp:
	* ace/Free_List.h:
	* ace/Message_Queue_T.cpp:
	* ace/Message_Queue_T.h:
	* ace/POSIX_CB_Proactor.cpp:
	* ace/POSIX_CB_Proactor.h:
	* ace/SUN_Proactor.cpp:
	* ace/SUN_Proactor.h:

	  Removed include directives for removed inline files.

	* ace/Timer_Queue_Adapters.cpp (activate):

	  Moved method definition out of ACE_HAS_DEFERRED_TIMER_COMMANDS
	  block.  Fixes "unresolved symbol" link-time errors.

	* ace/Makefile.am (nobase_include_HEADERS):

	  Removed newly removed inline file.

Tue May 31 10:39:10 2005  Justin Michel  <michel_j@ociweb.com>

        * ace/String_Base.inl:
        * ace/String_Base.cpp:

          Move operator+=() methods from .inl to .cpp in an effort to
          reduce footprint.

Mon May 30 18:10:56 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Addr.cpp:
        * ace/Addr.inl:
        * ace/Event_Handler_T.cpp:
        * ace/Event_Handler_T.inl:
        * ace/Free_List.cpp:
        * ace/Free_List.inl:
        * ace/Hashable.cpp:
        * ace/Hashable.inl:
        * ace/IOStream_T.cpp:
        * ace/IOStream_T.inl:
        * ace/Local_Tokens.cpp:
        * ace/Local_Tokens.inl:
        * ace/Lock_Adapter_T.cpp:
        * ace/Lock_Adapter_T.inl:
        * ace/Malloc_T.cpp:
        * ace/Malloc_T.inl:
        * ace/Map_T.cpp:
        * ace/Map_T.inl:
        * ace/Message_Block.cpp:
        * ace/Message_Block.inl:
        * ace/Message_Queue.cpp:
        * ace/Message_Queue.inl:
        * ace/Message_Queue_T.cpp:
        * ace/Message_Queue_T.inl:
        * ace/POSIX_CB_Proactor.cpp:
        * ace/POSIX_CB_Proactor.inl:
        * ace/POSIX_Proactor.cpp:
        * ace/POSIX_Proactor.inl:
        * ace/Refcounted_Auto_Ptr.h:
        * ace/Refcounted_Auto_Ptr.inl:
        * ace/Refcounted_Auto_Ptr.cpp:
        * ace/Remote_Tokens.cpp:
        * ace/Remote_Tokens.inl:
        * ace/Reverse_Lock_T.cpp:
        * ace/Reverse_Lock_T.inl:
        * ace/SUN_Proactor.cpp:
        * ace/SUN_Proactor.inl:
        * ace/Shared_Memory_MM.cpp:
        * ace/Shared_Memory_MM.inl:
        * ace/Shared_Memory_SV.cpp:
        * ace/Shared_Memory_SV.inl:
        * ace/Strategies_T.cpp:
        * ace/Strategies_T.inl:
        * ace/Task.cpp:
        * ace/Task.inl:
        * ace/Thread_Manager.cpp:
        * ace/Thread_Manager.inl:
        * ace/Timer_Queue_Adapters.cpp:
        * ace/Timer_Queue_Adapters.inl:
        * ace/Timer_Queue_T.inl:

          Moved inlined virtual methods out of line.  Addresses
          RTTI-related problems when using g++ 4.0's
          "-fvisibility-inlines-hidden" command line option.

        * ace/String_Base.cpp:

          Removed "ACE_INLINE" macros.  They should not be used in this
          out-of-line source file.

        * ace/Makefile.am:
        * ace/ace.mpc:

          Added Refcounted_Auto_Ptr.cpp to the list of template files.

Mon May 30 13:39:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Task.cpp:
          The Borland preview compiler is the only Borland compiler capable
          of handling the reinterpret cast

Mon May 30 13:14:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/tao_orb_tests.lst:
          Added TAO/tests/Portable_Interceptors/Bug_2088/run_test.pl

Mon May 30 09:34:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * include/makeinclude/platform_vxworks5.x_diab.GNU:
        * include/makeinclude/platform_vxworks5.x_g++.GNU:

          Removed these files since these platform configurations are
          not supported anymore with the current ACE/TAO releases.
          The currently supported platform configuration is the
          'platform_vxworks5.5.x.GNU'.

Mon May 30 09:19:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Array_Base.cpp:
          Initialise pointer with 0

Mon May 30 08:02:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_aix_ibm.GNU:
          Don't use -qstaticinline in a 64bit build with Visual Age 6. When
          this option is specified TAO crashes strangely. Seems a problem
          in the Visual Age compiler in 64bit mode.

Sun May 29 17:49:00 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/compiler.m4:

          Disable the use of gcc's symbol visibility on MacOSX, since it
          requires features of the ELF object file format not present in
          Mach-O.  Longer term we need a feature check that explicitly
          tests for proper operation of symbol visibility instead of a
          list of systems where it's disabled.

Fri May 27 15:32:15 2005  Justin Michel  <michel_j@ociweb.com>

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

          Added a new ACE::wild_match() function which is used to support the
          TAO -ORBPreferredInterfaces option. wild_match was contributed by
          Kevin Heifner <heifner_k@ociweb.com>.

        * ace/SOCK_SEQPACK_Association.h:
        * ace/SOCK_SEQPACK_Connector.h:
        * apps/drwho/Protocol_Manager.cpp:
        * examples/APG/Reactor/Timers.cpp:
        * tests/Network_Adapters_Test.cpp:

          These files #included config.h which isn't safe, because it
 	  won't necessarilly pick up the correct symbols. For example, I
 	  caught this by trying to build ACE on Windows with
 	  __ACE_INLINE__ = 0.  The files that #included config.h directly
 	  saw that it was defined as 0, but changing them to #include
 	  config-all.h instead, correctly saw that the symbol was
 	  undefined.

Fri May 27 10:26:34 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Interpret custom_types->dependent as an array instead of a string.
          This is completely backward compatible since a string is just a
          one element array in the template language.

Fri May 27 12:22:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_aix_ibm.GNU:
          When building for 64bit, make sure we enable the 64bit warnings

Fri May 27 08:49:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * ace/OS_NS_Thread.inl:

          Fixed possible NULL-pointer assignment for VxWorks implementation
          of ACE_OS::thr_sigsetmask().

Fri May 27 00:40:19 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * bin/tao_orb_tests.lst:

          Added new recursive type Any insertion/extraction test to the
          test suite.

Thu May 26 17:07:34 2005  Justin Michel  <michel_j@ociweb.com>

        * ace/String_Base.inl:
        * ace/String_Base.cpp:

          Move all non-trivial functions out of the .inl file. Hopefully this
          will cause a net improvement to the footprint.

Thu May 26 16:13:34 2005  Justin Michel  <michel_j@ociweb.com>

        * ace/config-win32-msvc-6.h:

          The standard library that comes with vc6 is pre-standard c++,
 	  but it's close enough for many things. Enabling its use should
 	  be more portable. This was done long ago for the OCI versions of
 	  TAO (Since 1.2a), and was apparently overlooked until now.

Thu May 26 15:22:10 2005  Emre Turkay  <turkaye@dre.vanderbilt.edu>

        * Release:

          Added the contrib directory into the Release script.

Thu May 26 18:21:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Thread_Manager.{h,cpp}:
          Added thr_state method to ACE_Thread_Manager so that we are able
          to retrieve the state of a certain thread.

Thu May 26 07:39:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_cygwin32.GNU:
        * include/makeinclude/platform_freebsd.GNU:
        * include/makeinclude/platform_gnuwin32_common.GNU:
        * include/makeinclude/platform_osf1_3.2_cxx.GNU:
        * include/makeinclude/platform_osf1_4.x_cxx.GNU:
        * include/makeinclude/platform_osf1_4.x_g++.GNU:
        * include/makeinclude/platform_qnx_neutrino.GNU:
        * include/makeinclude/platform_rtems.x_g++.GNU:
          Simplified these files by using the ?= operator

Wed May 25 15:51:03 2005  Steve Totten  <totten_s@ociweb.com>

        * ace/OS_NS_stdio.inl:
        * ace/OS_NS_stdio.cpp:
        * ace/OS_TLI.inl:
        * ace/config-aix-4.x.h:
        * ace/config-posix.h:
          These files were using improper syntax to compare the value of
          _XOPEN_SOURCE against a constant that caused compilation errors on
          HP-UX 11.23 with HP aC++/ANSI C B3910B A.06.00.  For example:
          #if defined (_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 500)
          was changed to:
          #if (defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) >= 500)

          Thanks to Paul Koch <paul dot koch at mci dot com> for reporting
          this problem and providing the solution.

Wed May 25 20:08:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/msvc_static_order.lst:
          Added new RTEvent_Skel and RTEvent_Serv libraries and removed
          RTOldEvent

Tue May 24 20:09:28 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * bin/MakeProjectCreator/config/time.mpb:

          Inherit from svc_utils.mpb.

Tue May 24 20:46:28 2005  Olli Savia  <ops@iki.fi>

        * ace/config-irix6.x-common.h:
        * ace/config-linux-common.h:
          Changed incorrect define ACE_USES_NEW_TERMIOS to
          ACE_USES_NEW_TERMIOS_STRUCT.

Tue May 24 09:31:42 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/acedefaults.mpb:

          Use $(ILIBMODIFIER) instead of $(LIBMODIFIER).

        * tests/Pipe_Test.cpp:
        * tests/Process_Mutex_Test.cpp:

          Added missing ACE_TEXT () around option strings.  This was causing
          a very strange file to show up after the Process_Mutex_Test was
          run in the Borland unicode build and the Pipe_Test didn't run at
          all.

Tue May 24 00:17:09 2005  Emre Turkay  <turkaye@dre.vanderbilt.edu>

        * bin/MakeProjectCreator/config/cidlc.mpb:

          Created a base project for cidlc & ccf project files.

Tue May 24 07:58:09 2005  Olli Savia  <ops@iki.fi>

        * ace/SSL/SSL_SOCK_Stream.h:
          Added include "ace/os_include/os_stdio.h" to fix compile
          problem on LynxOS. Thanks to Christine Ballard
          <christine.ballard at lmco dot com> for reporting the problem.

Mon May 23 23:11:14 2005  Emre Turkay  <turkaye@dre.vanderbilt.edu>

        * contrib/utility/*:

          Added the utility library.

Mon May 23 16:38:13 2005  Steve Huston  <shuston@riverace.com>

        * examples/Reactor/Proactor/post_completions.cpp: Made use of the
          ACE_POSIX_SIG_Proactor-based test dependent on
          ACE_HAS_POSIX_REALTIME_SIGNALS, not ACE_POSIX_SIG_PROACTOR.
          ACE_POSIX_SIG_PROACTOR indicates a preference for that proactor
          implementation when one is not specified; it's not a capability
          indicator. The presence of the ACE_POSIX_SIG_Proactor implementation
          is based on the ACE_HAS_POSIX_REALTIME_SIGNALS setting, so that's
          what's used to decide whether to explicitly use
          ACE_POSIX_SIG_Proactor. This fixes a build error on Mac OS X Tiger
          with autoconfigure, as well as any other platform with AIO
          support that doesn't declare a Proactor implementation preference.
          Thanks to J.T. Conklin for raising this issue and working on testing
          fixes.

Mon May 23 14:52:19 2005  Justin Michel  <michel_j@ociweb.com>

        * ACEXML/tests/util/util.mpc:

          Add missing $ Id tag.

Mon May 23 13:02:25 2005  Justin Michel  <michel_j@ociweb.com>

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

          Fixed some documentation bugs, and added some new features to
 	  this class.  New efficient overloads for string concatenation.
  	  Fixed clear(1) to work as documented.  Used a more optimal
 	  string growth when concatenating strings.  Performance
 	  optimizations for string concatenation.

        * tests/SString_Test.cpp:

          Test the new string concatenation overloads.

        * bin/tao_other_tests.lst:

          Enabled new ImR tests, and grouped all ImR tests together.

Mon May 23 12:26:19 2005  Steve Huston  <shuston@riverace.com>

        * ace/Thread.h: Doxygen-ized the join() comments.

Mon May 23 13:18:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Lib_Find.cpp:
          Reverted change below, causes compile errors with some compilers

Mon May 23 12:50:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Lib_Find.cpp:
          Small const fix

Mon May 23 10:56:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/ftrtevent.mpb:
        * bin/MakeProjectCreator/config/rtcorbaevent.mpb:
          Use rtevent_serv as base project. These projects use some rtevent
          implementation stuff so just the client side stubs are not enough.

        * bin/MakeProjectCreator/config/rteventexe.mpb:
          Use rtevent_skel as base project

Mon May 23 10:24:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/rtevent_serv.mpb:
        * bin/MakeProjectCreator/config/rtevent_skel.mpb:
          New files, the RTEvent service is being split in 3 libs so
          we need some new base projects

Mon May 23 05:47:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * bin/MakeProjectCreator/config/rtoldevent.mpb:
          Removed this file

        * bin/MakeProjectCreator/config/rteventlogadmin.mpb:
          Removed rtoldevent as base project

Sun May 22 12:01:46 2005  Olli Savia  <ops@iki.fi>

        * ace/High_Res_Timer.cpp:

          Fixed a typo in comment.

Fri May 20 21:11:07 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/DLL.cpp (~ACE_DLL):

          Explicitly delete() this->dll_name_.  It is normally delete()d
          in ACE_DLL::close().  However, that may not occur if full
          ACE_DLL initialization is interruepted due to errors
          (e.g. attempting to open a DSO/DLL that does not exist).  Fixes
          a memory leak.

        * ace/Log_Msg.cpp (msg_ostream):

          Delete the previously allocated ostream prior to setting the new
          one, if necessary.  Fixes a memory leak.

        * ace/Logging_Strategy.h (ACE_Logging_Strategy):

          Converted integer fields that are really booleans to be of type
          "bool", and reordered fields to avoid excessive alignment
          padding.  Reduces size of this class by 8 bytes on most
          platforms.

        * ace/Logging_Strategy.cpp:

          Initialize fields in base member initializer list to prevent
          accidental use of uninitialized fields.

          Use C++ "true" and "false" instead of "1" and "0", respectively,
          when setting boolean field values.

        * ace/SString.h (ACE_Auto_String_Free):

          Corrected documentation suggesting use of
          ACE_Auto_Array_Ptr<char *>.  The correct template argument is
          "char", not "char *".

        * tests/CDR_Test.cpp:
        * tests/Multicast_Test.cpp:

          Fixed memory leaks.

        * tests/Logging_Strategy_Test.cpp:

          Updated to be consistent with boolean field changes in
          ACE_Logging_Strategy class.

        * tests/TP_Reactor_Test.cpp (delete_reactor):

          Reordered finalization code to prevent memory leak.

Fri May 20 19:05:22 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/Thread.h (ACE_Thread): Updated the documentation of
          ACE_Thread::join().  Thanks to Alan Balasuar
          <balasuar@gmail.com> for motivating this fix.

Sat May 21 18:30:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tests/HTBP/Reactor_Tests/server.cpp:
          Fixed value computed is not used warning in GCC IA64 build

Fri May 20 15:28:00 2005  Gary Maxey  <gary.maxey@hp.com>

        * ace/config-lite.h

          Added TANDEM platform for ACE_NOTREACHED macro.

Thu May 19 19:10:30 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
          (handle_output):

          Removed

            ACE_ASSERT (errno == EWOULDBLOCK);

          since errno may have been changed by this point.  Thanks to Ro
          Madhavan <ro_madhavan@sify.com> for reporting this.

Thu May 19 18:50:23 2005  Steve Huston  <shuston@riverace.com>

        * ace/ICMP_Socket.{h cpp inl}:
        * ace/Ping_Socket.{h cpp inl}:
        * tests/Network_Adapters_Test.{cpp, h}: Moved ICMP_Socket and
          Ping_Socket out of the ACE namespace and changed names to
          ACE_ICMP_Socket and ACE_Ping_Socket, respectively. Also fixed up
          some text strings with ACE_TEXT.
          ACE_ICMP_Socket now does not check for root euid - allow the OS to
          do whatever checks it requires/implements.
          Improved implementation of ACE_Ping_Socket.
          Thanks to Robert Iakobashvili for these improvements and changes.

Thu May 19 15:59:38 2005  Steve Huston  <shuston@riverace.com>

        * ace/SOCK.h: Clarified doc on close() - it sets the object's
          handle to ACE_INVALID_HANDLE.

Thu May 19 08:58:48 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/INET_Addr.cpp:
        * ace/INET_Addr.inl:

          Moved remaining virtual methods out of line.  See "Wed May 18
          16:19:32 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>" for
          details.

Thu May 19 15:21:00 UTC 2005  Jeff Parsons <j.parsons@vanderbilt.edu>

        * bin/MakeProjectCreator/config/taoidl3toidl2defaults.mpb:

          Added line

          after += TAO_IDL3_TO_IDL2_EXE

          to the config file to make sure that the executable is built
          before being used in a test, example or application. Thanks to
          Chad Elliott <elliott_c@ociweb.com> for suggesting the change.

Thu May 19 14:05:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * netsvcs/clients/Logger/indirect_logging.cpp:
        * netsvcs/lib/Client_Logging_Handler.cpp:
          When we can't open the logger print out an error and exit with -1.

Thu May 19 00:38:46 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * config-g++-common.h:
        * config-lite.h:

          Removed ACE_EXPORT_SINGLETON_{DECLARATION,DECLARE} macro
          definitions.  They do not provide the expected behavior in g++
          4.0 configurations, as they do in VC++ configurations.

Wed May 18 16:19:32 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/ATM_Addr.cpp:
        * ace/ATM_Addr.inl:
        * ace/DEV_Addr.cpp:
        * ace/DEV_Addr.inl:
        * ace/FILE_Addr.cpp:
        * ace/FILE_Addr.inl:
        * ace/INET_Addr.cpp:
        * ace/INET_Addr.inl:
        * ace/MEM_Addr.cpp:
        * ace/MEM_Addr.inl:
        * ace/SPIPE_Addr.cpp:
        * ace/SPIPE_Addr.inl:
        * ace/Service_Types.cpp:
        * ace/Service_Types.inl:
        * ace/UNIX_Addr.cpp:
        * ace/UNIX_Addr.inl:

          Moved virtual method implementation out-of-line.  Since the
          classes to which they belong are exported, inlining them will
          cause problems when attempting to perform a dynamic_cast<> in
          binaries built with g++ 4.0's -fvisibility-inlines-hidden
          command line option.

        * ace/Strategies_T.cpp (dump):

          Removed ACE_INLINE from this out of line method.

Wed May 18 15:44:12 UTC 2005  Martin Corino  <mcorino@remedy.nl>

        * ace/Semaphore.cpp:

          Removed check for missing shm_open() since this causes problems
          for platforms supporting POSIX_SEM (and thus not using
          shm_open/open).  Thanks to Raoul Gough <Raoul dot Gough at liffe
          dot com> for reporting this.

        * ace/config-openvms.h:
          Added ACE_LACKS_UNNAMED_SEMAPHORE to compensate for above
          change.

Wed May 18 14:37:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/ASX/Message_Queue/buffer_stream.cpp:
          Initialise all pointers with 0

Wed May 18 09:25:35 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:
        * include/makeinclude/rules.lib.GNU:
        * include/makeinclude/platform_gnuwin32_common.GNU:

          Fixed a problem that I introduced in a previous change.  Resource
          files were not being handled properly and the
          platform_gnuwin32_common.GNU file was referencing $(VSHOBJS1)
          which I removed.

        * include/makeinclude/all_in_one.GNU:
        * include/makeinclude/wrapper_macros.GNU:
        * include/makeinclude/rules.bin.GNU:

          Removed the file rules.bin.GNU and all references to it.

Tue May 17 20:58:46 UTC 2005  Jeff Parsons <j.parsons@vanderbilt.edu>

        * bin/MakeProjectCreator/config/taoidl3toidl2defaults.mpb:

          New file, a base project for the tao_idl3_to_idl2 executable,
          so it can be executed automatically in a test or example.

Tue May 17 18:31:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * examples/ASX/Message_Queue/ASX_Message_Queue.mpc:
          Don't build the buffer_stream exe when wchar is enabled, this
          example expects just char.

Tue May 17 09:32:01 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * tests/Collection_Test.cpp:

          Avoid casting between a pointer to a function and a pointer to
          an object.  ISO C++ forbids such casts.  Fixes a g++ 4.0
          warning.

Tue May 17 07:50:07 2005  Justin Michel  <michel_j@ociweb.com>

        * ace/Cache_Map_Manager_T.cpp:
        * ace/Cached_Connect_Strategy_T.cpp:
        * ace/Caching_Strategies_T.cpp:
        * ace/Caching_Utility_T.cpp:
        * ace/Cleanup_Strategies_T.cpp:
        * ace/Hash_Cache_Map_Manager_T.h:
        * ace/Hash_Cache_Map_Manager_T.cpp:
        * ace/QoS/QoS_Manager.h:

          Fix incorrect use of #pragma once.

        * ace/Functor.h:
        * ace/Functor.inl:
        * ace/Global_Macros.h:
        * ace/ace_wchar.h:
        * ace/config-win32-msvc.h:

          Add a new ACE_LACKS_NATIVE_WCHAR_T macro, which can be used to
          check whether a platform supports overloading on wchar_t without
          conflict.  The existing ACE_WSTRING_HAS_USHORT_SUPPORT was
          incorrectly being used for two purposes. This setting should let
          us enable native wchar_t support on VC7+.

        * ace/OS_NS_time.inl:

          Add a static_cast<long> because time_t is 64bit on some platforms
          where long is 32 bit.

        * ace/OS_NS_unistd.inl:

          Mask out the X_OK(6) bit for the amode parameter of the access()
          function because this bit is illegal on Win32 and will assert.

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

          Clarify comment on ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION_EXPORT.

        * ace/config-win32-msvc-8.h:

          Disable deprecation warning 4996, because the
          _CRT_SECURE_NO_DEPRECATE macro doesn't appear to work
          correctly.

        * ace/streams.h:

          Add missing "using std::ios_base".

Mon May 16 21:39:30 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * ace/Ping_Socket.h (Ping_Socket):

          Corrected class name in Doxygen documentation.

Mon May 16 19:18:14 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:
        * examples/Makefile.am:
        * protocols/Makefile.am:
        * protocols/examples/Makefile.am:

          Adapt autoconf build to adjust to relocation of RMCast examples.

Mon May 16 15:58:29 2005  Steve Huston  <shuston@riverace.com>

        * ACE-INSTALL.html: Corrected the names of the Sun compilers supported.
          Thanks to Nick Todd <nicholas dot todd at gs dot com> for
          bringing this error to our attention.

        * THANKS: Added Nick Todd to the Hall of Fame.

Mon May 16 12:33:29 2005  Ossama Othman  <ossama@dre.vanderbilt.edu>

        * THANKS:

          Added Mario Di Giacomo to the Hall of Fame.

        * ace/Service_Templates.cpp:

          Include "ace/SString.h" to pull in ACE_TString declaration.
          Thanks to Mario Di Giacomo <mdigiacomo at anteon dot com> for
          reporting the problem.

        * tests/Cache_Map_Manager_Test.cpp (find_test_cache):

          Fixed "variable may be used uninitialized" warning.

Mon May 16 19:13:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Malloc.h:
          Doxygen improvement

Mon May 16 10:57:57 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/Makefile.am:

          Reset DEFAULT_INCLUDES to address ambiguity between system's
          signal.h and semaphore.h headers and ACE's Signal.h and
          Semaphore.h headers on case insensitive file systems.

          This may be the best setting for all ACE/TAO Makefile.am's,
          but this is the only one that requires it.

Mon May 16 10:56:31 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * configure.ac:

          Add ACE_LD_SEARCH_PATH and ACE_DLL_SUFFIX settings for
          darwin/MacOSX.

          Add ACE_HAS_NANOSLEEP feature test check.

Mon May 16 10:49:10 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * ace/POSIX_CB_Proactor.h:

          Add defined(__APPLE__) to conditional wrapping sigval_t type
          definition.

Mon May 16 10:45:18 2005  J.T. Conklin  <jtc@acorntoolworks.com>

        * m4/ace.m4 (ACE_CONFIGURATION_OPTIONS):

          Changed *win* patterns to *win32* to avoid matching darwin,
          the MacOSX kernel.

Mon May 16 15:13:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * include/makeinclude/platform_mingw32.GNU:
        * include/makeinclude/platform_sco5.0.0-nothread.GNU:
        * include/makeinclude/platform_sunos4_g++.GNU:
        * include/makeinclude/platform_sunos5_sunc++.GNU:
        * include/makeinclude/platform_unixware_g++.GNU:
        * include/makeinclude/platform_unixware_udk.GNU:
        * include/makeinclude/platform_win32_dmc.GNU:
        * include/makeinclude/platform_win32_interix.GNU:
          Simplified these files by using the ?= operator. This sets a value
          only when it is not set yet.

Mon May 16 09:24:29 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/tao_orb_tests.lst:

          Enabled the Exposed_Policies test on Linux.

        * bin/tao_other_tests.lst:

          Added a !NO_IFR configuration to each IFR related test.
          The IFR_Service will not run on MacOS X unless TAO is built
          statically due to gcc's in ability to deal with template
          instantiated singletons correctly.

          Added a NO_LOADAVG configuration to avoid running the load average
          based test on platforms that do not have support for obtaining the
          load average from the system.

          Added a configuration for NO_MCAST for machines that do not have
          multicast capabilities or the multicast implementation is broken.

          Added !STATIC to two LoadManager tests to support static builds on
          Windows.

Mon May 16 14:19:12 UTC 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/Active_Map_Manager.h:
        * ace/Base_Thread_Adapter.h:
        * ace/Process.h:
        * ace/QtReactor.h:
          Doxygen improvement

        * ace/QtReactor.cpp:
          Fixed compile problems with msvc6

        * examples/ASX/Message_Queue/buffer_stream.cpp:
          Use ACE_SIZE_T_FORMAT_SPECIFIER to print out an size_t variable
          with ACE_OS::sprintf

        * include/makeinclude/platform_hpux_aCC.GNU:
        * include/makeinclude/platform_hpux_gcc.GNU:
        * include/makeinclude/platform_irix6.x_g++.GNU:
        * include/makeinclude/platform_irix6.x_sgic++.GNU:
        * include/makeinclude/platform_linux.GNU:
        * include/makeinclude/platform_linux_borland.GNU:
        * include/makeinclude/platform_linux_cxx.GNU:
        * include/makeinclude/platform_macosx.GNU:
          Simplified these files by using the ?= operator. This sets a value
          only when it is not set yet. Also set some variables using ?= so
          that our users can easily define their own values.

        * include/makeinclude/platform_linux_icc.GNU:
          Disable warning 1572 (floating point warning), correct name of Qt
          library and only set several variables when they are not set yet

Mon May 16 09:01:07 2005  Chad Elliott  <elliott_c@ociweb.com>

        * tests/Conn_Test.cpp:

          Force this test to use threads (instead of fork) on MacOS X.

        * tests/FIFO_Test.cpp:

          Sleep 1 second (as is done on AIX and HP-UX) before attempting to
          receive from the fifo.

        * tests/MT_Reference_Counted_Event_Handler_Test.cpp:

          Set global_event_loop_thread_variable before activating the thread
          that may use it.

        * tests/Naming_Test.cpp:

          Allow the user to determine the location of the context file by
          the TMPDIR, TEMP and TMP environment variables.

        * tests/Pipe_Test.cpp:
        * tests/Process_Mutex_Test.cpp:

          Use the value from argv[0] instead of hardcoding the exe name.
          The hardcoded name does not work on Windows Release builds.

        * tests/Process_Strategy_Test.cpp:

          Use threads by default on HP-UX instead of fork.
          Added a timeout for the recv() call in
          Counting_Service::handle_input() for HP-UX only.

        * tests/run_test.lst:

          Added a configuration for NO_MCAST for machines that do not have
          multicast capabilities or the multicast implementation is broken.

        * tests/SSL/aix_hack_for_main.cpp:
        * tests/aix_hack_for_main.cpp:

          Removed these files.  They are no longer needed due to MPC.

Mon May 16 08:52:11 2005  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/config/crosscompile.mpb:

          Added lib_warning, require_warning and avoid_warning to the list
          of targets in the CROSS-COMPILE portion.

        * bin/MakeProjectCreator/config/rtcorbaevent.mpb:

          The RTCORBAEvent library requires the CosNaming library.

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Support the MPC feature that will allow users to specify arbitrary
          input file dependencies.

          Changed the OBJS setting to use $(notdir) only if the source file
          contains ../ and added explicit rules for source files that are
          located in subdirectories.

        * include/makeinclude/platform_macosx_panther.GNU:

          Explicitly default the threads variable to threads=1.  This
          was preventing ACE_TMCast from building.
          Change the optimization option to -O2.  -O3 was causing some
          link problems in the IDL compiler.

        * include/makeinclude/platform_sunos5_sunc++.GNU:

          Allow users to override the inline and exceptions settings.

        * include/makeinclude/platform_vxworks5.5.x.GNU:
        * include/makeinclude/rules.local.GNU:

          Provide better support for building for VxWorks on a Windows host
          without Cygwin.

        * include/makeinclude/rules.lib.GNU:

          Changed the SHOBJS setting to be consistent with the OBJS setting.
          Also, removed VLOBJS and SHOBJS1 which were redundant and set
          exactly as SHOBJS was.

        * include/makeinclude/wrapper_macros.GNU:

          Set ec_typed_events to 1 by default.  This matches the default for
          MPC features.

        * bin/pch_cmd.pl:

          Removed this file.  It is no longer necessary.

Mon May 16 08:44:14 2005  Chad Elliott  <elliott_c@ociweb.com>

        * ace/ACE.cpp:
        * ace/config-irix6.x-sgic++.h:
        * ace/config-qnx-neutrino.h:
        * ace/config-qnx-rtp-common.h:
        * ace/config-sunos5.5.h:

          Put ACE_LIB_TEXT around all ACE_CC_NAME definitions to support
          wide character builds on Solaris, QNX and IRIX.

        * ace/ACE_export.h:

          Added support for SunCC 5.6.

        * ace/Multihomed_INET_Addr.h:
        * ace/Multihomed_INET_Addr.cpp:

          Added an explicit constructor that takes a const char* for
          symmetry with the ACE_INET_Addr class.

        * ace/Naming_Context.cpp:

          Removed a bug workaround for aCC A.03.04.  It is no longer a
          problem to specify other mmap base addresses when running
          64-bit HP-UX applications.

        * ace/OS_NS_Thread.inl:
        * ace/config-macosx-panther.h:
        * ace/Sched_Params.cpp:

          MacOS X has pthread_getschedparam but has the ACE_LACKS_SETSCHED
          macro defined.  I have added a new macro,
          ACE_HAS_PTHREAD_SCHEDPARAM, that can be defined to use
          pthread_getschedparam and pthread_setschedparam even when
          ACE_LACKS_SETSCHED is defined.


        * ace/OS_NS_Thread.cpp:

          Fixed an issue that arose within the static builds on Windows.
  	  The ACE_Thread_Mutex static data member of the
 	  TSS_Cleanup_Instance class was being used (in the
 	  TSS_Cleanup_Instance constructor) before it was statically
 	  initialized.  I have switched it (and the condition variable
 	  associated with it) to a pointer that is allocated the first
 	  time into the TSS_Cleanup_Instance constructor.

        * ace/Process_Manager.cpp:

          Committing a change from Justin Michel <michel_j@ociweb.com>.
  	  The close() method failed to unregister the reactor on Windows.

        * ace/ace.mpc:

          Removed an unnecessary 'install' setting.

        * ace/config-sunos5.10.h:

          SunOS 5.10 has scandir (ACE_HAS_SCANDIR).

        * ace/os_include/sys/os_socket.h:

          When using LKSCTP, include <netinet/in.h> before <netinet/sctp.h>
          to avoid macro problems.

Sun May 15 11:57:56 2005  Douglas C. Schmidt  <schmidt@cs.wustl.edu>

        * ace/INET_Addr.cpp (set): Changed the test from

          if (port_number < 0)

          to

          if (port_number == -1)

          to work around problems when (port_number & 0x80 != 0).  Thanks
          to Vemund Handeland <vemund.handeland@fantoft.no> for reporting
          this.

Mon May 16 11:35:00 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/tests/tests.mwc:
        * protocols/tests/RMCast/Protocol.h:
        * protocols/tests/RMCast/RMCast.mpc:
        * protocols/tests/RMCast/Receiver.cpp:
        * protocols/tests/RMCast/Sender.cpp:
        * protocols/tests/RMCast/run_test.pl:

          Added regression test with loss and reordering simulator
          for RMCast.

Mon May 16 11:26:14 2005  Boris Kolpackov  <boris@kolpackov.net>

        * examples/RMCast/Makefile.am:
        * examples/RMCast/Send_Msg/Makefile.am:
        * examples/RMCast/Send_Msg/Protocol.h:
        * examples/RMCast/Send_Msg/README:
        * examples/RMCast/Send_Msg/Receiver.cpp:
        * examples/RMCast/Send_Msg/Send_Msg.mpc:
        * examples/RMCast/Send_Msg/Sender.cpp:

          Removed as part of the moving all RMCast-related
          code to protocols/.

Mon May 16 11:22:09 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/examples/example_base.mpb:
        * protocols/examples/examples.mwc:
        * protocols/examples/RMCast/Makefile.am:
        * protocols/examples/RMCast/Send_Msg/Makefile.am:
        * protocols/examples/RMCast/Send_Msg/Protocol.h:
        * protocols/examples/RMCast/Send_Msg/README:
        * protocols/examples/RMCast/Send_Msg/Receiver.cpp:
        * protocols/examples/RMCast/Send_Msg/Send_Msg.mpc:
        * protocols/examples/RMCast/Send_Msg/Sender.cpp:

          Copyied from examples/RMCast as part of the moving
          all RMCast-related code to protocols/.


Mon May 16 11:05:26 2005  Boris Kolpackov  <boris@kolpackov.net>

        * examples/RMCast/Send_Msg/Receiver.cpp:
        * examples/RMCast/Send_Msg/Sender.cpp:

          Showcase new features (see below).

Mon May 16 10:58:43 2005  Boris Kolpackov  <boris@kolpackov.net>

        * protocols/ace/RMCast/Acknowledge.cpp:
        * protocols/ace/RMCast/Link.cpp:
        * protocols/ace/RMCast/Link.h:
        * protocols/ace/RMCast/Protocol.cpp:
        * protocols/ace/RMCast/Protocol.h:
        * protocols/ace/RMCast/Retransmit.cpp:
        * protocols/ace/RMCast/Socket.cpp:
        * protocols/ace/RMCast/Socket.h:

          Implemented message aging and unavailability reporting,
          reactor-compatible interface, and message size query
          interface.

        * protocols/ace/RMCast/README:

          Protocol documentation.

Sat May 14 06:05:55 2005  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ACE version 5.4.5 released.

Local Variables:
add-log-time-format: current-time-string
End: