summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm02/task1.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/tmtests/tm02/task1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/tmtests/tm02/task1.c b/testsuites/tmtests/tm02/task1.c
index a657b37c78..47e6c28d0a 100644
--- a/testsuites/tmtests/tm02/task1.c
+++ b/testsuites/tmtests/tm02/task1.c
@@ -60,7 +60,7 @@ void test_init()
status = rtems_task_create(
rtems_build_name( 'H', 'I', 'G', 'H' ),
priority,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&High_id
@@ -76,7 +76,7 @@ void test_init()
status = rtems_task_create(
rtems_build_name( 'M', 'I', 'D', ' ' ),
priority,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Low_id
@@ -92,7 +92,7 @@ void test_init()
status = rtems_task_create(
rtems_build_name( 'L', 'O', 'W', ' ' ),
priority,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Low_id