summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-99b13
-rw-r--r--tests/Recursive_Mutex_Test.cpp2
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 7c123ffb078..63a2a465d57 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,9 +1,14 @@
+Wed Jul 07 22:44:22 1999 David L. Levine <levine@cs.wustl.edu>
+
+ * tests/Recursive_Mutex_Test.cpp (main): added comment
+ explaining why the stack size is now set.
+
Wed Jul 7 22:01:13 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
- * ace/config-win32-borland.h: Only enable
- ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION if we're running on
- older versions of Borland. Thanks to Christopher Kohlhoff
- <chris@kohlhoff.com> for reporting this.
+ * ace/config-win32-borland.h: Only enable
+ ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION if we're running on
+ older versions of Borland. Thanks to Christopher Kohlhoff
+ <chris@kohlhoff.com> for reporting this.
Wed Jul 07 21:37:33 1999 David L. Levine <levine@cs.wustl.edu>
diff --git a/tests/Recursive_Mutex_Test.cpp b/tests/Recursive_Mutex_Test.cpp
index 999525d2b3e..0c2f685422c 100644
--- a/tests/Recursive_Mutex_Test.cpp
+++ b/tests/Recursive_Mutex_Test.cpp
@@ -87,6 +87,8 @@ main (int, ASYS_TCHAR *[])
#if defined (ACE_HAS_THREADS)
ACE_Recursive_Thread_Mutex rm;
+ // Some platforms, such as LynxOS/PPC, have a default stack size
+ // that's too small. Use a bigger stack . . .
size_t stack_sizes [ACE_MAX_THREADS];
for (unsigned int i = 0; i < ACE_MAX_THREADS; ++i)
stack_sizes[i] = 100000;