summaryrefslogtreecommitdiff
path: root/testsuites/sptests/sp06
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-09-19 14:53:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-09-19 14:53:29 +0000
commit3652ad356bf13abe0963c992cbbda96476d31609 (patch)
tree8ae01f1eec49c8fabc0a3db3d5b58b29a61428f2 /testsuites/sptests/sp06
parentb3ac6a8dfe10aeaf3a9c59fd145bddfff119480e (diff)
Minor bug fixes to get all targets compilable and running. The
single biggest changes were the expansion of the workspace size macro to include other types of objects and the increase in the minimum stack size for most CPUs.
Diffstat (limited to 'testsuites/sptests/sp06')
-rw-r--r--testsuites/sptests/sp06/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/sptests/sp06/init.c b/testsuites/sptests/sp06/init.c
index 70d5284651..6d8af5f01d 100644
--- a/testsuites/sptests/sp06/init.c
+++ b/testsuites/sptests/sp06/init.c
@@ -44,7 +44,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
@@ -54,7 +54,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 2 ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 2 ]
@@ -64,7 +64,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 3 ],
10,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 3 ]