1 USER VISIBLE CHANGES BETWEEN ACE-6.5.14 and ACE-6.5.15
2 ======================================================
4 . Add support for Embarcadero C++ Builder 11.0 Alexandria using
7 . Add support for MacOSX Big Sur
9 . Improved ACE_Atomic implementation for g++
11 USER VISIBLE CHANGES BETWEEN ACE-6.5.13 and ACE-6.5.14
12 ======================================================
14 . Fix SocketConnect::ip_check() Concurrency and Too-Early Request Issues for Windows
16 . Support int8 and uint8 in ACE_CDR
18 . Make install: use relative links in prefix/share
20 USER VISIBLE CHANGES BETWEEN ACE-6.5.12 and ACE-6.5.13
21 ======================================================
23 . Fixes for IPv6 multicast and `inet_ntop`/`inet_pton` on Windows
25 . Fix missing export attribute on `ACE_OS::thr_gettid`
27 . Fix spurious warning from gcc about missing initializers on `std::array`
31 . Support for building with the Android NDK r19 or later directly instead of
32 having to use a generated standalone toolchain. See `ACE-INSTALL.html` for
33 details. Using a standalone toolchain is still supported.
35 . Made it easier to use `gnuace`-built libraries as imported libraries in
36 CMake-based Android Studio native projects.
38 . Replaced `ANDROID_ABI` with `android_abi`, but kept the former as an alias
39 of the later for compatibility.
41 . Remove need to pass a macro to compiler about `android/ndk-version.h`
42 unless the NDK is old.
44 USER VISIBLE CHANGES BETWEEN ACE-6.5.11 and ACE-6.5.12
45 ======================================================
47 . Fixed some C++11 warnings
49 . Fixed compile problem on AIX
51 . Removed c++0x and c++1y as GNU make variables, use c++11 and c++14 as
54 . Moved all CI builds to github actions
56 . Added ACE_GCC_NO_RETURN to fix fall through warnings
58 . Fix ACE_Thread_Manager::join memory leak and potential deadlock
60 USER VISIBLE CHANGES BETWEEN ACE-6.5.10 and ACE-6.5.11
61 ======================================================
63 . Latest_{Major,Minor,Micro,Beta} tags have been replaced with
64 branches because tags are not intended to move where branches are
66 . Removed emulated operations in ACE_OS which are not used anymore
68 . Resolved some compile warnings when using C++11 or newer
70 . Integrated debian packaging changes
72 . Visual Studio 2015 solutions are not part of the release
73 packaging anymore. When you require these you need to generate
74 them locally using MPC
76 . Improve multicast join by interface name on Windows
78 . Fixed ACE_INT64_FORMAT_SPECIFIER (and similar) preprocessor macros
79 on macOS (Apple-clang) with -std=c++11 or higher
81 . On Windows, use unnamed kernel objects (Events and Semaphores)
82 for thread-scoped reader-write mutexes in ACE_OS::rwlock_init
84 USER VISIBLE CHANGES BETWEEN ACE-6.5.9 and ACE-6.5.10
85 =====================================================
87 . Add support for Embarcadero C++ Builder 10.4 Sydney using the
88 classic compiler. ACE/TAO compile with the new 32/64 bit clang
89 compilers but runtime tests show several runtime problems which
90 makes them not safe to use
92 . Make a change in the ACE Process Manager to resolve an internal
93 compiler error with Visual Studio 2019 16.5.x compilers
95 . Android enhancements for if_nameindex
97 USER VISIBLE CHANGES BETWEEN ACE-6.5.8 and ACE-6.5.9
98 ====================================================
100 . On Windows, ACE no longer defines _WIN32_WINNT. ACE wrappers for
101 if_nametoindex and if_indextoname are available if the version of the
102 Windows SDK supports them.
104 . IPv6 extended datagram receive info now supported on macOS.
106 . ACE_(U)INT8/16/32/64 map to (u)int8/16/32/64_t when C++11 has been
109 . CDR_Base uses ACE_INT64 for LongLong, all old emulated support
112 . Updated debian and rpm packaging support
114 USER VISIBLE CHANGES BETWEEN ACE-6.5.7 and ACE-6.5.8
115 ====================================================
117 . Added instructions to ACE-INSTALL.html for building ACE/TAO for Android on
120 . Embarcadero C++ Builder Rio fixes
122 . Renamed `VERSION` file to `VERSION.txt` to avoid conflicting with the
123 `version` standard header.
125 USER VISIBLE CHANGES BETWEEN ACE-6.5.6 and ACE-6.5.7
126 ====================================================
128 . Fixed compile problem with glibc 2.30 and newer
130 . gnuace makefiles: Updated handling of generated files and
131 use requires/avoids to make postbuild steps conditional
133 . Removed references to the ACE_LACKS_MONOTONIC_TIME preprocessor macro because
134 it was equivalent to ACE_LACKS_CLOCK_MONOTONIC.
136 . Exposed support status of monotonic times features using preprocessor macros.
137 See "Testing for Monotonic Time Support" in docs/ACE-monotonic-timer.html for
140 . Added support for ARM and ARM64 stack traces with Microsoft Visual C++.
142 . The "optional argument for the receive address in ACE_SOCK_Dgram::recv"
143 feature from ACE-6.5.5 is now supported on Windows. This includes enhanced
144 support for sendmsg/recvmsg on Windows.
146 USER VISIBLE CHANGES BETWEEN ACE-6.5.5 and ACE-6.5.6
147 ====================================================
149 . On Linux, the ACE_Log_Msg format specifier `%t` is now replaced with the
150 system thread id provided by gettid(), instead of the much longer pthread id.
152 . Added support for MQX
154 . Enhanced Android support
156 USER VISIBLE CHANGES BETWEEN ACE-6.5.4 and ACE-6.5.5
157 ====================================================
159 . Fixed several broken links due to the removal of
160 Douglas Schmidt website at WashU
164 . ACE_Log_Msg (and therefore ACE_DEBUG and ACE_ERROR) now uses
165 Android's logging system (aka Logcat) by default in addition to stderr
166 because stdout and stderr are discarded under normal circumstances.
167 To disable this at runtime, run:
168 ACE_LOG_MSG->clr_flags (ACE_Log_Msg::SYSLOG)
169 To disable this at compile time include these lines in config.h:
170 #define ACE_DEFAULT_LOG_FLAGS ACE_Log_Msg::STDERR
171 #define ACE_DEFAULT_LOG_BACKEND_FLAGS 0
173 . When statically linking to OpenSSL, prevent usage of the preloaded and
174 unpredictable system SSL library when using ace_openssl.
176 . minizip has been moved from ACE to DANCE
178 . Add initial support for Visual Studio 2019
180 . Validated ACE for usage SLES15.0 x86_64 using 32bit g++ compiler
182 . Add optional argument for the receive address in ACE_SOCK_Dgram::recv
184 USER VISIBLE CHANGES BETWEEN ACE-6.5.3 and ACE-6.5.4
185 ====================================================
187 . Fix ACE_Vector::end(), which now correctly
188 represents the end of the elements of the vector
189 instead of the end of the base array.
191 USER VISIBLE CHANGES BETWEEN ACE-6.5.2 and ACE-6.5.3
192 ====================================================
194 . Enhance Android support
196 . Fix AIX and Solaris linking rpath errors
198 . Add support for SSL_INCDIR/SSL_LIBDIR and XERCESC_INCDIR/XERCESC_LIBDIR
199 to specify a custom include/lib dir as required for vcpkg versions of
202 USER VISIBLE CHANGES BETWEEN ACE-6.5.1 and ACE-6.5.2
203 ====================================================
205 . Enhanced C++Builder XE2 support
207 . ACE_QtReactor can be built with Qt version 5 using the qt5 MPC feature
209 USER VISIBLE CHANGES BETWEEN ACE-6.5.0 and ACE-6.5.1
210 ====================================================
212 . At the moment C++11 or newer is enabled ACE_Strong_Bound_Ptr
213 doesn't provide the convenience functions to use a
214 std::auto_ptr anymore
216 . Optimized CDR std::(w)string insertion and extraction
217 when C++11 or newer is enabled
219 . Solved Visual Studio 2017 solution loading due to duplicate
220 files generated in a project file
222 USER VISIBLE CHANGES BETWEEN ACE-6.4.8 and ACE-6.5.0
223 ====================================================
225 . The ACE core libraries now use std::unique_ptr instead
226 of std::auto_ptr when C++11 or newer is enabled
228 USER VISIBLE CHANGES BETWEEN ACE-6.4.7 and ACE-6.4.8
229 ====================================================
231 . Enhanced Embarcadero C++ Builder support
233 . ACE XML_Utils enhancements
235 . Debian packaging enhancements
237 . Support for clang6 and gcc8
239 . Enhanced Android support
241 . Remove addr_any restriction from ipv6_only UDP
243 USER VISIBLE CHANGES BETWEEN ACE-6.4.6 and ACE-6.4.7
244 ====================================================
246 . Added a new, optional argument named ipv6_only to:
247 ACE_Acceptor::ACE_Acceptor
249 ACE_SOCK_Dgram::ACE_SOCK_Dgram
251 If ipv6_only is 0/false (the default) the socket will accept
252 both IPv6 and IPv4 connections/datagrams. If ipv6_only is
253 1/true the socket will only accept IPv6.
254 This behavior only applies when ACE_HAS_IPV6 is true and the
255 local-side IP address is the generic localhost IP address.
257 . Integrated some changes from XSC into XML Utils
259 . Enable ACE_HAS_CPP11 when we have clang with C++11 enabled
261 . Added support for cross compiling using MinGW on a Linux host
263 . Added support for FreeBSD 11
265 . Fixed issue ACE_Singleton was broken after ACE::fini, ACE::init (GitHub #554)
267 USER VISIBLE CHANGES BETWEEN ACE-6.4.5 and ACE-6.4.6
268 ====================================================
270 . Fixed some Codacy and C++ Core guidelines reported issues
272 . VxWorks 7 (SR0510) support
274 . Support make install on newer Apple MacOS versions
276 USER VISIBLE CHANGES BETWEEN ACE-6.4.4 and ACE-6.4.5
277 ====================================================
279 . Add support for OpenSSL 1.1. ACE users on Windows have
280 to add openssl11=1 to their default.features file so
281 that the correct OpenSSL library names are used.
283 USER VISIBLE CHANGES BETWEEN ACE-6.4.3 and ACE-6.4.4
284 ====================================================
286 . Enhanced support for Embarcadero C++ Builder 10.2 (Tokyo).
287 Support for bcc32/bcc64/bcc32c has been enhanced and by
288 default the clang based versions are used. When the old
289 bcc32 has to be used set the CLASSIC environment variable
290 to 1. At this moment runtime test results for bcc64/bcc32c
291 show some structural problems
293 . Add support for Oracle Studio 12.5
295 . Removed usage of ACE_REGISTER and register keyword because
296 they trigger deprecated warnings with newer gcc and clang
299 . Add support for gcc 7
301 . Enhanced Android support
303 . Fix ACE_INET_Addr::set(domain_name, AF_UNSPEC) to be set to IPv4 address
304 when IPv6 is enabled and the domain_name could be resolved to IPv4 address.
306 USER VISIBLE CHANGES BETWEEN ACE-6.4.2 and ACE-6.4.3
307 ====================================================
309 . Enhancements for Visual Studio 2017
311 . Enhancements for Android
313 USER VISIBLE CHANGES BETWEEN ACE-6.4.1 and ACE-6.4.2
314 ====================================================
316 . Added support for Mac OS X on x86_64 to get the network adapter
317 address in ACE_OS::getmacaddress().
319 . Added support for the December 2016 updates to VxWorks 7.
321 USER VISIBLE CHANGES BETWEEN ACE-6.4.0 and ACE-6.4.1
322 ====================================================
324 . The ACE_DEBUG environment variable can again be used to set the
325 internal debug flag. This used to work but was mistakenly changed
326 in an earlier release.
328 . Corrected usage of ACE_Singleton and template instantation to be
329 valid C++ (GCC cross-compiler arm-linux-gnueabihf-g++ requires it).
331 . Added support for detecting the Mac OS X version when configured with
332 ace/config-macosx.h and include/makeinclude/platform_macosx.GNU.
333 Also on 10.11 El Capitan, use rpath to avoid a problem with SIP.
335 . Added support for Android NDK r12b (Platform API 24) and improved
336 cross compilation support
338 USER VISIBLE CHANGES BETWEEN ACE-6.3.4 and ACE-6.4.0
339 ====================================================
341 . Added support for obtaining the micro version number
343 . Reduced include of ace/Auto_Ptr.h in header files
345 USER VISIBLE CHANGES BETWEEN ACE-6.3.3 and ACE-6.3.4
346 ====================================================
348 . ACE_SSL_Context::set_mode() can no longer be used to select a specific
349 SSL/TLS protocol version, use ACE_SSL_Context::filter_versions() for that.
350 This follows general advice by the OpenSSL project to go through
351 SSL_CTX_set_options() to limit the list of protocols available. The purpose
352 of ACE_SSL_Context::set_mode() is now limited to explicitly restricting
353 behaviour to client or server (defaults to both).
355 . Improve Oracle Studio support
357 . CIAO and DAnCE are forked to their own github repositories
358 and are not part anymore of the ACE+TAO release packages
360 . Fixed several Coverity reported issues
362 . Added ACE configuration for FACE safety profiles (see config-face-safety.h).
363 FACE, or Future Airborne Capability Environment http://www.opengroup.org/face,
364 specifies a restricted subset of OS functions and rules for controlling
365 dynamic memory allocation. When built in this configuration on a platform
366 that supports it, ACE conforms to the FACE requirements.
368 . ACE uses new netdb.h functions (getaddrinfo/getnameinfo) if they are
369 available, in place of deprecated functions (gethostbyname/addr).
371 USER VISIBLE CHANGES BETWEEN ACE-6.3.2 and ACE-6.3.3
372 ====================================================
374 . Visual Studio 2015 has adequate C++11 support, because of this
375 ACE_HAS_CPP11 is now defined with this compiler. A large amount
376 of warnings given by this new compiler have been fixed
378 . As part of the release script we generate vc12 and vc14
379 solution files which are packaged as part of the release
381 . Added support for VxWorks 7 (kernel mode and RTP).
382 See the comments in include/makeinclude/platform_vxworks7.0.GNU for details.
384 . Ended daily maintenance for OpenVMS
386 . Fixed a defect in ACE_INET_Addr when there is a non-empty interface
387 address list and set_port_number() is called.
389 USER VISIBLE CHANGES BETWEEN ACE-6.3.1 and ACE-6.3.2
390 ====================================================
392 . Added support for std::chrono to ACE_Time_Value. It's
393 now possible to construct an ACE_Time_Value with a
394 std::duration. Also streaming, adding and substracting
395 an ACE_Time_Value to and from a std::duration is
396 supported. Please see tests/Chrono_Test.cpp for more
399 . Allow ACE_INET_Addr to hold all addresses associated with a hostname. The
400 set of addresses always has a "current" address which is accessed by the
401 usual "get"-type methods on the class. Two new methods are added to deal
402 with multiple addresses:
403 - bool next (void): makes the next available address the "current" one.
404 Returns false if there are no more addresses.
405 - void reset (void): resets the iteration mechanism to be able to examine
406 all of the addresses again.
407 ACE_Multihomed_INET_Addr has also been enhanced so that the get_addresses()
408 methods copy all available addresses related to each name.
410 . The ACE_Addr::set_addr (void*, int) signature was changed to
411 ACE_Addr::set_addr (const void*, int). All classes that inherit from
412 ACE_Addr also have the same change. This affects ACE_ATM_Addr, ACE_Addr,
413 ACE_INET_Addr, ACE_MEM_Addr, ACE_Netlink_Addr, ACE_SPIPE_Addr, ACE_UNIX_Addr.
414 Any user-written classes derived from ACE_Addr will also need to change to
415 match the new signature for virtual method dispatch to continue working
416 properly in all cases.
418 . Added the class ACE_CDR::Fixed (CDR_Base.h) for CDR's fixed-point decimal
419 data type which stores up to 31 decimal digits and a sign bit.
421 USER VISIBLE CHANGES BETWEEN ACE-6.3.0 and ACE-6.3.1
422 ====================================================
424 . ACE is now hosted on github (https://github.com/DOCGroup/ATCD).
425 As part of the release process we now generate a ChangeLog
426 for each release which is stored in the ChangeLogs directory
428 . ACE has been ported to OpenBSD 5.6. Old versions of
429 OpenBSD are no longer supported.
431 USER VISIBLE CHANGES BETWEEN ACE-6.2.8 and ACE-6.3.0
432 ====================================================
434 . ACE now supports Oracle Solaris Studio 12.4 on Solaris.
436 . New config macros were added:
437 ACE_DISABLE_MKTEMP: Disables the availability of ACE_OS::mktemp().
438 ACE_DISABLE_TEMPNAM: Disables the availability of ACE_OS::tempnam().
439 These can be added to your $ACE_ROOT/ace/config.h to disable these
440 wrappers which are considered to be a potential security risk. Disabling
441 one or both will also disable the following:
442 - ACE_FILE_Addr::set () with the 'any' address specified.
443 - ACE_MMAP_Memory_Pool use of the 'unique' option.
445 . Reduced size of all doxygen documentation by changing the
446 type of diagrams shown
448 . Removed Windows specific workarounds from ACE_OS::setsockopt, as a
449 result SO_REUSEPORT is not defined anymore on Windows and SO_REUSEADDR
450 is passed directly to the OS
452 . By adding a 'specific' section to a MPC (base) project it is now possible
453 to have object file output directories per project for GNUACE projects.
454 The following should be added to MPC projects (bugzilla #3868):
456 build_dir_per_project=1
459 . ACE_Asynch_Write_File will now correctly accept non-socket (file, TTY ..)
460 handles (bugzilla #3762 and #3992)
462 . Fixes for VxWorks 6.9
464 USER VISIBLE CHANGES BETWEEN ACE-6.2.7 and ACE-6.2.8
465 ====================================================
467 . Add new ACE::make_event_handler<T>() which is similar
468 to std::make_shared but than for allocation of ACE
469 event handlers. This template method is only enabled
470 when ACE_HAS_CPP11 has been defined, which is set
471 automatically when a C++ compiler with adequate
472 C++11 support is used. Also ACE_Event_Handler_var is
473 extended with some C++11 specific operations
475 . For all reactor types calling cancel_timer with a
476 nullptr is now allowed, will result in a return of 0
478 . ACE_DLL and ACE_DLL_Manager have been extended with
479 the support to retrieve any dynamic loader errors
481 USER VISIBLE CHANGES BETWEEN ACE-6.2.6 and ACE-6.2.7
482 ====================================================
484 . Added configuration files for Microsoft Visual Studio 2014
486 . Added configuration files for MacOSX Yosemite
488 . Added configuration files for IBM AIX XL C++ 12.1
490 USER VISIBLE CHANGES BETWEEN ACE-6.2.5 and ACE-6.2.6
491 ====================================================
493 . Resolved several data races reported by Intel Inspector XE
495 . Added optional socket connection optimization for Windows
497 . Improve functionality and stability of running tests on
498 Android Virtual Device (AVD).
500 USER VISIBLE CHANGES BETWEEN ACE-6.2.4 and ACE-6.2.5
501 ====================================================
503 . Added the ability to build RPMs for just ACE, using an ACE-src tarball.
504 To do this add "--without tao" to the rpmbuild command line.
506 . Added support for Embarcadero C++Builder XE5 using
507 bcc32 in debug and release mode
509 . Added support for Embarcadero C++Builder XE6 using
510 bcc32 in debug and release mode
512 . When Intel C++ 2013 SP1 Update 2 is used with C++11 enabled
513 as compiler feature now also ACE_HAS_CPP11 will be defined,
514 this compiler is now able to compile all our C++11 feature
517 . Fixed several boundary bugs in the ACE RLE Compressor
519 USER VISIBLE CHANGES BETWEEN ACE-6.2.3 and ACE-6.2.4
520 ====================================================
522 . Added support for FC20 and ended maintenance for FC19
524 . Extended C++11 feature test suite
526 . Improved support for MingW64
528 . Improvements to IPv6 support on Windows
530 USER VISIBLE CHANGES BETWEEN ACE-6.2.2 and ACE-6.2.3
531 ====================================================
533 . The ACE_OS::thr_join() method will detect if the thread to be waited on is
534 the calling thread and avert that deadlock. The support needed for this
535 method is available at Vista/Windows Server 2003 and higher; to enable
536 the deadlock prevention, compile ACE with _WIN32_WINNT=0x0502 or higher.
538 . Ended maintenance and support for FC12 CEEL
540 . Further improvements of the Android port: Added new define
541 ACE_HAS_EXPLICIT_TEMPLATE_CLASS_INSTANTIATION and related macros
542 ACE_SINGLETON_TEMPLATE_INSTANTIATION and ACE_SINGLETON_TEMPLATE_INSTANTIATE
543 providing a cleaner way to support explicit template (static member or class)
546 ' Improvements of the test framework for running tests in a mixed environment
547 where different targets run on different physiscal devices (possibly having
550 USER VISIBLE CHANGES BETWEEN ACE-6.2.1 and ACE-6.2.2
551 ====================================================
553 . The max_len argument to ACE_Process::command_line_buf changed from int*
554 to size_t*. This corrects a mismatch between the argument type and the
555 data member in ACE_Process from which the value comes.
557 . Removed some include files from ACE.h. These were not required for ACE.
558 The removed includes are OS_NS_math, Flag_Manip, Handle_Ops, Lib_Find,
559 Init_ACE, Sock_Connect.h. You may have to explicitly add one of these
560 in your own code to restore compiling.
562 . Further improvements of the Android port, still work in progress.
564 USER VISIBLE CHANGES BETWEEN ACE-6.2.0 and ACE-6.2.1
565 ====================================================
567 . Added support for Fedora 19, ended daily maintenance
570 . Added support for Embarcadero C++BuilderXE4 using
571 bcc32 in debug and release mode
573 . Improved support for Android
575 USER VISIBLE CHANGES BETWEEN ACE-6.1.9 and ACE-6.2.0
576 ====================================================
580 USER VISIBLE CHANGES BETWEEN ACE-6.1.8 and ACE-6.1.9
581 ====================================================
583 . Added MinGW64 as supported platform
585 . Added support for GCC 4.8.0
587 USER VISIBLE CHANGES BETWEEN ACE-6.1.7 and ACE-6.1.8
588 ====================================================
592 USER VISIBLE CHANGES BETWEEN ACE-6.1.6 and ACE-6.1.7
593 ====================================================
595 . Integrated several patches to simplify Debian/Ubuntu
598 USER VISIBLE CHANGES BETWEEN ACE-6.1.5 and ACE-6.1.6
599 ====================================================
601 . Added new event and sema initialization methods to OS_NS_Thread
602 to allow passing pre-initialized condition attributes providing
603 basic support for using time policies in ACE Event classes.
605 . Added TIME_POLICY support to ACE_Event classes to allow for
606 monotonic timer support for ACE Events.
608 . Added new regression test:
609 Monotonic_Manual_Event_Test
611 USER VISIBLE CHANGES BETWEEN ACE-6.1.4 and ACE-6.1.5
612 ====================================================
614 . When a ACE_Event_Handler registered for signals is unregistered,
615 whether by unregistering, returning -1 from handle_signal(), or by
616 the reactor closing, the ACE_Event_Handler::handle_close() hook will
617 be called. The close_mask passed will be ACE_Event_Handler::SIGNAL_MASK.
618 In previous versions, handle_close() would only be called when the
619 handle_signal() callback returned -1. This resolves Bugzilla #2368.
621 . Some initial ACE unit tests to validate the C++11 support of various
624 . Added support for OpenSuSE 12.2
626 USER VISIBLE CHANGES BETWEEN ACE-6.1.3 and ACE-6.1.4
627 ====================================================
629 . Added a new ACE_Time_Value derived template class (Time_Value_T.h):
631 template <class TIME_POLICY> class ACE_Time_Value_T
633 This template class overloads 4 new virtual methods from
634 the ACE_Time_Value base class to provide time policy aware
641 . Updated time policy classes to return ACE_Time_Value_T<> instantiations
642 for the corresponding time policy instead of 'common' time values.
644 . Added new ACE_Monotonic_Time_Policy (Monotonic_Time_Policy.h).
645 This class provides a monotonic time source for supported
646 platforms (Windows and POSIX platforms providing the required
647 clock_gettime() time source; currently verified for Windows and
650 . Updated OS_NS_Thread to use the new time policy support in ACE_Time_Value
651 for (relative) time calculations and added new ACE_OS::condattr_setclock ()
654 . Added TIME_POLICY support to ACE_Condition_Attributes to allow for
655 monotonic timer support for ACE_Condition.
657 . Added TIME_POLICY support to ACE_Message_Queue-s, ACE_Task-s and
658 related classes to enable support for monotonic timers in the timed
659 wait methods (ACE_Condition based). See docs/ACE-monotonic-timer.html
662 . Added two new regression tests:
664 Monotonic_Message_Queue_Test
665 and updated the Bug_4055_Regression_Test to a fixed state.
667 USER VISIBLE CHANGES BETWEEN ACE-6.1.2 and ACE-6.1.3
668 ====================================================
670 . Added support for Oracle Solaris Studio 12 Update 3 (SunCC 5.12)
672 . Added new XML_Utils library which comes from DAnCE but is now also used
675 USER VISIBLE CHANGES BETWEEN ACE-6.1.1 and ACE-6.1.2
676 ====================================================
678 . Added compile time support for Windows CE 7, no runtime testing has
681 . The High Res Timer global scale factor on Windows is now 64bit, see bugzilla
682 3703 for the background of this. If you use the gsf in your code, use the
683 new ACE_High_Res_Timer::global_scale_factor_type type trait to not get
684 any conversion warnings
686 . Removed Tandem NSK v2/v3 support which resulted in cleanup throughout all
687 code. The emulations for ACE_INT64/ACE_UINT64 have been removed because no
688 platform is using them anymore
690 USER VISIBLE CHANGES BETWEEN ACE-6.1.0 and ACE-6.1.1
691 ====================================================
695 USER VISIBLE CHANGES BETWEEN ACE-6.0.8 and ACE-6.1.0
696 ====================================================
698 . Added compilation support for VxWorks 6.9, no runtime
699 testing has been performed
701 . Added ACE Run-length encoding compressor
703 . Fixed several Coverity reported issues
705 USER VISIBLE CHANGES BETWEEN ACE-6.0.7 and ACE-6.0.8
706 ====================================================
708 . Added support for MPC's new feature that creates dependency files for IDL
709 files when generating '-type gnuace' projects. Turned off by default, it
710 can be enabled in a features file or on the command line with
711 '-features ace_idl_dependencies=1'.
713 USER VISIBLE CHANGES BETWEEN ACE-6.0.6 and ACE-6.0.7
714 ====================================================
716 . Added a new method to ACE_Atomic_Op<LOCK, TYPE>, TYPE exchange (TYPE newval)
717 which does an atomic exchange of the new value with ACE_Atomic_Op's value
718 and returns the old value. The tests/Atomic_Op_Test.cpp test program has a
719 test case that exemplifies its usage; see the Exchange_Tester class.
721 . Added a new feature to timer queue templates classes: TIME_POLICY.
722 This feature is specified through a new template argument and provides the
723 timer queue with a policy for a timer (time of day) value. This feature is
724 intended to replace (in time) the gettimeofday setter method which has been
725 marked @deprecated. For now backwards compatibility is guaranteed.
726 The TIME_POLICY feature provides flexibility with regards to providing a timer
727 source to the timer queues as well as the possibility for a fully optimized
729 A number of standard time policies are provided in ace/Time_Policy.h.
730 The tests/Timer_Queue_Test.cpp has been updated to reflect and exemplify these
733 . Added the TIME_POLICY feature also to countdown time class which has now
734 become a template (ace/Countdown_Time_T.h)
736 . Initial support for Microsoft Visual Studio 11
738 . Increased overall code quality by using Coverity and Klocwork
740 USER VISIBLE CHANGES BETWEEN ACE-6.0.5 and ACE-6.0.6
741 ====================================================
743 . Removed autoconf support, only traditional way of
744 compilation is shipped from now
746 . Add support for RHEL 6.1 64bit
748 USER VISIBLE CHANGES BETWEEN ACE-6.0.4 and ACE-6.0.5
749 ====================================================
751 . Improved support for Android and added the ability to run all ACE/TAO tests
752 automatically using the Android emulator
754 USER VISIBLE CHANGES BETWEEN ACE-6.0.3 and ACE-6.0.4
755 ====================================================
757 . Removed support for C++ Builder
759 . Added support for building with the Android NDK, at least r5c. This
760 is currently available for linux host platforms.
762 USER VISIBLE CHANGES BETWEEN ACE-6.0.2 and ACE-6.0.3
763 ====================================================
765 . Added support for GCC 4.6
767 USER VISIBLE CHANGES BETWEEN ACE-6.0.1 and ACE-6.0.2
768 ====================================================
770 . The ACE_wrappers/ace/OS.h file has been restored in order to ensure
771 build-time compatibility with older ACE versions. Its use will still
772 cause your build to incur more processing time than using the needed
773 ace/OS_NS_*.h files; however, you should be able to build OS.h-including
774 code without needing to replace it with OS_NS_* includes.
776 . Improved and simplified QNX support
778 . Changed rand_r() and getpwnam_r() to conform Single UNIX Specification.
780 . Fixed performance of send_v on windows when individual iovec elements
781 are particularly large.
783 USER VISIBLE CHANGES BETWEEN ACE-6.0.0 and ACE-6.0.1
784 ====================================================
786 . Added support for MinGW with GCC 4.5
788 USER VISIBLE CHANGES BETWEEN ACE-5.8.3 and ACE-6.0.0
789 ====================================================
791 . Changed the string format produced by ACE::timestamp() from the ctime
792 format "Day Mon dd hh:mm:ss yyyy" to ISO-8601 yyyy-mm-dd hh:mm:ss.mmmmmm.
793 This makes the time easier to collate and removes any dependence on locale.
794 The change affects the output from ACE_Log_Msg's %D format and both VERBOSE
795 and VERBOSE_LIGHT timestamps in addition to application-made direct calls
798 . Removed GCC < 3 support
800 . A new build system hook was added for users to include site-private rules
801 in a build. If a file named "rules.private.GNU" in located in any build
802 directory it will get included from
803 $ACE_ROOT/include/makeinclude/rules.local.GNU. The "private_rules_file"
804 make variable can be set to override the name and/or location of the file.
805 If no such rules file exists, its absence is silently ignored. This
806 facility can be used, for example, to integrate a specialized code checker
807 into the build process.
809 USER VISIBLE CHANGES BETWEEN ACE-5.8.2 and ACE-5.8.3
810 ====================================================
812 . Two new methods were added to ACE_Pipe: close_read() and close_write().
813 These methods can be used to close individual pipe handles.
815 . The ACE::handle_ready() family of methods was changed to prefer using
816 poll() over select() on platforms where poll() is available. This
817 preference was previously only used if ACE_HAS_LIMITED_SELECT was set.
818 The ACE_HAS_LIMITED_SELECT choice is removed, making ACE_HAS_POLL the
819 setting that switches this preference. The driving reason for this
820 is that if select() is called to detect changes on a handle whose
821 values falls outside that which can safely be stored in an fdset,
822 the handle-setting macros/functions will set/clear bits outside
823 of the fdset. This results in very weird memory changes, often in
824 the stack, which are very hard to diagnose. poll()'s operation
825 does not suffer from this affect. With the growing use of large
826 numbers of handles and use of ACE_Dev_Poll_Reactor on Linux,
827 the rate at which this problem was cropping up was increasing.
829 . Added a simple helper ACE::is_equal() which compares equality of two
830 objects without using operator==. This is useful for comparing floating
833 . Removed all deprecated methods, arguments, files, classes, macros and
834 anything else we kept for years.
836 . Removed Irix/Tru64/SCO/Uniware/Cray support
838 . ACE_Pair has been removed. Users should now use std::pair.
840 . This is the last micro release that will work with GCC < 3, after x.8.3
841 support for GCC < 3 will be removed
843 USER VISIBLE CHANGES BETWEEN ACE-5.8.1 and ACE-5.8.2
844 ====================================================
846 . Added support for the Microsoft Visual Studio 2010 IDE (vc10)
848 . Removed complete support for emulated C++ exceptions
850 USER VISIBLE CHANGES BETWEEN ACE-5.8.0 and ACE-5.8.1
851 ====================================================
853 . Added support for Microsoft Visual Studio 2010 using nmake
855 . Reduced the amount of doxygen pages generated, the original settings caused
856 a doxygen generated html package of 1.4GB which was way too large
858 . Extended ACE INet addon library with:
859 * HTTP Basic Authentication
861 * Proxy CONNECT tunneling.
863 USER VISIBLE CHANGES BETWEEN ACE-5.7.9 and ACE-5.8.0
864 ====================================================
866 . There are two new ACE_Time_Value methods for getting and setting millisecond
867 values to/from ACE_UINT64 values:
869 ACE_UINT64 ACE_Time_Value::get_msec () const
870 void ACE_Time_Value::set_msec (const ACE_UINT64 &ms)
872 The former is a replacement for the existing msec(ACE_UINT64&) methods that
873 are "getter" methods whose signatures look confusingly like "setters". See
874 Bugzilla #3336 for the history behind this change.
876 The latter is for consistency and clarity.
878 . Added ACE INet addon library for Inet protocol clients (and possibly
879 servers at some point) like http://, ftp:// etc.
880 The library implements standard C++ iostream wrapper classes for
881 ACE Svc_Handler and Reactor based input/output handling, URL classes
882 and protocol handler classes.
883 NOTE: This is work in progress! There is no guarentee that the API
884 won't change in the next few releases.
885 Protocol handling is currently restricted to client side download
886 requests for HTTP and FTP.
887 Handling for upload requests should be added in the near future as well
888 as HTTP Basic Authentication.
890 USER VISIBLE CHANGES BETWEEN ACE-5.7.8 and ACE-5.7.9
891 ====================================================
893 . ACE's default makefiles (traditional ACE/GNU, not autoconf/automake)
894 now support installation with "make install".
895 Please see the ACE-INSTALL.html file for instructions.
897 . Support for the ARCH make variable has been enhanced to apply to executables
898 (in addition to libraries and object files), and the ARCH feature has been
899 integrated into the MPC-generated makefiles (to work with MPC's requires
900 and avoids features).
902 USER VISIBLE CHANGES BETWEEN ACE-5.7.7 and ACE-5.7.8
903 ====================================================
905 . ACE now uses GCC builtin Atomic instructions for short,
906 unsigned short, long, unsigned long, int, unsigned int,
907 and bool. This makes our Atomic_Op around 7 times faster
909 . ACE Service Configuration Framework now process first service
910 configuration files and then command-line directives. Thus if
911 application uses both service configuration files and command-line
912 directives then the command-line directives may override results of
913 directives in the configuration files. At the same time if the
914 application uses only the default svc.conf file and command-line
915 directives then the directives from svc.conf can not override
916 results of the user provided command-line directives.
918 . ACE_Dev_Poll_Reactor now dispatches notifications in only one thread at
919 a time. This brings notification handling more in line with behavior in
920 other Reactor implementations.
922 USER VISIBLE CHANGES BETWEEN ACE-5.7.6 and ACE-5.7.7
923 ====================================================
925 . Integrated fix for bug 3104 and regression test for
928 . Added support for GCC builtin Atomic instructions which
929 are enabled with GCC >= 4.1 for PPC32/PPC64/IA64
931 . Improved autoconf support for debian
933 . Added support for -mcpu and -mtune. Add TCPU=.. to your
934 environment/platform_macros.GNU to specify you cpu and
935 than add cpumodelflag=1 and/or tunemodelflag=1. Using
936 this with IBM Cell increased the performance significantly
938 USER VISIBLE CHANGES BETWEEN ACE-5.7.5 and ACE-5.7.6
939 ====================================================
941 . Added support for iPhone/iPod Touch/iPad. The following
942 environment variables are needed:
944 IPHONE_TARGET, should be set to either SIMULATOR or
945 HARDWARE. Set to HARDWARE if you want to deploy
946 on the iPhone/iPod Touch/iPad device.
948 IPHONE_VERSION, should be set to 3.1.2 or 3.2. One can
949 set the version to any future or past versions, but
950 only 3.1.2 and 3.2 have been tried.
952 Note that one has to compile ACE/TAO statically as
953 it is believed that the iPhone OS does not support
954 dynamic loading of external libraries. The usual
955 procedure of cross compiling ACE/TAO applies
956 (such as setting HOST_ROOT environment variable).
958 . Added support for Embarcadero C++ Builder 2010
960 . Added option to print a given ACE_Time_Value in the log
961 message instead of system supplied timestamp as in %T
963 The option is implemented as a variant of the %D/%T
964 options by using the '#' flag character like '%#D' or
965 '%#T'. When using this flag an ACE_Time_Value pointer is
966 expected in the argument list supplied with the log message.
967 This fixed Bugzilla #3221.
969 . Fixed problems with ACE_INET_Addr::is_multicast() on
970 little endian platforms. This fixed bugzilla #3729.
972 . Added compilation support for VxWorks 6.8, no runtime
973 testing has been performed
975 USER VISIBLE CHANGES BETWEEN ACE-5.7.4 and ACE-5.7.5
976 ====================================================
978 . Added MacOSX Snow Leopard support
980 . Added strsignal() wrapper
982 . Improved LynxOS support
984 . Updated Interix port
986 . Fixed MinGW compilation problems
988 USER VISIBLE CHANGES BETWEEN ACE-5.7.3 and ACE-5.7.4
989 ====================================================
991 . ACE_CDR::consolidate now returns an int, 0 is ok, -1 is failure
993 . Fixed a bug in the realclean feature of the GNU makefiles
995 . Improved Sun Studio for Linux support
997 . Improved OpenBSD support
999 USER VISIBLE CHANGES BETWEEN ACE-5.7.2 and ACE-5.7.3
1000 ====================================================
1002 . C++ Builder 2009 Update 3 is the only C++Builder that is supported, older
1003 and newer compilers are not supported anymore
1005 . Made final changes for the CEGCC port
1007 . Added a set of tests to validate C++ compiler and the stl implementation
1010 . HP-UX PARISC aCC < 3.80 are deprecated and can't be used anymore. Upgrade
1011 to aCC 3.80 or newer
1013 USER VISIBLE CHANGES BETWEEN ACE-5.7.1 and ACE-5.7.2
1014 ====================================================
1016 . Borland C++ makefiles aren't shipped anymore as part of the release
1017 but have to be generated by the user
1019 . Refactored gperf to have its own shared library so that we can reuse
1022 . Added support for SuSE Enterprise 10
1024 . ACE_Configuration_Heap::open() now returns -1 with errno EBUSY if it is
1025 called multiple times. Previous versions would allow multiple calls to
1026 open() but leak resources.
1028 USER VISIBLE CHANGES BETWEEN ACE-5.7.0 and ACE-5.7.1
1029 ====================================================
1031 . Added support for Sun Studio 12 Update Pack 1
1033 . Fixed compile problems when using Windows CE x86 release mode
1035 . Fixed compile problems for FreeBSD
1037 USER VISIBLE CHANGES BETWEEN ACE-5.6.9 and ACE-5.7.0
1038 ====================================================
1040 . Added support for the VxWorks vxAtomicLib which is available with VxWorks 6.6
1041 and newer. If you don't want to use this library undef ACE_HAS_VXATOMICLIB
1042 in your config.h file
1044 . Added support for C++ Builder 2009 Update 3
1046 . Added support for ACE/TAO using the CEGCC project
1048 . Added support for upcoming Fedora 11 and OpenSuSE Factory
1050 USER VISIBLE CHANGES BETWEEN ACE-5.6.8 and ACE-5.6.9
1051 ====================================================
1053 . Removed Borland/CodeGear C++ Builder 2007 support. If you'd like to
1054 fund this support please let us know.
1056 . Removed VxWorks 5.5.x, 6.2, and 6.3 support. If you'd like to fund
1057 this support please let us know.
1059 . Improved Unicode support.
1061 . Added support for the native Windows Vista and Windows Server 2008
1062 condition variables. These has to be enabled at compile time, and when
1063 enabled the application can only run on Vista or Server 2008. Add
1064 ACE_HAS_WTHREADS_CONDITION_VARIABLE to your config.h file to enable
1067 . Fixed a bug when trying to read a file of 1 byte when unicode is
1070 . Improved the Windows CE port
1072 . Fixed several Klocwork reported issues
1074 . Added support for MinGW 3.15
1076 . Added support for Incredibuild, which is an MSVC++ feature that
1077 optimizes compiles via distributing builds.
1079 USER VISIBLE CHANGES BETWEEN ACE-5.6.7 and ACE-5.6.8
1080 ====================================================
1082 . Added a new function ACE::isdotdir() which determines if a specified
1083 pathname is "dot dir" (ie. "." or ".."). ACE::isdotdir() is significantly
1084 faster than pair of strcmp() calls.
1086 . Last micro release that is maintained for Borland/CodeGear C++
1087 Builder 2007 and Intel C++ on Windows.
1089 . Fixed crash when ACE thread tries to inherit the logging attributes
1090 from non ACE threads.
1092 . Fixed many small compile and test errors that occur on some platforms.
1094 . Fixed log output formatting on some platforms.
1096 . Bugs fixed: 2748, 3164, 3480, 3494, 3502, 3541, 3542, 3544, 3557.
1098 USER VISIBLE CHANGES BETWEEN ACE-5.6.6 and ACE-5.6.7
1099 ====================================================
1101 . Changed the automake build's feature test for a "usable" config
1102 to warn on failure instead of exiting with an error. This should
1103 make it easier to diagnose configure failures, as the script will
1104 now generate a config.h file even when the test fails.
1106 . Removed borland MPC template, use the bmake template from now
1108 . Added Windows Mobile 6 support and improved the WinCE port
1110 . Removed BCB6 and BCB2006 support
1112 . Added BCB2009 MPC template
1114 . Updated stat struct on Windows CE to match the stat struct on other
1115 platforms so that application code can be written portable
1117 . Added new ACE_OS wrappers: raise, atof, atol, isblank, isascii,
1118 isctype, and iswctype
1120 . Added ACE_OS wrapper for narrow-char version of strtoll.
1122 . ACE_OS wrappers for wide-char versions of strtol, strtoul,
1123 strtoll, and strtoll.
1125 . Added Visual Studio 2010 (vc10) support
1127 . Added a new feature for the "Traditional Make" build facility to allow
1128 building for multiple architectures out of a single source directory.
1129 To use this facility, set the ARCH make variable. The ARCH value will be
1130 used to add a subdirectory layer below the source directory where the
1131 traditional .shobj, .obj, etc. directories will be placed.
1133 . Added support for HP-UX 11iv3 on Integrity using aC++
1135 . ACE (and TAO) can now be built using GNU make and the Microsoft Visual C++
1136 compiler and linker. See include/makeinclude/platform_win32_msvc.GNU for
1139 . Added support for FC10
1141 USER VISIBLE CHANGES BETWEEN ACE-5.6.5 and ACE-5.6.6
1142 ====================================================
1144 . Added an option to the ACE_Process_Options class to use a wchar_t
1145 environment buffer on Windows.
1147 . A new configure option, --enable-rcsid, was added to the autoconf build.
1148 This is used to embed RCS IDs in object files.
1150 . A new method was added: void ACE_Time_Value::msec (ACE_UINT64&)
1151 This method, like the existing msec(ACE_UINT64&)const method, obtains the
1152 time value in milliseconds and stores it in the passed ACE_UINT64 object.
1153 This method was added so that msec(ACE_UINT64&) can be called on both
1154 const and non-const ACE_Time_Value objects without triggering compile errors.
1155 Fixes Bugzilla #3336.
1157 . Added ACE_Stack_Trace class to allow users to obtain a stack trace
1158 within their application on supported platforms. A new conversion
1159 character, the question mark, was added to ACE_Log_Msg for stack
1162 . Added iterator support to ACE_Message_Queue_Ex class. The resulted in
1163 the addition of ACE_Message_Queue_Ex_Iterator class and
1164 ACE_Message_Queue_Ex_Reverse_Iterator class.
1166 . Renamed gperf to ace_gperf to prevent clashes with the regular gperf
1167 tool that is available in linux distributions
1169 . Added support for FC9
1171 . Added support for OpenSuSE 11.0
1173 . Improved support for GCC 4.2 and 4.3
1175 . Added support for CodeGear C++ Builder 2009
1177 USER VISIBLE CHANGES BETWEEN ACE-5.6.4 and ACE-5.6.5
1178 ====================================================
1180 . Added new Monitoring lib that can be used to store and retrieve
1181 counters. This is disabled by default because it is not 100%
1182 finished yet, with the next release it will be enabled by default
1184 . Fixed bug in ACE_Service_Config when it was used from a thread
1187 . Add VxWorks 6.x kernel mode with shared library support to ACE
1189 . Extended the implementation of Unbounded_Set, which has been
1190 renamed Unbounded_Set_Ex, to accept a second parameter which is
1191 a comparator that implements operator() which returns true if
1192 the items are equivalent. Unbounded_Set has been reimplemented
1193 in terms of Unbounded_Set_Ex using a comparator that uses operator==,
1194 which captures the previous behavior.
1196 . Added support for Intel C++ on MacOSX
1198 USER VISIBLE CHANGES BETWEEN ACE-5.6.3 and ACE-5.6.4
1199 ====================================================
1201 . Reworked the relationship between ACE_Service_Config and
1204 . Improved autoconf support
1206 . Improved AIX with gcc support
1208 . Improved OpenVMS support
1210 . Improved VxWorks support
1212 USER VISIBLE CHANGES BETWEEN ACE-5.6.2 and ACE-5.6.3
1213 ====================================================
1215 . Deprecated Visual Age 5 and older
1217 . Closed a rare race condition hole whereby ACE_Atomic_Op<> function
1218 pointers would not be fully initialized prior to use. See bugzilla
1221 . Tweaks to support MacOS X Leopard (10.5 and 10.5.1) on Intel
1223 . Fixed compile problems with MinGW with GCC 4.2. Do note that we do see
1224 much more test failures then when using GCC 3.4.
1226 . Changed to use synchronous exception handling with msvc 8/9 which is the
1227 default. Asynchrous exception handling does catch access violations but
1228 it leads to lower performance and other problems. See also bugzilla 3169
1230 . Make ace_main extern C with VxWorks so that it doesn't get mangled
1232 . Fixed compile errors and warnings for VxWorks 6.6
1234 . Added an MPC generator for the WindRiver Workbench 2.6 which is shipped
1237 . Added support for CodeGear C++ Builder 2007 with December 2007 update
1240 . Added support for VxWorks 5.5.1
1242 . Implemented the const reverse iterator for ACE_Hash_Map_Manager_Ex
1244 . Increased support for using ACE_Hash_Map_Manager_Ex with STL <algorithm>
1245 functions based on latest standard C++ draft
1247 USER VISIBLE CHANGES BETWEEN ACE-5.6.1 and ACE-5.6.2
1248 ====================================================
1250 . ACE-ified the UUID class, which will change user applications slightly.
1252 . Added support for Sun Studio 12
1254 . Added support for Intel C++ 10.1
1256 . Fixed runtime problems with VxWorks 6.x in kernel mode, several improvements
1257 have been made to ACE, but also some problems in the VxWorks kernel have
1258 been found for which WindRiver has made patches.
1260 . Added support for VxWorks 6.5 kernel mode
1262 . Added support for MacOS 10.5
1264 . Support for MacOS 10.4 is now deprecated.
1266 . Added support for OpenSuSE 10.3
1268 . Added support for RedHat 5.1
1270 . Added support for Microsoft Visual Studio 2008
1272 . Added support for Fedora Core 8
1274 . Added support for Ubuntu 7.10
1276 . With Ubuntu 7.04 and 7.10 we can't use visibility, that results in
1277 unresolved externals when building some tests. With lsb_release we
1278 now detect Ubuntu 7.04 and 7.10 automatically and then we disable
1281 . Removed deprecated (un)subscribe methods from ACE_SOCK_Dgram_Mcast
1283 . Added an additional replace() method to ACE_OuptutCDR for replacing a
1284 ACE_CDR::Short value. Also added write_long_placeholder() and
1285 write_short_placeholder() to properly align the stream's write pointer,
1286 write a placeholder value and return the placeholder's pointer. The pointer
1287 can later be used in a call to replace() to replace the placeholder with a
1290 . Initial support for VxWorks 6.6
1292 . Removed support for pthread draft 4, 6, & 7. This makes the ACE threading
1295 . Improved autoconf support
1297 . Fixed TSS emulation problems
1299 . Changed ACE_thread_t and ACE_hthread_t to int for VxWorks kernel mode. All
1300 thread creation methods do have an additional const char* argument to
1301 specify the task name, this now also works with pthread support enabled
1303 . Use bool in much more interfaces where this is possible
1305 . Added support for Debian Etch
1307 . Fixed ACE CDR LongDouble support on VxWorks 6.x
1309 . Added Microsoft Visual Studio 2008 project files to the release packages
1311 . Fixed a few bugs in the ACE_Vector template
1313 USER VISIBLE CHANGES BETWEEN ACE-5.6 and ACE-5.6.1
1314 ====================================================
1316 . Added support for CodeGear RAD Studio 2007
1318 . Added support for CodeGear C++ Builder 2007 Update 3
1320 . Modified the definiton of ACE_DEFAULT_THREAD_KEYS on Windows so it
1321 is based on the version of the OS as defined by Microsoft in this web
1322 page: http://tinyurl.com/2jqcmd
1323 This fixes bugzilla #2753
1325 USER VISIBLE CHANGES BETWEEN ACE-5.5.10 and ACE-5.6
1326 ====================================================
1328 . OpenVMS 8.3 on IA64 port
1330 . Added autoconf support for Intel C++ 10.0
1332 . Improved autoconf support on Linux, Solaris, NetBSD and HPUX
1334 . CodeGear C++ Builder 2007 Update 2 support
1336 . The netsvcs's client logging daemon has a new configuration option,
1337 -llocal-ip[:local-port], which can be used to specify the local IP
1338 address and port number for the client logging daemon's connection to
1339 the server logging daemon. If the -l option is specified with an IP
1340 address but not a port number, an unused port number is selected.
1342 . A new ACE+TAO port to LabVIEW RT 8.2 with Pharlap ETS. The host build
1343 environment is Windows with Microsoft Visual Studio .NET 2003 (VC7.1).
1344 Please see the ACE-INSTALL.html file for build instructions.
1346 USER VISIBLE CHANGES BETWEEN ACE-5.5.9 and ACE-5.5.10
1347 ====================================================
1349 . The ACE_utsname struct, used in the ACE_OS::uname() function when the
1350 platform doesn't provide the standard utsname struct, was changed. It
1351 defines a number of text fields and their types were changed from
1352 ACE_TCHAR[] to char[] in order to be consistent with all other platforms.
1353 This removes the need to write different code for platforms where
1354 ACE_LACKS_UTSNAME_T is set and that have wide characters (most probably
1355 Windows). Fixes Bugzilla #2665.
1357 . The ACE::daemonize() "close_all_handles" parameter was changed from
1358 an "int" to a "bool" to better reflect how it is used.
1360 . VxWorks 6.5 support. Compilation of the core libraries has been validated
1361 but no runtime testing has been performed.
1363 . CodeGear C++ Builder 2007 support.
1365 . The FaCE utility was moved from the ACE_wrappers/apps directory to
1366 ACE_wrappers/contrib. It is used for testing ACE+TAO apps on WinCE.
1367 See the ACE_wrappers/contrib/FaCE/README file for more information.
1369 . ACE_INET_Addr::set (u_short port, char *host_name, ...) now favors IPv6
1370 addresses when compiled with ACE_HAS_IPV6 defined and the supplied address
1371 family is AF_UNSPEC. This means that if host_name has an IPv6 address in
1372 DNS or /etc/hosts, that will be used over an IPv4 address. If no IPv6
1373 address exists for host_name, then its IPv4 address will be used.
1375 . Intel C++ 10.0 support
1377 . Support for the version of vc8 for 64-bit (AMD64) shipped with the Microsoft
1380 . Fixed ACE_Vector::swap() (bugzilla #2951).
1382 . Make use of the Atomic_Op optimizations on Intel EM64T processors. The
1383 Atomic_Op is now several times faster on EM64T then with previous versions
1386 USER VISIBLE CHANGES BETWEEN ACE-5.5.8 and ACE-5.5.9
1387 ====================================================
1389 . Use Intel C++ specific optimizations for Linux on IA64
1391 . Improved support for ACE_OS::fgetc. Added support for ACE_OS::fputc,
1392 ACE_OS::getc, ACE_OS::putc and ACE_OS::ungetc.
1394 . Added support for ACE_OS::log2(double) and improved support for
1397 . Shared library builds on AIX now produce a libxxx.so file instead of the
1398 previous practice of producing libxxx.a(shr.o).
1400 . GCC 4.1.2 that comes with Fedora 7 seems to have a fix for the visibility
1401 attribute we use for the singletons. F7 users will therefore need to
1402 define the following in your config.h file.
1403 ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS 1
1405 . Fixed (rare) problem in TP_Reactor where incorrect event handler was
1408 . Reduced footprint on some platforms, particularly those that use
1411 USER VISIBLE CHANGES BETWEEN ACE-5.5.7 and ACE-5.5.8
1412 ====================================================
1414 . Extended ACE_Event constructor with optional LPSECURITY_ATTRIBUTES
1417 . Added support for QT4
1419 . Added support to integrate with the FOX Toolkit (www.fox-toolkit.org)
1421 . Added support for Microsoft Visual Studio Code Name "Orcas", which is
1424 . Added ability to provide an optional priority when calling
1425 ACE_Message_Queue_Ex::enqueue_prio(). There was previously no way
1426 to specify a priority for queueing.
1428 . Removed support for Visual Age on Windows.
1430 . ACE will compile once again with ACE_LACKS_CDR_ALIGNMENT #defined.
1432 . ACE_Process_Manager::terminate() no longer removes the process from the
1433 process descriptor table; the pid remains available in order to call
1434 ACE_Process_Manager::wait().
1436 USER VISIBLE CHANGES BETWEEN ACE-5.5.6 and ACE-5.5.7
1437 ====================================================
1439 . ACE 5.5 contained a set of pragmas which prevented Visual Studio 2005 (VC8)
1440 from issuing warnings where C run-time functions are used but a more
1441 secure alternative is available. For more information on the C run-time
1442 issues and Microsoft's response, please see the following MSDN page:
1443 http://msdn2.microsoft.com/en-us/library/8ef0s5kh(VS.80).aspx.
1444 In this beta, the pragmas which prevented the warnings have been removed.
1445 The ACE library has been reviewed and most of the use of "unsafe" functions
1446 has been fixed where possible. Since not all of the warnings emanating from
1447 ACE are situations that can or should be fixed, the ACE VC8 projects will
1448 prevent the warnings while building the ACE kit and its contained examples,
1449 tests, etc. The warnings are disabled by adding Microsoft-specified macros
1450 to the compile line via MPC. If desired, the warnings can be re-enabled by
1451 regenerating the project files with different MPC features. Note, however,
1452 that while ACE without warnings caused by the new C run-time functions, your
1453 application builds may trigger these warnings either by use of the "unsafe"
1454 C run-time functions or via use of an inlined ACE_OS method which uses it.
1455 If the warning is caused by an ACE_OS method, there is a more safe alternate
1456 available, probably located by appending _r to the method name (e.g.,
1457 instead of using ACE_OS::ctime(), use ACE_OS::ctime_r()).
1458 There are other cases where the compiler may have issued warnings and ACE
1459 prevented this via a #pragma. These #pragmas have been removed as well.
1460 This may cause your application builds to trigger more warnings from VC8
1461 than past ACE versions. You should review your code and either correct
1462 the code or disable the warnings locally, as appropriate.
1464 . The "release" argument to a number of ACE_String_Base<> methods was changed
1465 from int to bool to more accurately reflect its purpose. The following
1466 methods were changed:
1468 ACE_String_Base (const CHAR *s,
1469 ACE_Allocator *the_allocator = 0,
1472 ACE_String_Base (const CHAR *s,
1473 ACE_Allocator *the_allocator = 0,
1474 bool release = true);
1476 ACE_String_Base (const CHAR *s,
1478 ACE_Allocator *the_allocator = 0,
1481 ACE_String_Base (const CHAR *s,
1483 ACE_Allocator *the_allocator = 0,
1484 bool release = true);
1486 void set (const CHAR * s, int release = 1);
1488 void set (const CHAR * s, bool release = true);
1490 void set (const CHAR * s, size_type len, int release);
1492 void set (const CHAR * s, size_type len, bool release);
1494 void clear (int release = 0);
1496 void clear (bool release = false);
1498 Since ACE_String_Base forms the basis of the ACE_CString and ACE_TString
1499 classes, this may ripple out to user application code. If you encounter
1500 errors in this area while building your applications, replace the
1501 int argument you are passing to the method now with either true or false.
1503 . Solutions for the eVC3/4 platform have been removed from this
1504 release. Note that we package WinCE projects/workspaces for use
1507 . There were 3 new ACE_Log_Msg logging format specifiers added to make logging
1508 easier for types that may change sizes across platforms. These all take one
1509 argument, and the new formats are:
1510 %b - format a ssize_t value
1511 %B - format a size_t value
1512 %: - format a time_t value
1514 . The ace/Time_Request_Reply.h and ace/Time_Request_Reply.cpp files were
1515 moved from $ACE_ROOT/ace to $ACE_ROOT/netsvcs/lib. The time arguments in
1516 the public API to ACE_Time_Request were changed from ACE_UINT32 to time_t
1517 and the portions of the on-wire protocol that contains time was changed from
1518 ACE_UINT32 to ACE_UINT64. Thus, code that uses the ACE_Time_Request class
1519 to transfer time information will not interoperate properly with prior
1520 ACE versions. This will affect uses of the netsvcs time clerk/server.
1522 . The portion of the ACE_Name_Request class that carries the on-wire seconds
1523 portion of a timeout value was changed from ACE_UINT32 to ACE_UINT64. This
1524 means that Name server/clients at ACE 5.5.7 and higher will not interoperate
1525 properly with previous ACE versions' name servers/clients.
1527 . In the ACE_Log_Record (ACE_Log_Priority, long, long) constructor, the
1528 second argument, long time_stamp, was changed to be of type time_t. This
1529 aligns the type with the expected value, a time stamp such as that returned
1530 from ACE_OS::time().
1532 . Added support for VxWorks 6.x cross compilation using a Windows host
1535 . Added support for VxWorks 6.x using the diab compiler
1537 . The destructor of ACE_Event_Handler no longer calls
1538 purge_pending_notifications(). Please see bugzilla #2845 for the full
1540 (http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=2845)
1542 USER VISIBLE CHANGES BETWEEN ACE-5.5.5 and ACE-5.5.6
1543 ====================================================
1545 . The ACE_TYPENAME macro has been added to those that are not
1546 available when the ACE_LACKS_DEPRECATED_MACROS config option is set
1547 (it is not set by default). You are encouraged to replace the use of
1548 ACE_TYPENAME with the C++ typename keyword before the ACE_TYPENAME
1549 macros is removed from ACE in the future.
1551 . A new script, rm_exception_macros.pl, has been added to help users
1552 remove the use of the ACE exception macros from their own code.
1554 USER VISIBLE CHANGES BETWEEN ACE-5.5.4 and ACE-5.5.5
1555 ====================================================
1557 . The prebuild MPC keyword is now supported by the gnuace project type.
1558 This fixes Bugzilla #2713.
1560 . Support for Windows earlier than NT 4 SP2 was removed. ACE will not build
1561 for Windows 95, 98, Me, etc. out of the box any longer.
1563 . Reformat stringified IPv6 addresses to use [addr]:port when printing
1564 addresses that contain ':' such as "::1".
1566 . Added method to ACE_INET_Addr to determine if address is IPv6 or
1569 . Fixed a bug in ACE_Async_Timer_Adapter_Timer_Queue_Adapter<TQ> where the
1570 gettimeofday function of the timer queue was ignored when setting the alarm.
1572 . Fixed a problem where, on Solaris 9 onwards, calling
1573 ACE_OS::thr_create(THR_NEW_LWP) more than 2^15 (65535) times in a
1574 process will fail. See changelog entry from "Wed Jan 3 22:31:05 UTC
1575 2007 Chris Cleeland <cleeland_c@ociweb.com>" for more information.
1577 . Fixed a bug in ACE_QtReactor where the two select() calls in that function
1578 might select on different handler sets.
1580 . ACE_SOCK_IO::recvv(iovec[], size_t, const ACE_Time_Value* = 0) and
1581 ACE_SOCK_IO::sendv (const iovec[], size_t, const ACE_Time_Value* = 0) methods
1582 were changed to specify the iovec count argument as int instead of size_t
1583 since it gets reduced to int in the underlying OS calls (usually).
1585 . The following deprecated methods were removed:
1587 ssize_t ACE_SOCK_IO::recv (iovec iov[],
1589 const ACE_Time_Value *timeout = 0) const;
1591 ssize_t ACE_SOCK_IO::recv (iovec *io_vec,
1592 const ACE_Time_Value *timeout = 0) const;
1594 ssize_t ACE_SOCK_IO::send (const iovec iov[],
1596 const ACE_Time_Value *timeout = 0) const;
1598 These were previously replaced with more specific recvv() and sendv()
1601 . The ACE_Service_Repository::find(const ACE_TCHAR name[],
1602 const ACE_Service_Type **srp = 0,
1603 int ignore_suspended = true) const
1604 method's 'ignore_suspended' parameter was changed from int to bool to
1605 reflect it's purpose as a yes/no indicator.
1607 . Added --enable-ace-reactor-notification-queue configure script
1608 option to the autoconf build for enabling the Reactor's userspace
1609 notification queue (defines ACE_HAS_REACTOR_NOTIFICATION_QUEUE in
1612 . The int ACE_OutputCDR::consolidate(void) method was contributed by
1613 Howard Finer at Sonus Networks. This method consolidates any continuation
1614 blocks used by an ACE_OutputCDR object into a single block. It's useful for
1615 situations which require access to a single memory area containing the
1616 encoded stream, regardless of its length, when the length cannot be known
1619 . There are a number of new methods defined on ACE_String_Base<CHAR>:
1621 size_t capacity (void) const: This method returns the number
1622 of allocated CHAR units in the string object.
1624 void fast_resize (size_t): This method manage the sizing/reallocating
1625 of the string, but doesn't do the memory setting of resize().
1627 bool operator!= (const CHAR *) const
1628 bool operator== (const CHAR *) const: These methods compare the
1629 string with a nul-terminated CHAR* string.
1631 nonmember functions operator== and operator!= where also added
1632 that compare const ACE_String_Base and const CHAR*; these make
1633 it possible to switch ACE_String and CHAR* on either side of
1636 Thank you to Kelly Hickel <kfh at mqsoftware dot com> for these additions.
1638 . There are 2 new build options on the traditional make command:
1639 dmalloc and mtrace. When specified at build time (e.g. make mtrace=1)
1640 the PLATFORM_DMALLOC_CPPFLAGS and/or PLATFORM_MTRACE_CPPFLAGS values
1641 are added to CPPFLAGS. For dmalloc, the PLATFORM_DMALLOC_LDFLAGS and
1642 PLATFORM_DMALLOC_LIBS are added to LDFLAGS and LIBS, respectively.
1643 Thank you to Howard Finer for supplying these additions.
1645 . Added the ability to specify additional purify and quantify command-line
1646 options by setting PLATFORM_PURIFY_OPTIONS and PLATFORM_QUANTIFY_OPTIONS,
1647 respectively. Thank you to Howard Finer for supplying these additions.
1649 . Added the ability to use trio (http://sourceforge.net/projects/ctrio/)
1650 if platform lacks decent support for vsnprintf. trio support is
1651 enabled by defining trio=1 in plaform_macros.GNU
1653 . Removed Irix 5, DGUX, and m88k support
1655 . Improved LynxOS 4.2 support
1657 . VxWorks 6.4 support
1659 . Added support for FC6. Because the GCC 4.1.1 version that gets shipped
1660 has a fix for the visibility attribute we use for the singletons
1661 you will need to define the following in your config.h file. This can't be
1662 done automatically because SuSE 10.2 gets shipped with GCC 4.1.2 but
1663 doesn't have the same fix
1664 ACE_GCC_HAS_TEMPLATE_INSTANTIATION_VISIBILITY_ATTRS 1
1668 USER VISIBLE CHANGES BETWEEN ACE-5.5.3 and ACE-5.5.4
1669 ====================================================
1671 . Added appropriate intptr_t and uintptr_t typedefs on platforms that
1672 don't provide them (i.e. when ACE_LACKS_INTPTR_T is defined).
1674 . Added ability to explicitly choose support for 32 bit or 64 bit file
1675 offsets on all platforms. Define the _FILE_OFFSET_BITS preprocessor
1676 symbol to either 32 or 64 to choose the desired number of file
1677 offset bits. This preprocessor symbol is supported natively by most
1678 UNIX and UNIX-like operating systems, and supported by ACE on
1679 Windows. Use the new ACE_OFF_T typedef to refer to file offsets
1680 across UNIX and Windows portably.
1682 . 64-bit file offsets are now enabled by default in Win64
1685 . Improved support for 64 bit platforms (64 bit addresses, etc).
1687 . Added STL-style traits, iterators and a swap() method to the
1688 ACE_Array_Base<> class template.
1690 . Added STL-style traits and iterator accessors to the
1691 ACE_Hash_Map_Manager_Ex<> class template, as well as new find() and
1692 unbind() methods that return (as an "out" parameter) and accept
1693 iterators, respectively.
1695 . Greatly improved event handler dispatch performance in
1696 select()-based reactors (e.g. ACE_Select_Reactor and ACE_TP_Reactor)
1697 for large handle sets on Windows. Previous event handler search
1698 were linear, and are now constant on average.
1700 . Addressed a number of Coverity errors (CHECKED_RETURN, DEADCODE,
1701 LOCK, USE_AFTER_FREE, RESOURCE_LEAK, FORWARD_NULL).
1703 . Added STL-style "element_type" trait to all ACE auto_ptr class
1706 . Removed support for LynxOS 3.x.
1708 . Resolved Bugzilla #2701 to ensure fini() is called for all
1709 Service Objects upon calling ACE_Service_Config::close()
1711 . VxWorks 5.5.2 has been tested, for ACE the support is exactly
1712 the same as for VxWorks 5.5.1. No specific defines or flags have
1715 USER VISIBLE CHANGES BETWEEN ACE-5.5.2 and ACE-5.5.3
1716 ====================================================
1718 . Added the base projects for executionmanager_stub and plan_generator.
1720 . Added the ACE_Hash_MultiMap_Manager class and its test file.
1722 . Changed the ACE_Synch_Options::operator[] method to return bool rather than
1723 int. The value returned is a yes/no indication of whether or not the
1724 specified option(s) are set in the object.
1726 . Changed the prototype(s) for ACE::debug () to return (and take) a
1727 bool. This is consistent with the original intent for this
1728 feature. If you have been using it like 'ACE::debug () > 0' or
1729 'ACE::debug (1)', you may have to rebuild ACE. The value of the
1730 ACE_DEBUG environment variable can be used to specify the initial
1731 value for ACE::debug(), at the process start up.
1733 . An assembler (within a C source file) based implementation for SPARC
1734 of atomic operations suitable for use with the
1735 ACE_Atomic_Op<ACE_Thread_Mutex, long> and
1736 ACE_Atomic_Op<ACE_Thread_Mutex, unsigned long> specializations has
1737 been added. Currently, it can only be enabled by setting the
1738 atomic_ops_sparc make macro to 1 when using the GNUACE build system with
1739 the Solaris SunCC compiler. It should be noted that this requires the
1740 -xarch=v8plus (or higher) be added to the CFLAGS make macro or the
1741 assembler code will not compile.
1743 . The ACE_Message_Queue_Ex_N<class ACE_MESSAGE_TYPE, ACE_SYNCH_DECL> class
1744 is new, contributed by Guy Peleg <guy dot peleg at amdocs dot com>.
1745 ACE_Message_Queue_Ex_N<class ACE_MESSAGE_TYPE, ACE_SYNCH_DECL> is
1746 similar to ACE_Message_Queue_Ex in that the object queued is a
1747 template parameter. However, ACE_Message_Queue_Ex_N allows the
1748 enqueueing and dequeueing of multiple chained objects at once. This
1749 wasn't added to ACE_Message_Queue_Ex because the chained object
1750 functionality requires the ACE_MESSAGE_TYPE class to have a
1751 ACE_MESSAGE_TYPE *next (void) const method, analogous to
1752 ACE_Message_Block::next(), to follow the chain and this would
1753 probably break existing applications using ACE_Message_Queue_Ex.
1754 The ACE_wrappers/tests/Message_Queue_Test_Ex.cpp test has an example of
1755 how to use the new class.
1757 . The selector and comparator function pointer arguments to ACE_OS::scandir()
1758 and ACE_Dirent_Selector are now marked as extern "C" to enforce their
1759 use with a C RTL function. User code that defines functions which are
1760 passed as the selector or comparator arguments which are not declared
1761 extern "C" may generate compile warnings. To resolve this, add extern "C"
1762 to the function's signature. See ACE_wrappers/tests/Dirent_Test.cpp for
1765 . To address a problem in the ACE string interface that prevented
1766 substring or character searches in very large strings (e.g. greater
1767 than the maximum value of an ssize_t type) from being correctly
1768 reported to the caller, the find(), rfind() and strstr() methods now
1769 return an unsigned integer (size_t) instead of a signed one
1770 (ssize_t). Affected classes include:
1777 Unless you have been explicitly using -1 instead of npos when
1778 comparing the return value of find(), rfind() and strstr(), and/or
1779 assigning the return value to ssize_t you should not see any
1780 difference. A new size_type typedef has been added to the ACE string
1781 class to aid developers. This typedef is analogous to the standard
1782 C++ string::size_type typedef.
1784 The ACE_String_Base<>::strstr() documentation and the default
1785 rfind() argument erroneously referred to -1 instead of npos. Those
1786 instances have been corrected.
1788 To summarize, a "no position" condition is denoted using the npos
1789 constant, not -1. It can be referred directly by scoping it with the
1790 appropriate string class (e.g. ACE_CString::npos, ACE_WString::npos,
1793 . Changing the shared library extension for hpux ia64 to ".so". On
1794 HP-UX 11i Version 1.5 the naming scheme is lib*.sl for PA and
1797 . The ACE_Refcounted_Auto_Ptr reset() and release() methods were changed
1798 per Bugzilla #1925. They will both now detach from the underlying
1799 ACE_Refcounted_Auto_Ptr_Rep object; reset() will create a new one for
1800 the new pointer specified as its argument. This change may cause referenced
1801 objects to be deleted in cases where previous ACE versions would not have.
1803 . The return type of "ACE_Refcounted_Auto_Ptr::null (void) const" changed
1804 from int to bool. It's possible values, true and false, have not changed.
1806 . TTY_IO now accepts "none" as a valid parity value. Due to this change
1807 'parityenb' member is now deprecated and will be removed in the future.
1808 The users of TTY_IO class should change their code to use only 'paritymode'
1809 member for parity control and leave 'parityenb' unchanged (it is
1810 enabled by default in class constructor).
1812 . Support for Intel C++ 9.1 on Windows and Linux
1814 . VxWorks 6.3 support
1816 . Fixed Bugzilla #2648 to make sure ACE_Service_Object::fini()
1817 is called iff ACE_Service_Object::init() succeeded, as per
1820 . Added preliminary support for Mac OS X 10.4 on Intel CPU's.
1822 . Fixed Bugzilla #2602 to re-enable XML Service Configurator
1825 USER VISIBLE CHANGES BETWEEN ACE-5.5.1 and ACE-5.5.2
1826 ====================================================
1828 . Added support for:
1829 - VxWorks 6.2 for the rtp model using pthread support
1830 - OpenVMS 8.2 for Alpha
1832 . Removed code and configurations that provided support for:
1833 - Visual C++ 6.0 and 7.0
1836 - KAI C++ on all platforms
1838 . Explicit template instantiation support has been removed. This effectively
1839 removes support for Sun Forte 6 and 7 which required explicit template
1840 instantiation to build ACE reliably.
1842 . Added support for multiple independent Service Repositories through
1843 configuration contexts called "Gestalt". Full backwards compatibility
1844 is maintained through the existing ACE_Service_Config static methods,
1845 while direct individual repository access is enabled through instances
1846 of the new ACE_Service_Gestalt class. ACE_Service_Config has changed to
1847 a specialization of ACE_Service_Gestalt and is only responsible for the
1848 process-wide configuration.
1850 . To support dynamically-sized ACE_Log_Record messages, the netsvcs
1851 logging components now use ACE CDR encoding and transfer mechanisms
1852 inspired by the examples in Chapter 4 of the C++NPv1 book.
1853 The client and server logging daemons in ACE 5.5.2 and forward will
1854 not interoperate with those in previous ACE versions.
1856 . Added a wrapper for the sendfile API (ACE_OS::sendfile()).
1858 . Added support for netlink sockets on Linux.
1860 . Added a new method, ACE_Task::last_thread(). This method returns the thread
1861 ID (ACE_thread_t) of the last thread to exit from the ACE_Task object.
1862 Users checking to see if a thread is the last one out (for example, to know
1863 when to perform cleanup operations) should compare the current thread ID to
1864 the return value from last_thread(). This is a change from the previously
1865 recommended practice (C++NPv2, page 189) of comparing the return value of
1868 . Changed the first argument to ACE_OS::strptime() to be 'const' which
1869 matches its usual usage in POSIX strptime(). This change allows users to
1870 pass const strings in - a common use case.
1872 . Made part of the file support in ACE 64bit but we have some places where
1873 32bit types are used, this could lead to some conversion warnings which
1874 will be addressed in the near future, but getting everything 64bit
1875 compliant is a lot of work.
1877 USER VISIBLE CHANGES BETWEEN ACE-5.5 and ACE-5.5.1
1878 ====================================================
1880 . Added support for the --enable-symbol-visibility configure option
1881 to the autoconf build infrastructure instead of solely relying on
1882 feature tests to enable/disable symbol visibility support. This
1883 avoids build problems with icc, etc.
1885 . Added support for the --enable-fl-reactor configure option to the
1886 autoconf build infrastructure to build the ACE_FlReactor library.
1888 . Added support for the --enable-qt-reactor configure option to the
1889 autoconf build infrastructure to build the ACE_QtReactor library.
1891 . Added support for the --enable-xt-reactor configure option to the
1892 autoconf build infrastructure to build the ACE_XtReactor library.
1894 . Fixed a bug that would cause timer IDs from ACE_Timer_Heap to be
1895 improperly duplicated under certain conditions (Bugzilla #2447).
1897 . Fixed ACE_SSL_Context::private_key(), context(), and dh_params() methods
1898 to allow retrying a file load after a failed call.
1900 . Fixed ACE_SSL_Asynch_Stream so it can be instantiated; also moved the
1901 declarations for ACE_SSL_Asynch_Read_Stream_Result,
1902 ACE_SSL_Asynch_Write_Stream_Result, and ACE_SSL_Asynch_Result classes
1903 to the ace/SSL/SSL_Asynch_Stream.h file so applications can see them.
1905 USER VISIBLE CHANGES BETWEEN ACE-5.4.10 and ACE-5.5
1906 ====================================================
1908 . Added a platform macros option "templates=manual", currently only
1909 applies to AIX 5.3 with XL 7 compiler. It allows the user to tell the
1910 compiler to set -qnotempinc and -qnotemplateregistry and works well
1913 . ACE and its tests compile error free with GCC 4.1 pre release.
1915 . ACE_Recursive_Thread_Mutex::get_nesting_level() fixed for 64-bit Windows
1916 XP on amd64/EM64T hardware.
1918 . Many build-time fixes for Windows Mobile 5 and Windows PocketPC 2003 using
1919 Visual Studio .NET 2005 (VC8).
1921 . Added support for the --enable-tk-reactor configure option to the
1922 autoconf build infrastructure to build the ACE_TkReactor library.
1924 USER VISIBLE CHANGES BETWEEN ACE-5.4.9 and ACE-5.4.10
1925 ====================================================
1927 . Fixed a bug in ACE_Timer_Heap_T::cancel().
1929 . Improved ACE_Time_Value support for boundary conditions.
1931 . Fixed problems with operator placement delete on certain C++ compilers.
1933 . Fixed a bug with the ACE_SPIPE_Acceptor on Windows.
1935 . Correctly set sockaddr_in.sin_len and sockaddr_in6.sin6_len on
1936 platforms that have these fields.
1938 . Avoided problems with namespace pollution for max() macros.
1940 . Many fixes for ACE_LACKS* and ACE_HAS* macros for autoconfig.
1942 USER VISIBLE CHANGES BETWEEN ACE-5.4.8 and ACE-5.4.9
1943 ====================================================
1945 . Added dozens of new ACE_LACKS and ACE_HAS defines which are used to
1946 simplify the ACE_OS layer
1948 . Constructors of ACE_Time_Value have been made explicit to prevent
1949 implicit conversions.
1951 . Added a shutdown() method to ACE_Barrier. The new method aborts the
1952 wait by all threads.
1954 . Changed the behavior of ACE_Message_Queue::enqueue_head() and
1955 enqueue_tail(). If the enqueued message block has other blocks
1956 chained to it via its next() pointer, the entire chain of blocks
1957 will be enqueued at once.
1959 . Improved the support for high-resolution timers with
1960 ACE_Timer_Queue_Adapter.
1962 . Make it possible to disable file caching in JAWS.
1964 . Improved ACE_Pipe implementation so that it uses localhost to avoid
1967 . Added Unicode support to the Service Configurator.
1969 USER VISIBLE CHANGES BETWEEN ACE-5.4.7 and ACE-5.4.8
1970 ====================================================
1972 . Improved IPv6 support
1974 . Improved 64bit portability
1977 - Improved documentation.
1978 - It is now possible to request infinite timeout in portable manner.
1979 This can be achieved by setting negative value to readtimeoutmsec.
1980 - Various bugs fixed and portability issues resolved.
1982 . Subset ACE for TAO and TAO Services
1984 . Support for Intel C++ 9.0 on Windows and Linux
1986 . Support for Microsoft Visual Studio 2005 (aka VC8) for Win32 as well
1987 as the Windows CE platforms Pocket PC 2003 and Windows Mobile 5.
1988 Solution/project files are generated with an appended "_vc8" for
1989 Win32 and "_WinCE" for the CE platforms. See
1990 ACE_wrappers/docs/CE-status.txt for more information.
1992 . Completed implementation of ACE_Dev_Poll_Reactor using the Linux epoll
1993 facility; tested on Red Hat Enterprise Linux 4.
1995 . The in-memory size of an ACE_RB_Tree will be smaller due to rearranged
1996 placement of pointers.
1998 . Added an optimization to CDR stream to ignores alignment when marshaling
1999 data. Use this new ACE_LACKS_CDR_ALIGNMENT compile-time option only
2000 when the ACE_DISABLE_SWAP_ON_READ macro is enabled. This new option
2001 requires ACE CDR engine to do both marshaling and demarshaling, and
2002 when this option is enabled the encoded streams are no longer
2003 compliant with the CORBA CDR specification.
2005 . Developed Feature Oriented Customizer (FOCUS) tool to enable
2006 specialization of middleware frameworks such as Reactor and Protocol
2007 framework. FOCUS provides an XML based transformation engine, where
2008 the transformations to specialize the components are captured in XML
2009 file and a weaver specializes the code.
2011 . Added support for unrolling ACE_OS::memcpy copy loop where
2012 applicable to improve performance. Autoconf tests empirically
2013 determine whether loop unrolling is at least 10% better than default
2016 . Added support for an ACE "versioned" namespace. When enabled, ACE
2017 library sources will be placed within a namespace of the user's
2018 choice or a namespace of the form ACE_5_4_7 by default, where
2019 "5_4_7" is the ACE major, minor and beta versions. The default may
2020 be overridden by defining the ACE_VERSIONED_NAMESPACE_NAME
2021 preprocessor symbol. Enable overall versioned namespace support by
2022 adding "versioned_namespace=1" to your MPC default.features file.
2024 USER VISIBLE CHANGES BETWEEN ACE-5.4.6 and ACE-5.4.7
2025 ====================================================
2027 . Support for shared libraries with VxWorks
2029 . Support for Solaris 10 on x86 with Sun Studio 10 (C++ 5.7).
2031 . Extended ACE_OS::event_xxx implementation to support platforms
2032 having either PThread support with Process Shared condition
2033 variables or POSIX semaphores with named (process shared)
2034 semaphore support or using the new FIFO based semaphores.
2036 . ACE_OS::closesocket() no longer calls ACE_OS::shutdown() on any platform
2037 while closing the socket. It previously called ACE_OS::shutdown() on
2038 HP-UX. Removing this call fixes the fork-and-close programming paradigm
2039 that's common to many networked applications.
2042 - Support for message fragmentation. This will allow
2043 for messages larger than 64K.
2044 - Support for flow control.
2045 - Timed recv() in RMCast::Socket.
2046 - Per-instance configurable protocol parameters (e.g., message
2047 retention time, NAK timeout, etc).
2049 USER VISIBLE CHANGES BETWEEN ACE-5.4.5 and ACE-5.4.6
2050 ====================================================
2052 . Updated RMCast to include
2053 - Reactor-compatible interface.
2054 - Message unavailability reporting.
2055 - Protocol documentation.
2057 . Added support for 64bit Visual Age on AIX
2059 . Improved g++ 4.0 support. A number of RTTI related problems have been
2062 . Smaller footprint.
2064 . Fixed memory leaks ACE_DLL and ACE_Log_Msg classes.
2066 . The ACE::ICMP_Socket and ACE::Ping_Socket classes were moved out of
2067 the ACE namespace and "flattened" to ACE_ICMP_Socket and
2068 ACE_Ping_Socket to be consistent with the rest of ACE.
2070 . ACE_INET_Addr::set_address() - fixed a possible struct member
2071 alignment issue when building an IPv4-mapped IPv6 address.
2073 . Added a new ACE::wild_match() function to match a string based on
2076 . Added efficient overloads for string concatenation to the
2077 ACE_String_Base class.
2079 . Added support for the use of pthread_getschedparam on MacOS X.
2081 . Fixed an issue with static initialization of TSS related classes on
2082 static builds for Windows.
2084 USER VISIBLE CHANGES BETWEEN ACE-5.4.4 and ACE-5.4.5
2085 ====================================================
2087 . Remove special handling in the Thread Specific Storage(TSS) code
2088 that released the TSS key for ACE_TSS<TYPE>. ACE_TSS<TYPE> has
2089 been changed to explicitly free the TSS key when necessary.
2091 . On Win32 systems: detect thread termination via a hook in DLLMain
2092 for ACE.dll. This allows cleanup of TSS objects for non-ACE threads
2093 that use ACE functions. The most common case was threads that used
2094 ACE logging. Formerly any TSS objects created by these threads would
2097 . Added support for GNU G++ 4.0. The x.4.5 beta takes advantage of
2098 g++ 4.0's symbol visibility. This feature is conceptually similar
2099 to MS Windows "__declspec(dllexport)" DLL functionality. Using this
2100 new g++ feature results in substantially improved ACE/TAO/CIAO
2101 shared library binaries. A subset of the improvements include the
2104 * The number of unnecessarily exported DSO/DLL symbols is
2105 greatly reduced, resulting in faster program start times.
2106 * Smaller footprint.
2107 * Improved performance since run-time indirection of internal
2108 symbols is no longer needed.
2110 No changes to the ACE/TAO sources were necessary to support this
2111 feature since the required visibility attributes were hidden behind
2112 the various "*_Export" macros (formerly only useful for MS Windows
2113 DLLs) used throughout ACE/TAO.
2115 . The ACE_Reactor destructor will now call close() on the referenced reactor
2116 implementation. This assures that all handlers are notified before the
2117 ACE_Reactor object that's most likely referenced in these handlers is
2118 invalid. Although this should not be a user-visible change, it did catch
2119 some ACE tests off guard destroying reactor implementations and ACE_Reactor
2120 interfaces in the wrong order, so it may come up in the field as well.
2121 When using dynamically allocated reactor implementations, do not destroy
2122 the implementation object before the ACE_Reactor interface object. Use of
2123 the ACE_Reactor constructor's delete_implementation argument (with a value
2124 of 1) is recommended when dynamically allocating reactor implementations.
2126 . Improved performance of HTBP by not requiring a lookup of peer hostname.
2128 . Added new ACE_SizeCDR stream which allows one to calculate size of the
2129 representation without writing anything.
2131 . Number of improvements in RMCast, reliable multicast implementation.
2133 USER VISIBLE CHANGES BETWEEN ACE-5.4.3 and ACE-5.4.4
2134 ====================================================
2136 . The ace-config script has been replaced by pkg-config metadata files
2137 which are installed in ${prefix}/lib/pkgconfig by the automake build.
2139 . Remove ACE_OS::gets() implementation. While this ACE implementation
2140 of gets() did not contain the security holes that all standard
2141 gets() implementations have, keeping it around only serves to foster
2142 confusion since (1) some may incorrectly assume that this
2143 ACE-specific gets() implementation has the same holes as standard
2144 ones, and (2) invoking it with a default size argument so that it
2145 looks like a standard gets() call results in behavior that is
2146 different from the standard. Use ACE_OS::fgets() instead.
2148 . Removed ACE_Unbounded_Set_Ex, this gave the false idea that it had
2149 thread safe iterators. Use ACE_Unbounded_Set instead
2151 . Improved VxWorks support for static libraries. Shared libraries do cause
2152 several known problems which will be fixed in the x.4.5 release.
2154 . Removed the usage of the ACE_x_cast macros, we are using the C++ casts
2155 from now on. The ACE_x_cast macros are deprecated and will be removed
2156 after the x.5.1 release
2158 . Some improvements in autoconf support; better detection of available
2159 OS and compiler features.
2161 . Fixed bugs in ACE TSS emulation
2163 USER VISIBLE CHANGES BETWEEN ACE-5.4.2 and ACE-5.4.3
2164 ====================================================
2166 . Improved Cygwin 1.5.12 support, 90% of the tests now succeed
2168 . Improved OpenVMS support.
2170 . Added ability to use fltk with Cygwin/MinGW
2172 . Added ACE_INT64 that defines a native 64 bit type.
2174 . Added 'q' as usable specifier for ACE_Log_Msg to print out int64 bit number.
2176 . Added better support for Intel C++ compilers.
2178 . Improved HPUX support.
2180 . Added a new directory ("ACE_wrappers/protocols/ace") for new protocols
2181 that are not directly components of ACE, but are relate to ACE and
2182 defined a new protocol, HTBP (Hypertext Tunneling, Bidirectional
2183 Protocol) providing ACE_Acceptor/Connector/Stream semantics over a
2184 connection owned by an HTTP proxy. Test cases in
2185 ACE_wrappers/tests/HTBP provide examples of use.
2187 . Performace enhancement in TP_Reactor's handle_timer_events method [Bug
2190 . Various changes to permit ACE to execute on HP NonStop platform (e.g
2191 support for its pthreads version).
2193 . Updated HP NonStop configuration files (config-tandem-nsk).
2195 . The "ACE" pseudo-namespace is now a true C++ namespace. Transitional
2196 pseudo-namespaces that were only meant to be used internally by ACE,
2197 such as "ACE_Sock_Connect", no longer exist.
2199 . ACE_CDR::Boolean type is now a true C++ "bool" on all platforms except
2200 MSVC++ 6. We plan to deprecate MSVC++ 6 support sometime after the
2201 x.5 release of ACE+TAO+CIAO, so we recommend you start migrating to a
2202 later version of MSVC++.
2204 . More GNU g++ 3.4.x fixes.
2206 . Added ICMP and "ping" socket support.
2208 . Added mkstemp() emulation.
2210 . Fixed problem on Linux < 2.5.47 platforms where equality comparison of
2211 two logically equal sockaddr_in structure instances would incorrectly
2214 . Support for wide characters has been improved on non-Windows
2217 . A number of Windows CE problems have been fixed.
2219 . ACE's loading of DLLs (for example, as a result of loading synamic
2220 services) has been changed to use the native OS's facilities for
2221 locating the DLL instead of searching LD_LIBRARY_PATH (or its
2222 equivalent) then loading the DLL using a full pathname. This restores
2223 enforcement of a platform's loading and security policy. To use the
2224 old DLL locating method, add ACE_MUST_HELP_DLOPEN_SEARCH_PATH to your
2225 config.h file before building ACE.
2227 . A number of errors in the APG example programs have been corrected.
2229 . Select_Reactor and Priority_Reactor performance improved. [Bug 1890]
2231 . Wide-char functionality on POSIX (Linux, etc.)
2233 . TSS memory leak fixes [Bug 1542]
2235 . Ported to HPUX 11i v2 on Itanium
2237 . Added code to ACE for platform RedHat AS 3.0 on Opteron.
2239 . Changed ACE::crc32() family of functions to NOT fold in the length of
2240 the string/buffer/iovec into the CRC.
2243 USER VISIBLE CHANGES BETWEEN ACE-5.4.1 and ACE-5.4.2
2244 ====================================================
2246 . Support for g++ 3.4.1.
2248 . All ACE Makefiles, project files, etc, are now generated by OCI's
2249 "MakeProjectCreator" (MPC) tool. Makefiles and project files for
2250 commonly used configurations have been pre-generated and distributed
2251 with the beta(s). Please see:
2253 $ACE_ROOT/ACE-INSTALL.html
2255 for information on how to use MPC with ACE.
2257 . Improved Doxygen documentation.
2259 . Reduced header file dependencies, which should speedup compilation
2260 and help minimize static footprint.
2262 . ACE now requires support for the following standard C++ features:
2268 - "explicit" keyword
2270 - C++ casts (e.g. static_cast<>, reinterpret_cast<>, dynamic_cast<>
2273 If you're using a compiler that does NOT support these features
2274 please contact Steve Huston <shuston@riverace.com> for support.
2276 . Changed the select()-based reactor implementations to scan for
2277 broken handles to remove based on the registered handles, not on
2278 event handlers. This allows for bad handles to be removed from the
2279 reactor even if the event handler doesn't implement get_handle() the
2282 . Support for Pthreads native recursive mutexes was added. This
2283 capability is specified to ACE_OS::mutex_init() as an optional
2284 argument, lock_type. To fix confusion from an earlier attempt to add
2285 this functionality, the meaning of the old 'type' argument to
2286 ACE_OS::thread_mutex_init() is changed. It previously combined the
2287 scope and type. Now it is just the type (e.g. recursive), as the
2288 scope is inherent in the method used. For clarification on
2289 ACE_HAS_RECURSIVE_MUTEXES, it means that the platform is capable of
2290 them, not that they always are, as one would expect. However, before
2291 Pthreads had recursion added, it was never optional. Now it is.
2293 . Initial support for new Linux sys_epoll() interface in
2294 Dev_Poll_Reactor. The obsolete Linux /dev/epoll interface is no
2297 . Improved Cygwin support.
2298 - Threading works without problems.
2299 - Problems with shared memory, process shared mutexes, multicast and
2300 some other small things still exist.
2303 - This is for the latest version of OpenVMS with all available ECOs
2304 applied. Basic stuff works without problems. Advanced features
2305 still need some work.
2307 . Usage of ASYS_INLINE is deprecated in ACE. Use ACE_INLINE instead.
2309 . All inline source files now end in ".inl". The previous ".i"
2310 extension is generally used for preprocessed C sources.
2312 . Autoconf support has been improved and fixed on a number of
2313 platforms, including the BSD variants (e.g. FreeBSD). It is still
2314 not the preferred way to configure most platforms, but it is ready
2315 for wider testing. Please report any problems found to
2316 ace-bugs@cs.wustl.edu.
2318 . A number of fixes were made to quiet compile errors and warnings on
2321 . For builds on AIX using Visual Age C++, the make rtti option default
2322 was changed to 1, enabling RTTI by default.
2324 . ACE_Service_Repository::remove() has a new, optional argument that
2325 can receive the service record pointer for the removed service. If
2326 the pointer is returned to the caller, it is not deleted. If the
2327 pointer is not returned to the caller (the default) it is deleted
2328 (this is the historic behavior).
2330 . The tutorials in ACE_wrappers/docs have been removed. They were not
2331 being maintained and caused confusion in a number of cases. Now that
2332 there are complete examples that match the printed books (C++NPv1,
2333 C++NPv2, APG), the older tutorials are no longer useful. Please see
2335 $ACE_ROOT/examples/C++NPv1/
2336 $ACE_ROOT/examples/C++NPv2/
2337 $ACE_ROOT/examples/APG/
2339 for the source code of the examples in those books.
2341 . ACE_String_Base::fast_clear() is a new method which sets the string
2342 length to 0. Doesn't release string-allocated memory, but if the
2343 memory was externally supplied, it is no longer referenced from the
2346 . A true C++ "bool" is now used as the CDR stream boolean type, if
2347 supported by the compiler.
2349 . Renamed AIX 5L configuration header from config-aix5.1.h to
2352 . All C++ equality, relational and logical operators now return bool
2353 instead of int, as is the norm for modern C++.
2355 . Added new ACE_OS::realpath() implementation. Contributed by Olli
2356 Savia <ops at iki dot fi>
2359 USER VISIBLE CHANGES BETWEEN ACE-5.4 and ACE-5.4.1
2360 ====================================================
2365 . Fixed "make install" support in ACE+autoconf configurations.
2367 . Fixed autoconf support on Solaris.
2369 . Corrected invalid `aux' directory (on MS Windows) found in ACE
2372 . ACE/TAO build now without problems with MinGW and all ACE tests run
2373 now without problems
2375 . Added some more support for the new CBuilderX Preview compiler, this
2376 is not 100% ready yet because the compiler is still a preview and
2377 has its own problems.
2379 . Added Visual SlickEdit 8.1 MPC template
2381 . Added workaround for compile problems in Borland Release builds
2383 . Cygwin 1.5.9 is now supported
2385 . Tests for IPV6 have been added
2387 . Implement lstat() so that it'll use stat() on platforms that don't
2390 . Problems related to ACE_Event_Handler usage in WFMO_Reactor was
2393 . A wrapper for rmdir () has been added.
2395 . Threads spawned in thread-per-connection mode never inherited the
2396 priority. This problem was fixed and this fix is consistent with the
2399 . Fixed memory leaks with ACE_String_Base::resize ()
2401 . Enable the usage of native recursive mutexes for the implementation
2402 of ACE recursive mutexes on Linux.
2404 . The ACE Proactor framework can now be enabled for AIX 5.2. Since AIO
2405 functionality is not run-time enabled by default on AIX 5.2, the ACE
2406 Proactor code is not built by default on AIX. To enable it, the
2407 config.h file must contain #define ACE_HAS_AIO_CALLS before
2408 including the config-aix-5.1.h file.
2410 . The ACE_POSIX_CB_Proactor implementation is now built on all
2411 platforms except LynxOS.
2414 USER VISIBLE CHANGES BETWEEN ACE-5.3.6 and ACE-5.4
2415 ==================================================
2419 . Added a new makefile commandline flag, static_link, that can be
2420 used to force static linking when static_libs_only is turned on. It
2421 uses the new STATIC_LINK_FLAG variable and is currently only
2422 implemented for for GNU ld, i.e., it adds the "-static" option to
2423 LDFLAGS. It's turned off by default since using it causes the
2424 footprint to go up by almost 1 MB on Linux, since it links all the
2425 system and compiler .a files, but can be turned on if users
2426 want/need to use it, by enabling both static_libs_only and static_link.
2429 . Added macros ACE_USES_GPROF which enables users to use gprof in a
2430 multithreaded environment with ACE libs.
2432 . Added a new functor template class, ACE_Malloc_Lock_Adapter_T,
2433 that's used by ACE_Malloc_T as a factory for the ACE_LOCK template
2434 parameter, and allows the use of locking strategy classes, like
2435 ACE_Process_Semaphore and ACE_Thread_Semaphore that don't have a
2436 satisfactory ctor taking a single required ACE_TCHAR* parameter, to
2437 be adapted to work with ACE_Malloc_T.
2439 . The source code examples from "The ACE Programmer's Guide" book by
2440 Huston, Syyid, and Johnston, are now located in
2441 $ACE_ROOT/examples/APG.
2443 . Support for GNU autoconf is now in ACE. Please see ACE-INSTALL.html
2446 . Fixed problems that prevented ACE from being compiled on LynxOS
2449 . Fixed compilation error which prevented ACE from being compiled when
2450 ACE_COMPILE_TIMEPROBES was set to 1.
2452 . Preliminary support for Tandem NSK has been added.
2454 . Lots of bug fixes with TLI and XPG5. Please see $ACE_ROOT/ChangeLog
2457 . Fixed ACE_OS::event_timedwait() and ACE_OS::event_wait() so that
2458 they use a while loop around the ACE_OS::cond_[timed]wait() calls to
2459 avoid problems with spurious wakeups, etc.
2461 . ACE's wrapper around getipnodebyname() and getipnodebyaddr () has
2462 been made go through the IPv4-only case on ACE_WIN32. Since Windows
2463 IPv6 implementation doesn't offer support (at thistime) for
2464 getipnodebyname() the code has been changed to use the IPV4 part of
2467 . Install with Borland C++ of ACE library fixed
2472 . Fixed memory leak in ACEXML parser.
2474 . Fixed implementations of rewind() in all the CharStreams. They were
2477 . Fixed bugs in the parser associated with incorrect handling of PE
2478 References for keywords.