summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-01 03:04:00 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-01 03:04:00 +0000
commitbdee76088c9fa55db062ffcd05b298e96c64e5ef (patch)
tree29c33eec7645f818836aec1b8029ef0ab5ff6dc0
parentfb13d82316e9aaff378245a68e7bfb529b2c3ffb (diff)
downloadATCD-bdee76088c9fa55db062ffcd05b298e96c64e5ef.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98b24
-rw-r--r--tests/test_config.h9
2 files changed, 25 insertions, 8 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index 16677ead6d3..0077b07dcaf 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,12 +1,12 @@
Mon Aug 31 16:38:03 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
- * ace/config-kcc-common.h: Added ACE_HAS_CPLUSPLUS_HEADERS to
- prevent warnings/errors. Thanks to Ben Eng <ben@jetpen.com> and
- Todd Pack <todd@rwii.com> for reporting this.
+ * ace/config-kcc-common.h: Added ACE_HAS_CPLUSPLUS_HEADERS to
+ prevent warnings/errors. Thanks to Ben Eng <ben@jetpen.com> and
+ Todd Pack <todd@rwii.com> for reporting this.
- * Added a bunch of patches so that ACE compiles and passes its
- tests on Chorus with gcc. Thanks to Alberto Villarica"
- <Alberto.Villarica.rav@nt.com> for reporting this.
+ * Added a bunch of patches so that ACE compiles and passes its
+ tests on Chorus with gcc. Thanks to Alberto Villarica"
+ <Alberto.Villarica.rav@nt.com> for reporting this.
Mon Aug 31 14:02:34 1998 Darrell Brunsch <brunsch@cs.wustl.edu>
@@ -37,6 +37,18 @@ Mon Aug 31 12:25:15 1998 David L. Levine <levine@cs.wustl.edu>
with EINTR instead of ETIME if it times out. That's
the way it's documented, as well as the way it behaves on LynxOS.
+ * tests/TSS_Test.cpp (cleanup): with DRAFT4 threads,
+ don't do anything in the cleanup function.
+ The intended use of this function doesn't apply.
+ With Draft 4 threads, this function is called implicitly
+ by pthread_setspecific whenever an old value is replaced.
+ This function is intended to be used with Draft 6 and later
+ threads, where it is called on thread termination with the
+ thread-specific value.
+
+ * tests/test_config.cpp: set ACE_MAX_PROCESSES to 4 on LynxOS,
+ so that Process_Mutex_Test will succeed.
+
Sun Aug 30 23:05:34 1998 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Select_Reactor_T.cpp: Should include ace/Thread.h also.
diff --git a/tests/test_config.h b/tests/test_config.h
index 75049f5be24..332815a749c 100644
--- a/tests/test_config.h
+++ b/tests/test_config.h
@@ -130,11 +130,16 @@ const size_t ACE_MAX_CLIENTS = 30;
const size_t ACE_NS_MAX_ENTRIES = 1000;
const size_t ACE_DEFAULT_USECS = 1000;
const size_t ACE_MAX_TIMERS = 4;
-const size_t ACE_MAX_THREADS = 4;
const size_t ACE_MAX_DELAY = 10;
const size_t ACE_MAX_INTERVAL = 0;
const size_t ACE_MAX_ITERATIONS = 10;
-const size_t ACE_MAX_PROCESSES = 10;
+#if defined (__Lynx__)
+ const size_t ACE_MAX_PROCESSES = 4;
+ const size_t ACE_MAX_THREADS = 2;
+#else /* ! __Lynx__ */
+ const size_t ACE_MAX_PROCESSES = 10;
+ const size_t ACE_MAX_THREADS = 4;
+#endif /* ! __Lynx__ */
char ACE_ALPHABET[] = "abcdefghijklmnopqrstuvwxyz";