summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm19
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/tmtests/tm19')
-rw-r--r--testsuites/tmtests/tm19/task1.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/testsuites/tmtests/tm19/task1.c b/testsuites/tmtests/tm19/task1.c
index 152327c7d1..0006020ee2 100644
--- a/testsuites/tmtests/tm19/task1.c
+++ b/testsuites/tmtests/tm19/task1.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -44,7 +44,7 @@ rtems_task Init(
status = rtems_task_create(
rtems_build_name( 'T', 'I', 'M', 'E' ),
- (RTEMS_MAXIMUM_PRIORITY / 2) + 1,
+ (RTEMS_MAXIMUM_PRIORITY / 2u) + 1u,
RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
@@ -70,7 +70,7 @@ rtems_task Init(
status = rtems_task_create(
rtems_build_name( 'T', 'I', 'M', 'E' ),
- (RTEMS_MAXIMUM_PRIORITY / 2) - 1,
+ (RTEMS_MAXIMUM_PRIORITY / 2u) - 1u,
RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
@@ -166,6 +166,11 @@ rtems_task Task_1(
(void) rtems_signal_send( RTEMS_SELF, RTEMS_SIGNAL_1 );
}
+/* avoid warnings for no prototype */
+rtems_asr Process_asr_for_task_2(
+ rtems_signal_set signals
+);
+
rtems_asr Process_asr_for_task_2(
rtems_signal_set signals
)