summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: ed4c86a92e0382943ecfde5b99d605c7ecee2227 (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
Tue Mar  4 17:39:31 2003  Steve Huston  <shuston@riverace.com>

        * docs/CE-status.txt: Updated to reflect the ACE 5.3 status of CE.

        * ace/ACE.cpp (execname): Try to locate ".exe" suffix without
          case sensitivity. Thanks to Kelly F. Hickel <kfh@mqsoftware.com>
          for reporting this. Also, when appending a suffix, append it to
          the name, not after the name's nul terminator.

        * ace/ACE.h: Clarified that the pointer returned, if allocated, is
          allocated using new[] and should be freed with delete[].

        * tests/ACE_Test.cpp:
        * tests/ACE_Test.dsp: New test for ACE methods. At this time, it tests
          the ACE::execname() method fixed above.

        * tests/Makefile:
        * tests/Makefile.bor:
        * tests/tests.dsw:
        * tests/tests.mpc:
        * tests/run_test.lst: Added ACE_Test.

Tue Mar  4 13:54:52 2003  Phil Mesnier  <mesnier_p@ociweb.com>

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

        New files added to support the codeset framework. The Codeset Registry
        is either a wrapper for dce code and character set registry functions,
        if the system supports them, or these fucntions are emulated. Only the
        functions necessary to support TAO's Codeset translation framework are
        emulated.

        * ace/Codeset_Registry_db.cpp:

        The codeset "database." A minimal list (2 entries) is shipped, see
        apps/mkcsregdb to build a new list of supported codesets as needed.

        * ace/CDR_Stream.h:

        Changed the interface on the ACE_[W]Char_Codeset_Translator class for
        the read_[w]char_array to take a non-const array as the out parameter.

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

        Added the new codeset files to the makefile.

        * apps/mkcsregdb:

        A new application used to generate custom list of codeset identites.
        The description of how to run is in a comment at the top of
        ace/Codeset_Registry_db.cpp.

Tue Jan 24 17:50:32 2003  Gonzalo Diethelm  <gonzalo.diethelm@aditiva.com>

        * ace/INET_Addr.cpp:
           Method string_to_addr() now uses ACE_OS_String::strtol() instead
           of the ugly hack using ACE_OS::strspn() and ACE_OS::atoi().  The
           two set() methods that receive a const char port_name[] now try
           first to parse that port_name as a simple number (like "901"),
           and if that fails they try to resolve the port name as a
           service.  In order to implement this, I added a static helper
           function called get_port_number_from_name() (sorry for the awful
           name).
        
Tue Mar  4 12:53:06 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          If no exe target or lib target is supplied, then search the source
          files for a main() and set the exename.

Tue Mar  4 09:31:01 2003  Jeff Parsons <j.parsons@vanderbilt.edu>

        * ace/Configuration.cpp:

          For temporary ACE_TStrings used internally, switched to the
          non-allocating constructor. Also made cosmetic changes and
          changed some ACE_TString assignments to use the nocopy
          assignment method added below.

        * ace/String_Base.h:
        * ace/String_Base.i:

          Added a nocopy assignment method.

        * ace/ace_dll.dsp:

          Added Unbounded_Queue.h to the project.

Mon Mar  3 11:39:20 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Strategies_T.h:

          Forward declare ACE_Service_Repository.  Fixes a problem exposed
          by IBM Visual Age C++ 5 builds about unexpected text.

Fri Feb 28 17:43:02 2003  Douglas C. Schmidt  <schmidt@tango.doc.wustl.edu>

        * ace/Service_Manager.h (ACE_Service_Manager): Changed private to
          protected.  Thanks to Terry Mihm <terrym@firstlogic.com> for
          suggesting this.

Fri Feb 28 13:04:56 2003  Ossama Othman  <ossama@uci.edu>

        Changes necessitated by inter-header dependency reductions.

        * examples/Connection/non_blocking/CPP-acceptor.h:

          Include "ace/Svc_Handler.h" to pull in ACE_Svc_Handler template
          declaration.

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

          Include "ace/Service_Config.h" to pull in ACE_Service_Config
          class declaration.

Fri Feb 28 14:12:03 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/ChangeLogEditor/ChangeLogEdit.pm:
        * bin/ChangeLogEditor/ChangeLogEntry.pm:
        * bin/ChangeLogEditor/EmailTranslator.pm:
        * bin/ChangeLogEditor/FileLocator.pm:
        * bin/cle.pl:

          Added a ChangeLog editor script.  It uses CVS to determine which
          files have been modified, added or removed and generates a blank
          ChangeLog entry in the existing ChangeLog.

Fri Feb 28 13:18:17 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/VC7WorkspaceCreator.pm:

          Fixed a problem with project dependencies.  If the project
          dependency is not a project within the generated solution, then
          omit it.

Fri Feb 28 07:49:00 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/Creator.pm:
        * bin/MakeProjectCreator/modules/Parser.pm:

          Pulled the common code out of Creator and replaced it with a
          template method to collect the lines with possible line
          continuation.

Fri Feb 28 12:33:01 UTC 2003  Johnny Willemsen  <jwillemsen@remedy.nl>

        * ace/SString.cpp:
          Also do the explicit template instantiations
          ACE_String_Base<char>::NULL_String_ and
          ACE_String_Base<ACE_WSTRING_TYPE>::NULL_String_ when using VxWorks.

Thu Feb 27 10:56:01 2003  Ossama Othman  <ossama@uci.edu>

        * tests/Proactor_Scatter_Gather_Test.cpp (initiate_read_file):

          Explicitly cast return value of ceil() to "size_t".  Fixes a
          "loss of data" warning.  Loss of data isn't an issue in this
          case.

Thu Feb 27 10:53:38 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Atomic_Op.cpp (single_cpu_exchange, multi_cpu_exchange):

          Fixed unused argument warnings.

Thu Feb 27 10:46:01 2003  Ossama Othman  <ossama@uci.edu>

        Changes necessitated by inter-header dependency reductions.

        * apps/Gateway/Peer/Peer.h:
        * examples/ASX/Event_Server/Event_Server/Peer_Router.h:
        * examples/Connection/non_blocking/CPP-connector.h:
        * netsvcs/lib/Name_Handler.h:
        * netsvcs/lib/Server_Logging_Handler_T.h:
        * netsvcs/lib/TS_Clerk_Handler.h:
        * netsvcs/lib/TS_Server_Handler.h:

          Include "ace/Svc_Handler.h" to pull in ACE_Svc_Handler template
          declaration.

        * examples/Connection/non_blocking/test_sock_acceptor.cpp:
        * examples/Connection/non_blocking/test_spipe_acceptor.cpp:

          Include "ace/Service_Config.h" to pull in ACE_Service_Config
          class declaration.

Thu Feb 27 11:24:14 2003  Chad Elliott  <elliott_c@ociweb.com>

        * apps/gperf/src/gperf.mpc:

          Change the gperf project name to contain exe to allow the
          VC6ProjectCreator to create the correct dependencies.

Thu Feb 27 10:41:33 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/modules/VC6WorkspaceCreator.pm:

          Add a warning if duplicate projects are detected in a generated
          workspace.

Thu Feb 27 10:31:44 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * include/makeinclude/platform_linux_icc.GNU: The GNU file can now
          work with 64 bit intel compiler in Itanium. Thanks to Lubomir
          Bulej <lubomir.bulej@mff.cuni.cz> and Petr Tuma
          <petr.tuma@mff.cuni.cz> for providing the patches.

        * THANKS: Added Lubomir Bulej to the hall of fame.

Thu Feb 27 10:22:05 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * ace/Synch.h:
        * ace/Synch.i: Added ACE_Null_Condition::wait (ACE_Null_Mutex &m,
          const ACE_Time_Value * = 0) which seems to be missing.

Wed Feb 26 18:42:33 2003  Christopher Kohlhoff  <chris@kohlhoff.com>

        * ace/Makefile.bor:

          Removed ACE_LD_DECORATOR_STR definition from CFLAGS, as this
          macro is now defined by the common included makefiles.

        * ace/Synch.h:

          Added missing constructor overload and disown member function
          to the ACE_Guard<ACE_Null_Mutex> template specialization.

        * ace/Atomic_Op.cpp:
        * ace/Atomic_Op.h:
        * ace/Atomic_Op.i:
        * tests/Atomic_Op_Test.cpp:

          Use InterlockedExchange (or the XCHG instruction) to provide
          strong memory-ordering when assigning to an atomic integer.

        * bin/MakeProjectCreator/Creator.pm:

          Added support for line continuation using backslash in .mpc files.

Wed Feb 26 11:55:20 2003  Chad Elliott  <elliott_c@ociweb.com>

        * ace/ace.mpc:

          Added POSIX_CB_Proactor.cpp to the Demux files.

        * bin/MakeProjectCreator/modules/TemplateParser.pm:

          Modification to allow users to name the foreach variable.

Wed Feb 26 07:39:58 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/README:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:

          Changed the defaulting behavior if neither exename, sharedname or
          staticname are defined in an mpc file.

Tue Feb 25 22:26:30 2003  Krishnakumar B  <kitty@cs.wustl.edu>

        * ace/Malloc.h:
        * ace/Malloc.cpp:
        * ace/Malloc.h:
        * ace/Malloc_T.cpp:
        * ace/PI_Malloc.cpp:
        * ace/PI_Malloc.h:

          Teach ACE_Control_Block and friends to do alignment on 64-bit
          platforms. The previous code was buggy and caused a lot of bus
          errors on platforms with greater than 4-byte alignment. We no
          longer multiply and divide by sizeof (long) and do the alignment
          based on sizeof (union ACE_max_align_info). This change also
          makes the default alignment to be at 8-byte boundary (which is
          ofcourse overridable) and errs in favour of safe code by default
          vs optimization for code size. This should get rid of bug
          reports on SGI IRIX, Solaris 64-bit etc related to
          ACE_*_Allocator and friends.

          Also fixed a couple of rounding errors which result in core
          dumps, in ACE_Cached_Allocator and ACE_Dynamic_Cached_Allocator
          where we happily traverse memory irrespective of alignment of
          the chunk_size.

          Thanks to Dave Mercer <mercer@itgssi.com> for reporting the
          problem.

          One of the items from the long list of pending items post-5.3.1.

        * ace/OS_Memory.h:

          Removed the definition of ACE_MALLOC_ALIGN from this file.
          ACE_MALLOC_ALIGN is an internal definition of Malloc.h and
          should have no business in OS_Memory.h.

        * include/makeinclude/rules.lib.GNU:

          Use echo on VLOBJS instead of find with *.o. This fixes build
          problems on lame platforms like MacOS X  where ar doesn't
          generate an index and need to use ranlib. Probably the right
          thing to do even otherwise since there might be more objects in
          .{sh,}obj than needed for a library.

Tue Feb 25 10:00:54 2003  Ossama Othman  <ossama@uci.edu>

        * ace/CDR_Base.h (LongLong):
        * ace/CDR_Base.inl:
        * ace/CDR_Base.cpp:

          Removed newly added 32-bit assignment and comparison operators.
          Comparison is non-trivial in this signed case, and assignment
          operators are a potential source of confusion when implicit
          conversions are performed.  This change basically reverts
          ACE_CDR::LongLong to its previous implementation, and also
          addresses some build problems on platforms with non-native 64
          bit signed integers (e.g. VxWorks).

Tue Feb 25 08:09:13 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Atomic_Op_T.h (mutex_):

          Removed "mutable" keyword from this reference member.  IBM's
          Visual Age C++ considers mutable reference members invalid.

        * ace/Atomic_Op_T.i:

          Go back to casting away the const-ness of the above mutex
          reference member in const methods.

Tue Feb 25 09:57:07 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Clean up the generated targets with the GNU Makefiles.

Tue Feb 25 09:24:06 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/OS.cpp: Added an emulation for localtime_r() for WinCE.  Thanks to
          Martin Brown <mpatalberta@yahoo.com> for reporting this.

Tue Feb 25 08:40:12 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Always generate a realclean target, but only add idl generated
          files if we had idl_files to work with.

Tue Feb 25 07:56:59 2003  Chad Elliott  <elliott_c@ociweb.com>

        * bin/MakeProjectCreator/USAGE:

          Updated the documentation to reflect the removal of the 3
          character restriction on type names.

        * bin/MakeProjectCreator/config/avstreamsexe.mpb:

          Inherit from namingexe instead of reproducing the same
          information.

        * bin/MakeProjectCreator/config/rteventexe.mpb:

          Inherit from server instead of reproducing the same information.

        * bin/MakeProjectCreator/modules/Driver.pm:

          Removed the restriction of a 3 character type.

        * bin/MakeProjectCreator/modules/BorlandProjectCreator.pm:
        * bin/MakeProjectCreator/modules/GHSProjectCreator.pm:
        * bin/MakeProjectCreator/modules/GNUProjectCreator.pm:
        * bin/MakeProjectCreator/modules/NMakeProjectCreator.pm:
        * bin/MakeProjectCreator/modules/ProjectCreator.pm:
        * bin/MakeProjectCreator/modules/VC7ProjectCreator.pm:

          Refactor code into the base class.

        * bin/MakeProjectCreator/modules/BorlandWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/GHSWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/GNUWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/NMakeWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/WorkspaceCreator.pm:

          Made modifications to these modules to allow an mwc file to have
          multiple workspaces defined within it.

        * bin/MakeProjectCreator/templates/gnu.mpd:

          Cosmetic change.

        * bin/MakeProjectCreator/modules/MakeWorkspaceCreator.pm:
        * bin/MakeProjectCreator/modules/MakeProjectCreator.pm:
        * bin/MakeProjectCreator/templates/make.mpd:
        * bin/mpc.pl:
        * bin/mwc.pl:

          Added a new project type for generic Makefiles.  These are not
          suitable for use within ACE or TAO, but may be useful to someone.

Mon Feb 24 15:37:06 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/TTY_IO.h (ACE_TTY_IO): Added the dtrdisable member to
          Serial_Params.  This finishes a fix suggested by Ray Limpus
          <ray.limpus@boeing.com>.  Thanks to Jeff Parsons for noticing
          this.

Mon Feb 24 08:53:52 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Basic_Types.i (operator++, operator--):

          Fixed incorrect dereferencing of non-pointer return variable.

Sun Feb 23 12:16:34 2003  Douglas C. Schmidt  <schmidt@tango.doc.wustl.edu>

        * ace/WIN32_Asynch_IO.cpp (cancel): Added support for cancel() on
          MinGW.  Thanks to Vince for this fix.

        * examples/Mem_Map/Makefile: Moved the definition of DIRS to
          later in the Makefile so we can exclude it from the MinGW
          build.  Thanks to Vince for reporting this, as well.

        * ace/WIN32_Proactor.cpp (close): Make sure to check whether
          GetQueuedQueuedCompletion() returns false.  Thanks to Vince
          Mounts <vince@mounts.cc> for reporting this.

Sat Feb 22 08:16:36 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Basic_Types.h (operator++, operator--):

          Fixed return type mismatch between declaration and definition in
          Basic_Types.i.

Fri Feb 21 12:52:00 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Global_Macros.h:
        * ace/OS.h:

          Moved ACE_CORBA_{1,2,3} and ACE_NESTED_CLASS macro out of OS.h
          and into Global_Macros.h.  Helps avoid inclusion of OS.h in some
          cases.

Fri Feb 21 10:05:23 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Local_Name_Space_T.cpp:

          Include "ace/Auto_Ptr.h" once again to pull in the
          ACE_Auto_Basic_Array_Ptr class declaration.  Fixes compile-time
          problems on AIX about unknown template types.

Fri Feb 21 13:32:43 2003  Edward Scott  <eas@prismtechnologies.com>

        * docs/bugzilla-build-setup.html:

          Removed obsolete documentation file. Thanks to Johnny Willemsen
          <jwillemsen@remedy.nl> for reporting the problem.

Fri Feb 21 06:18:19 2003  Ossama Othman  <ossama@uci.edu>

        * tests/Framework_Component_DLL.cpp:

          Include "ace/Service_Object.h" to pull in ACE_Service_Object
          class declaration.  Necessitated by inter-header dependency
          reductions.

Thu Feb 20 18:54:03 2003  Ossama Othman  <ossama@uci.edu>

        * apps/Gateway/Gateway/gatewayd.cpp:

          Include "ace/Service_Object.h" to pull in ACE_Service_Object_Ptr
          class declaration.  Necessitated by inter-header dependency
          reductions.

Thu Feb 20 18:49:37 2003  Ossama Othman  <ossama@uci.edu>

        * examples/Service_Configurator/Misc/Timer_Service.h:

          Include "ace/Service_Object.h" to pull in ACE_Service_Object
          class declaration.  Necessitated by inter-header dependency
          reductions.

Thu Feb 20 18:45:29 2003  Ossama Othman  <ossama@uci.edu>

        * examples/C++NPv2/Service_Reporter.cpp:

          Include "ace/Service_Types.h" to pull in ACE_Service_Type_Impl
          class declaration.  Necessitated by inter-header dependency
          reductions.

Thu Feb 20 18:31:10 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Strategies_T.cpp:

          Fixed "lose of const in cast" errors.

Thu Feb 20 18:20:19 2003  Ossama Othman  <ossama@uci.edu>

        * ace/SSL/SSL_SOCK_Acceptor.h (ACE_SSL_SOCK_Acceptor):

          Reverted the change that made this class inherit privately from
          ACE_SSL_SOCK instead of publically.  While this isn't strictly
          the correct thing to do, IMO, it does correct some compile-time
          problems.

        * ace/SSL/SSL_SOCK_Connector.cpp (ssl_connect):

          Fixed compile-time error related to violation of a const
          qualifier on a pointer to the timeout value.

Thu Feb 20 19:18:17 2003  Balachandran Natarajan  <bala@isis-server.isis.vanderbilt.edu>

        * ChangeLogs/ChangeLog-02b:
        * ChangeLogs/ChangeLog-03a: New files having all the old ChangeLog
          entries till 5.3.1.
        * ChangeLog: Shortened the changelog for ease of use.

Thu Feb 20 10:35:15 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Strategies_T.h:
        * ace/Strategies_T.cpp:

          Reverted part of changes that introduced extensive use of
          traits since they were forcing the introduction of the
          ACE_TYPENAME macro in more places than is desirable at this
          point in time.  They may be reintroduced in the future.

Thu Feb 20 09:24:00 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Service_Config.h:

          Forward declare ACE_Service_Object.  Necessitated by inter-header
          dependency reductions.

Thu Feb 20 09:23:51 2003  Ossama Othman  <ossama@uci.edu>

        * ace/Acceptor.h:
        * ace/Connector.h:

          No need to include "ace/Service_Config.h" and
          "ace/Svc_Handler.h".

          Include "ace/Synch_Options.h".  Necessitated by inter-header
          dependency reductions.

        * ace/Acceptor.cpp:
        * ace/Connector.cpp:

          Include "ace/Svc_Handler.h".  Necessitated by inter-header
          dependency reductions.

        * ace/Atomic_Op.h:

          Fixed doxygen documentation.

        * ace/Atomic_Op.i (operator++, operator--):

          Implement these post{in,de}crement operators in terms of their
          corresponding pre{in,de}crement operators to ensure consistent
          semantics.

        * ace/Atomic_Op_T.h (mutex_, own_mutex_):

          Improved const-correctness by making these mutex members
          mutable.  This allows us to avoid casting away the constness.

        * ace/Atomic_Op_T.i (operator==, operator>=, operator>):
          (operator<=, operator<, value, operator=):

          Do not cast away the constness of the mutex.  That hack is no
          longer necessary since the mutex is now mutable.

        * ace/Basic_Types.h:

          Improved doxygen documentation.

          Moved endianness determination macros prior to ACE_U_LongLong
          class.

          (operator=):

          Added ACE_ULongLong assignment operator declarations that accept
          32 bit signed and unsigned integers.

          (operator++, operator--):

          Added missing ACE_ULongLong post{in,de}crement operator
          declarations.

          (data_):

          Make declaration order of lower and upper 32 bit members (lo_
          and hi_) of this structure dependant on the endianness of the
          platform.  This mimics what is done for the ACE_LongLong type
          in the ACE_CDR classes.

        * ace/Basic_Types.i (operator=):

          Added ACE_ULongLong assignment operator implementation that
          accept 32 bit signed and unsigned integers.

          (operator++, operator--):

          Added missing ACE_ULongLong post{in,de}crement operator
          implementations.

        * ace/CDR_Base.cpp (mb_align):

          Uninlined this method in order to reduce inter-header
          dependencies.

          (operator<, operator<=, operator>, operator>=, operator==):
          (operator!=):

          Added these missing operator for the ACE_LongLong type.

          (Float, operator=, operator!=):

          Fixed potential unused argument warnings for the Cray/UNICOS
          case.

        * ace/CDR_Base.h:

          Include "ace/OS.h" instead of "ace/Message_Block.h", and forward
          declare ACE_Message_Block in order to reduce inter-header
          dependencies.

          Changed all uses of typedefs like "u_char" and "u_long" to their
          non-typedef counterparts, e.g. "unsigned char" and "unsigned
          long".  Makes it possible to avoid including headers that
          contain those typedefs.

          (operator=):

          Added ACE_LongLong constructors assignment operators that accept
          32-bit integers.

          (operator==, operator!=, operator<=, operator<, operator>=):
          (operator>):

          Added these missing ACE_LongLong relation operators.

        * ace/CDR_Base.inl (operator=):

          Added ACE_LongLong constructors assignment operators that accept
          32-bit integers.

          (operator==, operator!=, operator<=, operator<, operator>=):
          (operator>):

          Added these missing ACE_LongLong relation operators.

        * ace/CDR_Stream.h:

          Moved definition of the ACE_CDR_BYTE_ORDER macros from OS.h to
          this header.  Helps with header dependency reduction.

        * ace/Capabilities.h:

          Use ACE_Hash_Map_Manager_Ex instead of ACE_Hash_Map_Manager.
          Doing so saves us three template instantiations.

        * ace/Capabilities.i:

          Cosmetic changes.

        * ace/Capabilities.cpp:

          No need to include "ace/Map_Manager.h".

          Added missing ACE_RCSID macro.

          Improved conformance to ACE coding conventions.

          Removed explicit template instantiations for the
          ACE_Hash_Map_Manager template.  That template is no longer
          used.

          (reset_caps):

          Use ACE_Hash_Map_Manager_Ex template traits instead of the
          actual template type.  Makes for cleaner code.

        * ace/Configuration.cpp:
        * ace/Configuration.h:
        * ace/Strategies_T.cpp:
        * ace/Token_Collection.cpp:
        * ace/Token_Collection.h:
        * ace/Token_Invariants.cpp:
        * ace/Token_Invariants.h:
        * ace/Token_Manager.cpp:
        * ace/Token_Manager.h:
        * ace/WIN32_Asynch_IO.cpp:
        * ace/WIN32_Asynch_IO.h:

          Take advantage of template traits to improve clarity of code.

        * ace/Copy_Disabled.h:

          Corrected comment.

        * ace/Default_Constants.h:

          Moved ACE_DEFAULT_CDR_BUFSIZE, ACE_DEFAULT_CDR_EXP_GROWTH_MAX,
          ACE_DEFAULT_CDR_LINEAR_GROWTH_CHUNK,
          ACE_DEFAULT_CDR_MEMCPY_TRADEOFF macros from OS.h to this
          header.  Helps with inter-header dependency reduction.

        * ace/Dynamic_Service_Base.cpp:
        * ace/Parse_Node.cpp:
        * ace/Service_Manager.cpp:
        * ace/Service_Repository.cpp:
        * ace/Svc_Conf.y:
        * ace/Svc_Conf_y.cpp:

          Include "ace/Service_Types.h".  Necessitated by inter-header
          dependency reduction.

        * ace/Filecache.h:
        * ace/Filecache.cpp:
        * ace/Hash_Map_With_Allocator_T.h:
        * ace/Hash_Map_With_Allocator_T.cpp:
        * ace/Local_Name_Space_T.h:
        * ace/Local_Name_Space.cpp:

          Use ACE_Hash_Map_Manager_Ex instead of ACE_Hash_Map_Manager.
          Doing so saves us three template instantiations.

        * ace/Future_Set.h:
        * ace/Map_T.h:

          Include "ace/Hash_Map_Manager_T.h" instead of
          "ace/Hash_Map_Manager.h".  The former is all that is needed, and
          the latter already includes the former.

        * ace/Hash_Map_Manager_T.i (operator++, operator--):
        * ace/Map_Manager.i:
        * ace/RB_Tree.i:

          Implement the post-{in,de}crement operators in terms of their
          pre-{in,de}crement operator counterparts to ensure consistency.

        * ace/Local_Name_Space_T.cpp:

          No need to include "ace/Auto_Ptr.h"

          Use template traits to improve code clarity.

        * ace/OS.h:

          Moved ACE_CDR_BYTE_ORDER macro definition to CDR_Stream.h.
          Helps with inter-header dependencies.

          Moved ACE_DEFAULT_CDR_BUFSIZE, ACE_DEFAULT_CDR_EXP_GROWTH_MAX,
          ACE_DEFAULT_CDR_LINEAR_GROWTH_CHUNK,
          ACE_DEFAULT_CDR_MEMCPY_TRADEOFF to Default_Constants.h.  Helps
          with inter-header dependency reduction.

        * ace/POSIX_Asynch_IO.cpp:

          Added missing ACE_RCSID macro.

          (bytes_transferred):
          Use map template traits to improve code clarity.

        * ace/POSIX_Asynch_IO.h:

          Redefined old map typedefs in terms of the map traits.

        * ace/Parse_Node.h:
        * ace/Service_Repository.h:

          No need to include "ace/Service_Types.h".  A forward declaration
          for ACE_Service_Types is enough.

        * ace/Service_Config.h:

          No need to include "ace/Service_Types.h" and "ace/Signal.h".
          Forward declaring ACE_Service_Types and ACE_Sig_Adapter is
          enough.

        * ace/Strategies_T.h:

          No need to include "ace/Service_Config.h" and
          "ace/Synch_Options.h".

        * ace/Synch_Options.h:

          Changed all uses of typedefs like "u_char" and "u_long" to their
          non-typedef counterparts, e.g. "unsigned char" and "unsigned
          long".  Makes it possible to avoid including OS.h.  A big win in
          compile time reduction.

          Include "ace/Time_Value.h".  Necessitated by inter-header
          dependency reduction.

        * ace/Synch_Options.cpp:

          Changed all uses of typedefs like "u_char" and "u_long" to their
          non-typedef counterparts, e.g. "unsigned char" and "unsigned
          long".  Makes it possible to avoid including OS.h.  A big win in
          compile time reduction.

          Include "ace/Trace.h".  Necessitated by inter-header
          dependency reduction.

        * ace/Template_Instantiations.cpp:

          Removed all ACE_Hash_Map_Manager related template
          instantiations.  The ones for ACE_Hash_Map_Manager_Ex are all
          that are needed.

        * ace/SSL/SSL_SOCK_Acceptor.h (ACE_SSL_SOCK_Acceptor):

          Inherit privately from ACE_SSL_SOCK, instead of publically.
          ACE_SSL_SOCK_Acceptor is IMPLEMENTED-IN-TERMS-OF ACE_SSL_SOCK.
          It does not satisfy the IS-A relationship.

        * ace/SSL/SSL_SOCK_Connector.cpp (ssl_connect):

          Use ACE_Countdown_Time to take into account the time between
          each call to select() instead of using the same timeout value in
          each loop iteration.  [Bug 1110]

        * ace/SSL/SSL_SOCK_Stream.cpp (get_remote_addr):

          Retrieve the remote addr from the parent ACE_SSL_SOCK class, not
          ACE_SOCK.  Addresses potential inconsistencies in the future.

        * ace/SSL/SSL_SOCK_Stream.h (ACE_SSL_SOCK_Stream):

          Removed friend declarations for the
          ACE_SSL_SOCK_{Acceptor,Connector} classes.  They are
          unnecessary.

Tue Feb 11 17:14:56 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/TTY_IO.cpp: Fixed several problems with DTR enabling.  Thanks to
          Ray Limpus <ray.limpus@boeing.com> for reporting this.

Thu Feb  6 16:36:18 2003  Douglas C. Schmidt  <schmidt@macarena.cs.wustl.edu>

        * ace/Bound_Ptr.{h,i}: Made the get() method const.  Thanks to
          Chris Kohlhoff for reporting this.