summaryrefslogtreecommitdiffstats
path: root/c/src/tests/tmtests/tm15/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/tmtests/tm15/task1.c')
-rw-r--r--c/src/tests/tmtests/tm15/task1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/tests/tmtests/tm15/task1.c b/c/src/tests/tmtests/tm15/task1.c
index 86efae5cb2..837167db20 100644
--- a/c/src/tests/tmtests/tm15/task1.c
+++ b/c/src/tests/tmtests/tm15/task1.c
@@ -54,7 +54,7 @@ void test_init()
status = rtems_task_create(
rtems_build_name( 'L', 'O', 'W', ' ' ),
10,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_NO_PREEMPT,
RTEMS_DEFAULT_ATTRIBUTES,
&id
@@ -68,7 +68,7 @@ void test_init()
status = rtems_task_create(
rtems_build_name( 'H', 'I', 'G', 'H' ),
5,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ index ]