Wed May 18 16:19:32 2005 Ossama Othman * ace/ATM_Addr.cpp: * ace/ATM_Addr.inl: * ace/DEV_Addr.cpp: * ace/DEV_Addr.inl: * ace/FILE_Addr.cpp: * ace/FILE_Addr.inl: * ace/INET_Addr.cpp: * ace/INET_Addr.inl: * ace/MEM_Addr.cpp: * ace/MEM_Addr.inl: * ace/SPIPE_Addr.cpp: * ace/SPIPE_Addr.inl: * ace/Service_Types.cpp: * ace/Service_Types.inl: * ace/UNIX_Addr.cpp: * ace/UNIX_Addr.inl: Moved virtual method implementation out-of-line. Since the classes to which they belong are exported, inlining them will cause problems when attempting to perform a dynamic_cast<> in binaries built with g++ 4.0's -fvisibility-inlines-hidden command line option. * ace/Strategies_T.cpp (dump): Removed ACE_INLINE from this out of line method. Wed May 18 15:44:12 UTC 2005 Martin Corino * ace/Semaphore.cpp: Removed check for missing shm_open() since this causes problems for platforms supporting POSIX_SEM (and thus not using shm_open/open). Thanks to Raoul Gough for reporting this. * ace/config-openvms.h: Added ACE_LACKS_UNNAMED_SEMAPHORE to compensate for above change. Wed May 18 14:37:12 UTC 2005 Johnny Willemsen * examples/ASX/Message_Queue/buffer_stream.cpp: Initialise all pointers with 0 Wed May 18 09:25:35 2005 Chad Elliott * bin/MakeProjectCreator/templates/gnu.mpd: * include/makeinclude/rules.lib.GNU: * include/makeinclude/platform_gnuwin32_common.GNU: Fixed a problem that I introduced in a previous change. Resource files were not being handled properly and the platform_gnuwin32_common.GNU file was referencing $(VSHOBJS1) which I removed. * include/makeinclude/all_in_one.GNU: * include/makeinclude/wrapper_macros.GNU: * include/makeinclude/rules.bin.GNU: Removed the file rules.bin.GNU and all references to it. Tue May 17 20:58:46 UTC 2005 Jeff Parsons * bin/MakeProjectCreator/config/taoidl3toidl2defaults.mpb: New file, a base project for the tao_idl3_to_idl2 executable, so it can be executed automatically in a test or example. Tue May 17 18:31:12 UTC 2005 Johnny Willemsen * examples/ASX/Message_Queue/ASX_Message_Queue.mpc: Don't build the buffer_stream exe when wchar is enabled, this example expects just char. Tue May 17 09:32:01 2005 Ossama Othman * tests/Collection_Test.cpp: Avoid casting between a pointer to a function and a pointer to an object. ISO C++ forbids such casts. Fixes a g++ 4.0 warning. Tue May 17 07:50:07 2005 Justin Michel * ace/Cache_Map_Manager_T.cpp: * ace/Cached_Connect_Strategy_T.cpp: * ace/Caching_Strategies_T.cpp: * ace/Caching_Utility_T.cpp: * ace/Cleanup_Strategies_T.cpp: * ace/Hash_Cache_Map_Manager_T.h: * ace/Hash_Cache_Map_Manager_T.cpp: * ace/QoS/QoS_Manager.h: Fix incorrect use of #pragma once. * ace/Functor.h: * ace/Functor.inl: * ace/Global_Macros.h: * ace/ace_wchar.h: * ace/config-win32-msvc.h: Add a new ACE_LACKS_NATIVE_WCHAR_T macro, which can be used to check whether a platform supports overloading on wchar_t without conflict. The existing ACE_WSTRING_HAS_USHORT_SUPPORT was incorrectly being used for two purposes. This setting should let us enable native wchar_t support on VC7+. * ace/OS_NS_time.inl: Add a static_cast because time_t is 64bit on some platforms where long is 32 bit. * ace/OS_NS_unistd.inl: Mask out the X_OK(6) bit for the amode parameter of the access() function because this bit is illegal on Win32 and will assert. * ace/config-win32-msvc-7.h: Clarify comment on ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION_EXPORT. * ace/config-win32-msvc-8.h: Disable deprecation warning 4996, because the _CRT_SECURE_NO_DEPRECATE macro doesn't appear to work correctly. * ace/streams.h: Add missing "using std::ios_base". Mon May 16 21:39:30 2005 Ossama Othman * ace/Ping_Socket.h (Ping_Socket): Corrected class name in Doxygen documentation. Mon May 16 19:18:14 2005 J.T. Conklin * configure.ac: * examples/Makefile.am: * protocols/Makefile.am: * protocols/examples/Makefile.am: Adapt autoconf build to adjust to relocation of RMCast examples. Mon May 16 15:58:29 2005 Steve Huston * ACE-INSTALL.html: Corrected the names of the Sun compilers supported. Thanks to Nick Todd for bringing this error to our attention. * THANKS: Added Nick Todd to the Hall of Fame. Mon May 16 12:33:29 2005 Ossama Othman * THANKS: Added Mario Di Giacomo to the Hall of Fame. * ace/Service_Templates.cpp: Include "ace/SString.h" to pull in ACE_TString declaration. Thanks to Mario Di Giacomo for reporting the problem. * tests/Cache_Map_Manager_Test.cpp (find_test_cache): Fixed "variable may be used uninitialized" warning. Mon May 16 19:13:12 UTC 2005 Johnny Willemsen * ace/Malloc.h: Doxygen improvement Mon May 16 10:57:57 2005 J.T. Conklin * ace/Makefile.am: Reset DEFAULT_INCLUDES to address ambiguity between system's signal.h and semaphore.h headers and ACE's Signal.h and Semaphore.h headers on case insensitive file systems. This may be the best setting for all ACE/TAO Makefile.am's, but this is the only one that requires it. Mon May 16 10:56:31 2005 J.T. Conklin * configure.ac: Add ACE_LD_SEARCH_PATH and ACE_DLL_SUFFIX settings for darwin/MacOSX. Add ACE_HAS_NANOSLEEP feature test check. Mon May 16 10:49:10 2005 J.T. Conklin * ace/POSIX_CB_Proactor.h: Add defined(__APPLE__) to conditional wrapping sigval_t type definition. Mon May 16 10:45:18 2005 J.T. Conklin * m4/ace.m4 (ACE_CONFIGURATION_OPTIONS): Changed *win* patterns to *win32* to avoid matching darwin, the MacOSX kernel. Mon May 16 15:13:12 UTC 2005 Johnny Willemsen * include/makeinclude/platform_mingw32.GNU: * include/makeinclude/platform_sco5.0.0-nothread.GNU: * include/makeinclude/platform_sunos4_g++.GNU: * include/makeinclude/platform_sunos5_sunc++.GNU: * include/makeinclude/platform_unixware_g++.GNU: * include/makeinclude/platform_unixware_udk.GNU: * include/makeinclude/platform_win32_dmc.GNU: * include/makeinclude/platform_win32_interix.GNU: Simplified these files by using the ?= operator. This sets a value only when it is not set yet. Mon May 16 09:24:29 2005 Chad Elliott * bin/tao_orb_tests.lst: Enabled the Exposed_Policies test on Linux. * bin/tao_other_tests.lst: Added a !NO_IFR configuration to each IFR related test. The IFR_Service will not run on MacOS X unless TAO is built statically due to gcc's in ability to deal with template instantiated singletons correctly. Added a NO_LOADAVG configuration to avoid running the load average based test on platforms that do not have support for obtaining the load average from the system. Added a configuration for NO_MCAST for machines that do not have multicast capabilities or the multicast implementation is broken. Added !STATIC to two LoadManager tests to support static builds on Windows. Mon May 16 14:19:12 UTC 2005 Johnny Willemsen * ace/Active_Map_Manager.h: * ace/Base_Thread_Adapter.h: * ace/Process.h: * ace/QtReactor.h: Doxygen improvement * ace/QtReactor.cpp: Fixed compile problems with msvc6 * examples/ASX/Message_Queue/buffer_stream.cpp: Use ACE_SIZE_T_FORMAT_SPECIFIER to print out an size_t variable with ACE_OS::sprintf * include/makeinclude/platform_hpux_aCC.GNU: * include/makeinclude/platform_hpux_gcc.GNU: * include/makeinclude/platform_irix6.x_g++.GNU: * include/makeinclude/platform_irix6.x_sgic++.GNU: * include/makeinclude/platform_linux.GNU: * include/makeinclude/platform_linux_borland.GNU: * include/makeinclude/platform_linux_cxx.GNU: * include/makeinclude/platform_macosx.GNU: Simplified these files by using the ?= operator. This sets a value only when it is not set yet. Also set some variables using ?= so that our users can easily define their own values. * include/makeinclude/platform_linux_icc.GNU: Disable warning 1572 (floating point warning), correct name of Qt library and only set several variables when they are not set yet Mon May 16 09:01:07 2005 Chad Elliott * tests/Conn_Test.cpp: Force this test to use threads (instead of fork) on MacOS X. * tests/FIFO_Test.cpp: Sleep 1 second (as is done on AIX and HP-UX) before attempting to receive from the fifo. * tests/MT_Reference_Counted_Event_Handler_Test.cpp: Set global_event_loop_thread_variable before activating the thread that may use it. * tests/Naming_Test.cpp: Allow the user to determine the location of the context file by the TMPDIR, TEMP and TMP environment variables. * tests/Pipe_Test.cpp: * tests/Process_Mutex_Test.cpp: Use the value from argv[0] instead of hardcoding the exe name. The hardcoded name does not work on Windows Release builds. * tests/Process_Strategy_Test.cpp: Use threads by default on HP-UX instead of fork. Added a timeout for the recv() call in Counting_Service::handle_input() for HP-UX only. * tests/run_test.lst: Added a configuration for NO_MCAST for machines that do not have multicast capabilities or the multicast implementation is broken. * tests/SSL/aix_hack_for_main.cpp: * tests/aix_hack_for_main.cpp: Removed these files. They are no longer needed due to MPC. Mon May 16 08:52:11 2005 Chad Elliott * bin/MakeProjectCreator/config/crosscompile.mpb: Added lib_warning, require_warning and avoid_warning to the list of targets in the CROSS-COMPILE portion. * bin/MakeProjectCreator/config/rtcorbaevent.mpb: The RTCORBAEvent library requires the CosNaming library. * bin/MakeProjectCreator/templates/gnu.mpd: Support the MPC feature that will allow users to specify arbitrary input file dependencies. Changed the OBJS setting to use $(notdir) only if the source file contains ../ and added explicit rules for source files that are located in subdirectories. * include/makeinclude/platform_macosx_panther.GNU: Explicitly default the threads variable to threads=1. This was preventing ACE_TMCast from building. Change the optimization option to -O2. -O3 was causing some link problems in the IDL compiler. * include/makeinclude/platform_sunos5_sunc++.GNU: Allow users to override the inline and exceptions settings. * include/makeinclude/platform_vxworks5.5.x.GNU: * include/makeinclude/rules.local.GNU: Provide better support for building for VxWorks on a Windows host without Cygwin. * include/makeinclude/rules.lib.GNU: Changed the SHOBJS setting to be consistent with the OBJS setting. Also, removed VLOBJS and SHOBJS1 which were redundant and set exactly as SHOBJS was. * include/makeinclude/wrapper_macros.GNU: Set ec_typed_events to 1 by default. This matches the default for MPC features. * bin/pch_cmd.pl: Removed this file. It is no longer necessary. Mon May 16 08:44:14 2005 Chad Elliott * ace/ACE.cpp: * ace/config-irix6.x-sgic++.h: * ace/config-qnx-neutrino.h: * ace/config-qnx-rtp-common.h: * ace/config-sunos5.5.h: Put ACE_LIB_TEXT around all ACE_CC_NAME definitions to support wide character builds on Solaris, QNX and IRIX. * ace/ACE_export.h: Added support for SunCC 5.6. * ace/Multihomed_INET_Addr.h: * ace/Multihomed_INET_Addr.cpp: Added an explicit constructor that takes a const char* for symmetry with the ACE_INET_Addr class. * ace/Naming_Context.cpp: Removed a bug workaround for aCC A.03.04. It is no longer a problem to specify other mmap base addresses when running 64-bit HP-UX applications. * ace/OS_NS_Thread.inl: * ace/config-macosx-panther.h: * ace/Sched_Params.cpp: MacOS X has pthread_getschedparam but has the ACE_LACKS_SETSCHED macro defined. I have added a new macro, ACE_HAS_PTHREAD_SCHEDPARAM, that can be defined to use pthread_getschedparam and pthread_setschedparam even when ACE_LACKS_SETSCHED is defined. * ace/OS_NS_Thread.cpp: Fixed an issue that arose within the static builds on Windows. The ACE_Thread_Mutex static data member of the TSS_Cleanup_Instance class was being used (in the TSS_Cleanup_Instance constructor) before it was statically initialized. I have switched it (and the condition variable associated with it) to a pointer that is allocated the first time into the TSS_Cleanup_Instance constructor. * ace/Process_Manager.cpp: Committing a change from Justin Michel . The close() method failed to unregister the reactor on Windows. * ace/ace.mpc: Removed an unnecessary 'install' setting. * ace/config-sunos5.10.h: SunOS 5.10 has scandir (ACE_HAS_SCANDIR). * ace/os_include/sys/os_socket.h: When using LKSCTP, include before to avoid macro problems. Sun May 15 11:57:56 2005 Douglas C. Schmidt * ace/INET_Addr.cpp (set): Changed the test from if (port_number < 0) to if (port_number == -1) to work around problems when (port_number & 0x80 != 0). Thanks to Vemund Handeland for reporting this. Mon May 16 11:35:00 2005 Boris Kolpackov * protocols/tests/tests.mwc: * protocols/tests/RMCast/Protocol.h: * protocols/tests/RMCast/RMCast.mpc: * protocols/tests/RMCast/Receiver.cpp: * protocols/tests/RMCast/Sender.cpp: * protocols/tests/RMCast/run_test.pl: Added regression test with loss and reordering simulator for RMCast. Mon May 16 11:26:14 2005 Boris Kolpackov * examples/RMCast/Makefile.am: * examples/RMCast/Send_Msg/Makefile.am: * examples/RMCast/Send_Msg/Protocol.h: * examples/RMCast/Send_Msg/README: * examples/RMCast/Send_Msg/Receiver.cpp: * examples/RMCast/Send_Msg/Send_Msg.mpc: * examples/RMCast/Send_Msg/Sender.cpp: Removed as part of the moving all RMCast-related code to protocols/. Mon May 16 11:22:09 2005 Boris Kolpackov * protocols/examples/example_base.mpb: * protocols/examples/examples.mwc: * protocols/examples/RMCast/Makefile.am: * protocols/examples/RMCast/Send_Msg/Makefile.am: * protocols/examples/RMCast/Send_Msg/Protocol.h: * protocols/examples/RMCast/Send_Msg/README: * protocols/examples/RMCast/Send_Msg/Receiver.cpp: * protocols/examples/RMCast/Send_Msg/Send_Msg.mpc: * protocols/examples/RMCast/Send_Msg/Sender.cpp: Copyied from examples/RMCast as part of the moving all RMCast-related code to protocols/. Mon May 16 11:05:26 2005 Boris Kolpackov * examples/RMCast/Send_Msg/Receiver.cpp: * examples/RMCast/Send_Msg/Sender.cpp: Showcase new features (see below). Mon May 16 10:58:43 2005 Boris Kolpackov * protocols/ace/RMCast/Acknowledge.cpp: * protocols/ace/RMCast/Link.cpp: * protocols/ace/RMCast/Link.h: * protocols/ace/RMCast/Protocol.cpp: * protocols/ace/RMCast/Protocol.h: * protocols/ace/RMCast/Retransmit.cpp: * protocols/ace/RMCast/Socket.cpp: * protocols/ace/RMCast/Socket.h: Implemented message aging and unavailability reporting, reactor-compatible interface, and message size query interface. * protocols/ace/RMCast/README: Protocol documentation. Sat May 14 06:05:55 2005 Johnny Willemsen * ACE version 5.4.5 released. Local Variables: add-log-time-format: current-time-string End: