summaryrefslogtreecommitdiffstats
path: root/c/src/tests/samples/unlimited/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:19:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:19:43 +0000
commitf59df6b2baed58229781d8fcda2d5bd3ab753341 (patch)
tree95e9156dcb758293e0a447d94335749c17cbb9b2 /c/src/tests/samples/unlimited/system.h
parentCorrected wildcard to pickup CPU model dependent library pieces. (diff)
downloadrtems-f59df6b2baed58229781d8fcda2d5bd3ab753341.tar.bz2
Modified to use minimum stack size and reserve the necessary amount
of space in the workspace.
Diffstat (limited to 'c/src/tests/samples/unlimited/system.h')
-rw-r--r--c/src/tests/samples/unlimited/system.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/c/src/tests/samples/unlimited/system.h b/c/src/tests/samples/unlimited/system.h
index 51a2bcee88..5be04f0b6d 100644
--- a/c/src/tests/samples/unlimited/system.h
+++ b/c/src/tests/samples/unlimited/system.h
@@ -16,9 +16,6 @@
#include <rtems.h>
-#define TASK_ALLOCATION_SIZE (5)
-#define CONFIGURE_MAXIMUM_TASKS rtems_resource_unlimited(TASK_ALLOCATION_SIZE)
-
#include <tmacros.h>
/* functions */
@@ -50,6 +47,11 @@ void test3();
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+#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)
+
+
#include <confdefs.h>
/* global variables */