Thu Sep 02 11:18:34 EDT 2010 Steve Huston * ACE version 5.7b released. Thu Sep 2 14:59:27 UTC 2010 Steve Huston * ace/ACE.cpp (handle_ready): * ace/SOCK_Dgram.cpp: * ace/SOCK_IO.cpp: * tests/MT_SOCK_Test.cpp: * tests/SOCK_Test.cpp: Reverted the changes from Wed Sep 1 19:31:24 UTC 2010 Steve Huston They caused other problems with existing usage. The referenced TAO test behind the problems needs to be fixed, not ACE. Wed Sep 1 19:31:24 UTC 2010 Steve Huston * ace/ACE.cpp (handle_ready): Changed the timeout behavior to just return 0, no errno, as ACE_OS::poll() and ACE_OS::select() both do. This restores historic behavior changed inadvertently at Fri Aug 27 19:17:11 UTC 2010 Steve Huston * ace/SOCK_Dgram.cpp: * ace/SOCK_IO.cpp: * tests/MT_SOCK_Test.cpp: * tests/SOCK_Test.cpp: Re-added the if/switch on return value from ACE::handle_read|write_ready() to detect timeout and set errno here. These changes were necessary to fix the TAO faults test. Thanks to Johnny and Simon for narrowing down the cause and testing the fix. Mon Aug 30 16:48:34 UTC 2010 Steve Huston * ace/FIFO.h: * ace/FIFO_Recv.h: * ace/FIFO_Send.h: Clarified initialization and open behavior. Fri Aug 27 19:17:11 UTC 2010 Steve Huston * ace/ACE.cpp (handle_ready, handle_timed_complete, handle_timed_accept): On platforms where poll() is available, prefer that to using select() for checking a single handle's state and/or waiting for a condition. This preference was previously only used if ACE_HAS_LIMITED_SELECT was set. The ACE_HAS_LIMITED_SELECT choice is removed, making ACE_HAS_POLL the setting that switches this preference. The driving reason for this is that if select() is called to detect changes on a handle whose values falls outside that which can safely be stored in an fdset, the handle-setting macros/functions will set/clear bits outside of the fdset. This results in very weird memory changes, often in the stack, which are very hard to diagnose. poll()'s operation does not suffer from this affect. With the growing use of large numbers of handles and use of ACE_Dev_Poll_Reactor on Linux, the rate at which this problem was cropping up was increasing. Thanks to Olivier Langlois for diagnosing this problem and proposing the patch. (handle_ready): Properly set the poll condition for read and/or write. Thanks to kumaran.prem@gmail.com for this fix. * ace/Acceptor.cpp: * ace/SOCK_IO.cpp: * ace/SOCK_Dgram.cpp: * tests/MT_SOCK_Test.cpp: * tests/SOCK_Test.cpp: Replaced use of ACE_OS::select() with ACE::handle_ready() and friends. This all resolves Bugzilla #3606. Fri Aug 27 15:01:41 UTC 2010 Steve Huston * Connector.{h cpp} (ACE_NonBlocking_Connect_Handler): Add a handle_close() which calls handle_input() if called by the ACE_Dev_Poll_Reactor to remove a failed connect. Apparently, Linux epoll, at least sometimes, signals EPOLLERR on a failed nonblocking connect, unlike the select() case which selects the failed fd for read. Thanks to Kannan Ramaswamy for this information and fix. Wed Aug 25 19:58:19 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.{h cpp}: Regarding change number 2 at Fri Mar 26 14:07:55 UTC 2010 Steve Huston dispatching notifies in only one thread at a time was 1) wrong (TP_Reactor doesn't do this), 2) broke important existing applications at a customer site. This has been fixed so that the notify dispatch behavior is like ACE_TP_Reactor: when the notify handle is signaled, extract one notification, release the token, dispatch the notification. Thus, each thread will dispatch one notification, and multiple threads can dispatch them at the same time if there are multiples. Also fixed an error where it was possible to lose notice of a notification. Resolves Bugzilla #3328. Thu Jul 15 17:53:47 UTC 2010 Phil Mesnier * ace/Service_Gestalt.cpp: * THANKS: Restore pre-gestalt behavior of returning -1 if svc.conf does not exist and an ACE_Service_Config::open() is expecting to use the default file. Thanks to Daynesh Mangal (daynesh@gmail.com) for reporting the errant behavior. Thu Jun 24 02:07:18 UTC 2010 Steve Huston * ace/Service_Gestalt.inl (open): Allow the command line options to override the passed ignore_static_svcs argument. Restores correct operation, fixing Bugzilla #3865. Fri Jun 18 19:58:55 UTC 2010 Steve Huston * ace/Logging_Strategy.cpp: Add _get_dll_unload_policy() function that returns ACE_DLL_UNLOAD_POLICY_LAZY; this prevents the DLL_Manager from running down ACE framework components just from unloading a service contained in ACE itself. Fix for Bugzilla #3856. Wed May 19 11:29:14 UTC 2010 Vladimir Zykov * ace/Dev_Poll_Reactor.h: * ace/Dev_Poll_Reactor.cpp: * ace/Dev_Poll_Reactor.inl: This fixes bug 3848. Now ACE_Dev_Poll_Reactor::Handler_Repository will maintain its max and current size. ACE_Dev_Poll_Reactor::size() will return number of handlers registered in the reactor. Also this commit fixes code formatting and simplifies conditionally compiled code. Tue May 4 21:23:44 UTC 2010 Chad Beaulac * ace/Service_Types.cpp: One of problems is that ACE_Module_Type::name gets its value from the svc.conf file. The ACE_Module that it references gets its name from the static factory method used to create the module. When the names don't match the call to ACE_Stream_Type::fini fails to remove any ACE_Modules from the underlying ACE_Stream. Since none of the ACE_Modules are removed, ACE_Module_Type::fini tries to call fini on the ACE_Module reader and writer ACE_Task instances. And they've already been deleted by ACE_Stream::close called from ACE_Stream_Type::fini. Reassigned ACE_Module::name in ACE_Module_Type::init to ACE_Module_Type::name and fixed the SEGV at shutdown because of the issue described above. All of these issues are related: #3334 #3205 #2916 #3847 Fri Apr 23 09:38:35 EDT 2010 Steve Huston * ACE version 5.7a released. Tue Apr 20 18:46:38 UTC 2010 Steve Huston * tests/Service_Config_Stream_Test.{cp conf}: Brought this test over from hte dev stream as well as Bug_3334_Regression_Test.cpp. Mon Apr 19 18:17:30 UTC 2010 UTC 2010 Chad Beaulac * ace/Service_Repository.cpp Modified ASR::fini to print debug info for empty service entries and handle empty service entries. This fixes the ASR remove functionality that was one of the reasons SC_Server was crashing at shutdown. * examples/ASX/CCM_App/SC_Server.cpp Removing signal handler before main exit to present SEGV This fixes Bugzilla #2916 and #3205. Mon Apr 19 12:44:56 UTC 2010 Chad Beaulac * ace/Service_Types.h * ace/Service_Types.inl * ace/Service_Types.cpp Added service_type_ attr to expose the type of service being managed to the ACE_Service_Repository. This allows the ASR to manage the lifecycle of the ACE_Module and ACE_Stream in order to avoid a double delete of ACE_Module at shutdown. ACE_Stream_Type::fini was modified to not call ACE_Module_Type::fini as this will results in a double delete when ACE_Service_Repository::fini is called. ACE_Stream_Type::remove(module_name) was modified to not call ACE_Module_Type::fini as this will results in a double delete when ACE_Service_Repository::fini is called also. * ace/Service_Repository.cpp Modified ASR::fini to iterate over the service_array_ twice. ACE_Service_Type::fini is called on all ACE_Stream_Type and ACE_Service_Object_Type instances first. Then, fini is called on all ACE_Modules_Type instances. All calls to fini are done in the order the services appear in the ASR::service_array_ except for the grouping described here. The calls to ACE_Module_Type::fini must be done last because ACE_Stream_Type::fini accesses the Modules so they must not be deleted by a call to ACE_Module_Type::fini before that. * tests/Bug_3334_Regresssion_Test.cpp Added call to ACE_Service_Repository::fini_svcs() to capture all debug output before the application exits. * tests/run_tests.lst Removed !FIXED_BUGS_ONLY from Bug_3334_Regression_Test This fixes Bugzilla #3334 Tue Apr 13 19:34:40 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.{h cpp}: Reorder the enqueue/pipe operations when adding a notification to close the race where notifies can get lost in the ACE_HAS_NOTIFICATION_QUEUE case. Also fixed a misplaced #endif in read_notification_pipe() and cleaned it up some. Fri Mar 26 15:06:06 UTC 2010 Steve Huston Pulled these fixes from the dev stream: Fri Mar 26 14:07:55 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.{h inl cpp}: Refinements to the way notifies are handled: 1. The notify handler was being dispatched multiple times per notify; this has been fixed, which increases performance. 2. Notifications are now dispatched in only one thread at a time. This brings more parity to the way notifies are handled in other reactor implementations. Fri Mar 19 16:52:08 UTC 2010 Vladimir Zykov * tests/MT_NonBlocking_Connect_Test.cpp: And another attempt to workaround WFMO reactor. The previous changes could break the test on other platforms. Fri Mar 19 16:16:30 UTC 2010 Vladimir Zykov * tests/MT_NonBlocking_Connect_Test.cpp: Fixed a typo in previous commit. Fri Mar 19 15:58:52 UTC 2010 Vladimir Zykov * tests/MT_NonBlocking_Connect_Test.cpp: Fixed a test on Windows for WFMO reactor which doesn't support work_pending() function. Wed Mar 17 11:58:10 UTC 2010 Vladimir Zykov Committed the changes that I had to revert before x.7.7. * ace/Strategies_T.cpp: Changed the code so that close() is called in case of failure instead of destroy(). * ace/Connector.cpp: * ace/Connector.h: Changed the fix for bug#3731. Now NBCH adds a reference in constructor and removes it in destructor if the SVC_HANDLER that it owns is reference counted. This is a cleaner solution than the one used before. * tests/NonBlocking_Conn_Test.h: * tests/Process_Strategy_Test.cpp: * tests/NonBlocking_Conn_Test.cpp: Extended NonBlocking_Conn_Test and changed Process_Strategy_Test because of the change in Strategies_T.cpp. * tests/MT_NonBlocking_Connect_Test.cpp: * tests/tests.mpc: * tests/run_test.lst: Added a new test. This can be a reproducer for the bug#3731 which currently doesn't have its own test. Wed Mar 10 10:31:16 UTC 2010 Vladimir Zykov * ace/Svc_Handler.cpp: * tests/run_test.lst: Fixed bug#2609 and enabled the test for it. Thanks to Milan Cvetkovic for contributing this. Fri Mar 19 16:44:37 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.cpp (find_handler): If the handle isn't registered, don't try to dereference a null pointer; return 0. Wed Mar 17 20:00:45 UTC 2010 Steve Huston * include/makeinclude/platform_linux_common.GNU: Make the ARFLAGS setting overridable. Tue Nov 10 06:31:33 2009 Steve Huston * ace/Message_Queue_T.cpp (enqueue_*): When enqueuing blocks, grab the notifier pointer before releasing the guard; check it and do any needed notify() outside the lock scope. Avoids dereferencing 'this' when the message queue is deleted between the time the guard is released and the notify is checked. User is still responsible for ensuring the lifetime of a notifier the user supplies. Also, moved the monitor updates out of notify() and into the enqueue_* methods, inside the guard scope since they refer to object state; rely on the Monitor docs that say the updates are well-behaved. Tue Mar 2 21:02:51 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.cpp (mask_ops_i): If the specified handle is not registered, return -1 instead of crashing. Fri Feb 12 14:05:21 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.cpp: Fix unused variable warning. Thu Feb 4 15:32:24 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.cpp: * ace/Dev_Poll_Reactor.h: Two performance improvements to resolve Bugzilla #3714: 1. The notify handler is no longer suspended/resumed around notify processing. This removes the biggest source of CPU consumption introduced at ACE 5.7 - simply acquiring/releasing the token to handle notifies, each of which triggered another token acquire/notify cycle. 2. As I/O handlers are suspended before callback, they are not immediately resumed on callback return. Instead, they are added to a "to be resumed" list that is examined just prior to the next epoll_wait() call; any to-be-resumed handles are added back to the epoll set just before waiting. This removes another need to acquire the token just to resume a handler. Tue Jan 26 17:02:51 UTC 2010 Steve Huston * ace/Dev_Poll_Reactor.cpp (unbind_all): When shutting down, call handle_close() on all registered handlers. Fixes Bugzilla 2750. Thu Dec 31 20:54:51 UTC 2009 Steve Huston * ace/High_Res_Timer.cpp (get_cpuinfo): Don't use a CPU MHz value 0. I got a customer report with a real cpuinfo file showing 0. Thu Dec 31 17:46:10 UTC 2009 Steve Huston * bin/MakeProjectCreator/config/ace_fl.mpb: Rather than add PLATFORM_GL_LDFLAGS twice, one should be PLATFORM_X11_LDFLAGS. Thanks to Aaron Scamehorn for catching this. Thu Dec 31 17:24:14 UTC 2009 Steve Huston * include/makeinclude/wrapper_macros.GNU: If both static_libs_only and shared_libs_only are set, report the error and stop. Thanks to Howard Finer for reporting this. Mon Dec 7 16:09:18 UTC 2009 Steve Huston * tests/Basic_Types_Test.cpp: Add a verification for the endianness setting. Wed Nov 4 00:07:49 UTC 2009 Steve Huston * ace/Dev_Poll_Reactor.cpp (resume_handler_i): If asked to resume a handler without any bits currently set, just note the handler has been resumed, don't fail it. Prevents orphaned handle if a auto-suspended handler's callback clears the lone bit set. Tue Oct 20 16:20:33 UTC 2009 Steve Huston * ace/Message_Queue_T.cpp (enqueue_*): Move the notify() call outside the lock scope; holding the lock across a call that may block (or do anything else we don't know about) is dangerous. It resulted in deadlock at a customer site. See Bugzilla #3250 for any follow-up issues. * ace/Process_Mutex.h: Fix doxygen stuff and clarify the behavior when based on semaphores vs. mutexes where there's a choice. Tue Sep 8 20:27:14 UTC 2009 Steve Huston * include/makeinclude/rules.local.GNU: Strip CLEANUP_INSTALL before checking for blank to be sure it doesn't inadvertantly try to RM a string of spaces. Sat Aug 29 22:41:33 UTC 2009 Steve Huston * ace/Event_Handler.h: Edited doc for resume_handler() to note that it also works with ACE_Dev_Poll_Reactor. Thu Aug 27 20:27:52 UTC 2009 Steve Huston * bin/MakeProjectCreator/templates/gnu.mpd: When building requirement- checking and LDFLAGS for building binaries, take ARCH builds into account to properly locate libs. * include/makeinclude/wrapper_macros.GNU: Don't do the ARCH adjusting until after including platform_macros.GNU where ARCH would be defined. * include/makeinclude/rules.lib.GNU: Fix building, installing, and cleaning up libs built in an ARCH build. Tue Aug 18 19:09:40 UTC 2009 Steve Huston * ace/config-macros.h: In ACE_NOTREACHED, aC++ 03.* needs to have the unreachable line removed as well. Wed Aug 5 23:28:43 UTC 2009 Steve Huston * ace/Parse_Node.cpp: When applying the modules in a dynamic stream, note that they were link()ed in reverse order from what the order is from the svc.conf file. So reverse the order when pushing them on the stream. Fixes Bugzilla #3721. Tue Aug 4 14:32:24 UTC 2009 Steve Huston * ace/Configuration.h: * ace/Configuration.cpp (ACE_Configuration_Heap::open): Make multiple open() calls an error (return -1, EBUSY) rather than leaking an allocator and whatever it had allocated. Fixes Bugzilla 1324. * tests/Config_Test.cpp: Add test case for multiple open() calls. * NEWS: Noted the behavior change on open(). Tue Jul 28 18:13:22 UTC 2009 Douglas C. Schmidt * ace/OS_Memory.h: Replace the ACE_throw_bad_alloc macro definition with return (void*) 0 if exceptions=0 is enabled. Thanks to John Lindal for this fix. Thu Jul 23 16:40:55 UTC 2009 Douglas C. Schmidt * ace/OS_NS_string.cpp: Added some additional error checking to ACE_OS::strerror() to avoid problems when errnum is out of bounds. Thanks to Aleksandar Vukajlovic for reporting this. Fri Jul 17 18:32:45 UTC 2009 Douglas C. Schmidt * ace/OS_NS_time.cpp (mktime): Set t_sys.wMilliseconds to 0 so it's initialized properly. Thanks to Ryan Carmichael for this fix. Mon Jul 6 20:33:00 UTC 2009 Adam Mitz * ace/OS_NS_unistd.cpp: Fixed a bug where the number of bytes passed to ACE_OS::malloc is incorrect for ACE_USES_WCHAR (each character can be > 1 byte). Mon Jun 22 09:33:40 CDT 2009 Phil Mesnier * ACE version 5.7 released. Tue Jun 16 15:14:52 UTC 2009 Adam Mitz * ace/OS_main.cpp: For Windows CE/Mobile: when constructing argv[0], quote the full path to the exe if it contains spaces (\Program Files\...). Mon Jun 15 07:45:04 UTC 2009 Johnny Willemsen * tests/Bug_3673_Regression_Test.cpp: * tests/run_test.lst: * tests/tests.mpc: Added a new test for bugzilla 3673, this test whether exception handling works correctly. This doesn't work with CB2007 which is really a compiler bug. This test makes it easier to see if other compilers have the same bug Fri Jun 12 19:05:43 UTC 2009 Adam Mitz * ace/OS_NS_sys_socket.inl: Windows Mobile 6 can return WSAENOPROTOOPT instead of WSAEOPNOTSUPP for setsockopt with an unsupported option. Fri Jun 12 19:16:04 UTC 2009 Johnny Willemsen Revert the change below, Adam has a better fix * ace/config-WinCE.h Set ACE_LACKS_SO_RCVBUF for WinCE 5, it is not supported Fri Jun 12 18:37:04 UTC 2009 Johnny Willemsen * ace/config-WinCE.h Set ACE_LACKS_SO_RCVBUF for WinCE 5, it is not supported Fri Jun 12 14:12:04 UTC 2009 Steve Huston * tests/run_test.lst: Removed !FIXED_BUGS_ONLY from Process_Test. Not sure why it's there and I never see Process_Test fail. Fri Jun 12 11:24:09 UTC 2009 Steve Huston * ace/Dev_Poll_Reactor.cpp: Added missing ifdef ACE_HAS_EVENT_POLL. * tests/run_test.lst: Removed !FIXED_BUGS_ONLY from those fixed: Reactor_Dispatch_Order_Test_Dev_Poll Reactor_Remove_Resume_Test_Dev_Poll Refcounted_Event_Handler_Test_DevPoll Fri Jun 12 00:45:09 UTC 2009 Steve Huston * ace/Dev_Poll_Reactor.{h cpp inl}: Fixed multi-thread behavior of ACE_Dev_Poll_Reactor to resolve Bugzilla 2740, 3178, 3188, 3279. Note that fixing 3178 involved adding the manual-resume behavior from ACE_TP_Reactor which was easy after the other fixes. Essentially what was done is: - Change epoll_wait() from returning all ready events to just one. - Registered events now include the EPOLLONESHOT flag, so once an event is delivered for a handle, no more will be until epoll_ctl() is called again to reset the events. This has the effect of suspending handlers around I/O upcalls and preventing registration changes from happening while another thread is waiting for events. * tests/Reactor_Dispatch_Order_Test.cpp: * tests/Reactor_Dispatch_Order_Test_Dev_Poll.cpp: * tests/Refcounted_Event_Handler_Test_DevPoll.cpp: When registering the test handle for events, register for read and write, not everything. Registering for everything leaves 'connect' set when 'write' is removed, but they both map to the same event on non-Windows reactors. For the _Dev_Poll test, remove the BSD, VxWorks, Lynx-only case for removing write-mask - this should always be done. * tests/MT_Reactor_Upcall_Test.cpp: When setting up the ACE_Dev_Poll_Reactor, set the restart flag. * tests/Bug_2740_Regression_Test.cpp: Tweaks for more informative logging and remove false-fails on peer socket closes. * tests/run_test.lst: Removed !FIXED_BUGS_ONLY from Bug_2740_Regression_Test. Thu Jun 11 19:27:33 UTC 2009 Steven Stallion * PROBLEM-REPORT-FORM: Added additional PRF question about build method (commit performed on behalf of Chris Cleeland). Thu Jun 11 13:25:09 UTC 2009 Johnny Willemsen * ace/config-cygwin32.h: Only define the custom export macros when they are not defined yet * ace/TP_Reactor.cpp: owner_ is a bool Thu Jun 11 13:15:09 UTC 2009 Johnny Willemsen * include/makeinclude/platform_vxworks6.3.GNU: Use $(HOST_EXE_EXT) when host_root is set * include/makeinclude/platform_cegcc.GNU: Set qos to 1 and updated header Wed Jun 10 18:18:09 UTC 2009 Johnny Willemsen * ace/config-win32-msvc-9.h: * ace/OS_NS_stdio.inl: Fix for Windows CE with msvc9 Wed Jun 10 14:07:09 UTC 2009 Adam Mitz * include/makeinclude/platform_vxworks6.3.GNU: Minor adjustment to the part of the change below concerning "Allow in-place (no HOST_ROOT) cross-compilation on Win32 hosts." If the host tool variables (like $(TAO_IDL)) are already end in .exe don't add .exe again. Mon Jun 8 18:39:58 UTC 2009 Adam Mitz * ace/Message_Queue_Vx.h: * ace/OS_main.h: Added ACE_Export to ACE_Message_Queue_Vx. Added "exports" for the symbols ace_os_main_i and ace_main_i. This allows them to work with GCC 4.x hidden visibility on platforms that use redefinition of main (VxWorks). * contrib/minizip/minizip.mwc: Added a workspace so minizip will be "found" when running mwc.pl -recurse. * include/makeinclude/platform_lynxos.GNU: * include/makeinclude/platform_vxworks6.3.GNU: Both VxWorks and LynxOS: For shared library builds (RTP), use -rpath-link to silence warnings from the linker. We assume the libraries in $ACE_ROOT/lib will be present at runtime. VxWorks only: Allow in-place (no HOST_ROOT) cross-compilation on Win32 hosts. * include/makeinclude/platform_sunos5_sunc++.GNU: Default "distrib" to 1, which means we will not set RPATH, similar to other platforms. This resolves bug #3678. * tests/Network_Adapters_Test.h: * tests/Process_Manager_Test.cpp: * tests/Signal_Test.cpp: * tests/run_test.lst: Fix ACE tests that were failing in single-threaded builds. Mon Jun 8 09:51:05 2009 Johnny Willemsen * tests/Bug_1890_Regression_Test.cpp: * tests/Bug_2540_Regression_Test.cpp: Put the reactors on the heap to get these tests running with Windows CE where we only get a 64Kb main thread Sun Jun 7 17:53:05 2009 Johnny Willemsen * ace/Tokenizer_T.cpp * ace/Tokenizer_T.h * ace/SString.cpp * ace/SString.h Moved ACE_Tokenizer to its own file and reworked it to the C++ template ACE_Tokenizer_T. ACE_Tokenizer is then a typedef of ACE_Tokenizer_T. This makes it possible to use a char tokenizer in a wchar build * ace/ace.mpc: * ace/ace_for_tao.mpc: * ace/Makefile.am: Added new files * ace/Configuration.cpp: * ace/Process.cpp: * examples/OS/Process/process.cpp: Added include of Tokenizer_T.h * ace/OS_NS_Thread.cpp * ace/OS_NS_Thread.h * ace/OS_NS_Thread.inl Changed important_writer_ to bool Fri Jun 5 18:20:05 2009 Johnny Willemsen * ace/SString.h: Doxygen changes Fri Jun 5 18:16:05 2009 Johnny Willemsen * ace/ETCL/ETCL_Interpreter.cpp: Prefix increment and const changes * ace/SString.h: Doxygen changes Thu Jun 4 10:14:05 2009 Johnny Willemsen * ace/Select_Reactor_T.cpp: Only call the notify_handler_ when we have a valid pointer Thu Jun 4 09:42:05 2009 Johnny Willemsen * contrib/FaCE/CE_ARGV.h: * contrib/FaCE/FaCE.cpp: Fixed GCC 4.4 warnings Thu Jun 4 09:12:05 2009 Johnny Willemsen * ace/OS_NS_stdio.h: Fixed MinGW compile problem Thu Jun 4 08:56:05 2009 Johnny Willemsen * ace/OS_NS_unistd.inl (isatty): Check the return value of _open_osfhandle, if it returns -1, it failed and then calling _isatty with -1 will cause an assert of the msvc9 runtime Wed Jun 3 07:52:05 2009 Johnny Willemsen * bin/PerlACE/ProcessWinCE.pm: * bin/PerlACE/ProcessWinCE_Unix.pm: If we can't find the vxtest file, log it as error but just continue Mon Jun 1 08:09:05 2009 Johnny Willemsen * ace/Lib_Find.cpp: Fixed gcc4.4 warning in a different way, broke other builds * ace/config-win32-borland.h: Changed version checks to not have to patch again for a next path from Embarcadero Mon Jun 1 05:22:05 2009 Johnny Willemsen * ace/Lib_Find.cpp: Fixed gcc4.4 warnings Mon Jun 1 05:15:05 2009 Johnny Willemsen * ace/config-win32-borland.h: We new require to have update pack 3 installed Fri May 29 16:08:32 UTC 2009 Steve Huston * tests/Bug_2740_Regression_Test.cpp: * tests/tests.mpc: * tests/run_test.lst: New test based on code submitted in Bugzilla 2740. Fri May 29 13:36:05 2009 Marcel Smit * ace/OS_NS_stropts.cpp: * ace/OS_NS_sys_socket.cpp: * include/makeinclude/platform_cegcc.GNU: Fixed compiler error for QoS when compiler is CE gcc. Removed UNDER_CE < 500. Fri May 29 11:41:05 2009 Johnny Willemsen * ace/QoS/qos.mpc: Use prop:windows Tue May 26 06:56:05 2009 Johnny Willemsen * ace/Configuration.{h,cpp} Removed my WinCE code again, it seems to break another part of the test * ace/os_include/netinet/os_in.h: Layout change * ace/config-win32-msvc-10.h: * ace/config-win32-msvc-9.h: If we compile for Vista or higher then enable the native windows condition variables Tue May 26 05:56:05 2009 Johnny Willemsen * apps/JAWS/server/HTTP_Server.cpp: Fixed include Mon May 25 18:47:24 UTC 2009 Carlos O'Ryan * ace/config-linux-common.h: * ace/OS_NS_dirent.h: Johnny Willemsen found a more elegant fix. Applied. Mon May 25 18:21:40 UTC 2009 Carlos O'Ryan * ace/OS_NS_dirent.h: * ace/config-linux-common.h: Fixed bug 3681, code would not build with glibc-2.10 because the prototype for scandir() changed. Automatically detect the version of glibc and use the right prototype for it. Mon May 25 11:26:05 2009 Johnny Willemsen * apps/JAWS/server/IO.cpp * apps/JAWS/server/IO.h * apps/JAWS/server/JAWS_IO.cpp * apps/JAWS/server/JAWS_IO.h Renamed to JAWS_IO * apps/JAWS/server/HTTP_Handler.h * apps/JAWS/server/HTTP_Response.cpp * apps/JAWS/server/JAWS_Concurrency.h * apps/JAWS/server/Makefile.am * apps/JAWS/server/server.mpc Updated because of change above Mon May 25 09:47:05 2009 Johnny Willemsen * ace/OS_NS_sys_mman.inl: Don't pass unsupported flags with WinCE. This fixes the Mem_Map_Test Sun May 24 18:27:05 2009 Johnny Willemsen * ace/Configuration.{h,cpp} With WinCE RegKeyDelete just does a recursive delete, on regular Windows RegKeyDelete only works when there are no subkeys. Added WinCE specific code to check if we have subkeys, if yes, then return with an error Fri May 22 16:20:05 2009 Johnny Willemsen * tests/Message_Queue_Test.cpp: Run part of this test again on VxWorks and reduced the number it messages in the counting test for WinCE, the amount of messages is too much for CE to finish the test in time Fri May 22 16:10:05 2009 Johnny Willemsen * tests/ACE_Init_Test.cpp: Improved message * tests/Dirent_Test.cpp: Initialise pointer to 0 * tests/SOCK_Connector_Test.cpp: Print errno to get some more feedback why this fails on WinCE Fri May 22 12:11:05 2009 Johnny Willemsen * bin/PerlACE/ProcessWinCE.pm: * bin/PerlACE/ProcessWinCE_Unix.pm: Only use the vxtest file in a non static test Fri May 22 11:12:05 2009 Johnny Willemsen * ace/SOCK_Dgram.cpp: * ace/SOCK_Dgram_Mcast.cpp: Fixed casing of include for cegcc Fri May 22 10:57:05 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: Some defines only have to be set, not to 1 Fri May 22 10:51:05 2009 Johnny Willemsen * apps/JAWS3/jaws3/IO.cpp * apps/JAWS3/jaws3/IO.h * apps/JAWS3/jaws3/Jaws_IO.cpp * apps/JAWS3/jaws3/Jaws_IO.h Renamed to Jaws_IO to fix problems on windows * apps/JAWS3/jaws3/Asynch_IO.cpp * apps/JAWS3/jaws3/Asynch_IO.h * apps/JAWS3/jaws3/Asynch_IO_Helpers.h * apps/JAWS3/jaws3/jaws3.mpc * apps/JAWS3/jaws3/Makefile.am * apps/JAWS3/jaws3/Reactive_IO.cpp * apps/JAWS3/jaws3/Reactive_IO.h * apps/JAWS3/jaws3/Reactive_IO_Helpers.h * apps/JAWS3/jaws3/Synch_IO.cpp * apps/JAWS3/jaws3/Synch_IO.h * apps/JAWS3/jaws3/Templates.cpp Updated includes and filenames Fri May 22 08:31:05 2009 Johnny Willemsen * ace/Module.h: Doxygen fixes Fri May 22 07:41:05 2009 Johnny Willemsen * bin/run_all.pl: * bin/run_all_win32.pl: Not maintained for some time and seems they are broken Fri May 22 07:26:05 2009 Johnny Willemsen * apps/JAWS2/JAWS/IO.cpp * apps/JAWS2/JAWS/IO.h * apps/JAWS2/JAWS/Jaws_IO.cpp * apps/JAWS2/JAWS/Jaws_IO.h Renamed to Jaws_IO to fix problems on windows * apps/JAWS2/JAWS/Concurrency.h * apps/JAWS2/JAWS/IO_Acceptor.h * apps/JAWS2/JAWS/IO_Handler.cpp * apps/JAWS2/JAWS/jaws2.mpc * apps/JAWS2/JAWS/Makefile.am * apps/JAWS2/JAWS/Pipeline_Tasks.cpp * apps/JAWS2/JAWS/Server.cpp Updated includes and filenames Wed May 20 12:13:05 2009 Johnny Willemsen * bin/PerlACE/ProcessVX.pm: * bin/PerlACE/ProcessVX_Unix.pm: * bin/PerlACE/ProcessVX_Win32.pm: * bin/PerlACE/ProcessWinCE.pm: * bin/PerlACE/ProcessWinCE_Unix.pm: Use SYSTEM_LIBS when they are defined. List of dlls that are copied from the lib directory seperate by a semi colon Wed May 20 12:00:05 2009 Johnny Willemsen * bin/PerlACE/TestTarget.pm: Added SYSTEM_LIBS support, these have to be copied before we can run an executable Wed May 20 11:29:05 2009 Johnny Willemsen * bin/PerlACE/Process_Unix.pm: Support cross platform testing Wed May 20 07:38:05 2009 Johnny Willemsen * ace/OS_NS_stdio.h: * ace/OS_NS_stdio.inl: On some platforms fileno is a macro * ace/OS_NS_dirent.cpp: Layout and const changes Tue May 19 13:23:05 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: Added _WIN32_IE=0x0500 to RCFLAGS Tue May 19 13:14:05 2009 Johnny Willemsen * contrib/FaCE/FaCE.mpc: * contrib/FaCE/FaCENOACE.mpc: Added missing lib Tue May 19 11:22:05 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: Set RCFLAGS Tue May 19 10:12:05 2009 Johnny Willemsen * contrib/FaCE/CE_Screen_Output.h: Added missing include of stdio.h for FILE Tue May 19 07:13:05 2009 Johnny Willemsen * ace/Mem_Map/IO-tests/IO_Test.cpp: Use ACE_OS::fileno Tue May 19 06:52:05 2009 Johnny Willemsen * ace/Countdown_Time.cpp (stop): Make sure elapsed_time is equal or bigger then zero to prevent expanding the max_wait_time at the moment the system time has been changed. Thanks to Michael Guntli for reporting this. Tue May 19 06:50:05 2009 Marcel Smit * ace/config-win32-cegcc.h Removed compiler flags since they are now in platform_cegcc.GNU. Tue May 19 06:31:05 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: Pass mandatory compiler flags from here Tue May 19 06:17:05 2009 Johnny Willemsen * bin/fuzz.pl: Added fileno to ACE_OS check Tue May 19 06:14:05 2009 Johnny Willemsen * ace/OS_NS_stdio.h: * ace/OS_NS_stdio.inl: Added fileno wrapper which returns ACE_HANDLE. The CEGCC developers fixed their header files * ace/ETCL/ETCL_l.cpp: * ace/ETCL/ETCL_l.cpp.diff Use ACE_OS::fileno * ace/os_include/os_unistd.h: Removed obsolete casts for WinCE * ace/OS_NS_Thread.inl: Const changes Mon May 18 19:58:35 UTC 2009 Steve Huston * ace/config-aix-5.x.h: Add explicit instantiation for the ACE_EXPORT_SINGLETON_DECLARE - the compiler needs to be forced to generate the template code even if there's no use of it. Fixes unsats for ACE_Utils::UUID_Generator singleton. Also removed settings for AIX Visual Age, etc. earlier than V6. Mon May 18 17:11:28 UTC 2009 Steve Huston * ace/UUID.cpp: Reverted: Mon May 18 15:33:17 UTC 2009 Steve Huston It breaks g++ builds. Working on another solution... Mon May 18 15:33:17 UTC 2009 Steve Huston * ace/UUID.cpp: Add explicit instantiation of UUID_Generator singleton. Ensures the code is compiled; resolves missing extern sym on AIX. Mon May 18 14:44:27 UTC 2009 Abdullah Sowayan * bin/fuzz.pl: Added and enabled check_for_TAO_Local_RefCounted_Object. Mon May 18 10:11:05 2009 Johnny Willemsen * ace/High_Res_Timer.cpp: * ace/High_Res_Timer.inl: Const changes * ace/Token.h: When not defined ACE_USES_WINCE_SEMA_SIMULATION use the semaphore implementation Mon May 18 08:26:05 2009 Johnny Willemsen * ace/Countdown_Time.cpp * ace/Countdown_Time.h * ace/Countdown_Time.inl * ace/Makefile.am: Added inline file for Countdown_Time * ace/os_include/sys/os_time.h: Removed workaround for deprecated sco Mon May 18 07:48:05 2009 Johnny Willemsen * ace/Condition_Recursive_Thread_Mutex.cpp: Const change * ace/OS_NS_stdio.{h,inl}: Removed ACE_OS::fileno(), gives problems with CE at this moment * ace/Recursive_Thread_Mutex.cpp (get_nesting_level): Disabled again for WinCE, the fact that it compiled is a bug in the CEGCC header files * ace/OS_NS_Thread.cpp: Bool changes * ace/OS_NS_stdlib.cpp: WinCE has ExitProcess Mon May 18 06:45:05 2009 Johnny Willemsen * ace/Recursive_Thread_Mutex.cpp (get_nesting_level): Enabled for WinCE Mon May 18 06:17:05 2009 Johnny Willemsen * ace/OS_NS_stdio.{h,inl}: Added ACE_OS::fileno() Mon May 18 06:15:05 2009 Johnny Willemsen * tests/Dirent_Test.cpp: Fixed argument not used warning * tests/Based_Pointer_Test.cpp: Improved debug message * tests/Config_Test.cpp: Const change * tests/Thread_Pool_Reactor_Test.cpp: Fixed rcsid Mon May 18 06:12:05 2009 Johnny Willemsen * examples/Reactor/TP_Reactor/AcceptHandler.cpp: * examples/Reactor/TP_Reactor/server.cpp: Use ACE_ERRNO_GET Sun May 17 10:34:05 2009 Johnny Willemsen * ace/config-win32-cegcc.h: Use lib prefix, the gcc toolchain expects it * ace/Future.cpp: Layout changes * include/makeinclude/platform_cegcc.GNU: Just use the default lib prefix * ace/Configuration.cpp: Removed mingw check, that code also works with other compilers Sat May 16 18:03:05 2009 Johnny Willemsen * examples/OS/Process/imore.cpp: Fixed cegcc compile warnings Fri May 15 13:57:29 UTC 2009 Abdullah Sowayan * bin/MakeProjectCreator/config/ipv6.mpb: Replaced: specific(vc6, vc7, vc71, vc8, vc9, vc10, nmake, bmake, bds4) With: specific(prop:windows) Zapped references to em3, we no longer support that environement. * bin/MakeProjectCreator/config/vcfullmacros.mpt: * bin/MakeProjectCreator/config/vcpartialmacros.mpt: Zapped references to em3, we no longer support that environement. Fri May 15 12:36:35 UTC 2009 James H. Hill * ace/UUID.h: Removed the unnecessary semicolon. Fri May 15 07:10:05 2009 Johnny Willemsen * tests/Logging_Strategy_Test.cpp: Added debug statement to assist in analyzing the cegcc failure Thu May 14 12:06:05 2009 Johnny Willemsen * ace/Default_Constants.h: Only define ACE_DLL_PREFIX when it has not been defined yet, that way the mingw specific define can move to the mingw config file * ace/config-win32-mingw.h: Define ACE_DLL_PREFIX here * ace/OS_NS_dlfcn.inl: Initialise pointer with 0 * ace/OS_NS_sys_mman.inl: Const change * ace/OS_NS_Thread.cpp: Removed some not needed ACE_UNUSED_ARG * ace/OS_Thread_Adapter.h: * ace/Process.cpp: * ace/Sig_Handler.cpp: * ace/Thread_Manager.inl: Layout change * ace/Thread_Manager.cpp: Const change, initialise pointer with 0 Thu May 14 19:39:58 UTC 2009 Abdullah Sowayan * bin/MakeProjectCreator/config/ace_fl.mpb: * bin/MakeProjectCreator/config/ace_gl.mpb: * bin/MakeProjectCreator/config/ace_mc.mpb: * bin/MakeProjectCreator/config/ace_qt.mpb: * bin/MakeProjectCreator/config/ace_x11.mpb: * bin/MakeProjectCreator/config/acedefaults.mpb: * bin/MakeProjectCreator/config/crosscompile.mpb: Replaced: specific(nmake, vc71, vc8, vc9, vc10) With: specific(prop:microsoft) Thu May 14 18:27:53 UTC 2009 James H. Hill * ace/UUID.h: * ace/UUID.cpp: Fixed compilation errors related to namespace issues when declaring the UUID_Generator singleton. Thu May 14 10:18:05 2009 Johnny Willemsen * tests/Process_Manager_Test.cpp: Set the process_name in the process options for WinCE Thu May 14 10:10:05 2009 Johnny Willemsen * tests/Network_Adapters_Test.cpp: Only register signal handlers for SIGINT, SIGQUIT and SIGTERM when they are not equal zero * tests/Process_Manager_Test.cpp: Const changes, prefix increment/decrement Thu May 14 07:17:05 2009 Johnny Willemsen * tests/DLL_Test.cpp: Directly assign a local variable * tests/Message_Queue_Notifications_Test.cpp: * tests/Message_Queue_Test.cpp: * tests/Multicast_Test.cpp Initialise some pointers with 0 Thu May 14 00:01:54 UTC 2009 James H. Hill * ace/UUID.h: * ace/UUID.inl: * ace/UUID.cpp: * tests/UUID_Test.cpp: The constructor for the UUID generator now calls init (). Added ACE_SINGLETON_DECLARE to the UUID_GENERATOR singleton so it will be properly exported from the ACE library. Wed May 13 17:02:05 2009 Johnny Willemsen * tests/Network_Adapters_Test.cpp: When registering the signal handlers fails also print the signal number that failed Tue May 12 18:26:05 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp * protocols/tests/HTBP/Reactor_Tests/client.cpp * protocols/tests/HTBP/Send_Large_Msg/client.cpp More usage of ACE_ERRNO_GET Tue May 12 12:35:07 UTC 2009 Vladimir Zykov * apps/gperf/src/Key_List.cpp: Fixed an incorrect check which resulted in valgrind warning. Tue May 12 08:31:05 2009 Johnny Willemsen * ace/OS_NS_errno.h: Added ACE_ERRNO_GET, this has to be used when errno is passed to a C variable length argument . With WinCE errno is a class instance which we can't pass through a variable length argument, the cegcc compiler gives a warning about this, it results to an abort at runtime. ACE_ERRNO_GET will return the errno as int with WinCE * ace/DLL_Manager.cpp: * examples/Reactor/TP_Reactor/AcceptHandler.cpp: * examples/Reactor/TP_Reactor/client.cpp: * examples/Reactor/TP_Reactor/ReadHandler.cpp: * tests/Mem_Map_Test.cpp: * tests/MT_Reactor_Timer_Test.cpp: * tests/MT_SOCK_Test.cpp: * tests/New_Fail_Test.cpp: * tests/Priority_Task_Test.cpp: * tests/Reactor_Performance_Test.cpp: * tests/SOCK_Connector_Test.cpp: * tests/Thread_Pool_Reactor_Resume_Test.cpp: Use ACE_ERRNO_GET * tests/Reactor_Notify_Test.cpp: Fixed typo in comment Mon May 11 18:28:05 2009 Johnny Willemsen * ace/Sock_Connect.cpp: Some WinCE workarounds are only needed for older WinCE versions and when IPv6 is enabled Mon May 11 18:17:05 2009 Johnny Willemsen * ace/OS_NS_unistd.cpp: * ace/Pagefile_Memory_Pool.cpp: * ace/Pagefile_Memory_Pool.h: Fixed cegcc compile warnings Sun May 10 14:50:46 UTC 2009 Douglas C. Schmidt * m4/aio.m4 (Test_Aio): Removed all the commented out 'cout' lines. Thanks to Johnny for this suggestion. Sat May 9 03:29:08 UTC 2009 Douglas C. Schmidt * m4/aio.m4: Change #include to #include . Thanks to Boyan Kasarov for reporting this. Mon May 11 06:54:05 2009 Johnny Willemsen * ace/OS_NS_stdio.inl (fflush): Don't handle fflush(0) special for VxWorks. On VxWorks fflush(0) is not supported and returns -1, just pass that error back to the caller and not hide it. * ace/Mem_Map_Test.cpp: Updated for VxWorks 6.7 Sun May 10 10:31:05 2009 Johnny Willemsen * rpmbuild/* Changed the _ in the directory names to ., the MPC clonebuild tree can handle the .d now Thu May 7 01:32:22 UTC 2009 Jeff Parsons * ace/Process.cpp(command_line): Added check for buffer overflow. Thanks to Russ Noseworthy for submitting the patch. * Monitor_Admin.h: * Monitor_Control/Auto_Update_Starter.h: Cosmetic changes. Tue May 5 13:23:57 UTC 2009 Olli Savia * apps/drwho/CM_Server.cpp: Fixed memset's parameter order. Sat May 2 03:21:01 UTC 2009 Carlos O'Ryan * include/makeinclude/rules.lib.GNU: * include/makeinclude/wrapper_macros.GNU: Moved the definition of LIB_PREFIX from rules.lib.GNU to wrapper_macros.GNU. Now that the checks for library dependencies (i.e. the LIB_CHECK variable) depends on LIB_PREFIX, this latter variable needs to be defined in all Makefiles. However, Makefiles for binaries do not include rules.lib.GNU. I am pretty sure they call include wrapper_macros, thus my choice for the new location. Fri May 1 18:54:05 2009 Johnny Willemsen * rpmbuild/* Changed the . in the directory names to _, the MPC clonebuild tree can't handle that Fri May 1 18:35:05 2009 Johnny Willemsen * ace/OS_NS_Thread.cpp (add_to_argv): Do nothing if the length of the string is zero Fri May 1 18:17:05 2009 Johnny Willemsen * ace/OS_NS_Thread.cpp: Only add the arg from vx_execae when the string has data. Fri May 1 17:46:05 2009 Johnny Willemsen * tests/Map_Manager_Test.cpp: If table_size equals zero we fail directly Fri May 1 17:29:05 2009 Johnny Willemsen * ace/Default_Constants.h: Made sure ACE_DEFAULT_TIMERS is defined and not zero Fri May 1 12:27:05 2009 Johnny Willemsen * ace/Default_Constants.h: ACE_DEFAULT_MAP_SIZE and ACE_DEFAULT_TIMERS shouldn't be zero Fri May 1 12:19:05 2009 Johnny Willemsen * tests/INET_Addr_Test_IPV6.cpp: No need for ACE_UNUSED_ARG * tests/Map_Manager_Test.cpp: Use ACE_TEST_ASSERT and added some more checks * tests/test_config.h: Removed ghs workaround and check return value of log_msg open call Fri May 1 11:43:05 2009 Johnny Willemsen * ace/Event_Handler.cpp: Initialise members in the ACE_Notification_Buffer constructor * ace/Log_Record.h: Doxygen fix * ace/Notification_Queue.cpp: Layout change * ace/Select_Reactor_Base.cpp: Small code simplification Fri May 1 09:13:05 2009 Johnny Willemsen * bin/fuzz.pl: opt files are allowed in svn * bin/make_release.py: Don't generate Pocket PC 2003 and Smartphone 2003 projects Fri May 1 07:37:05 2009 Johnny Willemsen * rpmbuild/ace-tao-rpmlintrc.txt: Fixed line wrapper * rpmbuild/ace-tao.txt: Removed, we are not maintaining this file anymore * rpmbuild/README: Small updates Fri May 1 07:31:05 2009 Johnny Willemsen * rpmbuild/*: Changed location of config files for suse Fri May 1 07:15:05 2009 Johnny Willemsen * rpmbuild/*: Extract all archives and put them in subdirectories, makes it much easier to update these files Wed Apr 29 16:30:05 2009 Steve Huston * ace/Asynch_Acceptor.cpp (handle_accept): Pass the ACT to accept() when restarting the accept. Thanks to Dicky for this fix. * THANKS: Added Dicky . Wed Apr 29 13:52:12 UTC 2009 Johnny Willemsen * examples/APG/Active_Objects/active_objects.mpc * examples/APG/Config/config.mpc * examples/APG/Containers/containers.mpc * examples/APG/Misc_IPC/misc_ipc.mpc * examples/APG/Naming/naming.mpc * examples/APG/Proactor/proactor.mpc * examples/APG/Processes/processes.mpc * examples/APG/Shared_Memory/shared_memory.mpc * examples/APG/Streams/streams.mpc * examples/APG/Svc_Config/svc_config.mpc * examples/APG/ThreadPools/threadpools.mpc * examples/APG/ThreadSafety/threadsafety.mpc * examples/ASX/Event_Server/Event_Server/Event.mpc * examples/ASX/UPIPE_Event_Server/UPIPE_Event.mpc * examples/C++NPv1/C++NPv1.mpc * examples/C++NPv2/C++NPv2.mpc * examples/Connection/blocking/Connection_Blocking.mpc * examples/Connection/misc/Connection_Misc.mpc * examples/Connection/non_blocking/Connection_Non_Blocking.mpc * examples/IPC_SAP/DEV_SAP/reader/dev_sap_reader.mpc * examples/IPC_SAP/DEV_SAP/writer/dev_sap_writer.mpc * examples/IPC_SAP/FIFO_SAP/fifo_sap.mpc * examples/IPC_SAP/FILE_SAP/file_sap_client.mpc * examples/IPC_SAP/SOCK_SAP/sock_sap.mpc * examples/IPC_SAP/SSL_SAP/SSL_SAP.mpc * examples/IPC_SAP/UPIPE_SAP/UPIPE_SAP.mpc * examples/Mem_Map/file-reverse/Mem_Map_File_Reverse.mpc * examples/Mem_Map/IO-tests/Mem_Map_IO_Tests.mpc * examples/Misc/Misc.mpc * examples/Naming/Naming.mpc * examples/OS/Process/OS_Process.mpc * examples/QOS/Diffserv/QOS_Diffserv.mpc * examples/Reactor/Dgram/Reactor_Dgram.mpc * examples/Reactor/FIFO/Reactor_FIFO.mpc * examples/Reactor/Proactor/Proactor.mpc * examples/Reactor/WFMO_Reactor/WFMO_Reactor.mpc * examples/Semaphores/Semaphores.mpc * examples/Service_Configurator/IPC-tests/client/Svc_Cfg_IPC_Client.mpc * examples/Service_Configurator/IPC-tests/server/Svc_Cfg_IPC_Server.mpc * examples/Shared_Malloc/Shared_Malloc.mpc * examples/Shared_Memory/Shared_Memory.mpc * examples/Synch/Synch.mpc * examples/System_V_IPC/SV_Message_Queues/SV_Message_Queues.mpc * examples/System_V_IPC/SV_Semaphores/SV_Semaphores.mpc * examples/Threads/Threads.mpc * examples/Web_Crawler/Web_Crawler.mpc Use the avoids_ace_for_tao base project Wed Apr 29 09:47:12 UTC 2009 Johnny Willemsen * bin/MakeProjectCreator/templates/gnu.mpd: Don't use a harcoded lib prefix when checking the existance of the libraries, but use $(LIB_PREFIX) Wed Apr 29 09:29:12 UTC 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: Set LIB_PREFIX to empty Wed Apr 29 06:09:12 UTC 2009 Johnny Willemsen * include/makeinclude/platform_vxworks6.3.GNU: * include/makeinclude/platform_vxworks6.7.GNU: Moved the workaround to the vxworks 6.7 file Tue Apr 28 18:52:12 UTC 2009 Johnny Willemsen * ace/SSL/SSL_Context.cpp (set_mode): Fix compile error with OpenSSL 1.0 beta 2. Thanks to Jules Colding for reporting this Tue Apr 28 18:33:12 UTC 2009 Johnny Willemsen * bin/PerlACE/ProcessVX_Unix.pm * bin/PerlACE/ProcessVX_Win32.pm * bin/PerlACE/ProcessWinCE.pm * bin/PerlACE/ProcessWinCE_Unix.pm * bin/PerlACE/TestTarget_VxWorks.pm Improved waiting for the prompt Tue Apr 28 18:00:12 UTC 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: No prelib for cegcc Tue Apr 28 17:42:12 UTC 2009 Johnny Willemsen * bin/PerlACE/ProcessWinCE_Unix.pm: * bin/PerlACE/TestTarget_WinCE.pm: Extended for WinCE cross platform testing Tue Apr 28 11:42:12 UTC 2009 Johnny Willemsen * ace/SSL/SSL_Context.cpp (set_mode): Reverted change below, it breaks current ssl support Tue Apr 28 09:39:12 UTC 2009 Johnny Willemsen * ace/SSL/SSL_Context.cpp (set_mode): Fix compile error with OpenSSL 1.0 beta 2. Thanks to Jules Colding for reporting this Tue Apr 28 09:30:12 UTC 2009 Johnny Willemsen * include/makeinclude/platform_vxworks6.3.GNU: Fixed vxworks 6.7 rtp shared library link Tue Apr 28 09:26:12 UTC 2009 Johnny Willemsen * ace/OS_NS_unistd.cpp: Fixed vxworks warning * ace/Service_Object.cpp: Layout changes Tue Apr 28 07:58:16 UTC 2009 Marcel Smit * bin/PerlACE/ProcessVX.pm: * bin/PerlACE/ProcessWinCE_Unix.pm: * bin/PerlACE/Run_Test.pm: * bin/PerlACE/TestTarget_WinCE.pm: Changed to run Windows CE tests, build with CE gcc, on Linux. Fri Apr 24 20:40:16 UTC 2009 James H. Hill * docs/ace_guidelines.vsmacros: Excluded Purify files from edit macros. Fri Apr 24 12:21:06 UTC 2009 Johnny Willemsen * ace/Condition_Recursive_Thread_Mutex.h: Doxygen change * ace/config-cygwin32.h: Change for Cygwin 1.7 * ace/OS_NS_unistd.cpp (num_processors_online): Don't use a hard max of 32. Wed Apr 22 10:14:06 UTC 2009 Johnny Willemsen * ace/OS_NS_unistd.cpp: Implemented num_processors and num_processors_online using the VxWorks cpu lib * ace/config-vxworks6.6.h: VxWorks 6.6 and newer have cpuLib * ace/OS_NS_unistd.inl: Const change Wed Apr 22 09:48:06 UTC 2009 Johnny Willemsen * ace/Atomic_Op_T.cpp: * ace/Guard_T.cpp: Fixed compile problems when ACE_HAS_DUMP is enabled. Thanks to Skrzyniarz Alexandre for reporting this Tue Apr 21 14:50:23 UTC 2009 James H. Hill * docs/ace_guidelines.vsmacros: Prevented the macros from saving .rc files. Tue Apr 21 13:50:48 UTC 2009 Phil Mesnier * bin/diff-builds-and-group-fixed-tests-only.sh: Fixed the olddate to be consistent with the release of 5.6.9. Tue Apr 21 07:02:06 UTC 2009 Johnny Willemsen * examples/OS/Process/imore.cpp: * tests/Recursive_Mutex_Test.cpp: Fixed cegcc warning Mon Apr 20 20:01:06 UTC 2009 Johnny Willemsen * ace/OS_NS_string.cpp: Fixed argument not used warning Mon Apr 20 19:51:06 UTC 2009 Johnny Willemsen * tests/Malloc_Test.cpp: Fixed argument not used warning with cegcc Mon Apr 20 18:16:06 UTC 2009 Johnny Willemsen * include/makeinclude/platform_gnuwin32_common.GNU: dlltool is also dependent on architecture Mon Apr 20 18:08:06 UTC 2009 Johnny Willemsen * ace/ETCL/ETCL_l.cpp: * ace/ETCL/ETCL_l.cpp.diff: Added a cast for WinCE with GCC Mon Apr 20 17:47:06 UTC 2009 Johnny Willemsen * ace/WFMO_Reactor.cpp: Fixed argument not used warning with WinCE * include/makeinclude/platform_gnuwin32_common.GNU: dlltool is also dependent on architecture Mon Apr 20 17:43:06 UTC 2009 Johnny Willemsen * ace/Sock_Connect.cpp: Include iphlpapi.h with all lower cases to resolve compile error when using cross compilation using a linux host Mon Apr 20 17:39:06 UTC 2009 Johnny Willemsen * ace/os_include/os_unistd.h: Added a cast to resolve cegcc compile error Mon Apr 20 17:34:06 UTC 2009 Johnny Willemsen * ace/os_include/os_errno.h: Prevent redefinitions and when we don't have errno.h, define the error numbers if they are not defined yet. Needed for cegcc Mon Apr 20 17:26:06 UTC 2009 Johnny Willemsen * ace/config-win32-cegcc.h: Include _mingw.h and check the MinGW version Mon Apr 20 17:16:06 UTC 2009 Marcel Smit * ace/config-win32-cegcc.h: Fixes compiler error on CE gcc Mon Apr 20 13:52:06 UTC 2009 Marcel Smit * ace/config-win32-cegcc.h: Made a few define's CE gcc version depended. * include/makeinclude/platform_cegcc.GNU: Included ACE_HAS_CEGCC as define Mon Apr 20 12:53:32 UTC 2009 Johnny Willemsen * include/makeinclude/wrapper_macros.GNU: For quantify use PURELINK, quantify shouldn't be used when linking a shared library. This fixes bugzilla 1865, thanks to for reporting this. Mon Apr 20 11:40:32 UTC 2009 Johnny Willemsen * include/makeinclude/wrapper_macros.GNU: Addes support for SOLINK.cc.override Mon Apr 20 11:38:32 UTC 2009 Johnny Willemsen * include/makeinclude/platform_cegcc.GNU: Only set COMPARCH when it has not been set yet Mon Apr 20 10:17:32 UTC 2009 Marcel Smit * ace/Basic_Types.h: * ace/config-WinCE.h: * ace/OS_NS_stropts.h: * ace/OS_NS_sys_socket.h: * ace/OS_NS_Thread.cpp: Removed WinCE support for versions < 5.0. * ace/config-win32-cegcc.h: Removed temporary defines. * ace/config-win32-common.h: Replaced UNDER_CE with _WIN32_WCE. * ace/OS_main.cpp: * ace/OS_main.h: Removed CE gcc compiler warning by adding destructor. * ace/OS_NS_Thread.inl: Removed WinCE support for versions before 5.0. Added ACE_LACKS_CE_THREAD_PRIORITY define in order to compile on CE gcc. * ace/Process.cpp: Removed CE gcc compiler warning by using ACE_UNUSED_ARG. * ace/Registry.cpp: * ace/Registry.h: Removed CE gcc compiler warning by adding destructor. Removed CE gcc compiler warning by using ACE_UNUSED_ARG. * ace/SV_Semaphore_Simple.cpp: Removed pragma's for CE gcc compiler. Removed check on ACE_WIN64 define. * include/makeinclude/platform_cegcc.GNU: Default platform macros for CE gcc compiler. * include/makeinclude/platform_gnuwin32_common.GNU: Added support for CE gcc compiler. Mon Apr 20 09:01:32 UTC 2009 Johnny Willemsen * ace/config-vxworks6.6.h: * ace/config-vxworks6.4.h: VxWorks 6.6 and newer have cpuset_t and taskCpuAffinitySet Mon Apr 20 08:51:32 UTC 2009 Johnny Willemsen * ace/config-vxworks6.6.h: * NEWS: Enabled the vxAtomicLib by default for VxWorks 6.6 and newer. If you don't want to use this library, undef ACE_HAS_VXATOMICLIB in your config.h file Mon Apr 20 08:45:32 UTC 2009 Johnny Willemsen * ace/Sock_Connect.cpp: Another fix for HPUX Sun Apr 19 19:10:32 UTC 2009 Johnny Willemsen * ace/config-hpux-11.00.h * ace/Sock_Connect.cpp: Added ACE_HAS_STRUCT_LIFNUM, hpux doesn't have this Sun Apr 19 06:57:04 UTC 2009 James H. Hill * ace/UUID.h: * ace/UUID.inl: * ace/UUID.cpp: * tests/UUID_Test.cpp: Redesigned the internal structure of the UUID so that its key data members are a contiguous chunk of memory. Implemented a hash () method for the UUID. This will enable it to be used in ACE_Hash_Map_Manager objects. Remvoed the default constructor (), copy constructor () and assignmetnt operator from the UUID_Node object since the UUID performs such operations. Fri Apr 17 15:06:32 UTC 2009 Johnny Willemsen * debianbuild/patches/19-gcc43.dpatch: Removed, not needed anymore Fri Apr 17 15:03:32 UTC 2009 Johnny Willemsen * ace/Atomic_Op.{h,inl}: Added support for VxWorks vxAtomicLib. If you want to use that library add ACE_HAS_VXATOMICLIB to your config.h file * ace/config-vxworks6.4.h: VxWorks 6.4 has cpuset_t and taskCpuAffinitySet * ace/os_include/os_sched.h: VxWorks has cpuset_t * ace/OS_NS_sys_mman.inl: Updated VxWorks version checks * ace/OS_NS_sys_utsname.cpp: const change * ace/OS_NS_Thread.cpp: Added support for taskCpuAffinitySet * ace/Sock_Connect.cpp: Changed the checks for VxWorks to correctly detect which implementation of get_ip_interfaces we have to use * rpmbuild/ace-tao-orbsvcs-daemon.patch: This patch doesn't work anymore with svn head, if this is a real issue, it has to be addressed in the real code and not with a patch. This should already be possible with the -ORBDeamon flag * rpmbuild/ace-tao-ciao.spec: Don't apply ace-tao-orbsvcs-daemon.patch, fixed a small provides bug Thu Apr 16 16:03:32 UTC 2009 Phil Mesnier * NEWS: * bin/diff-builds-and-group-fixed-tests-only.sh: * bin/make_release.py: * docs/Download.html: * docs/bczar/bczar.html: * etc/index.html: * rpmbuild/ace-tao-ciao.spec: Updated in anticipation of 5.7 release. Tue Apr 14 10:06:19 CDT 2009 Phil Mesnier * ACE version 5.6.9 released. Tue Apr 14 13:57:16 UTC 2009 Phil Mesnier * NEWS: Reworded entries to be consistent with release note. Mon Apr 13 12:19:18 UTC 2009 Phil Mesnier * ace/config-linux-common.h: Reverted previous change. Sun Apr 12 20:37:11 UTC 2009 Phil Mesnier * ace/config-linux-common.h: The Rawhide nightly build shows that the scandir and alphasort functions have been redefined to finally take dirrent args. The detectable difference appears to be in the glibc version code, which is 2.9 on the Rawhide build machine. Sat Apr 11 13:13:49 UTC 2009 Phil Mesnier * ace/config-macosx-leopard.h: Darwin also has a variation that varies the signature of unsetenv(). Fri Apr 10 10:26:22 UTC 2009 Johnny Willemsen * ace/config-openvms.h OpenVMS lacks setenv/unsetenv Fri Apr 10 03:32:04 UTC 2009 Phil Mesnier * ace/OS_NS_stdlib.inl: Fix typo from previous commit. Fri Apr 10 03:00:44 UTC 2009 Phil Mesnier * ace/OS_NS_stdlib.inl: * ace/config-qnx-rtp-common.h: The newly added [un]setenv wrappers don't compile on qnx rtp because that platform defines unsetenv as having a void return. It is possible that other platforms have this as well, as legacy linux man pages show that signature. Thu Apr 9 12:34:41 UTC 2009 Marcel Smit * ace/OS_NS_stdio.inl: Reverted renaming of ACE_HAS_NONCONST_WFDOPEN define Thu Apr 9 11:45:08 UTC 2009 Marcel Smit * ace/OS_NS_stdio.inl: Resolved compiler error on WinCE 5 VC 8. Wed Apr 8 10:59:59 UTC 2009 Marcel Smit * ace/config-win32-cegcc.h: Added to support CE gcc compiler * ace/config-win32-common.h: Prevent ACE_HAS_CUSTOM_EXPORT_MACROS from being defined a second time. * ace/config-win32.h: Introduced ACE_HAS_CEGCC. When defined, config-win32-cegcc is included. * ace/Numeric_Limits.h: "#ifdef" replace by "#if defined" * ace/os_include/sys/os_stat.h: Prevent defines from being defined a second time. * ace/OS_NS_stdio.inl: Prevent compiler errors when compiling with CE gcc compiler. Using global namespace for fseek * ace/OS_NS_stdlib.inl: Prevent compiler errors when compiling with CE gcc compiler. * ace/OS_NS_Thread.h: Defining STACK_SIZE_PARAM_IS_A_RESERVATION (when it isn't defined yet). * ace/OS_NS_time.h: * ace/Time_Value.inl: Prevent pragma warnings when compiling with CE gcc compiler. Wed Apr 8 10:13:28 UTC 2009 Olli Savia * ace/config-lynxos.h: LynxOS 5.0 has setenv/unsetenv. Wed Apr 8 10:01:22 UTC 2009 Johnny Willemsen * bin/PerlACE/ProcessVX_Unix.pm: Increased number of telnet retries Tue Apr 7 20:29:22 UTC 2009 Johnny Willemsen * ace/config-lynxos.h LynxOS lacks setenv/unsetenv Tue Apr 7 16:44:37 UTC 2009 James H. Hill * docs/ace_guidelines.vsmacros: Bug fix where the script was trying to run on unsupported text files, which was causing an exception. Tue Apr 7 09:33:22 UTC 2009 Johnny Willemsen * ace/config-sunos5.5.h Solaris lacks setenv/unsetenv Tue Apr 7 09:32:22 UTC 2009 Johnny Willemsen * configure.ac: Added setenv/unsetenv Tue Apr 7 09:20:22 UTC 2009 Johnny Willemsen * ace/config-hpux-11.00.h HPUX lacks setenv/unsetenv Tue Apr 7 06:56:22 UTC 2009 Johnny Willemsen * bin/config-vxworks6.4.h: VxWorks kernel model lacks setenv/unsetenv * bin/fuzz.pl: Added setenv/unsetenv Mon Apr 6 21:59:51 UTC 2009 Steve Huston * include/makeinclude/platform_sunos5_g++.GNU: Don't acc CFLAGS to CCFLAGS; set options that make sense to C and C++ in the respective CFLAGS/CCFLAGS. Not all options are cross-compatible so they shouldn't be blindly included. Has the side-affect of removing the double -pipe (and other options included twice) and fixes Bugzilla #3232. Mon Apr 6 15:17:23 UTC 2009 Douglas C. Schmidt * tests/Message_Queue_Test.cpp: Added a new close_test() function to test the fix to Message_Queue_T::close(). Thanks to Igor Rayak for providing this. Mon Apr 6 14:46:22 UTC 2009 Johnny Willemsen * ace/config-win32-common.h: Windows doesn't have setenv/unsetenv Mon Apr 6 13:44:31 UTC 2009 Douglas C. Schmidt * ace/Message_Queue_T.cpp (close): Added a comment explaining why we don't need to check the return value of deactivate_i(). Mon Apr 6 09:43:22 UTC 2009 Johnny Willemsen * ace/config-WinCE.h: Added missing ACE_LACKS_GETENV Mon Apr 6 07:25:22 UTC 2009 Johnny Willemsen * ace/config-integritySCA.h: Added ACE_LACKS_PUTENV_PROTOTYPE * ace/config-WinCE.h: WinCE doesn't have environment variables * ace/OS_NS_stdlib.cpp: * ace/OS_NS_stdlib.h: * ace/OS_NS_stdlib.inl: * ace/OS_NS_unistd.cpp: Added setenv/unsetenv wrappers and used a specific define per environment method Sun Apr 5 19:08:47 UTC 2009 Douglas C. Schmidt * ace/Message_Queue_T.cpp (close): Fixed this method so it returns the number of messages that were flushed from the queue, as per its documentation. Thanks to Igor Rayak for reporting this. Sun Apr 5 18:39:22 UTC 2009 Johnny Willemsen * ace/OS_main.cpp: Added missing ACE_Export Sat Apr 4 11:49:22 UTC 2009 Johnny Willemsen * ace/config-vxworks6.4.h: Removed not needed define Fri Apr 3 13:28:22 UTC 2009 Johnny Willemsen * ace/os_include/arpa/os_inet.h: * ace/os_include/sys/os_select.h: * ace/os_include/sys/os_socket.h: * ace/os_include/sys/os_un.h: * ace/Token.h: * ace/config-vxworks6.4.h: Moved some VxWorks checks to the config file and added some new defines Thu Apr 2 19:33:13 UTC 2009 Olli Savia * include/makeinclude/platform_lynxos.GNU: Added -lXp to PLATFORM_X11_LIBS. Thu Apr 2 10:05:22 UTC 2009 Johnny Willemsen * tests/Sig_Handlers_Test.cpp: Fixed compile error and warning Wed Apr 1 19:48:22 UTC 2009 Johnny Willemsen * tests/Log_Msg_Test.cpp: Fix for vxworks 6.7 * tests/Recursive_Condition_Test.cpp: Const change and added a debug statement * tests/Sig_Handlers_Test.cpp: Removed not needed include and fixed compile issue * tests/tests.mpc: Added missing Sig_Handlers_Test Wed Apr 1 15:12:22 UTC 2009 Johnny Willemsen * ace/Service_Repository.h: Removed unicode character. Thanks to Alon Diamant for reporting this Tue Mar 31 07:18:22 UTC 2009 Johnny Willemsen * ace/Sock_Connect.cpp: VxWorks 6.7 also has an issue with in6_addr Tue Mar 31 14:59:49 UTC 2009 Adam Mitz * ace/High_Res_Timer.cpp: Linux configured with "clock=pit" on the boot line (commonly used for virtual machines) can report a 0 MHz CPU, in which case ACE must run calibration for the High Res Timer to avoid a division by 0. Mon Mar 30 14:32:22 UTC 2009 Johnny Willemsen * ace/OS_NS_Thread.cpp: * ace/OS_NS_Thread.inl: Refactored VxWorks version checks to new macros Fri Mar 27 13:24:58 UTC 2009 Olli Savia * bin/MakeProjectCreator/config/ace_athena3d.mpb: * tests/XtAthenaReactor_Test.cpp: * tests/tests.mpc: Added support for Athena-3D widgets. Fri Mar 27 11:19:22 UTC 2009 Johnny Willemsen * bin/PerlACE/ProcessVX_Unix.pm: * bin/PerlACE/ProcessVX_Win32.pm: Improved error handling Thu Mar 26 17:10:22 UTC 2009 Johnny Willemsen * bin/PerlACE/ProcessVX_Unix.pm: * bin/PerlACE/ProcessVX_Win32.pm: Changed waiting for the prompt, VxWorks 6.7 telnet server seems to have slight different timing behaviour Thu Mar 26 12:48:22 UTC 2009 Johnny Willemsen * bin/PerlACE/ProcessVX.pm: * bin/PerlACE/ProcessVX_Unix.pm: * bin/PerlACE/ProcessVX_Win32.pm: Added support for ACE_RUN_VX_TGT_STARTUP_SCRIPT. This is a script on the host system that is loaded and then executed on the target Thu Mar 26 09:21:22 UTC 2009 Johnny Willemsen * rpmbuild/ace-tao-ciao.spec: Added explicit provides for mpc Thu Mar 26 09:02:22 UTC 2009 Johnny Willemsen * ace/OS_NS_Thread.inl (condattr_destroy, condattr_init): Simplified these methods Wed Mar 25 19:27:45 UTC 2009 Phil Mesnier * ace/OS_NS_Thread.inl: Address the possibility that both PTHREADS and STHREADS are available, which is the case on Solaris 5.5 and newer. The header prefers PTHREAD definitions to STHREAD, so now this code does the same. Wed Mar 25 19:09:22 UTC 2009 Johnny Willemsen * ace/os_include/os_limits.h: * Kokyu/DSRT_Dispatcher_Impl_T.h: Fixed VxWorks 6.7 compile problems * Kokyu/Kokyu.cpp: Initialise pointers with 0 Wed Mar 25 13:04:22 UTC 2009 Johnny Willemsen * ace/config-vxworks6.7.h: isascii still gives a problem with VxWorks 6.7. Wed Mar 25 09:15:22 UTC 2009 Johnny Willemsen * include/makeinclude/platform_vxworks.GNU: Added support for VxWorks 6.7 Tue Mar 24 15:16:22 UTC 2009 Johnny Willemsen * ace/config-win32-common.h: When the user defines ACE_HAS_WTHREADS_CONDITION_VARIABLE we don't define ACE_LACKS_COND_T * ace/OS_NS_Thread.cpp: * ace/OS_NS_Thread.h: * ace/OS_NS_Thread.inl: Windows Vista/Server 2008 and newer do have native support for condition variables. Added a compilation time flag ACE_HAS_WTHREADS_CONDITION_VARIABLE, when this is defined ACE will use the native Windows condition api's. Did some unrelated const, performance, and code improvements. * ace/OS_NS_stdio.cpp (checkUnicodeFormat): Slightly change the check for the return value Tue Mar 24 15:16:22 UTC 2009 Johnny Willemsen * ace/Timer_Heap_T.cpp: * ace/Timer_Queue_Adapters.cpp: Const changes Tue Mar 24 13:43:14 UTC 2009 Douglas C. Schmidt * tests/Sig_Handlers_Test.cpp: Added a new test to ensure that the ACE_Sig_Handlers class is working properly. Tue Mar 24 11:45:22 UTC 2009 Johnny Willemsen * tests/Bug_3532_Regression_Test.cpp: Use ACE_TEXT Tue Mar 24 11:38:22 UTC 2009 Johnny Willemsen * ace/OS_NS_stdio.cpp (checkUnicodeFormat): Fixed a bug that the file pointer wasn't set to the start of the file when the file is just 1 byte large. This fixes bugzilla 3532, thanks to Martin Gaus for reporting this. Mon Mar 23 23:11:49 UTC 2009 Douglas C. Schmidt * ace/Sig_Handler.cpp: Fixed a silly bug in the use of ACE_Fixed_Set_Iterator that was causing every other signal in ACE_Sig_Handlers to be skipped. Thanks to Andreas Drescher for reporting this bug. Sun Mar 22 19:21:06 UTC 2009 Douglas C. Schmidt * ace/Acceptor.cpp (accept_svc_handler): Zapped the 'const' before the 'bool'. Fri Mar 20 13:40:47 UTC 2009 Douglas C. Schmidt * ace/Acceptor.cpp (accept_svc_handler): Added a check for a NULL reactor to avoid a race condition. Thanks to JD Robertson for reporting this. Sun Mar 22 06:46:22 UTC 2009 Johnny Willemsen * ace/OS_NS_Thread.cpp: For ACE_BEGINTHREADEX with WinCE only pas supported flags Fri Mar 20 16:15:15 UTC 2009 Jeff Parsons * THANKS: Updated email address for Max Khon. Fri Mar 20 08:07:22 UTC 2009 Johnny Willemsen * ace/OS_NS_unistd.{h,inl}: Use correct type for pid and WinCE change Thu Mar 19 16:07:22 UTC 2009 Johnny Willemsen * bin/MakeProjectCreator/config/acedefaults.mpb: * bin/MakeProjectCreator/config/svc_conf_files.mpb: Add all .conf and .conf.xml files to a Svc Conf Files group and use it for all ace/tao projects. That way any service config file is part of the generated visual studio solution which makes it easier to edit these files Thu Mar 19 12:42:07 UTC 2009 Phil Mesnier * ace/OS_NS_unistd.inl: Further clean up to maintain style consistency in new dup() impl. Thu Mar 19 11:57:46 UTC 2009 Phil Mesnier * ace/OS_NS_unistd.inl: Clean up compile errors. Wed Mar 18 14:48:23 UTC 2009 Douglas C. Schmidt * ace/OS_NS_unistd.{h,inl}: Added a new ACE_OS::dup() method with one more parameter as process id of target process [ACE_OS:dup(ACE_HANDLE handle, int pid)], so that handle duplicated by dup() can be used in target process. Thanks to kashif khan for contributing this. Wed Mar 18 14:28:22 UTC 2009 Johnny Willemsen * protocols/ace/RMCast/Acknowledge.cpp: * protocols/ace/RMCast/Protocol.h: Initialise pointers with 0 Wed Mar 18 11:23:22 UTC 2009 Johnny Willemsen * ace/config-cygwin32.h: Added some support for Cygwin 1.7 Wed Mar 18 09:17:22 UTC 2009 Johnny Willemsen * ace/OS_NS_Thread.cpp: For ACE_BEGINTHREADEX with WinCE, just past all flags to CreateThread, that way the user can also specify STACK_SIZE_PARAM_IS_A_RESERVATION as flag Tue Mar 17 09:10:00 UTC 2009 Simon Massey * bin/diff-builds-and-group-fixed-tests-only.sh: Correct Fri Mar 13 08:16:54 UTC 2009 Johnny Willemsen so that CIAO_ROOT and TAO_ROOT are actually set. Mon Mar 16 20:04:22 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Let gnuplot figure our the yrange high Mon Mar 16 19:46:53 UTC 2009 Marcel Smit * THANKS Added MarcusM for fixing Bugzilla 3618. Mon Mar 16 19:35:53 UTC 2009 Marcel Smit * ace/Service_Gestalt.cpp: Applied patch attached to Bugzilla 3618. Fixed Bugzilla 3618. Mon Mar 16 18:42:22 UTC 2009 Johnny Willemsen * docs/analyticsTracking.php: * docs/Download.html: Added tracking Mon Mar 16 13:01:22 UTC 2009 Johnny Willemsen * ace/Asynch_IO.h: * ace/Based_Pointer_Repository.h: Added private copy constructor/assignment operator to prevent making a copy which leads to a double delete Mon Mar 16 12:29:22 UTC 2009 Johnny Willemsen * ace/Configuration.cpp: * ace/System_Time.cpp: Initialise pointers with 0 * ace/MEM_Acceptor.h: Doxygen fix * ace/Monitor_Control_Types.cpp (operator=): Check for self assignment * ace/Name_Space.cpp: * ace/Name_Space.h: Let operator= return a value * ace/SOCK.h: Layout change * ace/UUID.cpp: Simplified operator= Sun Mar 15 18:44:22 UTC 2009 Johnny Willemsen * rpmbuild/ace-tao-ciao.spec: Removed workarounds for TAO_IDL lib version numbers Sat Mar 14 22:05:15 UTC 2009 Olli Savia * ace/config-lynxos.h: Updated for LynxOS 5.0 Fri Mar 13 19:21:54 UTC 2009 Johnny Willemsen * rpmbuild/ace-tao-ciao.spec: Removed checks for OS version, we now use the gcc version Fri Mar 13 08:16:54 UTC 2009 Johnny Willemsen * bin/diff-builds-and-group-fixed-tests-only.sh: Check also the lst files in the TAO_ROOT/bin and CIAO_ROOT/bin directory. * ace/MEM_Connector.h * ace/SOCK_Connector.h * ace/SOCK_SEQPACK_Connector.h * ace/SSL/SSL_SOCK_Connector.h Fixed typo in comment Mon Mar 9 13:39:08 UTC 2009 Johnny Willemsen * etc/*: Moved all TAO and CIAO files to TAO_ROOT/etc and CIAO_ROOT/etc * bin/generate_doxygen.pl: Updated for doxygen file change Mon Mar 9 07:22:08 UTC 2009 Johnny Willemsen * ace/ace_qt3reactor.mpc: Explicitly list moc file to resolve compile warning on fc6 Mon Mar 9 07:08:08 UTC 2009 Johnny Willemsen * bin/generate_footprint_chart.sh: Changed location of footer * bin/MakeProjectCreator/config/global.features: lzo1 is disabled by default Fri Mar 6 20:28:50 UTC 2009 Steven Stallion * bin/PerlACE/Process_Unix.pm: * bin/PerlACE/Run_Test.pm: Added add_lib_path support for Mac OS X (DYLD_LIBRARY_PATH). Fri Mar 6 09:07:08 UTC 2009 Johnny Willemsen * html/Stats/footprint.shtml: Corrected links Thu Mar 5 20:18:42 UTC 2009 Olli Savia * include/makeinclude/platform_linux_common.GNU: Improved support for systems that lack 'lsb_release' command and systems which getconf doesn't support 'GNU_LIBPTHREAD_VERSION' variable. Thu Mar 5 19:22:08 UTC 2009 Johnny Willemsen * ace/ace_qt3reactor.mpc: * ace/ace_qt4reactor.mpc: Moved moc step to seperate project to get the correct build order with incredibuild * ace/Select_Reactor_T.h: * ace/Sig_Handler.h: * ace/WFMO_Reactor.h: Doxygen changes Wed Mar 4 20:01:11 UTC 2009 Olli Savia * include/makeinclude/platform_g++_common.GNU: Add -ftemplate-depth-23 to CCFLAGS when compiling with GCC 2.x. Wed Mar 4 10:04:15 UTC 2009 Johnny Willemsen * bin/generate_footprint_chart.sh: * bin/generate_performance_chart.sh: * bin/performance_stats.sh: Updated size and scale of the graphs Wed Mar 4 08:14:35 UTC 2009 Olli Savia * tests/Process_Manager_Test.cpp: Added missing ACE_TEXT. Tue Mar 3 19:59:10 UTC 2009 Olli Savia * apps/JAWS/clients/Blobby/Blob_Handler.cpp: Fixed compile warning. Tue Mar 3 19:43:42 UTC 2009 Olli Savia * tests/Process_Manager_Test.cpp: Fixed gcc's "zero-length format string" warning. Tue Mar 3 13:32:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: * bin/performance_stats.sh: * html/Stats/performance.shtml: * html/Stats/simple_footprint.shtml: Don't generate thumbnails, just show the original graphs on 320x240 Tue Mar 3 11:13:48 UTC 2009 Olli Savia * include/makeinclude/platform_lynxos.GNU: Fixed cross compilation settings and changed default cross compilation platform to Linux. Tue Mar 3 10:42:15 UTC 2009 Johnny Willemsen * html/Stats/compilation.shtml: * html/Stats/footprint.shtml: * html/Stats/navigation.html: * html/Stats/performance.shtml: Updated links to the new results Tue Mar 3 07:46:45 UTC 2009 Olli Savia * include/makeinclude/platform_lynxos.GNU: Add -lrpc to LIBS if rpc=1. Tue Mar 3 07:35:15 UTC 2009 Johnny Willemsen * tests/Unbounded_Set_Test.cpp: Also test the is_empty() method * tests/Log_Msg_Backend_Test.cpp: Directly assign variable Tue Mar 3 05:27:13 UTC 2009 Olli Savia * ace/os_include/net/os_if.h: Fixed errors caused by previous commit. Mon Mar 2 19:58:57 UTC 2009 Olli Savia * ace/README: * ace/os_include/net/os_if.h: * configure.ac: * m4/config_h.m4: Removed legacy ACE_HAS_STL_MAP_CONFLICT macro. Mon Mar 2 14:51:20 UTC 2009 Olli Savia * examples/Misc/test_XtReactor1.cpp: * examples/Misc/test_XtReactor2.cpp: * tests/XtAthenaReactor_Test.cpp: * tests/XtMotifReactor_Test.cpp: Fixed compile warning and run-time crash on 64-bit systems. Mon Mar 2 11:44:15 UTC 2009 Johnny Willemsen * ace/Auto_IncDec_T.h: * ace/OS_Memory.h: * ace/OS_NS_Thread.h: Doxygen fixes Mon Mar 2 10:35:41 UTC 2009 Vladimir Zykov * apps/gperf/src/Key_List.cpp: Fixed memory leaks in gperf code. Mon Mar 2 07:53:15 UTC 2009 Johnny Willemsen * html/Stats/index.shtml: Added some more links Mon Mar 2 07:37:59 UTC 2009 Olli Savia * performance-tests/RPC/client.cpp: Fixed compile error on LynxOS 4.2 Sun Mar 1 20:35:34 UTC 2009 Olli Savia * ace/config-sunos5.5.h: Removed ACE_HAS_STL_MAP_CONFLICT. Sun Mar 1 20:20:16 UTC 2009 Olli Savia * ace/os_include/netinet/os_in.h: * ace/os_include/os_netdb.h: * ace/os_include/os_stropts.h: * configure.ac: * m4/config_h.m4: Removed legacy ACE_HAS_STL_QUEUE_CONFLICT macro. Sun Mar 1 18:45:15 UTC 2009 Johnny Willemsen * bin/generate_footprint_chart.sh * bin/generate_performance_chart.sh * bin/generate_topinfo_charts.sh * bin/performance_stats.sh Rotate xlabel to make them more readable Sun Mar 1 07:36:15 UTC 2009 Johnny Willemsen * bin/generate_performance_chart.sh: * bin/performance_stats.sh: * html/Stats/configuration.shtml: * html/Stats/footprint.shtml: Extended these files to that we can use them on emulab Fri Feb 27 12:31:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Generate a link to the raw data file Fri Feb 27 10:09:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: If the object size is smaller then 1Kb, generate the graph in bytes Fri Feb 27 10:09:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Changed gnuplot generation Fri Feb 27 09:50:47 UTC 2009 Marcel Smit * ace/ace_qt3reactor.mpc: * ace/ace_qt4reactor.mpc: Preventing QtReactor_moc.cpp to be included twice Fri Feb 27 08:21:47 UTC 2009 Olli Savia * ace/FlReactor/FlReactor.cpp: * ace/FoxReactor/FoxReactor.cpp: * tests/FlReactor_Test.cpp: Fixed includes. Fri Feb 27 07:52:36 UTC 2009 Olli Savia * performance-tests/RPC/client.cpp: Added #include "ace/Throughput_Stats.h" to fix compile errors. Fri Feb 27 07:08:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Corrected sorting order Thu Feb 26 12:26:15 UTC 2009 Johnny Willemsen * ace/Addr.cpp: Layout change * ace/Event_Handler.h: * ace/Free_List.h: * ace/Logging_Strategy.h: * ace/Process_Manager.h: * ace/Select_Reactor_Base.h: * ace/Select_Reactor_T.h: * ace/SSL/SSL_SOCK_Acceptor.inl: * ace/Timer_Heap_T.h: * ace/Timer_Wheel_T.h: Doxygen change * ace/Service_Config.cpp: * ace/Service_Gestalt.cpp: * ace/Service_Gestalt.h: Changed the default value of the logger_key argument to open to 0. That way we can easier check if the user has overridden the default. Also check the logger_key in Service_Gestalt, so that it can be set through TAO. This fixes bugzilla 3597 Thu Feb 26 10:45:58 UTC 2009 Olli Savia * include/makeinclude/platform_linux_common.GNU: Fixed TCL/TK flags for Ubuntu. Thu Feb 26 09:24:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Don't generate the LAST file anymore, it only takes disk space and is not used Thu Feb 26 08:39:15 UTC 2009 Johnny Willemsen * etc/*: Improved these files Thu Feb 26 08:02:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Don't use the .metrics directory, on emulab we always get a fresh system. Just use the DEST directory directly Mon Feb 23 19:34:15 UTC 2009 Johnny Willemsen * bin/generate_compile_stats.sh: Use mkdir -p Mon Feb 23 19:25:15 UTC 2009 Johnny Willemsen * ace/OS_NS_sys_socket.h: Doxygen changes Mon Feb 23 13:11:15 UTC 2009 Johnny Willemsen * ace/config-vxworks5.x.h: * ace/config-vxworks6.2.h: * ace/config-vxworks6.3.h: Removed, these VxWorks versions aren't maintained anymore * ace/config-vxworks.h: Updated Mon Feb 23 08:16:15 UTC 2009 Johnny Willemsen * bin/MakeProjectCreator/config/global.features Layout changes * bin/PerlACE/ProcessVX_Unix.pm Improved quote handling * debianbuild/dsc: New file * ace/Activation_Queue.cpp * ace/ATM_Addr.cpp * ace/ATM_Connector.inl * ace/Configuration_Import_Export.cpp * ace/Dynamic_Message_Strategy.cpp * ace/Future.cpp * ace/Message_Queue_T.cpp * ace/Naming_Context.cpp * ace/POSIX_Asynch_IO.cpp * ace/QoS/QoS_Session_Impl.cpp * ace/Timer_Heap_T.cpp * ace/Timer_Wheel_T.cpp * ace/TP_Reactor.cpp * ace/WIN32_Asynch_IO.cpp * ACEXML/examples/SAXPrint/main.cpp * apps/gperf/src/Options.cpp * apps/JAWS/server/HTTP_Handler.cpp * apps/mkcsregdb/mkcsregdb.cpp * ASNMP/examples/get/get.cpp * ASNMP/examples/get/get_async.cpp * ASNMP/examples/next/next.cpp * ASNMP/examples/set/set.cpp * ASNMP/examples/trap/trap.cpp * ASNMP/examples/walk/walk.cpp * examples/APG/Containers/DLList.cpp * examples/APG/Containers/Hash_Map.cpp * examples/APG/Containers/Hash_Map_Hash.cpp * examples/APG/Containers/Map_Manager.cpp * examples/APG/Containers/Map_Manager_Specialization.cpp * examples/APG/Containers/RB_Tree.cpp * examples/APG/Containers/RB_Tree_Functors.cpp * examples/APG/ThreadManagement/Coop_Cancel.cpp * examples/APG/ThreadManagement/ExitHandler.cpp * examples/APG/ThreadManagement/Pool.cpp * examples/APG/ThreadManagement/Signals2.cpp * examples/APG/ThreadManagement/Start_Hook.cpp * examples/APG/ThreadSafety/Atomic_Op.cpp * examples/APG/ThreadSafety/TSS.cpp * examples/APG/Timers/Task.cpp * examples/ASX/Event_Server/Event_Server/Options.cpp * examples/ASX/Event_Server/Event_Server/Peer_Router.cpp * examples/ASX/Event_Server/Transceiver/transceiver.cpp * examples/ASX/UPIPE_Event_Server/Options.cpp * examples/ASX/UPIPE_Event_Server/Peer_Router.cpp * examples/Connection/misc/Connection_Handler.cpp * examples/IPC_SAP/ATM_SAP/CPP-client.cpp * examples/IPC_SAP/SSL_SAP/SSL-server-fancy.cpp * examples/IPC_SAP/SSL_SAP/SSL-server.cpp * examples/QOS/Change_Receiver_FlowSpec/receiver.cpp * examples/QOS/Change_Receiver_FlowSpec/sender.cpp * examples/QOS/Change_Sender_TSpec/receiver.cpp * examples/QOS/Change_Sender_TSpec/sender.cpp * examples/QOS/Simple/receiver.cpp * examples/QOS/Simple/sender.cpp * examples/Reactor/Proactor/post_completions.cpp * examples/Reactor/Proactor/test_aiosig.cpp * examples/Reactor/Proactor/test_aiosig_ace.cpp * examples/Reactor/Proactor/test_end_event_loop.cpp * examples/Threads/auto_event.cpp * examples/Threads/manual_event.cpp * examples/Timer_Queue/Async_Timer_Queue_Test.cpp * Kokyu/DSRT_CV_Dispatcher_Impl_T.cpp * Kokyu/DSRT_Direct_Dispatcher_Impl_T.cpp * Kokyu/tests/DSRT_MIF/MIF.cpp * netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp * netsvcs/lib/Name_Handler.cpp * NEWS * performance-tests/SCTP/Options_Manager.cpp * performance-tests/Server_Concurrency/Leader_Follower/RT_CORBA_Leader_Follower.cpp * performance-tests/Server_Concurrency/Queue_Based_Workers/RT_CORBA_Workers.cpp * performance-tests/Synch-Benchmarks/Perf_Test/Performance_Test_Options.cpp * performance-tests/TCP/tcp_test.cpp * performance-tests/TTCP/ACE-C++/wrapper-new-ttcp.cpp * performance-tests/UDP/udp_test.cpp * protocols/tests/HTBP/Reactor_Tests/server.cpp * protocols/tests/HTBP/Send_Large_Msg/server.cpp * protocols/tests/HTBP/Send_Recv_Tests/client.cpp * protocols/tests/HTBP/Send_Recv_Tests/server.cpp * tests/Cache_Map_Manager_Test.cpp * tests/CDR_Array_Test.cpp * tests/CDR_Test.cpp * tests/DLList_Test.cpp * tests/Get_Opt_Test.cpp * tests/Hash_Map_Manager_Test.cpp * tests/Hash_Multi_Map_Manager_Test.cpp * tests/IOStream_Test.cpp * tests/Logging_Strategy_Test.cpp * tests/Max_Default_Port_Test.cpp * tests/Max_Default_Port_Test_IPV6.cpp * tests/Message_Queue_Notifications_Test.cpp * tests/MT_Reference_Counted_Event_Handler_Test.cpp * tests/Multicast_Test.cpp * tests/Multicast_Test_IPV6.cpp * tests/Naming_Test.cpp * tests/Network_Adapters_Test.cpp * tests/Pipe_Test.cpp * tests/QtReactor_Test.cpp * tests/Reactor_Notification_Queue_Test.cpp * tests/Reactor_Remove_Resume_Test.cpp * tests/Reactor_Remove_Resume_Test_Dev_Poll.cpp * tests/Reactors_Test.cpp * tests/Signal_Test.cpp * tests/SOCK_Netlink_Test.cpp * tests/SOCK_SEQPACK_SCTP_Test.cpp * tests/SString_Test.cpp * tests/Thread_Pool_Reactor_Resume_Test.cpp * tests/Upgradable_RW_Test.cpp Zapped empty spaces at the end of a line Fri Feb 20 13:50:33 UTC 2009 Johnny Willemsen * ace/config-win32-mingw.h: Support MinGW 3.15 * include/makeinclude/platform_gnuwin32_common.GNU: Improvement for cross compilation Thanks to Jani Hakala for delivering some patches * ace/config-vxworks6.7.h: Improved support Fri Feb 20 09:54:33 UTC 2009 Marcel Smit * ace/config-win32-common.h: * tests/Process_Manager_Test.cpp: Added define ACE_HAS_WIN32_PRIORITY_CLASS. On win32 platforms where process priority classes exists, one can use this define. Fri Feb 20 09:28:33 UTC 2009 Johnny Willemsen * ace/Log_Msg_IPC.h: Added include of Default_Constants.h Fri Feb 20 07:29:18 UTC 2009 Olli Savia * tests/Based_Pointer_Test_Lib.cpp: Reverted the last changes made by Johnny (ace/svc_export.h is back again). * tests/Based_Pointer_Test_Lib_Export.h: Removed from repository (ace/svc_export.h is back again). Fri Feb 20 07:29:18 UTC 2009 Olli Savia * ace/config-openbsd.h: Added ACE_LACKS_LOG2 and ACE_LACKS_ISCTYPE. Thu Feb 19 20:27:33 UTC 2009 Olli Savia * ace/config-freebsd.h: Removed ACE_HAS_SIG_MACROS. Thu Feb 19 17:38:33 UTC 2009 Marcel Smit * tests/Process_Manager_Test.cpp: Expanded test with process priority on Windows platforms. Thu Feb 19 14:01:33 UTC 2009 Johnny Willemsen * ace/Default_Constants.h: * ace/Log_Msg_IPC.cpp: * ace/Log_Msg_IPC.h: * netsvcs/lib/Client_Logging_Handler.cpp: * netsvcs/lib/Client_Logging_Handler.h: Added new ACE_HAS_STREAM_LOG_MSG_IPC which controls whether the ACE Log_Msg IPC should use streams or not. When ACE_HAS_STREAM_PIPES is defined we default to 1, else to 0. We do see that using stream pipes causes problems on at least Solaris, so the user can decide to set this value explicitly to 0 * ace/CDR_Stream.cpp: * ace/CDR_Stream.h: * ace/Message_Block.inl: Doxygen and layout changes * ace/Message_Block.cpp: Use %@ for pointers Wed Feb 18 20:51:33 UTC 2009 Johnny Willemsen * bin/MakeProjectCreator/config/minizip.mpb: Added new base project for minizip Wed Feb 18 19:36:33 UTC 2009 Johnny Willemsen * ace/config-win32-msvc-7.h: Layout change * ace/config-win32-msvc-8.h: Disable warning 4250, and 4355, we do this for the other msvc versions but not for vc8 Wed Feb 18 19:06:33 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp: * netsvcs/lib/Client_Logging_Handler.h: Just use ACE_HAS_STREAM_PIPES, there are too much other dependencies on this define Wed Feb 18 15:34:33 UTC 2009 Marcel Smit * tests/tests.mpc: Reverted the last changes made by Johnny (ace/svc_export.h is back again). Wed Feb 18 12:58:33 UTC 2009 Olli Savia * ace/config-freebsd.h: Added ACE_LACKS_ISCTYPE. Wed Feb 18 10:25:49 UTC 2009 Olli Savia * ace/config-g++-common.h: Define ACE_LACKS_NUMERIC_LIMITS and ACE_LACKS_ISCTYPE if compiling with GCC 2.x. * ace/config-lynxos.h: * ace/config-vxworks5.x.h: Do not define ACE_LACKS_NUMERIC_LIMITS. It is now handled by config-g++-common.h. Wed Feb 18 09:22:29 UTC 2009 Marcel Smit * tests/DLL_Test.h: Revert changes made by Johnny (just use ace/svc_export.h again). * tests/DLL_Test_Export.h: Removed since ace/svc_export.h is used again. Tue Feb 17 23:56:45 UTC 2009 William R. Otte * bin/MakeProjectCreator/config/global.features: Disabled xerces by default as well. Tue Feb 17 20:19:06 UTC 2009 Olli Savia * ace/os_include/os_stddef.h: Removed unneeded definitions for NULL and offsetof. Tue Feb 17 18:08:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.h: * netsvcs/lib/Name_Handler.cpp: * netsvcs/lib/Name_Handler.h: * netsvcs/lib/Server_Logging_Handler.h: * netsvcs/lib/Server_Logging_Handler_T.cpp: * netsvcs/lib/Time_Request_Reply.cpp: * netsvcs/lib/Time_Request_Reply.h: * netsvcs/lib/Token_Handler.cpp: * netsvcs/lib/Token_Handler.h: * netsvcs/lib/TS_Clerk_Handler.cpp: * netsvcs/lib/TS_Clerk_Handler.h: * netsvcs/lib/TS_Server_Handler.cpp: * netsvcs/lib/TS_Server_Handler.h: Revert svc_export.h file, much more dependencies then I expected Tue Feb 17 17:46:28 UTC 2009 Johnny Willemsen * ace/ace.mpc: * ace/ace_for_tao.mpc: * ace/Makefile.am: Readded svc_export.h Tue Feb 17 17:45:28 UTC 2009 Johnny Willemsen * ace/svc_export.h: Readded this file, removing it breaks a lot of examples which all first have to be updated Tue Feb 17 14:27:50 UTC 2009 Olli Savia * ace/os_include/os_signal.h: Removed some legacy Linux code. Tue Feb 17 14:20:28 UTC 2009 Johnny Willemsen * tests/Based_Pointer_Test_Lib.cpp: * tests/Based_Pointer_Test_Lib_Export.h: * tests/DLL_Test.h: * tests/DLL_Test_Export.h: * tests/tests.mpc: Added specific export files for these tests Tue Feb 17 13:13:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp: Runtime fix Tue Feb 17 12:53:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp: logger_key_ is only required when using stream_pipes Tue Feb 17 11:52:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp: * netsvcs/lib/Client_Logging_Handler.h: Added new ACE_NETSVCS_CLIENT_LOGGING_HANDLER_USES_STREAM_PIPES which can be explicitly set to 0 to just use sockets Tue Feb 17 10:57:28 UTC 2009 Johnny Willemsen * ace/ace.mpc: * ace/ace_for_tao.mpc: * ace/Makefile.am: * ace/svc_export.h: * netsvcs/lib/svc_export.h: * netsvcs/lib/Makefile.am Moved svc_export to the netsvcs lib directory, it belongs there * ace/CDR_Stream.cpp: Layout change * ace/Lock_Adapter_T.h: * ace/Message_Block.cpp: * ace/Message_Block.h: * ace/Reverse_Lock_T.h: Doxygen change * netsvcs/lib/Client_Logging_Handler.cpp: Make sure we receive the expected length * netsvcs/lib/lib.mpc: Set the correct export define * netsvcs/lib/Client_Logging_Handler.h: * netsvcs/lib/Name_Handler.cpp: * netsvcs/lib/Name_Handler.h: * netsvcs/lib/Server_Logging_Handler.h: * netsvcs/lib/Server_Logging_Handler_T.cpp: * netsvcs/lib/Time_Request_Reply.cpp: * netsvcs/lib/Time_Request_Reply.h: * netsvcs/lib/Token_Handler.cpp: * netsvcs/lib/Token_Handler.h: * netsvcs/lib/TS_Clerk_Handler.cpp: * netsvcs/lib/TS_Clerk_Handler.h: * netsvcs/lib/TS_Server_Handler.cpp: * netsvcs/lib/TS_Server_Handler.h: Updated include of svc_export and no need to set the build define Mon Feb 16 18:58:28 UTC 2009 Johnny Willemsen * ace/CDR_Stream.h: * ace/FIFO_Recv_Msg.h: * ace/FIFO_Send_Msg.h: * ace/SPIPE_Stream.h: Doxygen changes Mon Feb 16 17:09:40 UTC 2009 William R. Otte * bin/MakeProjectCreator/config/global.features: Disabled ofccm by default. Mon Feb 16 13:30:28 UTC 2009 Johnny Willemsen * ace/Array_Base.h: * ace/Local_Tokens.h: * ace/SPIPE_Stream.h: * ace/Stream.h: * ace/Unbounded_Set_Ex.h: * ace/Vector_T.h Doyxgen change * ace/Hash_Map_Manager_T.cpp: Use prefix increment * ace/Hash_Map_Manager_T.h: * ace/Hash_Map_Manager_T.inl: Removed cur_size method, current_size does the same and is public * ace/Log_Msg.cpp: Layout change * netsvcs/lib/Client_Logging_Handler.cpp: If we don't receive the exact number of bytes with spipe stream see that as error Mon Feb 16 10:57:28 UTC 2009 Johnny Willemsen * ace/Log_Msg_IPC.cpp: Check all stream insertion return values Sat Feb 14 14:53:28 UTC 2009 Johnny Willemsen * ace/Log_Msg.cpp: Print null if we get a nill string for a %p format specifier instead of causing a crash. This fixes bugzilla 3571 * tests/Log_Msg_Test.cpp: Extended this test. Fri Feb 13 13:30:28 UTC 2009 Johnny Willemsen * ace/Dev_Poll_Reactor.cpp * ace/Log_Msg.cpp * ace/MEM_Acceptor.cpp * ace/MMAP_Memory_Pool.cpp * ace/POSIX_Asynch_IO.cpp * ace/POSIX_CB_Proactor.cpp * ace/POSIX_Proactor.cpp * ace/Registry_Name_Space.cpp * ace/Remote_Tokens.cpp * ace/Service_Config.cpp * ace/Service_Gestalt.cpp * ace/Shared_Memory_Pool.cpp * ace/SOCK_Dgram_Bcast.cpp * ace/SUN_Proactor.cpp * ace/TLI.cpp Use ACE_TEXT() with %p in ACE_DEBUG/ACE_ERROR. The log string passed to ACE_DEBUG/ACE_ERROR is converted automatically to unicode in an unicode build. The %p expects an unicode string, if a plain ascii string is passed in, this is just handled as unicode string and could lead to a crash because then we are just reading random memory Fri Feb 13 12:18:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp: * netsvcs/lib/Server_Logging_Handler_T.cpp: Log a message when insert/extract fails Fri Feb 13 11:12:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Client_Logging_Handler.cpp: * netsvcs/lib/Server_Logging_Handler_T.cpp: When demarshaling fails return 0 instead of -1. That keeps the event handler registered with the reactor for the next log message. Thu Feb 12 07:33:28 UTC 2009 Johnny Willemsen * ace/config-win32-common.h: * ace/os_include/sys/os_types.h: Added ACE_LACKS_MODE_T, ACE_LACKS_CADDR_T, ACE_LACKS_NLINK_T, ACE_LACKS_UID_T, and ACE_LACKS_GID_T as new defines. This makes it possible for an enduser to disable the typedefs by undefining these defines. Thanks to Bill Rizzi for pointing this out Wed Feb 11 22:26:26 2009 Steve Huston * ace/LSOCK_CODgram.h: Improved the comments and usage scenario. Wed Feb 11 16:20:19 UTC 2009 William R. Otte * include/makeinclude/wrapper_macros.GNU: Removed xerces from this file, as its no longer a feature. Thanks to Adam Mitz for pointing this out. Wed Feb 11 06:59:28 UTC 2009 Johnny Willemsen * ace/config-win32-msvc.h: Disable msc_ver check in this file Wed Feb 11 06:52:28 UTC 2009 Johnny Willemsen * include/makeinclude/platform_linux.GNU: Fixed Red Hat detection Tue Feb 10 20:38:27 UTC 2009 William R. Otte * bin/MakeProjectCreator/config/global.features: Made xerces2 and xerces3 disabled by default. Tue Feb 10 20:16:28 UTC 2009 Johnny Willemsen * ace/OS_NS_ctype.inl: * ace/Process_Manager.cpp: * ace/WFMO_Reactor.cpp: Updated old msvc ver checks to fix fuzz errors Tue Feb 10 18:27:28 UTC 2009 Johnny Willemsen * netsvcs/lib/Server_Logging_Handler_T.h: Doxygen change Tue Feb 10 18:26:28 UTC 2009 Johnny Willemsen * include/makeinclude/platform_linux.GNU: Changed how we detect broken GCC versions, not check on the platform but check on the gcc version (RedHat 4.1.1 or 4.1.2) Tue Feb 10 18:25:28 UTC 2009 Johnny Willemsen * rpmbuild/ace-tao-ciao.spec: Updated for the next release Tue Feb 10 18:23:28 UTC 2009 Johnny Willemsen * docs/bczar/bczar.html: Extended bczar release instructions * bin/fuzz.pl: Extended msvc_ver check * debianbuild/control: Updated for the next release Tue Feb 10 18:20:28 UTC 2009 Johnny Willemsen * ace/config-pharlap.h: Define ACE_HAS_WINSOCK1 to 1 * ace/config-vxworks.h: Added support for VxWorks 6.7 * ace/config-win32-borland.h: Removed support for C++Builder 2007 * ace/os_include/sys/os_types.h: * ace/OS_NS_arpa_inet.cpp: * ace/OS_NS_unistd.inl: Fixes for VxWorks 6.7 Tue Feb 10 05:39:28 UTC 2009 Phil Mesnier * NEWS: revision bump. Tue Feb 10 05:08:24 UTC 2009 Phil Mesnier * docs/Download.html: * etc/index.html: * bin/diff-builds-and-group-fixed-tests-only.sh Update latest micro version links and date. * ChangeLogs/ChangeLog-09a: Added this file. Mon Feb 09 12:01:28 CST 2009 Phil Mesnier * ACE version 5.6.8 released. Local Variables: mode: change-log add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time)) indent-tabs-mode: nil End: