summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp07/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp07/init.c')
-rw-r--r--testsuites/sptests/sp07/init.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuites/sptests/sp07/init.c b/testsuites/sptests/sp07/init.c
index f26efaa9ec..0d34a58699 100644
--- a/testsuites/sptests/sp07/init.c
+++ b/testsuites/sptests/sp07/init.c
@@ -11,7 +11,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -132,9 +132,10 @@ rtems_task Init(
);
directive_failed( status, "rtems_task_create of TA2" );
+#define TA3_PRIORITY (RTEMS_MAXIMUM_PRIORITY - 4)
status = rtems_task_create(
Task_name[ 3 ],
- 250,
+ TA3_PRIORITY,
RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
@@ -142,9 +143,10 @@ rtems_task Init(
);
directive_failed( status, "rtems_task_create of TA3" );
+#define TA4_PRIORITY (RTEMS_MAXIMUM_PRIORITY - 1)
status = rtems_task_create(
Task_name[ 4 ],
- 254,
+ TA4_PRIORITY,
RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,