summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog173
1 files changed, 158 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index eb8191b3fc9..93dd270a8bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,161 @@
+Fri Oct 27 09:25:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Configuration_Import_Export.cpp:
+ Explicitly initialise pointer to 0 to silence warning in
+ gcc cygwi build
+
+Fri Oct 27 01:58:09 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ From Russell Mora <russell_mora at symantec dot com>
+ * ace/ACE.cpp:
+ * ace/ACE.h:
+ * ace/FILE.cpp:
+ * ace/File_Lock.h:
+ * ace/File_Lock.inl:
+ * ace/Filecache.cpp:
+ * ace/Filecache.h:
+ * ace/Local_Memory_Pool.cpp:
+ * ace/MEM_Acceptor.h:
+ * ace/MEM_Acceptor.inl:
+ * ace/MEM_IO.cpp:
+ * ace/MEM_IO.inl:
+ * ace/MEM_IO.h:
+ * ace/MMAP_Memory_Pool.cpp:
+ * ace/MMAP_Memory_Pool.h:
+ * ace/Mem_Map.cpp:
+ * ace/Mem_Map.h:
+ * ace/Mem_Map.inl:
+ * ace/OS_NS_macros.h:
+ * ace/OS_NS_stdio.cpp:
+ * ace/OS_NS_stdio.inl:
+ * ace/OS_NS_stdio.h:
+ * ace/OS_NS_sys_mman.h:
+ * ace/OS_NS_sys_mman.inl:
+ * ace/OS_NS_sys_stat.h:
+ * ace/OS_NS_sys_stat.inl:
+ * ace/OS_NS_unistd.cpp:
+ * ace/OS_NS_unistd.inl:
+ * ace/OS_NS_unistd.h:
+ * ace/Pagefile_Memory_Pool.inl:
+ * ace/Shared_Memory_MM.cpp:
+ * ace/Shared_Memory_MM.h:
+ * ace/Shared_Memory_MM.inl:
+ * ace/Shared_Memory_Pool.cpp:
+ * ace/Shared_Memory_Pool.h:
+ * ace/os_include/sys/os_types.h:
+ * ace/os_include/sys/os_stat.h:
+ * ace/os_include/os_unistd.h:
+ * examples/Web_Crawler/Iterators.cpp:
+ * examples/Web_Crawler/Mem_Map_Stream.cpp:
+ * examples/Web_Crawler/Mem_Map_Stream.h:
+ * examples/IPC_SAP/FILE_SAP/client.cpp:
+
+ Added support for 64-bit file offsets on 32-bit platforms that
+ support the _FILE_OFFSET_BITS preprocessor symbol, as well as
+ Windows. Enable by defining the _FILE_OFFSET_BITS=64
+ preprocessor symbol. ACE provides the necessary support on
+ Windows when it is defined with the assistance of a new
+ ACE_OFF_T typedef.
+
+Thu Oct 26 24:44:55 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ * ace/Truncate.h (Truncator):
+
+ Removed ACE_Export macros in the Borland case. They shouldn't
+ be necessary.
+
+Thu Oct 26 14:05:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * bin/tao_other_tests.lst:
+ Added orbsvcs/tests/Event/UDP test which tests the rtec
+ udp federation
+
+Thu Oct 26 11:19:45 UTC 2006 Olli Savia <ops@iki.fi>
+
+ * ace/config-lynxos.h:
+ Added include "ace/config-posix.h" and removed defines
+ that are already defined by config-posix.h.
+
+Thu Oct 26 10:29:49 UTC 2006 Olli Savia <ops@iki.fi>
+
+ * ace/config-posix.h:
+ Removed duplicate check of _POSIX_MESSAGE_PASSING.
+
+Thu Oct 26 07:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Truncate.h:
+
+ Added partial specialization for when types are the same, fixes
+ compile problems in the ACE lib with Borland
+
+Thu Oct 26 07:01:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/config-vxworks5.x.h:
+ Added ACE_LACKS_INTPTR_T, VxWorks 5.5.x seems not to deliver this
+ type
+
+Thu Oct 26 00:31:56 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ * ace/Auto_Ptr.h:
+
+ Added missing "element_type" typedef.
+
+ (ACE_auto_ptr_reset):
+
+ Introduced this new function template to simplify the
+ ACE_AUTO_PTR_RESET macro implementation, to support
+ ACE's other auto_ptr-like class templates
+ (e.g. ACE_Auto_Array_Ptr<>), and to make auto_ptr
+ reset() operations convenient and easy for those needing the
+ ACE_AUTO_PTR_RESET functionality to. Users now need only
+ perform a call like:
+
+ ACE_auto_ptr_reset (my_auto_ptr_instance, new foo);
+
+ Note that ACE_AUTO_PTR_RESET support for ACE's other
+ auto_ptr-like classes isn't strictly necessary since they all
+ support the reset() method.
+
+ Addresses build failures on platforms that define
+ ACE_LACKS_AUTO_PTR_RESET and in code that expects to use
+ ACE_AUTO_PTR_RESET on ACE_Auto_{Basic_}_Array<> instances.
+
+Wed Oct 25 22:42:03 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ * tests/Integer_Truncate_Test.cpp:
+
+ Remove "const" qualifiers from types used in
+ ACE_Utils::Truncate<>() function template parameters that are
+ deduced using argument dependent lookup. Borland appears to get
+ confused, and can't find the non-const template parameter
+ Truncate<>() specializations.
+
+Wed Oct 25 20:17:13 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ * ace/Hash_Map_Manager_T.inl (ACE_Hash_Map_Iterator_Base_Ex):
+
+ Removed commented ACE_TRACE macro entirely. Fuzz parses
+ commented out code, and still incorrectly reports an ACE_TRACE
+ mismatch.
+
+ * ace/Truncate.h:
+
+ Yet another attempt at placating Borland C++. Removed the
+ partial specialization for truncating values of the same type.
+ Typedefed the underlying Truncator structure template to further
+ simplify the function call.
+
+Wed Oct 25 18:31:47 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ * examples/C++NPv1/Reactive_Logging_Server.h:
+ * examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp:
+
+ Include "ace/Basic_Types.h" to pull in intptr_t typedef.
+
+Wed Oct 25 15:05:42 UTC 2006 Steve Huston <shuston@riverace.com>
+
+ * ace/OS_NS_stdlib.inl (atop): s/intptr/intptr_t/ in ACE_WIN64 case.
+
Wed Oct 25 09:47:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SOCK_Dgram.cpp:
@@ -742,23 +900,8 @@ Thu Oct 19 11:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Thu Oct 19 08:27:12 UTC 2006 Martin Corino <mcorino@remedy.nl>
-<<<<<<< .working
-<<<<<<< .working
-<<<<<<< .working
- * include/makeinclude/platform_openvms.GNU:
- Small change to create hardlinks for produced executables.
-=======
- * include/makeinclude/platform_openvms.GNU:
- Small change to create hardlinks for produced executables.
->>>>>>> .merge-right.r75022
-=======
- * include/makeinclude/platform_openvms.GNU:
- Small change to create hardlinks for produced executables.
->>>>>>> .merge-right.r74993
-=======
* include/makeinclude/platform_openvms.GNU:
Small change to create hardlinks for produced executables.
->>>>>>> .merge-right.r74951
Wed Oct 18 16:19:38 UTC 2006 Shanshan Jiang <shanshan.jiang@vanderbilt.edu>