Merge pull request #2240 from DOCGroup/revert-2239-jwi-pi23
[ACE_TAO.git] / ACE / NEWS
blobcd8f9f417d00f22cb70c59ffca6c8d18cac4644e
1 USER VISIBLE CHANGES BETWEEN ACE-8.0.0 and ACE-8.0.1
2 ====================================================
4 USER VISIBLE CHANGES BETWEEN ACE-7.1.4 and ACE-8.0.0
5 ====================================================
7 . ACE/TAO now require C++17 or newer
9 . Add support for Embarcadero C++ Builder bcc64x compiler
11 . Removed ace/Auto_Ptr.*, with C++17 std::auto_ptr is not
12   available anymore
14 . New Latest_ACE8TAO4_Micro, Latest_ACE8TAO4_Minor, and Latest_ACE8TAO4_Major
15   branches
17 USER VISIBLE CHANGES BETWEEN ACE-7.1.3 and ACE-7.1.4
18 ====================================================
20 . With g++ versions < 11 we default to C++17 as
21   minimum C++ standards level
23 USER VISIBLE CHANGES BETWEEN ACE-7.1.2 and ACE-7.1.3
24 ====================================================
26 . Fixed possible race conditions in extreme use case
27   in the barrier and future implementations
29 . Improve support for QNX 7.1 and FreeBSD
31 . Integrated debian packaging changes
33 USER VISIBLE CHANGES BETWEEN ACE-7.1.1 and ACE-7.1.2
34 ====================================================
36 . C++17 removed std::auto_ptr, updated ACE/TAO to not
37   use std::auto_ptr anymore and also not provide our
38   own auto_ptr. With C++17 ACE doesn't provide ACE_Auto_Ptr,
39   ACE_Auto_Basic_Ptr, ACE_Auto_Basic_Array_Ptr, ACE_Auto_Array_Ptr,
40   and ACE_auto_ptr_reset anymore, just use std::unique_ptr
42 . Add c++std which can be used in the platform_macros.GNU
43   to set the C++ revision to be used (results in -std= flag)
45 . Improve support for QNX 7.1
47 . Embarcadero C++ Builder enhancements
49 USER VISIBLE CHANGES BETWEEN ACE-7.1.0 and ACE-7.1.1
50 ====================================================
52 . Fixed shared memory leak by ACE_Shared_Memory_Pool
54 . Fixed ACE_INET_Addr::set when ACE_LACKS_GETSERVBYNAME has
55   been defined
57 USER VISIBLE CHANGES BETWEEN ACE-7.0.11 and ACE-7.1.0
58 =====================================================
60 . Removed support for Windows CE, OpenVMS, HPUX, AIX, RTEMS,
61   Pharlap, Solaris, and Visual Studio 2015
63 . ACE/TAO now require C++14 or newer
65 USER VISIBLE CHANGES BETWEEN ACE-7.0.10 and ACE-7.0.11
66 ======================================================
68 . Fixed some compiler warnings given by newer compilers
70 . Make use of noexcept instead of throw()
72 . Fixed a bug in ACE_Configuration_Heap with uses_wchar=1 builds
74 USER VISIBLE CHANGES BETWEEN ACE-7.0.9 and ACE-7.0.10
75 =====================================================
77 . Add missing resource files for several DLLs on Windows
79 . VxWorks runtime fixes
81 . Various cleanup and using more C++11 features
83 . Embarcadero C++ Builder 11.2 fixes
85 USER VISIBLE CHANGES BETWEEN ACE-7.0.8 and ACE-7.0.9
86 ====================================================
88 . Compile fixes for VxWorks 22.03
90 . Various cleanup
92 . Minor fixes
94 USER VISIBLE CHANGES BETWEEN ACE-7.0.7 and ACE-7.0.8
95 ====================================================
97 . Minor changes
99 USER VISIBLE CHANGES BETWEEN ACE-7.0.6 and ACE-7.0.7
100 ====================================================
102 . Minor changes
104 USER VISIBLE CHANGES BETWEEN ACE-7.0.5 and ACE-7.0.6
105 ====================================================
107 . Various cleanup and using more C++11 features
109 . Various packaging related fixes
111 USER VISIBLE CHANGES BETWEEN ACE-7.0.4 and ACE-7.0.5
112 ====================================================
114 . Initial not tested support for Visual Studio 2022
116 . Fixed compile errors when using Visual Studio 2019 with C++17
117   or C++20 support enabled
119 . Various cleanup and using more C++11 features
121 USER VISIBLE CHANGES BETWEEN ACE-7.0.3 and ACE-7.0.4
122 ====================================================
124 . Add support for Embarcadero C++ Builder 11.0 Alexandria using
125   the bcc32c compiler
127 . Allow ACE_Module and ACE_SOCK_Dgram_Mcast to be sub-classed
129 . Add ACE_SWAP_LONG_LONG byte swap macro for ACE_UINT64
131 . Improved ACE_Atomic implementation for g++
133 . Various cleanup and using more C++11 features
135 USER VISIBLE CHANGES BETWEEN ACE-7.0.2 and ACE-7.0.3
136 ====================================================
138 . The macro ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS has been renamed
139   to ACE_HAS_WIN32_STRUCTURED_EXCEPTIONS, update your code accordingly
141 . MinGW 2 has been deprecated
143 . ACE CDR supports (u)int8
145 . Use more C++11 features including using std alternatives
147 . Various cleanup
149 . Fix SocketConnect::ip_check() Concurrency and Too-Early Request Issues for Windows
151 . Make install: use relative links in prefix/share
153 USER VISIBLE CHANGES BETWEEN ACE-7.0.1 and ACE-7.0.2
154 ====================================================
156 . Fixed various warnings given by newer compilers
158 . Use more C++11 features
160 . Various cleanup
162 USER VISIBLE CHANGES BETWEEN ACE-7.0.0 and ACE-7.0.1
163 ====================================================
165 . Cleanup of ACE_* macros which are not used anymore
167 . Removed support for LynxOS 4 which has gcc3
169 . Make sure C++11 is enabled on MacOSX
171 USER VISIBLE CHANGES BETWEEN ACE-6.5.12 and ACE-7.0.0
172 =====================================================
174 . C++11 is now a mandatory compiler feature which is
175   required for ACE. Cleaned up part of the support for compilers
176   that lack C++11 support
178 . When valgrind is enabled we don't disable dlclose anymore,
179   this reduces the amount of leaks reported related to dlclose.
180   When you unload your shared libraries before the end of your program
181   you can use `--keep-debuginfo=yes` as valgrind options as alternative
182   or you can disable dlclose yourself by adding
183   `#define ACE_LACKS_DLCLOSE` to your ace/config.h file
185 . Removed `ACE_OS::readdir_r`. `readdir_r` was marked as depracated in glibc
186   and FreeBSD libc. Also removed `ACE_Dirent::read (ACE_DIRENT *, ACE_DIRENT **)`
187   which used it. `ACE_LACKS_READDIR_R` will now always be defined.
189 . Modernized part of the code using clang-type, added override, use nullptr,
190   use unique_ptr, remove redundant void, use bool, simplify boolean expressions,
191   make use of std::atomic, use using
193 . New Latest_ACE7TAO3_ branches which can be used to always checkout the
194   latest ACE7/TAO3 micro/minor release
196 . Android Support:
198   . `gnuace` no longer supports Android NDKs before r18. This means only clang
199     is now supported when building for Android.
201   . Support for building with the Android NDK r19 or later directly instead of
202     having to use a generated standalone toolchain. See `ACE-INSTALL.html` for
203     details. Using a standalone toolchain is still supported.
205   . Made it easier to use `gnuace`-built libraries in as imported libraries in
206     CMake-based Android Studio native projects.
208   . Removed support for old `ANDROID_ARCH` make variable. Replaced
209     `ANDROID_ABI` with `android_abi`, but kept the former as an alias of the
210     later for compatibility. Also will no longer default to 32-bit ARM, so
211     `android_abi` or `ANDROID_ABI` must be defined.
213   . As recommend by Google, building with neon support is now the default when
214     `android_abi` is `armeabi-v7a`. If support for these processors without
215     NEON extensions is needed, put `androind_neon := 0` in
216     `platform_macros.GNU`.
218   . As recommend by Google, `gnuace` will start using LLD, the LLVM linker,
219     instead of the default GNU linkers. If the NDK being used doesn't default
220     to LLD and you want to use the GNU linkers, put `androind_set_lld := 0` in
221     `platform_macros.GNU`.
223 . Removed support for the Alpha CPU
225 USER VISIBLE CHANGES BETWEEN ACE-6.5.11 and ACE-6.5.12
226 ======================================================
228 . Fixed some C++11 warnings
230 . Fixed compile problem on AIX
232 . Removed c++0x and c++1y as GNU make variables, use c++11 and c++14 as
233   alternatives
235 . Moved all CI builds to github actions
237 . Added ACE_GCC_NO_RETURN to fix fall through warnings
239 . Fix ACE_Thread_Manager::join memory leak and potential deadlock
241 USER VISIBLE CHANGES BETWEEN ACE-6.5.10 and ACE-6.5.11
242 ======================================================
244 . Latest_{Major,Minor,Micro,Beta} tags have been replaced with
245   branches because tags are not intended to move where branches are
247 . Removed emulated operations in ACE_OS which are not used anymore
249 . Resolved some compile warnings when using C++11 or newer
251 . Integrated debian packaging changes
253 . Visual Studio 2015 solutions are not part of the release
254   packaging anymore. When you require these you need to generate
255   them locally using MPC
257 . Improve multicast join by interface name on Windows
259 . Fixed ACE_INT64_FORMAT_SPECIFIER (and similar) preprocessor macros
260   on macOS (Apple-clang) with -std=c++11 or higher
262 . On Windows, use unnamed kernel objects (Events and Semaphores)
263   for thread-scoped reader-write mutexes in ACE_OS::rwlock_init
265 USER VISIBLE CHANGES BETWEEN ACE-6.5.9 and ACE-6.5.10
266 =====================================================
268 . Add support for Embarcadero C++ Builder 10.4 Sydney using the
269   classic compiler. ACE/TAO compile with the new 32/64 bit clang
270   compilers but runtime tests show several runtime problems which
271   makes them not safe to use
273 . Make a change in the ACE Process Manager to resolve an internal
274   compiler error with Visual Studio 2019 16.5.x compilers
276 . Android enhancements for if_nameindex
278 USER VISIBLE CHANGES BETWEEN ACE-6.5.8 and ACE-6.5.9
279 ====================================================
281 . On Windows, ACE no longer defines _WIN32_WINNT.  ACE wrappers for
282   if_nametoindex and if_indextoname are available if the version of the
283   Windows SDK supports them.
285 . IPv6 extended datagram receive info now supported on macOS.
287 . ACE_(U)INT8/16/32/64 map to (u)int8/16/32/64_t when C++11 has been
288   enabled.
290 . CDR_Base uses ACE_INT64 for LongLong, all old emulated support
291   has been removed
293 . Updated debian and rpm packaging support
295 USER VISIBLE CHANGES BETWEEN ACE-6.5.7 and ACE-6.5.8
296 ====================================================
298 . Added instructions to ACE-INSTALL.html for building ACE/TAO for Android on
299   Windows.
301 . Embarcadero C++ Builder Rio fixes
303 . Renamed `VERSION` file to `VERSION.txt` to avoid conflicting with the
304   `version` standard header.
306 USER VISIBLE CHANGES BETWEEN ACE-6.5.6 and ACE-6.5.7
307 ====================================================
309 . Fixed compile problem with glibc 2.30 and newer
311 . gnuace makefiles: Updated handling of generated files and
312   use requires/avoids to make postbuild steps conditional
314 . Removed references to the ACE_LACKS_MONOTONIC_TIME preprocessor macro because
315   it was equivalent to ACE_LACKS_CLOCK_MONOTONIC.
317 . Exposed support status of monotonic times features using preprocessor macros.
318   See "Testing for Monotonic Time Support" in docs/ACE-monotonic-timer.html for
319   details.
321 . Added support for ARM and ARM64 stack traces with Microsoft Visual C++.
323 . The "optional argument for the receive address in ACE_SOCK_Dgram::recv"
324   feature from ACE-6.5.5 is now supported on Windows.  This includes enhanced
325   support for sendmsg/recvmsg on Windows.
327 USER VISIBLE CHANGES BETWEEN ACE-6.5.5 and ACE-6.5.6
328 ====================================================
330 . On Linux, the ACE_Log_Msg format specifier `%t` is now replaced with the
331   system thread id provided by gettid(), instead of the much longer pthread id.
333 . Added support for MQX
335 . Enhanced Android support
337 USER VISIBLE CHANGES BETWEEN ACE-6.5.4 and ACE-6.5.5
338 ====================================================
340 . Fixed several broken links due to the removal of
341   Douglas Schmidt website at WashU
343 . On Android:
345   . ACE_Log_Msg (and therefore ACE_DEBUG and ACE_ERROR) now uses
346     Android's logging system (aka Logcat) by default in addition to stderr
347     because stdout and stderr are discarded under normal circumstances.
348     To disable this at runtime, run:
349       ACE_LOG_MSG->clr_flags (ACE_Log_Msg::SYSLOG)
350     To disable this at compile time include these lines in config.h:
351       #define ACE_DEFAULT_LOG_FLAGS ACE_Log_Msg::STDERR
352       #define ACE_DEFAULT_LOG_BACKEND_FLAGS 0
354   . When statically linking to OpenSSL, prevent usage of the preloaded and
355     unpredictable system SSL library when using ace_openssl.
357 . minizip has been moved from ACE to DANCE
359 . Add initial support for Visual Studio 2019
361 . Validated ACE for usage SLES15.0 x86_64 using 32bit g++ compiler
363 . Add optional argument for the receive address in ACE_SOCK_Dgram::recv
365 USER VISIBLE CHANGES BETWEEN ACE-6.5.3 and ACE-6.5.4
366 ====================================================
368 . Fix ACE_Vector::end(), which now correctly
369   represents the end of the elements of the vector
370   instead of the end of the base array.
372 USER VISIBLE CHANGES BETWEEN ACE-6.5.2 and ACE-6.5.3
373 ====================================================
375 . Enhance Android support
377 . Fix AIX and Solaris linking rpath errors
379 . Add support for SSL_INCDIR/SSL_LIBDIR and XERCESC_INCDIR/XERCESC_LIBDIR
380   to specify a custom include/lib dir as required for vcpkg versions of
381   openssl/xercesc
383 USER VISIBLE CHANGES BETWEEN ACE-6.5.1 and ACE-6.5.2
384 ====================================================
386 . Enhanced C++Builder XE2 support
388 . ACE_QtReactor can be built with Qt version 5 using the qt5 MPC feature
390 USER VISIBLE CHANGES BETWEEN ACE-6.5.0 and ACE-6.5.1
391 ====================================================
393 . At the moment C++11 or newer is enabled ACE_Strong_Bound_Ptr
394   doesn't provide the convenience functions to use a
395   std::auto_ptr anymore
397 . Optimized CDR std::(w)string insertion and extraction
398   when C++11 or newer is enabled
400 . Solved Visual Studio 2017 solution loading due to duplicate
401   files generated in a project file
403 USER VISIBLE CHANGES BETWEEN ACE-6.4.8 and ACE-6.5.0
404 ====================================================
406 . The ACE core libraries now use std::unique_ptr instead
407   of std::auto_ptr when C++11 or newer is enabled
409 USER VISIBLE CHANGES BETWEEN ACE-6.4.7 and ACE-6.4.8
410 ====================================================
412 . Enhanced Embarcadero C++ Builder support
414 . ACE XML_Utils enhancements
416 . Debian packaging enhancements
418 . Support for clang6 and gcc8
420 . Enhanced Android support
422 . Remove addr_any restriction from ipv6_only UDP
424 USER VISIBLE CHANGES BETWEEN ACE-6.4.6 and ACE-6.4.7
425 ====================================================
427 . Added a new, optional argument named ipv6_only to:
428     ACE_Acceptor::ACE_Acceptor
429     ACE_Acceptor::open
430     ACE_SOCK_Dgram::ACE_SOCK_Dgram
431     ACE_SOCK_Dgram::open
432   If ipv6_only is 0/false (the default) the socket will accept
433   both IPv6 and IPv4 connections/datagrams. If ipv6_only is
434   1/true the socket will only accept IPv6.
435   This behavior only applies when ACE_HAS_IPV6 is true and the
436   local-side IP address is the generic localhost IP address.
438 . Integrated some changes from XSC into XML Utils
440 . Enable ACE_HAS_CPP11 when we have clang with C++11 enabled
442 . Added support for cross compiling using MinGW on a Linux host
444 . Added support for FreeBSD 11
446 . Fixed issue ACE_Singleton was broken after ACE::fini, ACE::init (GitHub #554)
448 USER VISIBLE CHANGES BETWEEN ACE-6.4.5 and ACE-6.4.6
449 ====================================================
451 . Fixed some Codacy and C++ Core guidelines reported issues
453 . VxWorks 7 (SR0510) support
455 . Support make install on newer Apple MacOS versions
457 USER VISIBLE CHANGES BETWEEN ACE-6.4.4 and ACE-6.4.5
458 ====================================================
460 . Add support for OpenSSL 1.1. ACE users on Windows have
461   to add openssl11=1 to their default.features file so
462   that the correct OpenSSL library names are used.
464 USER VISIBLE CHANGES BETWEEN ACE-6.4.3 and ACE-6.4.4
465 ====================================================
467 . Enhanced support for Embarcadero C++ Builder 10.2 (Tokyo).
468   Support for bcc32/bcc64/bcc32c has been enhanced and by
469   default the clang based versions are used. When the old
470   bcc32 has to be used set the CLASSIC environment variable
471   to 1. At this moment runtime test results for bcc64/bcc32c
472   show some structural problems
474 . Add support for Oracle Studio 12.5
476 . Removed usage of ACE_REGISTER and register keyword because
477   they trigger deprecated warnings with newer gcc and clang
478   versions
480 . Add support for gcc 7
482 . Enhanced Android support
484 . Fix ACE_INET_Addr::set(domain_name, AF_UNSPEC) to be set to IPv4 address
485   when IPv6 is enabled and the domain_name could be resolved to IPv4 address.
487 USER VISIBLE CHANGES BETWEEN ACE-6.4.2 and ACE-6.4.3
488 ====================================================
490 . Enhancements for Visual Studio 2017
492 . Enhancements for Android
494 USER VISIBLE CHANGES BETWEEN ACE-6.4.1 and ACE-6.4.2
495 ====================================================
497 . Added support for Mac OS X on x86_64 to get the network adapter
498   address in ACE_OS::getmacaddress().
500 . Added support for the December 2016 updates to VxWorks 7.
502 USER VISIBLE CHANGES BETWEEN ACE-6.4.0 and ACE-6.4.1
503 ====================================================
505 . The ACE_DEBUG environment variable can again be used to set the
506   internal debug flag.  This used to work but was mistakenly changed
507   in an earlier release.
509 . Corrected usage of ACE_Singleton and template instantation to be
510   valid C++ (GCC cross-compiler arm-linux-gnueabihf-g++ requires it).
512 . Added support for detecting the Mac OS X version when configured with
513   ace/config-macosx.h and include/makeinclude/platform_macosx.GNU.
514   Also on 10.11 El Capitan, use rpath to avoid a problem with SIP.
516 . Added support for Android NDK r12b (Platform API 24) and improved
517   cross compilation support
519 USER VISIBLE CHANGES BETWEEN ACE-6.3.4 and ACE-6.4.0
520 ====================================================
522 . Added support for obtaining the micro version number
524 . Reduced include of ace/Auto_Ptr.h in header files
526 USER VISIBLE CHANGES BETWEEN ACE-6.3.3 and ACE-6.3.4
527 ====================================================
529 . ACE_SSL_Context::set_mode() can no longer be used to select a specific
530   SSL/TLS protocol version, use ACE_SSL_Context::filter_versions() for that.
531   This follows general advice by the OpenSSL project to go through
532   SSL_CTX_set_options() to limit the list of protocols available. The purpose
533   of ACE_SSL_Context::set_mode() is now limited to explicitly restricting
534   behaviour to client or server (defaults to both).
536 . Improve Oracle Studio support
538 . CIAO and DAnCE are forked to their own github repositories
539   and are not part anymore of the ACE+TAO release packages
541 . Fixed several Coverity reported issues
543 . Added ACE configuration for FACE safety profiles (see config-face-safety.h).
544   FACE, or Future Airborne Capability Environment http://www.opengroup.org/face,
545   specifies a restricted subset of OS functions and rules for controlling
546   dynamic memory allocation.  When built in this configuration on a platform
547   that supports it, ACE conforms to the FACE requirements.
549 . ACE uses new netdb.h functions (getaddrinfo/getnameinfo) if they are
550   available, in place of deprecated functions (gethostbyname/addr).
552 USER VISIBLE CHANGES BETWEEN ACE-6.3.2 and ACE-6.3.3
553 ====================================================
555 . Visual Studio 2015 has adequate C++11 support, because of this
556   ACE_HAS_CPP11 is now defined with this compiler. A large amount
557   of warnings given by this new compiler have been fixed
559 . As part of the release script we generate vc12 and vc14
560   solution files which are packaged as part of the release
562 . Added support for VxWorks 7 (kernel mode and RTP).
563   See the comments in include/makeinclude/platform_vxworks7.0.GNU for details.
565 . Ended daily maintenance for OpenVMS
567 . Fixed a defect in ACE_INET_Addr when there is a non-empty interface
568   address list and set_port_number() is called.
570 USER VISIBLE CHANGES BETWEEN ACE-6.3.1 and ACE-6.3.2
571 ====================================================
573 . Added support for std::chrono to ACE_Time_Value. It's
574   now possible to construct an ACE_Time_Value with a
575   std::duration. Also streaming, adding and substracting
576   an ACE_Time_Value to and from a std::duration is
577   supported. Please see tests/Chrono_Test.cpp for more
578   details.
580 . Allow ACE_INET_Addr to hold all addresses associated with a hostname. The
581   set of addresses always has a "current" address which is accessed by the
582   usual "get"-type methods on the class. Two new methods are added to deal
583   with multiple addresses:
584     - bool next (void): makes the next available address the "current" one.
585       Returns false if there are no more addresses.
586     - void reset (void): resets the iteration mechanism to be able to examine
587       all of the addresses again.
588   ACE_Multihomed_INET_Addr has also been enhanced so that the get_addresses()
589   methods copy all available addresses related to each name.
591 . The ACE_Addr::set_addr (void*, int) signature was changed to
592   ACE_Addr::set_addr (const void*, int). All classes that inherit from
593   ACE_Addr also have the same change. This affects ACE_ATM_Addr, ACE_Addr,
594   ACE_INET_Addr, ACE_MEM_Addr, ACE_Netlink_Addr, ACE_SPIPE_Addr, ACE_UNIX_Addr.
595   Any user-written classes derived from ACE_Addr will also need to change to
596   match the new signature for virtual method dispatch to continue working
597   properly in all cases.
599 . Added the class ACE_CDR::Fixed (CDR_Base.h) for CDR's fixed-point decimal
600   data type which stores up to 31 decimal digits and a sign bit.
602 USER VISIBLE CHANGES BETWEEN ACE-6.3.0 and ACE-6.3.1
603 ====================================================
605 . ACE is now hosted on github (https://github.com/DOCGroup/ATCD).
606   As part of the release process we now generate a ChangeLog
607   for each release which is stored in the ChangeLogs directory
609 . ACE has been ported to OpenBSD 5.6. Old versions of
610   OpenBSD are no longer supported.
612 USER VISIBLE CHANGES BETWEEN ACE-6.2.8 and ACE-6.3.0
613 ====================================================
615 . ACE now supports Oracle Solaris Studio 12.4 on Solaris.
617 . New config macros were added:
618   ACE_DISABLE_MKTEMP:  Disables the availability of ACE_OS::mktemp().
619   ACE_DISABLE_TEMPNAM: Disables the availability of ACE_OS::tempnam().
620   These can be added to your $ACE_ROOT/ace/config.h to disable these
621   wrappers which are considered to be a potential security risk. Disabling
622   one or both will also disable the following:
623     - ACE_FILE_Addr::set () with the 'any' address specified.
624     - ACE_MMAP_Memory_Pool use of the 'unique' option.
626 . Reduced size of all doxygen documentation by changing the
627   type of diagrams shown
629 . Removed Windows specific workarounds from ACE_OS::setsockopt, as a
630   result SO_REUSEPORT is not defined anymore on Windows and SO_REUSEADDR
631   is passed directly to the OS
633 . By adding a 'specific' section to a MPC (base) project it is now possible
634   to have object file output directories per project for GNUACE projects.
635   The following should be added to MPC projects (bugzilla #3868):
636   specific(gnuace) {
637     build_dir_per_project=1
638   }
640 . ACE_Asynch_Write_File will now correctly accept non-socket (file, TTY ..)
641   handles (bugzilla #3762 and #3992)
643 . Fixes for VxWorks 6.9
645 USER VISIBLE CHANGES BETWEEN ACE-6.2.7 and ACE-6.2.8
646 ====================================================
648 . Add new ACE::make_event_handler<T>() which is similar
649   to std::make_shared but than for allocation of ACE
650   event handlers. This template method is only enabled
651   when ACE_HAS_CPP11 has been defined, which is set
652   automatically when a C++ compiler with adequate
653   C++11 support is used. Also ACE_Event_Handler_var is
654   extended with some C++11 specific operations
656 . For all reactor types calling cancel_timer with a
657   nullptr is now allowed, will result in a return of 0
659 . ACE_DLL and ACE_DLL_Manager have been extended with
660   the support to retrieve any dynamic loader errors
662 USER VISIBLE CHANGES BETWEEN ACE-6.2.6 and ACE-6.2.7
663 ====================================================
665 . Added configuration files for Microsoft Visual Studio 2014
667 . Added configuration files for MacOSX Yosemite
669 . Added configuration files for IBM AIX XL C++ 12.1
671 USER VISIBLE CHANGES BETWEEN ACE-6.2.5 and ACE-6.2.6
672 ====================================================
674 . Resolved several data races reported by Intel Inspector XE
676 . Added optional socket connection optimization for Windows
678 . Improve functionality and stability of running tests on
679   Android Virtual Device (AVD).
681 USER VISIBLE CHANGES BETWEEN ACE-6.2.4 and ACE-6.2.5
682 ====================================================
684 . Added the ability to build RPMs for just ACE, using an ACE-src tarball.
685   To do this add "--without tao" to the rpmbuild command line.
687 . Added support for Embarcadero C++Builder XE5 using
688   bcc32 in debug and release mode
690 . Added support for Embarcadero C++Builder XE6 using
691   bcc32 in debug and release mode
693 . When Intel C++ 2013 SP1 Update 2 is used with C++11 enabled
694   as compiler feature now also ACE_HAS_CPP11 will be defined,
695   this compiler is now able to compile all our C++11 feature
696   tests
698 . Fixed several boundary bugs in the ACE RLE Compressor
700 USER VISIBLE CHANGES BETWEEN ACE-6.2.3 and ACE-6.2.4
701 ====================================================
703 . Added support for FC20 and ended maintenance for FC19
705 . Extended C++11 feature test suite
707 . Improved support for MingW64
709 . Improvements to IPv6 support on Windows
711 USER VISIBLE CHANGES BETWEEN ACE-6.2.2 and ACE-6.2.3
712 ====================================================
714 . The ACE_OS::thr_join() method will detect if the thread to be waited on is
715   the calling thread and avert that deadlock. The support needed for this
716   method is available at Vista/Windows Server 2003 and higher; to enable
717   the deadlock prevention, compile ACE with _WIN32_WINNT=0x0502 or higher.
719 . Ended maintenance and support for FC12 CEEL
721 . Further improvements of the Android port: Added new define
722   ACE_HAS_EXPLICIT_TEMPLATE_CLASS_INSTANTIATION and related macros
723   ACE_SINGLETON_TEMPLATE_INSTANTIATION and ACE_SINGLETON_TEMPLATE_INSTANTIATE
724   providing a cleaner way to support explicit template (static member or class)
725   instantiation.
727 ' Improvements of the test framework for running tests in a mixed environment
728   where different targets run on different physiscal devices (possibly having
729   different OS).
731 USER VISIBLE CHANGES BETWEEN ACE-6.2.1 and ACE-6.2.2
732 ====================================================
734 . The max_len argument to ACE_Process::command_line_buf changed from int*
735   to size_t*. This corrects a mismatch between the argument type and the
736   data member in ACE_Process from which the value comes.
738 . Removed some include files from ACE.h. These were not required for ACE.
739   The removed includes are OS_NS_math, Flag_Manip, Handle_Ops, Lib_Find,
740   Init_ACE, Sock_Connect.h. You may have to explicitly add one of these
741   in your own code to restore compiling.
743 . Further improvements of the Android port, still work in progress.
745 USER VISIBLE CHANGES BETWEEN ACE-6.2.0 and ACE-6.2.1
746 ====================================================
748 . Added support for Fedora 19, ended daily maintenance
749   for Fedora 17 and 18
751 . Added support for Embarcadero C++BuilderXE4 using
752   bcc32 in debug and release mode
754 . Improved support for Android
756 USER VISIBLE CHANGES BETWEEN ACE-6.1.9 and ACE-6.2.0
757 ====================================================
759 . None
761 USER VISIBLE CHANGES BETWEEN ACE-6.1.8 and ACE-6.1.9
762 ====================================================
764 . Added MinGW64 as supported platform
766 . Added support for GCC 4.8.0
768 USER VISIBLE CHANGES BETWEEN ACE-6.1.7 and ACE-6.1.8
769 ====================================================
771 . Small bug fixes
773 USER VISIBLE CHANGES BETWEEN ACE-6.1.6 and ACE-6.1.7
774 ====================================================
776 . Integrated several patches to simplify Debian/Ubuntu
777   packaging
779 USER VISIBLE CHANGES BETWEEN ACE-6.1.5 and ACE-6.1.6
780 ====================================================
782 . Added new event and sema initialization methods to OS_NS_Thread
783   to allow passing pre-initialized condition attributes providing
784   basic support for using time policies in ACE Event classes.
786 . Added TIME_POLICY support to ACE_Event classes to allow for
787   monotonic timer support for ACE Events.
789 . Added new regression test:
790   Monotonic_Manual_Event_Test
792 USER VISIBLE CHANGES BETWEEN ACE-6.1.4 and ACE-6.1.5
793 ====================================================
795 . When a ACE_Event_Handler registered for signals is unregistered,
796   whether by unregistering, returning -1 from handle_signal(), or by
797   the reactor closing, the ACE_Event_Handler::handle_close() hook will
798   be called. The close_mask passed will be ACE_Event_Handler::SIGNAL_MASK.
799   In previous versions, handle_close() would only be called when the
800   handle_signal() callback returned -1. This resolves Bugzilla #2368.
802 . Some initial ACE unit tests to validate the C++11 support of various
803   compilers
805 . Added support for OpenSuSE 12.2
807 USER VISIBLE CHANGES BETWEEN ACE-6.1.3 and ACE-6.1.4
808 ====================================================
810 . Added a new ACE_Time_Value derived template class (Time_Value_T.h):
812   template <class TIME_POLICY> class ACE_Time_Value_T
814   This template class overloads 4 new virtual methods from
815   the ACE_Time_Value base class to provide time policy aware
816   time values:
817   to_relative_time ()
818   to_absolute_time ()
819   now ()
820   duplicate ()
822 . Updated time policy classes to return ACE_Time_Value_T<> instantiations
823   for the corresponding time policy instead of 'common' time values.
825 . Added new ACE_Monotonic_Time_Policy (Monotonic_Time_Policy.h).
826   This class provides a monotonic time source for supported
827   platforms (Windows and POSIX platforms providing the required
828   clock_gettime() time source; currently verified for Windows and
829   Linux)
831 . Updated OS_NS_Thread to use the new time policy support in ACE_Time_Value
832   for (relative) time calculations and added new ACE_OS::condattr_setclock ()
833   method.
835 . Added TIME_POLICY support to ACE_Condition_Attributes to allow for
836   monotonic timer support for ACE_Condition.
838 . Added TIME_POLICY support to ACE_Message_Queue-s, ACE_Task-s and
839   related classes to enable support for monotonic timers in the timed
840   wait methods (ACE_Condition based). See docs/ACE-monotonic-timer.html
841   for how to use this.
843 . Added two new regression tests:
844   Monotonic_Task_Test
845   Monotonic_Message_Queue_Test
846   and updated the Bug_4055_Regression_Test to a fixed state.
848 USER VISIBLE CHANGES BETWEEN ACE-6.1.2 and ACE-6.1.3
849 ====================================================
851 . Added support for Oracle Solaris Studio 12 Update 3 (SunCC 5.12)
853 . Added new XML_Utils library which comes from DAnCE but is now also used
854   by OpenDDS
856 USER VISIBLE CHANGES BETWEEN ACE-6.1.1 and ACE-6.1.2
857 ====================================================
859 . Added compile time support for Windows CE 7, no runtime testing has
860   been performed
862 . The High Res Timer global scale factor on Windows is now 64bit, see bugzilla
863   3703 for the background of this. If you use the gsf in your code, use the
864   new ACE_High_Res_Timer::global_scale_factor_type type trait to not get
865   any conversion warnings
867 . Removed Tandem NSK v2/v3 support which resulted in cleanup throughout all
868   code. The emulations for ACE_INT64/ACE_UINT64 have been removed because no
869   platform is using them anymore
871 USER VISIBLE CHANGES BETWEEN ACE-6.1.0 and ACE-6.1.1
872 ====================================================
874 . Minor bug fixes
876 USER VISIBLE CHANGES BETWEEN ACE-6.0.8 and ACE-6.1.0
877 ====================================================
879 . Added compilation support for VxWorks 6.9, no runtime
880   testing has been performed
882 . Added ACE Run-length encoding compressor
884 . Fixed several Coverity reported issues
886 USER VISIBLE CHANGES BETWEEN ACE-6.0.7 and ACE-6.0.8
887 ====================================================
889 . Added support for MPC's new feature that creates dependency files for IDL
890   files when generating '-type gnuace' projects. Turned off by default, it
891   can be enabled in a features file or on the command line with
892   '-features ace_idl_dependencies=1'.
894 USER VISIBLE CHANGES BETWEEN ACE-6.0.6 and ACE-6.0.7
895 ====================================================
897 . Added a new method to ACE_Atomic_Op<LOCK, TYPE>, TYPE exchange (TYPE newval)
898   which does an atomic exchange of the new value with ACE_Atomic_Op's value
899   and returns the old value. The tests/Atomic_Op_Test.cpp test program has a
900   test case that exemplifies its usage; see the Exchange_Tester class.
902 . Added a new feature to timer queue templates classes: TIME_POLICY.
903   This feature is specified through a new template argument and provides the
904   timer queue with a policy for a timer (time of day) value. This feature is
905   intended to replace (in time) the gettimeofday setter method which has been
906   marked @deprecated. For now backwards compatibility is guaranteed.
907   The TIME_POLICY feature provides flexibility with regards to providing a timer
908   source to the timer queues as well as the possibility for a fully optimized
909   calling path.
910   A number of standard time policies are provided in ace/Time_Policy.h.
911   The tests/Timer_Queue_Test.cpp has been updated to reflect and exemplify these
912   changes.
914 . Added the TIME_POLICY feature also to countdown time class which has now
915   become a template (ace/Countdown_Time_T.h)
917 . Initial support for Microsoft Visual Studio 11
919 . Increased overall code quality by using Coverity and Klocwork
921 USER VISIBLE CHANGES BETWEEN ACE-6.0.5 and ACE-6.0.6
922 ====================================================
924 . Removed autoconf support, only traditional way of
925   compilation is shipped from now
927 . Add support for RHEL 6.1 64bit
929 USER VISIBLE CHANGES BETWEEN ACE-6.0.4 and ACE-6.0.5
930 ====================================================
932 . Improved support for Android and added the ability to run all ACE/TAO tests
933   automatically using the Android emulator
935 USER VISIBLE CHANGES BETWEEN ACE-6.0.3 and ACE-6.0.4
936 ====================================================
938 . Removed support for C++ Builder
940 . Added support for building with the Android NDK, at least r5c. This
941   is currently available for linux host platforms.
943 USER VISIBLE CHANGES BETWEEN ACE-6.0.2 and ACE-6.0.3
944 ====================================================
946 . Added support for GCC 4.6
948 USER VISIBLE CHANGES BETWEEN ACE-6.0.1 and ACE-6.0.2
949 ====================================================
951 . The ACE_wrappers/ace/OS.h file has been restored in order to ensure
952   build-time compatibility with older ACE versions. Its use will still
953   cause your build to incur more processing time than using the needed
954   ace/OS_NS_*.h files; however, you should be able to build OS.h-including
955   code without needing to replace it with OS_NS_* includes.
957 . Improved and simplified QNX support
959 . Changed rand_r() and getpwnam_r() to conform Single UNIX Specification.
961 . Fixed performance of send_v on windows when individual iovec elements
962   are particularly large.
964 USER VISIBLE CHANGES BETWEEN ACE-6.0.0 and ACE-6.0.1
965 ====================================================
967 . Added support for MinGW with GCC 4.5
969 USER VISIBLE CHANGES BETWEEN ACE-5.8.3 and ACE-6.0.0
970 ====================================================
972 . Changed the string format produced by ACE::timestamp() from the ctime
973   format "Day Mon dd hh:mm:ss yyyy" to ISO-8601 yyyy-mm-dd hh:mm:ss.mmmmmm.
974   This makes the time easier to collate and removes any dependence on locale.
975   The change affects the output from ACE_Log_Msg's %D format and both VERBOSE
976   and VERBOSE_LIGHT timestamps in addition to application-made direct calls
977   to ACE::timestamp().
979 . Removed GCC < 3 support
981 . A new build system hook was added for users to include site-private rules
982   in a build. If a file named "rules.private.GNU" in located in any build
983   directory it will get included from
984   $ACE_ROOT/include/makeinclude/rules.local.GNU. The "private_rules_file"
985   make variable can be set to override the name and/or location of the file.
986   If no such rules file exists, its absence is silently ignored. This
987   facility can be used, for example, to integrate a specialized code checker
988   into the build process.
990 USER VISIBLE CHANGES BETWEEN ACE-5.8.2 and ACE-5.8.3
991 ====================================================
993 . Two new methods were added to ACE_Pipe: close_read() and close_write().
994   These methods can be used to close individual pipe handles.
996 . The ACE::handle_ready() family of methods was changed to prefer using
997   poll() over select() on platforms where poll() is available. This
998   preference was previously only used if ACE_HAS_LIMITED_SELECT was set.
999   The ACE_HAS_LIMITED_SELECT choice is removed, making ACE_HAS_POLL the
1000   setting that switches this preference. The driving reason for this
1001   is that if select() is called to detect changes on a handle whose
1002   values falls outside that which can safely be stored in an fdset,
1003   the handle-setting macros/functions will set/clear bits outside
1004   of the fdset. This results in very weird memory changes, often in
1005   the stack, which are very hard to diagnose. poll()'s operation
1006   does not suffer from this affect. With the growing use of large
1007   numbers of handles and use of ACE_Dev_Poll_Reactor on Linux,
1008   the rate at which this problem was cropping up was increasing.
1010 . Added a simple helper ACE::is_equal() which compares equality of two
1011   objects without using operator==. This is useful for comparing floating
1012   point values.
1014 . Removed all deprecated methods, arguments, files, classes, macros and
1015   anything else we kept for years.
1017 . Removed Irix/Tru64/SCO/Uniware/Cray support
1019 . ACE_Pair has been removed. Users should now use std::pair.
1021 . This is the last micro release that will work with GCC < 3, after x.8.3
1022   support for GCC < 3 will be removed
1024 USER VISIBLE CHANGES BETWEEN ACE-5.8.1 and ACE-5.8.2
1025 ====================================================
1027 . Added support for the Microsoft Visual Studio 2010 IDE (vc10)
1029 . Removed complete support for emulated C++ exceptions
1031 USER VISIBLE CHANGES BETWEEN ACE-5.8.0 and ACE-5.8.1
1032 ====================================================
1034 . Added support for Microsoft Visual Studio 2010 using nmake
1036 . Reduced the amount of doxygen pages generated, the original settings caused
1037   a doxygen generated html package of 1.4GB which was way too large
1039 . Extended ACE INet addon library with:
1040   * HTTP Basic Authentication
1041   * SSL/HTTPS support.
1042   * Proxy CONNECT tunneling.
1044 USER VISIBLE CHANGES BETWEEN ACE-5.7.9 and ACE-5.8.0
1045 ====================================================
1047 . There are two new ACE_Time_Value methods for getting and setting millisecond
1048   values to/from ACE_UINT64 values:
1050       ACE_UINT64 ACE_Time_Value::get_msec () const
1051       void ACE_Time_Value::set_msec (const ACE_UINT64 &ms)
1053   The former is a replacement for the existing msec(ACE_UINT64&) methods that
1054   are "getter" methods whose signatures look confusingly like "setters". See
1055   Bugzilla #3336 for the history behind this change.
1057   The latter is for consistency and clarity.
1059 . Added ACE INet addon library for Inet protocol clients (and possibly
1060   servers at some point) like http://, ftp:// etc.
1061   The library implements standard C++ iostream wrapper classes for
1062   ACE Svc_Handler and Reactor based input/output handling, URL classes
1063   and protocol handler classes.
1064   NOTE: This is work in progress! There is no guarentee that the API
1065   won't change in the next few releases.
1066   Protocol handling is currently restricted to client side download
1067   requests for HTTP and FTP.
1068   Handling for upload requests should be added in the near future as well
1069   as HTTP Basic Authentication.
1071 USER VISIBLE CHANGES BETWEEN ACE-5.7.8 and ACE-5.7.9
1072 ====================================================
1074 . ACE's default makefiles (traditional ACE/GNU, not autoconf/automake)
1075   now support installation with "make install".
1076   Please see the ACE-INSTALL.html file for instructions.
1078 . Support for the ARCH make variable has been enhanced to apply to executables
1079   (in addition to libraries and object files), and the ARCH feature has been
1080   integrated into the MPC-generated makefiles (to work with MPC's requires
1081   and avoids features).
1083 USER VISIBLE CHANGES BETWEEN ACE-5.7.7 and ACE-5.7.8
1084 ====================================================
1086 . ACE now uses GCC builtin Atomic instructions for short,
1087   unsigned short, long, unsigned long, int, unsigned int,
1088   and bool. This makes our Atomic_Op around 7 times faster
1090 . ACE Service Configuration Framework now process first service
1091   configuration files and then command-line directives. Thus if
1092   application uses both service configuration files and command-line
1093   directives then the command-line directives may override results of
1094   directives in the configuration files. At the same time if the
1095   application uses only the default svc.conf file and command-line
1096   directives then the directives from svc.conf can not override
1097   results of the user provided command-line directives.
1099 . ACE_Dev_Poll_Reactor now dispatches notifications in only one thread at
1100   a time. This brings notification handling more in line with behavior in
1101   other Reactor implementations.
1103 USER VISIBLE CHANGES BETWEEN ACE-5.7.6 and ACE-5.7.7
1104 ====================================================
1106 . Integrated fix for bug 3104 and regression test for
1107   interval timers.
1109 . Added support for GCC builtin Atomic instructions which
1110   are enabled with GCC >= 4.1 for PPC32/PPC64/IA64
1112 . Improved autoconf support for debian
1114 . Added support for -mcpu and -mtune. Add TCPU=.. to your
1115   environment/platform_macros.GNU to specify you cpu and
1116   than add cpumodelflag=1 and/or tunemodelflag=1. Using
1117   this with IBM Cell increased the performance significantly
1119 USER VISIBLE CHANGES BETWEEN ACE-5.7.5 and ACE-5.7.6
1120 ====================================================
1122 . Added support for iPhone/iPod Touch/iPad. The following
1123   environment variables are needed:
1125   IPHONE_TARGET, should be set to either SIMULATOR or
1126   HARDWARE. Set to HARDWARE if you want to deploy
1127   on the iPhone/iPod Touch/iPad device.
1129   IPHONE_VERSION, should be set to 3.1.2 or 3.2. One can
1130   set the version to any future or past versions, but
1131   only 3.1.2 and 3.2 have been tried.
1133   Note that one has to compile ACE/TAO statically as
1134   it is believed that the iPhone OS does not support
1135   dynamic loading of external libraries. The usual
1136   procedure of cross compiling ACE/TAO applies
1137   (such as setting HOST_ROOT environment variable).
1139 . Added support for Embarcadero C++ Builder 2010
1141 . Added option to print a given ACE_Time_Value in the log
1142   message instead of system supplied timestamp as in %T
1143   and %D.
1144   The option is implemented as a variant of the %D/%T
1145   options by using the '#' flag character like '%#D' or
1146   '%#T'. When using this flag an ACE_Time_Value pointer is
1147   expected in the argument list supplied with the log message.
1148   This fixed Bugzilla #3221.
1150 . Fixed problems with ACE_INET_Addr::is_multicast() on
1151   little endian platforms. This fixed bugzilla #3729.
1153 . Added compilation support for VxWorks 6.8, no runtime
1154   testing has been performed
1156 USER VISIBLE CHANGES BETWEEN ACE-5.7.4 and ACE-5.7.5
1157 ====================================================
1159 . Added MacOSX Snow Leopard support
1161 . Added strsignal() wrapper
1163 . Improved LynxOS support
1165 . Updated Interix port
1167 . Fixed MinGW compilation problems
1169 USER VISIBLE CHANGES BETWEEN ACE-5.7.3 and ACE-5.7.4
1170 ====================================================
1172 . ACE_CDR::consolidate now returns an int, 0 is ok, -1 is failure
1174 . Fixed a bug in the realclean feature of the GNU makefiles
1176 . Improved Sun Studio for Linux support
1178 . Improved OpenBSD support
1180 USER VISIBLE CHANGES BETWEEN ACE-5.7.2 and ACE-5.7.3
1181 ====================================================
1183 . C++ Builder 2009 Update 3 is the only C++Builder that is supported, older
1184   and newer compilers are not supported anymore
1186 . Made final changes for the CEGCC port
1188 . Added a set of tests to validate C++ compiler and the stl implementation
1189   they ship.
1191 . HP-UX PARISC aCC < 3.80 are deprecated and can't be used anymore. Upgrade
1192   to aCC 3.80 or newer
1194 USER VISIBLE CHANGES BETWEEN ACE-5.7.1 and ACE-5.7.2
1195 ====================================================
1197 . Borland C++ makefiles aren't shipped anymore as part of the release
1198   but have to be generated by the user
1200 . Refactored gperf to have its own shared library so that we can reuse
1201   that in TAO
1203 . Added support for SuSE Enterprise 10
1205 . ACE_Configuration_Heap::open() now returns -1 with errno EBUSY if it is
1206   called multiple times. Previous versions would allow multiple calls to
1207   open() but leak resources.
1209 USER VISIBLE CHANGES BETWEEN ACE-5.7.0 and ACE-5.7.1
1210 ====================================================
1212 . Added support for Sun Studio 12 Update Pack 1
1214 . Fixed compile problems when using Windows CE x86 release mode
1216 . Fixed compile problems for FreeBSD
1218 USER VISIBLE CHANGES BETWEEN ACE-5.6.9 and ACE-5.7.0
1219 ====================================================
1221 . Added support for the VxWorks vxAtomicLib which is available with VxWorks 6.6
1222   and newer. If you don't want to use this library undef ACE_HAS_VXATOMICLIB
1223   in your config.h file
1225 . Added support for C++ Builder 2009 Update 3
1227 . Added support for ACE/TAO using the CEGCC project
1229 . Added support for upcoming Fedora 11 and OpenSuSE Factory
1231 USER VISIBLE CHANGES BETWEEN ACE-5.6.8 and ACE-5.6.9
1232 ====================================================
1234 . Removed Borland/CodeGear C++ Builder 2007 support.  If you'd like to
1235   fund this support please let us know.
1237 . Removed VxWorks 5.5.x, 6.2, and 6.3 support.  If you'd like to fund
1238   this support please let us know.
1240 . Improved Unicode support.
1242 . Added support for the native Windows Vista and Windows Server 2008
1243   condition variables. These has to be enabled at compile time, and when
1244   enabled the application can only run on Vista or Server 2008.  Add
1245   ACE_HAS_WTHREADS_CONDITION_VARIABLE to your config.h file to enable
1246   these
1248 . Fixed a bug when trying to read a file of 1 byte when unicode is
1249   enabled
1251 . Improved the Windows CE port
1253 . Fixed several Klocwork reported issues
1255 . Added support for MinGW 3.15
1257 . Added support for Incredibuild, which is an MSVC++ feature that
1258   optimizes compiles via distributing builds.
1260 USER VISIBLE CHANGES BETWEEN ACE-5.6.7 and ACE-5.6.8
1261 ====================================================
1263 . Added a new function ACE::isdotdir() which determines if a specified
1264   pathname is "dot dir" (ie. "." or ".."). ACE::isdotdir() is significantly
1265   faster than pair of strcmp() calls.
1267 . Last micro release that is maintained for Borland/CodeGear C++
1268   Builder 2007 and Intel C++ on Windows.
1270 . Fixed crash when ACE thread tries to inherit the logging attributes
1271   from non ACE threads.
1273 . Fixed many small compile and test errors that occur on some platforms.
1275 . Fixed log output formatting on some platforms.
1277 . Bugs fixed:  2748, 3164, 3480, 3494, 3502, 3541, 3542, 3544, 3557.
1279 USER VISIBLE CHANGES BETWEEN ACE-5.6.6 and ACE-5.6.7
1280 ====================================================
1282 . Changed the automake build's feature test for a "usable" config
1283   to warn on failure instead of exiting with an error.  This should
1284   make it easier to diagnose configure failures, as the script will
1285   now generate a config.h file even when the test fails.
1287 . Removed borland MPC template, use the bmake template from now
1289 . Added Windows Mobile 6 support and improved the WinCE port
1291 . Removed BCB6 and BCB2006 support
1293 . Added BCB2009 MPC template
1295 . Updated stat struct on Windows CE to match the stat struct on other
1296   platforms so that application code can be written portable
1298 . Added new ACE_OS wrappers: raise, atof, atol, isblank, isascii,
1299   isctype, and iswctype
1301 . Added ACE_OS wrapper for narrow-char version of strtoll.
1303 . ACE_OS wrappers for wide-char versions of strtol, strtoul,
1304   strtoll, and strtoll.
1306 . Added Visual Studio 2010 (vc10) support
1308 . Added a new feature for the "Traditional Make" build facility to allow
1309   building for multiple architectures out of a single source directory.
1310   To use this facility, set the ARCH make variable. The ARCH value will be
1311   used to add a subdirectory layer below the source directory where the
1312   traditional .shobj, .obj, etc. directories will be placed.
1314 . Added support for HP-UX 11iv3 on Integrity using aC++
1316 . ACE (and TAO) can now be built using GNU make and the Microsoft Visual C++
1317   compiler and linker.  See include/makeinclude/platform_win32_msvc.GNU for
1318   more details.
1320 . Added support for FC10
1322 USER VISIBLE CHANGES BETWEEN ACE-5.6.5 and ACE-5.6.6
1323 ====================================================
1325 . Added an option to the ACE_Process_Options class to use a wchar_t
1326   environment buffer on Windows.
1328 . A new configure option, --enable-rcsid, was added to the autoconf build.
1329   This is used to embed RCS IDs in object files.
1331 . A new method was added: void ACE_Time_Value::msec (ACE_UINT64&)
1332   This method, like the existing msec(ACE_UINT64&)const method, obtains the
1333   time value in milliseconds and stores it in the passed ACE_UINT64 object.
1334   This method was added so that msec(ACE_UINT64&) can be called on both
1335   const and non-const ACE_Time_Value objects without triggering compile errors.
1336   Fixes Bugzilla #3336.
1338 . Added ACE_Stack_Trace class to allow users to obtain a stack trace
1339   within their application on supported platforms. A new conversion
1340   character, the question mark, was added to ACE_Log_Msg for stack
1341   trace logging.
1343 . Added iterator support to ACE_Message_Queue_Ex class. The resulted in
1344   the addition of ACE_Message_Queue_Ex_Iterator class and
1345   ACE_Message_Queue_Ex_Reverse_Iterator class.
1347 . Renamed gperf to ace_gperf to prevent clashes with the regular gperf
1348   tool that is available in linux distributions
1350 . Added support for FC9
1352 . Added support for OpenSuSE 11.0
1354 . Improved support for GCC 4.2 and 4.3
1356 . Added support for CodeGear C++ Builder 2009
1358 USER VISIBLE CHANGES BETWEEN ACE-5.6.4 and ACE-5.6.5
1359 ====================================================
1361 . Added new Monitoring lib that can be used to store and retrieve
1362   counters. This is disabled by default because it is not 100%
1363   finished yet, with the next release it will be enabled by default
1365 . Fixed bug in ACE_Service_Config when it was used from a thread
1366   not spawned by ACE
1368 . Add VxWorks 6.x kernel mode with shared library support to ACE
1370 . Extended the implementation of Unbounded_Set, which has been
1371   renamed Unbounded_Set_Ex, to accept a second parameter which is
1372   a comparator that implements operator() which returns true if
1373   the items are equivalent.  Unbounded_Set has been reimplemented
1374   in terms of Unbounded_Set_Ex using a comparator that uses operator==,
1375   which captures the previous behavior.
1377 . Added support for Intel C++ on MacOSX
1379 USER VISIBLE CHANGES BETWEEN ACE-5.6.3 and ACE-5.6.4
1380 ====================================================
1382 . Reworked the relationship between ACE_Service_Config and
1383   ACE_Service_Gestalt
1385 . Improved autoconf support
1387 . Improved AIX with gcc support
1389 . Improved OpenVMS support
1391 . Improved VxWorks support
1393 USER VISIBLE CHANGES BETWEEN ACE-5.6.2 and ACE-5.6.3
1394 ====================================================
1396 . Deprecated Visual Age 5 and older
1398 . Closed a rare race condition hole whereby ACE_Atomic_Op<> function
1399   pointers would not be fully initialized prior to use.  See bugzilla
1400   3185 for details.
1402 . Tweaks to support MacOS X Leopard (10.5 and 10.5.1) on Intel
1404 . Fixed compile problems with MinGW with GCC 4.2. Do note that we do see
1405   much more test failures then when using GCC 3.4.
1407 . Changed to use synchronous exception handling with msvc 8/9 which is the
1408   default. Asynchrous exception handling does catch access violations but
1409   it leads to lower performance and other problems. See also bugzilla 3169
1411 . Make ace_main extern C with VxWorks so that it doesn't get mangled
1413 . Fixed compile errors and warnings for VxWorks 6.6
1415 . Added an MPC generator for the WindRiver Workbench 2.6 which is shipped
1416   with VxWorks 6.4
1418 . Added support for CodeGear C++ Builder 2007 with December 2007 update
1419   installed
1421 . Added support for VxWorks 5.5.1
1423 . Implemented the const reverse iterator for ACE_Hash_Map_Manager_Ex
1425 . Increased support for using ACE_Hash_Map_Manager_Ex with STL <algorithm>
1426   functions based on latest standard C++ draft
1428 USER VISIBLE CHANGES BETWEEN ACE-5.6.1 and ACE-5.6.2
1429 ====================================================
1431 . ACE-ified the UUID class, which will change user applications slightly.
1433 . Added support for Sun Studio 12
1435 . Added support for Intel C++ 10.1
1437 . Fixed runtime problems with VxWorks 6.x in kernel mode, several improvements
1438   have been made to ACE, but also some problems in the VxWorks kernel have
1439   been found for which WindRiver has made patches.
1441 . Added support for VxWorks 6.5 kernel mode
1443 . Added support for MacOS 10.5
1445 . Support for MacOS 10.4 is now deprecated.
1447 . Added support for OpenSuSE 10.3
1449 . Added support for RedHat 5.1
1451 . Added support for Microsoft Visual Studio 2008
1453 . Added support for Fedora Core 8
1455 . Added support for Ubuntu 7.10
1457 . With Ubuntu 7.04 and 7.10 we can't use visibility, that results in
1458   unresolved externals when building some tests. With lsb_release we
1459   now detect Ubuntu 7.04 and 7.10 automatically and then we disable
1460   visibility
1462 . Removed deprecated (un)subscribe methods from ACE_SOCK_Dgram_Mcast
1464 . Added an additional replace() method to ACE_OuptutCDR for replacing a
1465   ACE_CDR::Short value. Also added write_long_placeholder() and
1466   write_short_placeholder() to properly align the stream's write pointer,
1467   write a placeholder value and return the placeholder's pointer. The pointer
1468   can later be used in a call to replace() to replace the placeholder with a
1469   different value.
1471 . Initial support for VxWorks 6.6
1473 . Removed support for pthread draft 4, 6, & 7. This makes the ACE threading
1474   code much cleaner
1476 . Improved autoconf support
1478 . Fixed TSS emulation problems
1480 . Changed ACE_thread_t and ACE_hthread_t to int for VxWorks kernel mode. All
1481   thread creation methods do have an additional const char* argument to
1482   specify the task name, this now also works with pthread support enabled
1484 . Use bool in much more interfaces where this is possible
1486 . Added support for Debian Etch
1488 . Fixed ACE CDR LongDouble support on VxWorks 6.x
1490 . Added Microsoft Visual Studio 2008 project files to the release packages
1492 . Fixed a few bugs in the ACE_Vector template
1494 USER VISIBLE CHANGES BETWEEN ACE-5.6 and ACE-5.6.1
1495 ====================================================
1497 . Added support for CodeGear RAD Studio 2007
1499 . Added support for CodeGear C++ Builder 2007 Update 3
1501 . Modified the definiton of ACE_DEFAULT_THREAD_KEYS on Windows so it
1502   is based on the version of the OS as defined by Microsoft in this web
1503   page: http://tinyurl.com/2jqcmd
1504   This fixes bugzilla #2753
1506 USER VISIBLE CHANGES BETWEEN ACE-5.5.10 and ACE-5.6
1507 ====================================================
1509 . OpenVMS 8.3 on IA64 port
1511 . Added autoconf support for Intel C++ 10.0
1513 . Improved autoconf support on Linux, Solaris, NetBSD and HPUX
1515 . CodeGear C++ Builder 2007 Update 2 support
1517 . The netsvcs's client logging daemon has a new configuration option,
1518   -llocal-ip[:local-port], which can be used to specify the local IP
1519   address and port number for the client logging daemon's connection to
1520   the server logging daemon. If the -l option is specified with an IP
1521   address but not a port number, an unused port number is selected.
1523 . A new ACE+TAO port to LabVIEW RT 8.2 with Pharlap ETS. The host build
1524   environment is Windows with Microsoft Visual Studio .NET 2003 (VC7.1).
1525   Please see the ACE-INSTALL.html file for build instructions.
1527 USER VISIBLE CHANGES BETWEEN ACE-5.5.9 and ACE-5.5.10
1528 ====================================================
1530 . The ACE_utsname struct, used in the ACE_OS::uname() function when the
1531   platform doesn't provide the standard utsname struct, was changed. It
1532   defines a number of text fields and their types were changed from
1533   ACE_TCHAR[] to char[] in order to be consistent with all other platforms.
1534   This removes the need to write different code for platforms where
1535   ACE_LACKS_UTSNAME_T is set and that have wide characters (most probably
1536   Windows). Fixes Bugzilla #2665.
1538 . The ACE::daemonize() "close_all_handles" parameter was changed from
1539   an "int" to a "bool" to better reflect how it is used.
1541 . VxWorks 6.5 support. Compilation of the core libraries has been validated
1542   but no runtime testing has been performed.
1544 . CodeGear C++ Builder 2007 support.
1546 . The FaCE utility was moved from the ACE_wrappers/apps directory to
1547   ACE_wrappers/contrib. It is used for testing ACE+TAO apps on WinCE.
1548   See the ACE_wrappers/contrib/FaCE/README file for more information.
1550 . ACE_INET_Addr::set (u_short port, char *host_name, ...) now favors IPv6
1551   addresses when compiled with ACE_HAS_IPV6 defined and the supplied address
1552   family is AF_UNSPEC. This means that if host_name has an IPv6 address in
1553   DNS or /etc/hosts, that will be used over an IPv4 address. If no IPv6
1554   address exists for host_name, then its IPv4 address will be used.
1556 . Intel C++ 10.0 support
1558 . Support for the version of vc8 for 64-bit (AMD64) shipped with the Microsoft
1559   Platform SDK.
1561 . Fixed ACE_Vector::swap() (bugzilla #2951).
1563 . Make use of the Atomic_Op optimizations on Intel EM64T processors. The
1564   Atomic_Op is now several times faster on EM64T then with previous versions
1565   of ACE
1567 USER VISIBLE CHANGES BETWEEN ACE-5.5.8 and ACE-5.5.9
1568 ====================================================
1570 . Use Intel C++ specific optimizations for Linux on IA64
1572 . Improved support for ACE_OS::fgetc. Added support for ACE_OS::fputc,
1573   ACE_OS::getc, ACE_OS::putc and ACE_OS::ungetc.
1575 . Added support for ACE_OS::log2(double) and improved support for
1576   ACE::log2(u_long).
1578 . Shared library builds on AIX now produce a libxxx.so file instead of the
1579   previous practice of producing libxxx.a(shr.o).
1581 . GCC 4.1.2 that comes with Fedora 7 seems to have a fix for the visibility
1582   attribute we use for the singletons. F7 users will therefore need to
1583   define the following in your config.h file.
1584   ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS 1
1586 . Fixed (rare) problem in TP_Reactor where incorrect event handler was
1587   resumed.
1589 . Reduced footprint on some platforms, particularly those that use
1590   g++ >= 3.3.
1592 USER VISIBLE CHANGES BETWEEN ACE-5.5.7 and ACE-5.5.8
1593 ====================================================
1595 . Extended ACE_Event constructor with optional LPSECURITY_ATTRIBUTES
1596   argument
1598 . Added support for QT4
1600 . Added support to integrate with the FOX Toolkit (www.fox-toolkit.org)
1602 . Added support for Microsoft Visual Studio Code Name "Orcas", which is
1603   the msvc9 beta
1605 . Added ability to provide an optional priority when calling
1606   ACE_Message_Queue_Ex::enqueue_prio(). There was previously no way
1607   to specify a priority for queueing.
1609 . Removed support for Visual Age on Windows.
1611 . ACE will compile once again with ACE_LACKS_CDR_ALIGNMENT #defined.
1613 . ACE_Process_Manager::terminate() no longer removes the process from the
1614   process descriptor table; the pid remains available in order to call
1615   ACE_Process_Manager::wait().
1617 USER VISIBLE CHANGES BETWEEN ACE-5.5.6 and ACE-5.5.7
1618 ====================================================
1620 . ACE 5.5 contained a set of pragmas which prevented Visual Studio 2005 (VC8)
1621   from issuing warnings where C run-time functions are used but a more
1622   secure alternative is available. For more information on the C run-time
1623   issues and Microsoft's response, please see the following MSDN page:
1624   http://msdn2.microsoft.com/en-us/library/8ef0s5kh(VS.80).aspx.
1625   In this beta, the pragmas which prevented the warnings have been removed.
1626   The ACE library has been reviewed and most of the use of "unsafe" functions
1627   has been fixed where possible. Since not all of the warnings emanating from
1628   ACE are situations that can or should be fixed, the ACE VC8 projects will
1629   prevent the warnings while building the ACE kit and its contained examples,
1630   tests, etc. The warnings are disabled by adding Microsoft-specified macros
1631   to the compile line via MPC. If desired, the warnings can be re-enabled by
1632   regenerating the project files with different MPC features. Note, however,
1633   that while ACE without warnings caused by the new C run-time functions, your
1634   application builds may trigger these warnings either by use of the "unsafe"
1635   C run-time functions or via use of an inlined ACE_OS method which uses it.
1636   If the warning is caused by an ACE_OS method, there is a more safe alternate
1637   available, probably located by appending _r to the method name (e.g.,
1638   instead of using ACE_OS::ctime(), use ACE_OS::ctime_r()).
1639   There are other cases where the compiler may have issued warnings and ACE
1640   prevented this via a #pragma. These #pragmas have been removed as well.
1641   This may cause your application builds to trigger more warnings from VC8
1642   than past ACE versions. You should review your code and either correct
1643   the code or disable the warnings locally, as appropriate.
1645 . The "release" argument to a number of ACE_String_Base<> methods was changed
1646   from int to bool to more accurately reflect its purpose. The following
1647   methods were changed:
1649             ACE_String_Base (const CHAR *s,
1650                              ACE_Allocator *the_allocator = 0,
1651                              int release = 1);
1652           to
1653             ACE_String_Base (const CHAR *s,
1654                              ACE_Allocator *the_allocator = 0,
1655                              bool release = true);
1657             ACE_String_Base (const CHAR *s,
1658                              size_type len,
1659                              ACE_Allocator *the_allocator = 0,
1660                              int release = 1);
1661           to
1662             ACE_String_Base (const CHAR *s,
1663                              size_type len,
1664                              ACE_Allocator *the_allocator = 0,
1665                              bool release = true);
1667             void set (const CHAR * s, int release = 1);
1668           to
1669             void set (const CHAR * s, bool release = true);
1671             void set (const CHAR * s, size_type len, int release);
1672           to
1673             void set (const CHAR * s, size_type len, bool release);
1675             void clear (int release = 0);
1676           to
1677             void clear (bool release = false);
1679   Since ACE_String_Base forms the basis of the ACE_CString and ACE_TString
1680   classes, this may ripple out to user application code. If you encounter
1681   errors in this area while building your applications, replace the
1682   int argument you are passing to the method now with either true or false.
1684 . Solutions for the eVC3/4 platform have been removed from this
1685   release.  Note that we package WinCE projects/workspaces for use
1686   with VC8.
1688 . There were 3 new ACE_Log_Msg logging format specifiers added to make logging
1689   easier for types that may change sizes across platforms. These all take one
1690   argument, and the new formats are:
1691     %b - format a ssize_t value
1692     %B - format a size_t value
1693     %: - format a time_t value
1695 . The ace/Time_Request_Reply.h and ace/Time_Request_Reply.cpp files were
1696   moved from $ACE_ROOT/ace to $ACE_ROOT/netsvcs/lib. The time arguments in
1697   the public API to ACE_Time_Request were changed from ACE_UINT32 to time_t
1698   and the portions of the on-wire protocol that contains time was changed from
1699   ACE_UINT32 to ACE_UINT64. Thus, code that uses the ACE_Time_Request class
1700   to transfer time information will not interoperate properly with prior
1701   ACE versions. This will affect uses of the netsvcs time clerk/server.
1703 . The portion of the ACE_Name_Request class that carries the on-wire seconds
1704   portion of a timeout value was changed from ACE_UINT32 to ACE_UINT64. This
1705   means that Name server/clients at ACE 5.5.7 and higher will not interoperate
1706   properly with previous ACE versions' name servers/clients.
1708 . In the ACE_Log_Record (ACE_Log_Priority, long, long) constructor, the
1709   second argument, long time_stamp, was changed to be of type time_t. This
1710   aligns the type with the expected value, a time stamp such as that returned
1711   from ACE_OS::time().
1713 . Added support for VxWorks 6.x cross compilation using a Windows host
1714   system
1716 . Added support for VxWorks 6.x using the diab compiler
1718 . The destructor of ACE_Event_Handler no longer calls
1719   purge_pending_notifications().  Please see bugzilla #2845 for the full
1720   rationale.
1721   (http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2845)
1723 USER VISIBLE CHANGES BETWEEN ACE-5.5.5 and ACE-5.5.6
1724 ====================================================
1726 . The ACE_TYPENAME macro has been added to those that are not
1727   available when the ACE_LACKS_DEPRECATED_MACROS config option is set
1728   (it is not set by default). You are encouraged to replace the use of
1729   ACE_TYPENAME with the C++ typename keyword before the ACE_TYPENAME
1730   macros is removed from ACE in the future.
1732 . A new script, rm_exception_macros.pl, has been added to help users
1733   remove the use of the ACE exception macros from their own code.
1735 USER VISIBLE CHANGES BETWEEN ACE-5.5.4 and ACE-5.5.5
1736 ====================================================
1738 . The prebuild MPC keyword is now supported by the gnuace project type.
1739   This fixes Bugzilla #2713.
1741 . Support for Windows earlier than NT 4 SP2 was removed. ACE will not build
1742   for Windows 95, 98, Me, etc. out of the box any longer.
1744 . Reformat stringified IPv6 addresses to use [addr]:port when printing
1745   addresses that contain ':' such as "::1".
1747 . Added method to ACE_INET_Addr to determine if address is IPv6 or
1748   IPv4 multicast.
1750 . Fixed a bug in ACE_Async_Timer_Adapter_Timer_Queue_Adapter<TQ> where the
1751   gettimeofday function of the timer queue was ignored when setting the alarm.
1753 . Fixed a problem where, on Solaris 9 onwards, calling
1754   ACE_OS::thr_create(THR_NEW_LWP) more than 2^15 (65535) times in a
1755   process will fail.  See changelog entry from "Wed Jan 3 22:31:05 UTC
1756   2007 Chris Cleeland <cleeland_c@ociweb.com>" for more information.
1758 . Fixed a bug in ACE_QtReactor where the two select() calls in that function
1759   might select on different handler sets.
1761 . ACE_SOCK_IO::recvv(iovec[], size_t, const ACE_Time_Value* = 0) and
1762   ACE_SOCK_IO::sendv (const iovec[], size_t, const ACE_Time_Value* = 0) methods
1763   were changed to specify the iovec count argument as int instead of size_t
1764   since it gets reduced to int in the underlying OS calls (usually).
1766 . The following deprecated methods were removed:
1768     ssize_t ACE_SOCK_IO::recv (iovec iov[],
1769                                size_t n,
1770                                const ACE_Time_Value *timeout = 0) const;
1772     ssize_t ACE_SOCK_IO::recv (iovec *io_vec,
1773                                const ACE_Time_Value *timeout = 0) const;
1775     ssize_t ACE_SOCK_IO::send (const iovec iov[],
1776                                size_t n,
1777                                const ACE_Time_Value *timeout = 0) const;
1779     These were previously replaced with more specific recvv() and sendv()
1780     methods.
1782 . The ACE_Service_Repository::find(const ACE_TCHAR name[],
1783                                    const ACE_Service_Type **srp = 0,
1784                                    int ignore_suspended = true) const
1785   method's 'ignore_suspended' parameter was changed from int to bool to
1786   reflect it's purpose as a yes/no indicator.
1788 . Added --enable-ace-reactor-notification-queue configure script
1789   option to the autoconf build for enabling the Reactor's userspace
1790   notification queue (defines ACE_HAS_REACTOR_NOTIFICATION_QUEUE in
1791   config.h).
1793 . The int ACE_OutputCDR::consolidate(void) method was contributed by
1794   Howard Finer at Sonus Networks. This method consolidates any continuation
1795   blocks used by an ACE_OutputCDR object into a single block. It's useful for
1796   situations which require access to a single memory area containing the
1797   encoded stream, regardless of its length, when the length cannot be known
1798   in advance.
1800 . There are a number of new methods defined on ACE_String_Base<CHAR>:
1802         size_t capacity (void) const:  This method returns the number
1803             of allocated CHAR units in the string object.
1805         void fast_resize (size_t): This method manage the sizing/reallocating
1806             of the string, but doesn't do the memory setting of resize().
1808         bool operator!= (const CHAR *) const
1809         bool operator== (const CHAR *) const: These methods compare the
1810             string with a nul-terminated CHAR* string.
1812         nonmember functions operator== and operator!= where also added
1813             that compare const ACE_String_Base and const CHAR*; these make
1814             it possible to switch ACE_String and CHAR* on either side of
1815             the operator.
1817   Thank you to Kelly Hickel <kfh at mqsoftware dot com> for these additions.
1819 . There are 2 new build options on the traditional make command:
1820   dmalloc and mtrace. When specified at build time (e.g. make mtrace=1)
1821   the PLATFORM_DMALLOC_CPPFLAGS and/or PLATFORM_MTRACE_CPPFLAGS values
1822   are added to CPPFLAGS. For dmalloc, the PLATFORM_DMALLOC_LDFLAGS and
1823   PLATFORM_DMALLOC_LIBS are added to LDFLAGS and LIBS, respectively.
1824   Thank you to Howard Finer for supplying these additions.
1826 . Added the ability to specify additional purify and quantify command-line
1827   options by setting PLATFORM_PURIFY_OPTIONS and PLATFORM_QUANTIFY_OPTIONS,
1828   respectively. Thank you to Howard Finer for supplying these additions.
1830 . Added the ability to use trio (http://sourceforge.net/projects/ctrio/)
1831   if platform lacks decent support for vsnprintf. trio support is
1832   enabled by defining trio=1 in plaform_macros.GNU
1834 . Removed Irix 5, DGUX, and m88k support
1836 . Improved LynxOS 4.2 support
1838 . VxWorks 6.4 support
1840 . Added support for FC6. Because the GCC 4.1.1 version that gets shipped
1841   has a fix for the visibility attribute we use for the singletons
1842   you will need to define the following in your config.h file. This can't be
1843   done automatically because SuSE 10.2 gets shipped with GCC 4.1.2 but
1844   doesn't have the same fix
1845   ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS 1
1847 . RTEMS port
1849 USER VISIBLE CHANGES BETWEEN ACE-5.5.3 and ACE-5.5.4
1850 ====================================================
1852 . Added appropriate intptr_t and uintptr_t typedefs on platforms that
1853   don't provide them (i.e. when ACE_LACKS_INTPTR_T is defined).
1855 . Added ability to explicitly choose support for 32 bit or 64 bit file
1856   offsets on all platforms.  Define the _FILE_OFFSET_BITS preprocessor
1857   symbol to either 32 or 64 to choose the desired number of file
1858   offset bits.  This preprocessor symbol is supported natively by most
1859   UNIX and UNIX-like operating systems, and supported by ACE on
1860   Windows.  Use the new ACE_OFF_T typedef to refer to file offsets
1861   across UNIX and Windows portably.
1863 . 64-bit file offsets are now enabled by default in Win64
1864   configurations.
1866 . Improved support for 64 bit platforms (64 bit addresses, etc).
1868 . Added STL-style traits, iterators and a swap() method to the
1869   ACE_Array_Base<> class template.
1871 . Added STL-style traits and iterator accessors to the
1872   ACE_Hash_Map_Manager_Ex<> class template, as well as new find() and
1873   unbind() methods that return (as an "out" parameter) and accept
1874   iterators, respectively.
1876 . Greatly improved event handler dispatch performance in
1877   select()-based reactors (e.g. ACE_Select_Reactor and ACE_TP_Reactor)
1878   for large handle sets on Windows. Previous event handler search
1879   were linear, and are now constant on average.
1881 . Addressed a number of Coverity errors (CHECKED_RETURN, DEADCODE,
1882   LOCK, USE_AFTER_FREE, RESOURCE_LEAK, FORWARD_NULL).
1884 . Added STL-style "element_type" trait to all ACE auto_ptr class
1885   templates.
1887 . Removed support for LynxOS 3.x.
1889 . Resolved Bugzilla #2701 to ensure fini() is called for all
1890   Service Objects upon calling ACE_Service_Config::close()
1892 . VxWorks 5.5.2 has been tested, for ACE the support is exactly
1893   the same as for VxWorks 5.5.1. No specific defines or flags have
1894   to be used.
1896 USER VISIBLE CHANGES BETWEEN ACE-5.5.2 and ACE-5.5.3
1897 ====================================================
1899 . Added the base projects for executionmanager_stub and plan_generator.
1901 . Added the ACE_Hash_MultiMap_Manager class and its test file.
1903 . Changed the ACE_Synch_Options::operator[] method to return bool rather than
1904   int. The value returned is a yes/no indication of whether or not the
1905   specified option(s) are set in the object.
1907 . Changed the prototype(s) for ACE::debug () to return (and take) a
1908   bool. This is consistent with the original intent for this
1909   feature. If you have been using it like 'ACE::debug () > 0' or
1910   'ACE::debug (1)', you may have to rebuild ACE. The value of the
1911   ACE_DEBUG environment variable can be used to specify the initial
1912   value for ACE::debug(), at the process start up.
1914 . An assembler (within a C source file) based implementation for SPARC
1915   of atomic operations suitable for use with the
1916   ACE_Atomic_Op<ACE_Thread_Mutex, long> and
1917   ACE_Atomic_Op<ACE_Thread_Mutex, unsigned long> specializations has
1918   been added.  Currently, it can only be enabled by setting the
1919   atomic_ops_sparc make macro to 1 when using the GNUACE build system with
1920   the Solaris SunCC compiler.  It should be noted that this requires the
1921   -xarch=v8plus (or higher) be added to the CFLAGS make macro or the
1922   assembler code will not compile.
1924 . The ACE_Message_Queue_Ex_N<class ACE_MESSAGE_TYPE, ACE_SYNCH_DECL> class
1925   is new, contributed by Guy Peleg <guy dot peleg at amdocs dot com>.
1926   ACE_Message_Queue_Ex_N<class ACE_MESSAGE_TYPE, ACE_SYNCH_DECL> is
1927   similar to ACE_Message_Queue_Ex in that the object queued is a
1928   template parameter. However, ACE_Message_Queue_Ex_N allows the
1929   enqueueing and dequeueing of multiple chained objects at once. This
1930   wasn't added to ACE_Message_Queue_Ex because the chained object
1931   functionality requires the ACE_MESSAGE_TYPE class to have a
1932   ACE_MESSAGE_TYPE *next (void) const method, analogous to
1933   ACE_Message_Block::next(), to follow the chain and this would
1934   probably break existing applications using ACE_Message_Queue_Ex.
1935   The ACE_wrappers/tests/Message_Queue_Test_Ex.cpp test has an example of
1936   how to use the new class.
1938 . The selector and comparator function pointer arguments to ACE_OS::scandir()
1939   and ACE_Dirent_Selector are now marked as extern "C" to enforce their
1940   use with a C RTL function. User code that defines functions which are
1941   passed as the selector or comparator arguments which are not declared
1942   extern "C" may generate compile warnings. To resolve this, add extern "C"
1943   to the function's signature. See ACE_wrappers/tests/Dirent_Test.cpp for
1944   an example.
1946 . To address a problem in the ACE string interface that prevented
1947   substring or character searches in very large strings (e.g. greater
1948   than the maximum value of an ssize_t type) from being correctly
1949   reported to the caller, the find(), rfind() and strstr() methods now
1950   return an unsigned integer (size_t) instead of a signed one
1951   (ssize_t). Affected classes include:
1953     * ACE_CString
1954     * ACE_WString
1955     * ACE_TString
1956     * ACE_NS_WString
1958   Unless you have been explicitly using -1 instead of npos when
1959   comparing the return value of find(), rfind() and strstr(), and/or
1960   assigning the return value to ssize_t you should not see any
1961   difference. A new size_type typedef has been added to the ACE string
1962   class to aid developers.  This typedef is analogous to the standard
1963   C++ string::size_type typedef.
1965   The ACE_String_Base<>::strstr() documentation and the default
1966   rfind() argument erroneously referred to -1 instead of npos. Those
1967   instances have been corrected.
1969   To summarize, a "no position" condition is denoted using the npos
1970   constant, not -1. It can be referred directly by scoping it with the
1971   appropriate string class (e.g. ACE_CString::npos, ACE_WString::npos,
1972   etc).
1974 . Changing the shared library extension for hpux ia64 to ".so". On
1975   HP-UX 11i Version 1.5 the naming scheme is lib*.sl for PA and
1976   lib*.so on IPF.
1978 . The ACE_Refcounted_Auto_Ptr reset() and release() methods were changed
1979   per Bugzilla #1925. They will both now detach from the underlying
1980   ACE_Refcounted_Auto_Ptr_Rep object; reset() will create a new one for
1981   the new pointer specified as its argument. This change may cause referenced
1982   objects to be deleted in cases where previous ACE versions would not have.
1984 . The return type of "ACE_Refcounted_Auto_Ptr::null (void) const" changed
1985   from int to bool. It's possible values, true and false, have not changed.
1987 . TTY_IO now accepts "none" as a valid parity value. Due to this change
1988   'parityenb' member is now deprecated and will be removed in the future.
1989   The users of TTY_IO class should change their code to use only 'paritymode'
1990   member for parity control and leave 'parityenb' unchanged (it is
1991   enabled by default in class constructor).
1993 . Support for Intel C++ 9.1 on Windows and Linux
1995 . VxWorks 6.3 support
1997 . Fixed Bugzilla #2648 to make sure ACE_Service_Object::fini()
1998   is called iff ACE_Service_Object::init() succeeded, as per
1999   C++NPv2.
2001 . Added preliminary support for Mac OS X 10.4 on Intel CPU's.
2003 . Fixed Bugzilla #2602 to re-enable XML Service Configurator
2004   file support.
2006 USER VISIBLE CHANGES BETWEEN ACE-5.5.1 and ACE-5.5.2
2007 ====================================================
2009 . Added support for:
2010    - VxWorks 6.2 for the rtp model using pthread support
2011    - OpenVMS 8.2 for Alpha
2013 . Removed code and configurations that provided support for:
2014    - Visual C++ 6.0 and 7.0
2015    - Chorus
2016    - pSOS
2017    - KAI C++ on all platforms
2019 . Explicit template instantiation support has been removed. This effectively
2020   removes support for Sun Forte 6 and 7 which required explicit template
2021   instantiation to build ACE reliably.
2023 . Added support for multiple independent Service Repositories through
2024   configuration contexts called "Gestalt". Full backwards compatibility
2025   is maintained through the existing ACE_Service_Config static methods,
2026   while direct individual repository access is enabled through instances
2027   of the new ACE_Service_Gestalt class. ACE_Service_Config has changed to
2028   a specialization of ACE_Service_Gestalt and is only responsible for the
2029   process-wide configuration.
2031 . To support dynamically-sized ACE_Log_Record messages, the netsvcs
2032   logging components now use ACE CDR encoding and transfer mechanisms
2033   inspired by the examples in Chapter 4 of the C++NPv1 book.
2034   The client and server logging daemons in ACE 5.5.2 and forward will
2035   not interoperate with those in previous ACE versions.
2037 . Added a wrapper for the sendfile API (ACE_OS::sendfile()).
2039 . Added support for netlink sockets on Linux.
2041 . Added a new method, ACE_Task::last_thread(). This method returns the thread
2042   ID (ACE_thread_t) of the last thread to exit from the ACE_Task object.
2043   Users checking to see if a thread is the last one out (for example, to know
2044   when to perform cleanup operations) should compare the current thread ID to
2045   the return value from last_thread(). This is a change from the previously
2046   recommended practice (C++NPv2, page 189) of comparing the return value of
2047   thr_count() with 0.
2049 . Changed the first argument to ACE_OS::strptime() to be 'const' which
2050   matches its usual usage in POSIX strptime(). This change allows users to
2051   pass const strings in - a common use case.
2053 . Made part of the file support in ACE 64bit but we have some places where
2054   32bit types are used, this could lead to some conversion warnings which
2055   will be addressed in the near future, but getting everything 64bit
2056   compliant is a lot of work.
2058 USER VISIBLE CHANGES BETWEEN ACE-5.5 and ACE-5.5.1
2059 ====================================================
2061 . Added support for the --enable-symbol-visibility configure option
2062   to the autoconf build infrastructure instead of solely relying on
2063   feature tests to enable/disable symbol visibility support.  This
2064   avoids build problems with icc, etc.
2066 . Added support for the --enable-fl-reactor configure option to the
2067   autoconf build infrastructure to build the ACE_FlReactor library.
2069 . Added support for the --enable-qt-reactor configure option to the
2070   autoconf build infrastructure to build the ACE_QtReactor library.
2072 . Added support for the --enable-xt-reactor configure option to the
2073   autoconf build infrastructure to build the ACE_XtReactor library.
2075 . Fixed a bug that would cause timer IDs from ACE_Timer_Heap to be
2076   improperly duplicated under certain conditions (Bugzilla #2447).
2078 . Fixed ACE_SSL_Context::private_key(), context(), and dh_params() methods
2079   to allow retrying a file load after a failed call.
2081 . Fixed ACE_SSL_Asynch_Stream so it can be instantiated; also moved the
2082   declarations for ACE_SSL_Asynch_Read_Stream_Result,
2083   ACE_SSL_Asynch_Write_Stream_Result, and ACE_SSL_Asynch_Result classes
2084   to the ace/SSL/SSL_Asynch_Stream.h file so applications can see them.
2086 USER VISIBLE CHANGES BETWEEN ACE-5.4.10 and ACE-5.5
2087 ====================================================
2089 . Added a platform macros option "templates=manual", currently only
2090   applies to AIX 5.3 with XL 7 compiler.  It allows the user to tell the
2091   compiler to set -qnotempinc and -qnotemplateregistry and works well
2092   in static builds.
2094 . ACE and its tests compile error free with GCC 4.1 pre release.
2096 . ACE_Recursive_Thread_Mutex::get_nesting_level() fixed for 64-bit Windows
2097   XP on amd64/EM64T hardware.
2099 . Many build-time fixes for Windows Mobile 5 and Windows PocketPC 2003 using
2100   Visual Studio .NET 2005 (VC8).
2102 . Added support for the --enable-tk-reactor configure option to the
2103   autoconf build infrastructure to build the ACE_TkReactor library.
2105 USER VISIBLE CHANGES BETWEEN ACE-5.4.9 and ACE-5.4.10
2106 ====================================================
2108 . Fixed a bug in ACE_Timer_Heap_T::cancel().
2110 . Improved ACE_Time_Value support for boundary conditions.
2112 . Fixed problems with operator placement delete on certain C++ compilers.
2114 . Fixed a bug with the ACE_SPIPE_Acceptor on Windows.
2116 . Correctly set sockaddr_in.sin_len and sockaddr_in6.sin6_len on
2117   platforms that have these fields.
2119 . Avoided problems with namespace pollution for max() macros.
2121 . Many fixes for ACE_LACKS* and ACE_HAS* macros for autoconfig.
2123 USER VISIBLE CHANGES BETWEEN ACE-5.4.8 and ACE-5.4.9
2124 ====================================================
2126 . Added dozens of new ACE_LACKS and ACE_HAS defines which are used to
2127   simplify the ACE_OS layer
2129 . Constructors of ACE_Time_Value have been made explicit to prevent
2130   implicit conversions.
2132 . Added a shutdown() method to ACE_Barrier. The new method aborts the
2133   wait by all threads.
2135 . Changed the behavior of ACE_Message_Queue::enqueue_head() and
2136   enqueue_tail(). If the enqueued message block has other blocks
2137   chained to it via its next() pointer, the entire chain of blocks
2138   will be enqueued at once.
2140 . Improved the support for high-resolution timers with
2141   ACE_Timer_Queue_Adapter.
2143 . Make it possible to disable file caching in JAWS.
2145 . Improved ACE_Pipe implementation so that it uses localhost to avoid
2146   firewall problems.
2148 . Added Unicode support to the Service Configurator.
2150 USER VISIBLE CHANGES BETWEEN ACE-5.4.7 and ACE-5.4.8
2151 ====================================================
2153 . Improved IPv6 support
2155 . Improved 64bit portability
2157 . TTY_IO overhaul
2158   - Improved documentation.
2159   - It is now possible to request infinite timeout in portable manner.
2160     This can be achieved by setting negative value to readtimeoutmsec.
2161   - Various bugs fixed and portability issues resolved.
2163 . Subset ACE for TAO and TAO Services
2165 . Support for Intel C++ 9.0 on Windows and Linux
2167 . Support for Microsoft Visual Studio 2005 (aka VC8) for Win32 as well
2168   as the Windows CE platforms Pocket PC 2003 and Windows Mobile 5.
2169   Solution/project files are generated with an appended "_vc8" for
2170   Win32 and "_WinCE" for the CE platforms. See
2171   ACE_wrappers/docs/CE-status.txt for more information.
2173 . Completed implementation of ACE_Dev_Poll_Reactor using the Linux epoll
2174   facility; tested on Red Hat Enterprise Linux 4.
2176 . The in-memory size of an ACE_RB_Tree will be smaller due to rearranged
2177   placement of pointers.
2179 . Added an optimization to CDR stream to ignores alignment when marshaling
2180   data.  Use this new ACE_LACKS_CDR_ALIGNMENT compile-time option only
2181   when the ACE_DISABLE_SWAP_ON_READ macro is enabled.  This new option
2182   requires ACE CDR engine to do both marshaling and demarshaling, and
2183   when this option is enabled the encoded streams are no longer
2184   compliant with the CORBA CDR specification.
2186 . Developed Feature Oriented Customizer (FOCUS) tool to enable
2187   specialization of middleware frameworks such as Reactor and Protocol
2188   framework.  FOCUS provides an XML based transformation engine, where
2189   the transformations to specialize the components are captured in XML
2190   file and a weaver specializes the code.
2192 . Added support for unrolling ACE_OS::memcpy copy loop where
2193   applicable to improve performance. Autoconf tests empirically
2194   determine whether loop unrolling is at least 10% better than default
2195   version.
2197 . Added support for an ACE "versioned" namespace.  When enabled, ACE
2198   library sources will be placed within a namespace of the user's
2199   choice or a namespace of the form ACE_5_4_7 by default, where
2200   "5_4_7" is the ACE major, minor and beta versions.  The default may
2201   be overridden by defining the ACE_VERSIONED_NAMESPACE_NAME
2202   preprocessor symbol.  Enable overall versioned namespace support by
2203   adding "versioned_namespace=1" to your MPC default.features file.
2205 USER VISIBLE CHANGES BETWEEN ACE-5.4.6 and ACE-5.4.7
2206 ====================================================
2208 . Support for shared libraries with VxWorks
2210 . Support for Solaris 10 on x86 with Sun Studio 10 (C++ 5.7).
2212 . Extended ACE_OS::event_xxx implementation to support platforms
2213   having either PThread support with Process Shared condition
2214   variables or POSIX semaphores with named (process shared)
2215   semaphore support or using the new FIFO based semaphores.
2217 . ACE_OS::closesocket() no longer calls ACE_OS::shutdown() on any platform
2218   while closing the socket. It previously called ACE_OS::shutdown() on
2219   HP-UX. Removing this call fixes the fork-and-close programming paradigm
2220   that's common to many networked applications.
2222 . RMCast
2223    - Support for message fragmentation. This will allow
2224      for messages larger than 64K.
2225    - Support for flow control.
2226    - Timed recv() in RMCast::Socket.
2227    - Per-instance configurable protocol parameters (e.g., message
2228      retention time, NAK timeout, etc).
2230 USER VISIBLE CHANGES BETWEEN ACE-5.4.5 and ACE-5.4.6
2231 ====================================================
2233 . Updated RMCast to include
2234    - Reactor-compatible interface.
2235    - Message unavailability reporting.
2236    - Protocol documentation.
2238 . Added support for 64bit Visual Age on AIX
2240 . Improved g++ 4.0 support.  A number of RTTI related problems have been
2241   fixed.
2243 . Smaller footprint.
2245 . Fixed memory leaks ACE_DLL and ACE_Log_Msg classes.
2247 . The ACE::ICMP_Socket and ACE::Ping_Socket classes were moved out of
2248   the ACE namespace and "flattened" to ACE_ICMP_Socket and
2249   ACE_Ping_Socket to be consistent with the rest of ACE.
2251 . ACE_INET_Addr::set_address() - fixed a possible struct member
2252   alignment issue when building an IPv4-mapped IPv6 address.
2254 . Added a new ACE::wild_match() function to match a string based on
2255   wildcards.
2257 . Added efficient overloads for string concatenation to the
2258   ACE_String_Base class.
2260 . Added support for the use of pthread_getschedparam on MacOS X.
2262 . Fixed an issue with static initialization of TSS related classes on
2263   static builds for Windows.
2265 USER VISIBLE CHANGES BETWEEN ACE-5.4.4 and ACE-5.4.5
2266 ====================================================
2268 . Remove special handling in the Thread Specific Storage(TSS) code
2269   that released the TSS key for ACE_TSS<TYPE>.  ACE_TSS<TYPE> has
2270   been changed to explicitly free the TSS key when necessary.
2272 . On Win32 systems: detect thread termination via a hook in DLLMain
2273   for ACE.dll.  This allows cleanup of TSS objects for non-ACE threads
2274   that use ACE functions.  The most common case was threads that used
2275   ACE logging.  Formerly any TSS objects created by these threads would
2276   be leaked.
2278 . Added support for GNU G++ 4.0.  The x.4.5 beta takes advantage of
2279   g++ 4.0's symbol visibility.  This feature is conceptually similar
2280   to MS Windows "__declspec(dllexport)" DLL functionality.  Using this
2281   new g++ feature results in substantially improved ACE/TAO/CIAO
2282   shared library binaries.  A subset of the improvements include the
2283   following:
2285       * The number of unnecessarily exported DSO/DLL symbols is
2286         greatly reduced, resulting in faster program start times.
2287       * Smaller footprint.
2288       * Improved performance since run-time indirection of internal
2289         symbols is no longer needed.
2291   No changes to the ACE/TAO sources were necessary to support this
2292   feature since the required visibility attributes were hidden behind
2293   the various "*_Export" macros (formerly only useful for MS Windows
2294   DLLs) used throughout ACE/TAO.
2296 . The ACE_Reactor destructor will now call close() on the referenced reactor
2297   implementation. This assures that all handlers are notified before the
2298   ACE_Reactor object that's most likely referenced in these handlers is
2299   invalid. Although this should not be a user-visible change, it did catch
2300   some ACE tests off guard destroying reactor implementations and ACE_Reactor
2301   interfaces in the wrong order, so it may come up in the field as well.
2302   When using dynamically allocated reactor implementations, do not destroy
2303   the implementation object before the ACE_Reactor interface object. Use of
2304   the ACE_Reactor constructor's delete_implementation argument (with a value
2305   of 1) is recommended when dynamically allocating reactor implementations.
2307 . Improved performance of HTBP by not requiring a lookup of peer hostname.
2309 . Added new ACE_SizeCDR stream which allows one to calculate size of the
2310   representation without writing anything.
2312 . Number of improvements in RMCast, reliable multicast implementation.
2314 USER VISIBLE CHANGES BETWEEN ACE-5.4.3 and ACE-5.4.4
2315 ====================================================
2317 . The ace-config script has been replaced by pkg-config metadata files
2318   which are installed in ${prefix}/lib/pkgconfig by the automake build.
2320 . Remove ACE_OS::gets() implementation.  While this ACE implementation
2321   of gets() did not contain the security holes that all standard
2322   gets() implementations have, keeping it around only serves to foster
2323   confusion since (1) some may incorrectly assume that this
2324   ACE-specific gets() implementation has the same holes as standard
2325   ones, and (2) invoking it with a default size argument so that it
2326   looks like a standard gets() call results in behavior that is
2327   different from the standard.  Use ACE_OS::fgets() instead.
2329 . Removed ACE_Unbounded_Set_Ex, this gave the false idea that it had
2330   thread safe iterators. Use ACE_Unbounded_Set instead
2332 . Improved VxWorks support for static libraries. Shared libraries do cause
2333   several known problems which will be fixed in the x.4.5 release.
2335 . Removed the usage of the ACE_x_cast macros, we are using the C++ casts
2336   from now on. The ACE_x_cast macros are deprecated and will be removed
2337   after the x.5.1 release
2339 . Some improvements in autoconf support; better detection of available
2340   OS and compiler features.
2342 . Fixed bugs in ACE TSS emulation
2344 USER VISIBLE CHANGES BETWEEN ACE-5.4.2 and ACE-5.4.3
2345 ====================================================
2347 . Improved Cygwin 1.5.12 support, 90% of the tests now succeed
2349 . Improved OpenVMS support.
2351 . Added ability to use fltk with Cygwin/MinGW
2353 . Added ACE_INT64 that defines a native 64 bit type.
2355 . Added 'q' as usable specifier for ACE_Log_Msg to print out int64 bit number.
2357 . Added better support for Intel C++ compilers.
2359 . Improved HPUX support.
2361 . Added a new directory ("ACE_wrappers/protocols/ace") for new protocols
2362   that are not directly components of ACE, but are relate to ACE and
2363   defined a new protocol, HTBP (Hypertext Tunneling, Bidirectional
2364   Protocol) providing ACE_Acceptor/Connector/Stream semantics over a
2365   connection owned by an HTTP proxy. Test cases in
2366   ACE_wrappers/tests/HTBP provide examples of use.
2368 . Performace enhancement in TP_Reactor's handle_timer_events method [Bug
2369   1971].
2371 . Various changes to permit ACE to execute on HP NonStop platform (e.g
2372   support for its pthreads version).
2374 . Updated HP NonStop configuration files (config-tandem-nsk).
2376 . The "ACE" pseudo-namespace is now a true C++ namespace.  Transitional
2377   pseudo-namespaces that were only meant to be used internally by ACE,
2378   such as "ACE_Sock_Connect", no longer exist.
2380 . ACE_CDR::Boolean type is now a true C++ "bool" on all platforms except
2381   MSVC++ 6.  We plan to deprecate MSVC++ 6 support sometime after the
2382   x.5 release of ACE+TAO+CIAO, so we recommend you start migrating to a
2383   later version of MSVC++.
2385 . More GNU g++ 3.4.x fixes.
2387 . Added ICMP and "ping" socket support.
2389 . Added mkstemp() emulation.
2391 . Fixed problem on Linux < 2.5.47 platforms where equality comparison of
2392   two logically equal sockaddr_in structure instances would incorrectly
2393   fail.
2395 . Support for wide characters has been improved on non-Windows
2396   platforms.
2398 . A number of Windows CE problems have been fixed.
2400 . ACE's loading of DLLs (for example, as a result of loading synamic
2401   services) has been changed to use the native OS's facilities for
2402   locating the DLL instead of searching LD_LIBRARY_PATH (or its
2403   equivalent) then loading the DLL using a full pathname. This restores
2404   enforcement of a platform's loading and security policy.  To use the
2405   old DLL locating method, add ACE_MUST_HELP_DLOPEN_SEARCH_PATH to your
2406   config.h file before building ACE.
2408 . A number of errors in the APG example programs have been corrected.
2410 . Select_Reactor and Priority_Reactor performance improved. [Bug 1890]
2412 . Wide-char functionality on POSIX (Linux, etc.)
2414 . TSS memory leak fixes [Bug 1542]
2416 . Ported to HPUX 11i v2 on Itanium
2418 . Added code to ACE for platform RedHat AS 3.0 on Opteron.
2420 . Changed ACE::crc32() family of functions to NOT fold in the length of
2421   the string/buffer/iovec into the CRC.
2424 USER VISIBLE CHANGES BETWEEN ACE-5.4.1 and ACE-5.4.2
2425 ====================================================
2427 . Support for g++ 3.4.1.
2429 . All ACE Makefiles, project files, etc, are now generated by OCI's
2430   "MakeProjectCreator" (MPC) tool.  Makefiles and project files for
2431   commonly used configurations have been pre-generated and distributed
2432   with the beta(s).  Please see:
2434   $ACE_ROOT/ACE-INSTALL.html
2436   for information on how to use MPC with ACE.
2438 . Improved Doxygen documentation.
2440 . Reduced header file dependencies, which should speedup compilation
2441   and help minimize static footprint.
2443 . ACE now requires support for the following standard C++ features:
2445   - "bool" keyword
2447   - "mutable" keyword
2449   - "explicit" keyword
2451   - C++ casts (e.g. static_cast<>, reinterpret_cast<>, dynamic_cast<>
2452     and const_cast<>)
2454   If you're using a compiler that does NOT support these features
2455   please contact Steve Huston <shuston@riverace.com> for support.
2457 . Changed the select()-based reactor implementations to scan for
2458   broken handles to remove based on the registered handles, not on
2459   event handlers.  This allows for bad handles to be removed from the
2460   reactor even if the event handler doesn't implement get_handle() the
2461   way we expect.
2463 . Support for Pthreads native recursive mutexes was added. This
2464   capability is specified to ACE_OS::mutex_init() as an optional
2465   argument, lock_type. To fix confusion from an earlier attempt to add
2466   this functionality, the meaning of the old 'type' argument to
2467   ACE_OS::thread_mutex_init() is changed. It previously combined the
2468   scope and type. Now it is just the type (e.g. recursive), as the
2469   scope is inherent in the method used. For clarification on
2470   ACE_HAS_RECURSIVE_MUTEXES, it means that the platform is capable of
2471   them, not that they always are, as one would expect. However, before
2472   Pthreads had recursion added, it was never optional. Now it is.
2474 . Initial support for new Linux sys_epoll() interface in
2475   Dev_Poll_Reactor.  The obsolete Linux /dev/epoll interface is no
2476   longer supported.
2478 . Improved Cygwin support.
2479   - Threading works without problems.
2480   - Problems with shared memory, process shared mutexes, multicast and
2481     some other small things still exist.
2483 . New OpenVMS port.
2484   -  This is for the latest version of OpenVMS with all available ECOs
2485      applied. Basic stuff works without problems.  Advanced features
2486      still need some work.
2488 . Usage of ASYS_INLINE is deprecated in ACE.  Use ACE_INLINE instead.
2490 . All inline source files now end in ".inl".  The previous ".i"
2491   extension is generally used for preprocessed C sources.
2493 . Autoconf support has been improved and fixed on a number of
2494   platforms, including the BSD variants (e.g. FreeBSD).  It is still
2495   not the preferred way to configure most platforms, but it is ready
2496   for wider testing. Please report any problems found to
2497   ace-bugs@cs.wustl.edu.
2499 . A number of fixes were made to quiet compile errors and warnings on
2500   64-bit Windows.
2502 . For builds on AIX using Visual Age C++, the make rtti option default
2503   was changed to 1, enabling RTTI by default.
2505 . ACE_Service_Repository::remove() has a new, optional argument that
2506   can receive the service record pointer for the removed service. If
2507   the pointer is returned to the caller, it is not deleted. If the
2508   pointer is not returned to the caller (the default) it is deleted
2509   (this is the historic behavior).
2511 . The tutorials in ACE_wrappers/docs have been removed. They were not
2512   being maintained and caused confusion in a number of cases. Now that
2513   there are complete examples that match the printed books (C++NPv1,
2514   C++NPv2, APG), the older tutorials are no longer useful.  Please see
2516   $ACE_ROOT/examples/C++NPv1/
2517   $ACE_ROOT/examples/C++NPv2/
2518   $ACE_ROOT/examples/APG/
2520   for the source code of the examples in those books.
2522 . ACE_String_Base::fast_clear() is a new method which sets the string
2523   length to 0. Doesn't release string-allocated memory, but if the
2524   memory was externally supplied, it is no longer referenced from the
2525   string object.
2527 . A true C++ "bool" is now used as the CDR stream boolean type, if
2528   supported by the compiler.
2530 . Renamed AIX 5L configuration header from config-aix5.1.h to
2531   config-aix-5.x.h.
2533 . All C++ equality, relational and logical operators now return bool
2534   instead of int, as is the norm for modern C++.
2536 . Added new ACE_OS::realpath() implementation.  Contributed by Olli
2537   Savia  <ops at iki dot fi>
2540 USER VISIBLE CHANGES BETWEEN ACE-5.4 and ACE-5.4.1
2541 ====================================================
2546 . Fixed "make install" support in ACE+autoconf configurations.
2548 . Fixed autoconf support on Solaris.
2550 . Corrected invalid `aux' directory (on MS Windows) found in ACE
2551   distribution.
2553 . ACE/TAO build now without problems with MinGW and all ACE tests run
2554   now without problems
2556 . Added some more support for the new CBuilderX Preview compiler, this
2557   is not 100% ready yet because the compiler is still a preview and
2558   has its own problems.
2560 . Added Visual SlickEdit 8.1 MPC template
2562 . Added workaround for compile problems in Borland Release builds
2564 . Cygwin 1.5.9 is now supported
2566 . Tests for IPV6 have been added
2568 . Implement lstat() so that it'll use stat() on platforms that don't
2569   support lstat().
2571 . Problems related to ACE_Event_Handler usage in WFMO_Reactor was
2572   fixed.
2574 . A wrapper for rmdir () has been added.
2576 . Threads spawned in thread-per-connection mode never inherited the
2577   priority. This problem was fixed and this fix is consistent with the
2578   C++ NPV* books.
2580 . Fixed memory leaks with ACE_String_Base::resize ()
2582 . Enable the usage of native recursive mutexes for the implementation
2583   of ACE recursive mutexes on Linux.
2585 . The ACE Proactor framework can now be enabled for AIX 5.2. Since AIO
2586   functionality is not run-time enabled by default on AIX 5.2, the ACE
2587   Proactor code is not built by default on AIX. To enable it, the
2588   config.h file must contain #define ACE_HAS_AIO_CALLS before
2589   including the config-aix-5.1.h file.
2591 . The ACE_POSIX_CB_Proactor implementation is now built on all
2592   platforms except LynxOS.
2595 USER VISIBLE CHANGES BETWEEN ACE-5.3.6 and ACE-5.4
2596 ==================================================
2598 ACE:
2600 . Added a new makefile commandline flag, static_link, that can be
2601   used to force static linking when static_libs_only is turned on. It
2602   uses the new STATIC_LINK_FLAG variable and is currently only
2603   implemented for for GNU ld, i.e., it adds the "-static" option to
2604   LDFLAGS. It's turned off by default since using it causes the
2605   footprint to go up by almost 1 MB on Linux, since it links all the
2606   system and compiler .a files, but can be turned on if users
2607   want/need to use it, by enabling both static_libs_only and static_link.
2610 . Added macros ACE_USES_GPROF which enables users to use gprof in a
2611   multithreaded environment with ACE libs.
2613 . Added a new functor template class, ACE_Malloc_Lock_Adapter_T,
2614   that's used by ACE_Malloc_T as a factory for the ACE_LOCK template
2615   parameter, and allows the use of locking strategy classes, like
2616   ACE_Process_Semaphore and ACE_Thread_Semaphore that don't have a
2617   satisfactory ctor taking a single required ACE_TCHAR* parameter, to
2618   be adapted to work with ACE_Malloc_T.
2620 . The source code examples from "The ACE Programmer's Guide" book by
2621   Huston, Syyid, and Johnston, are now located in
2622   $ACE_ROOT/examples/APG.
2624 . Support for GNU autoconf is now in ACE. Please see ACE-INSTALL.html
2625   for details.
2627 . Fixed problems that prevented ACE from being compiled on LynxOS
2628   4.0.0.
2630 . Fixed compilation error which prevented ACE from being compiled when
2631   ACE_COMPILE_TIMEPROBES was set to 1.
2633 . Preliminary support for Tandem NSK has been added.
2635 . Lots of bug fixes with TLI and XPG5. Please see $ACE_ROOT/ChangeLog
2636   for details.
2638 . Fixed ACE_OS::event_timedwait() and ACE_OS::event_wait() so that
2639   they use a while loop around the ACE_OS::cond_[timed]wait() calls to
2640   avoid problems with spurious wakeups, etc.
2642 . ACE's wrapper around getipnodebyname() and getipnodebyaddr () has
2643   been made go through the IPv4-only case on ACE_WIN32. Since Windows
2644   IPv6 implementation doesn't offer support (at thistime) for
2645   getipnodebyname() the code has been changed to use the IPV4 part of
2646   the code.
2648 . Install with Borland C++ of ACE library fixed
2650 ACEXML:
2651 -------
2653 . Fixed memory leak in ACEXML parser.
2655 . Fixed implementations of rewind() in all the CharStreams. They were
2656   broken previously.
2658 . Fixed bugs in the parser associated with incorrect handling of PE
2659   References for keywords.