summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-07 20:50:56 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-07 20:50:56 +0000
commit4d78c1d32f2423d5607878567b38d5a66945ec71 (patch)
treef41417b45532c6014cc7cca6c31eb4336bb0b9e4
parent49cb8109ee93273d93fdcf663caef2d356fd1f37 (diff)
downloadATCD-4d78c1d32f2423d5607878567b38d5a66945ec71.tar.gz
Caching related
-rw-r--r--ChangeLog-99b115
1 files changed, 38 insertions, 77 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index c0bd77ce840..6b83bf06ea5 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,53 +1,14 @@
-Wed Jul 07 15:31:18 1999 David L. Levine <levine@cs.wustl.edu>
+Wed Jul 7 15:46:20 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
- * tests/Recursive_Mutex_Test.cpp: on LynxOS/PPC only,
- just do 65 iterations instead of the default of 100.
- The test then passes on our LynxOS/PPC host.
-
-Wed Jul 7 14:03:31 1999 Steve Huston <shuston@riverace.com>
-
- * ace/Caching_Strategies_T.h:
- * ace/Cleanup_Strategies_T.h: Removed "ace/" from #pragma impl.
-
- * tests/Map_Manager_Test.cpp: Replaced typedef size_t TYPE with
- ACE_UINT32 to make it match ACE_Hash<> specialization.
-
-Wed Jul 7 13:27:53 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-
- * config-aix-4.x.h,
- config-lynxos.h,
- config-psos-diab-mips.h,
- config-psos-diab-ppc.h,
- config-psos-diab.h,
- config-psos-tm.h,
- config-psosim-g++.h,
- config-sunos5.5.h:
- Changed ACE_MALLOC_ALIGN to ACE_MALLOC_PADDING. It's not clear
- if these macros are still needed however.
-
- * ace/Malloc.h: Renamed the macro ACE_MALLOC_ALIGN to
- ACE_MALLOC_PADDING, which is more descriptive. However, I've
- retained ACE_MALLOC_ALIGN for backwards compatibility to keep
- Steve Huston happy ;-).
-
- * Fixed a typo in the TAO-mail.html program where ace-*
- should have been tao-*. Thanks to Pedro Alves Ferreira
- <pedro.ferreira@inescn.pt> for reporting this.
-
- * Fixed all vestiages of "BUG-REPORT-FORM" to say
- "PROBLEM-REPORT-FORM." Thanks to Neil B. Cohen <nbc@cisco.com>
- for reporting this.
-
-Wed Jul 07 12:27:32 1999 David L. Levine <levine@cs.wustl.edu>
-
- * ace/config-lynxos.h: added ACE_LACKS_FORK for PowerPC
- only. This cleans up most of the remaining test problems
- on LynxOS/PPC.
-
-Wed Jul 07 11:26:06 1999 Nanbor Wang <nanbor@cs.wustl.edu>
-
- * ace/Malloc_T.cpp: Added ASYS_TEXT macros.
+ * tests/Cached_Conn_Test.cpp (parse_args):
+ * tests/Cache_Map_Manager_Test (parse_args):
+ Runtime selection of different caching strategies
+ (lru/lfu/fifo/null) made possible.
+ * Caching_Strategies_T.{i,cpp}:
+ Removed typos and also definied the virtual destructor for
+ ACE_Caching_Strategy.
+
Wed Jul 7 09:05:32 1999 Steve Huston <shuston@riverace.com>
* ace/Caching_Strategies_T.i (ACE_Caching_Strategy_Adapter<>::purge_
@@ -55,46 +16,46 @@ Wed Jul 7 09:05:32 1999 Steve Huston <shuston@riverace.com>
Wed Jul 7 08:55:53 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
- * tests/Map_Manager_Test.cpp (test_cache_map_manager):
- Added <null_caching_strategy> to the construction of
- <cache_map_manager> and <hash_cache_map_manager> objects to make
- it in sync with the changes made below.
+ * tests/Map_Manager_Test.cpp (test_cache_map_manager):
+ Added <null_caching_strategy> to the construction of
+ <cache_map_manager> and <hash_cache_map_manager> objects to make
+ it in sync with the changes made below.
Tue Jul 6 17:54:52 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
- * ace/Caching_Strategies_T.{h,i,cpp}: Added Abstract Base class
- called ACE_Caching_Strategy and ACE_Caching_Strategy_Adaptor
- which facilitate changing of caching strategies at runtime using
- the External Polymorphism pattern.
-
- * ace/Cached_Connect_Strategy_T.{h, cpp}: Changed the signature of
- the constructor and also removed the <caching_strategy_> member.
-
- * ace/Cache_Map_Manager_T.{h, cpp}:
- * ace/Hash_Cache_Map_Manager_T.{h,cpp}:
- Changed the signature of the constructor.This was needed to be
- able to use the External Polymorphism pattern.
-
- * tests/Cache_Map_Manager_Test.cpp:
- * tests/Cached_Conn_Test.cpp:
- Made necessary changes to reflect the changes above.
- Thanks to Irfan of the DOC group for helping with this.
-
+ * ace/Caching_Strategies_T.{h,i,cpp}: Added Abstract Base class
+ called ACE_Caching_Strategy and ACE_Caching_Strategy_Adaptor
+ which facilitate changing of caching strategies at runtime using
+ the External Polymorphism pattern.
+
+ * ace/Cached_Connect_Strategy_T.{h, cpp}: Changed the signature of
+ the constructor and also removed the <caching_strategy_> member.
+
+ * ace/Cache_Map_Manager_T.{h, cpp}:
+ * ace/Hash_Cache_Map_Manager_T.{h,cpp}:
+ Changed the signature of the constructor.This was needed to be
+ able to use the External Polymorphism pattern.
+
+ * tests/Cache_Map_Manager_Test.cpp:
+ * tests/Cached_Conn_Test.cpp:
+ Made necessary changes to reflect the changes above.
+ Thanks to Irfan of the DOC group for helping with this.
+
Tue Jul 6 17:34:52 1999 Steve Huston <shuston@riverace.com>
* ace/config-aix-4.x.h: Enabled ACE_HAS_PTHREADS_UNIX98_EXT and
removed ACE_LACKS_RWLOCK_T for AIX 4.3. Moved some other
- ACE_LACKS settings to the pre-4.3 threads section to allow
- taking advantage of more capability on AIX 4.3.
+ ACE_LACKS settings to the pre-4.3 threads section to allow
+ taking advantage of more capability on AIX 4.3.
Tue Jul 06 16:29:32 1999 Nanbor Wang <nanbor@cs.wustl.edu>
- * ace/OS.h: Moved the string conversion macros before including
- OS.i because we also use them in the file. Thanks to Carlos for
- reporting this.
+ * ace/OS.h: Moved the string conversion macros before including
+ OS.i because we also use them in the file. Thanks to Carlos for
+ reporting this.
- * OS.{h,i,cpp}:
- * Parse_Node.cpp: Windows CE fixes.
+ * OS.{h,i,cpp}:
+ * Parse_Node.cpp: Windows CE fixes.
Tue Jul 06 15:56:19 1999 David L. Levine <levine@cs.wustl.edu>