summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-08 20:40:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-08 20:40:38 +0000
commit60de77671c9edec6ae5a5028b693950713d363e6 (patch)
tree936617347f3646904306ebe2716e0d47d83c4503
parent912189d8311df36abd22de0ce2bad8069fd91eb1 (diff)
2006-09-08 Ken Peters <ken.peters@jpl.nasa.gov>
PR 1162/rtems * unlimited/system.h: Reserve enough memory for the stacks wanted.
-rw-r--r--c/src/tests/samples/ChangeLog5
-rw-r--r--c/src/tests/samples/unlimited/system.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/c/src/tests/samples/ChangeLog b/c/src/tests/samples/ChangeLog
index c579b160e7..ddb181cb7e 100644
--- a/c/src/tests/samples/ChangeLog
+++ b/c/src/tests/samples/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-08 Ken Peters <ken.peters@jpl.nasa.gov>
+
+ PR 1162/rtems
+ * unlimited/system.h: Reserve enough memory for the stacks wanted.
+
2003-09-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* fileio/init.c: Unconditionally define MIN (We *do want* to see
diff --git a/c/src/tests/samples/unlimited/system.h b/c/src/tests/samples/unlimited/system.h
index 274a0a00e3..cd81a7902e 100644
--- a/c/src/tests/samples/unlimited/system.h
+++ b/c/src/tests/samples/unlimited/system.h
@@ -48,7 +48,7 @@ void test3();
#define TASK_ALLOCATION_SIZE (5)
#define CONFIGURE_MAXIMUM_TASKS rtems_resource_unlimited(TASK_ALLOCATION_SIZE)
-#define CONFIGURE_EXTRA_TASK_STACKS (62 * RTEMS_MINIMUM_STACK_SIZE)
+#define CONFIGURE_EXTRA_TASK_STACKS (75 * RTEMS_MINIMUM_STACK_SIZE)
#include <confdefs.h>