summaryrefslogtreecommitdiffstats
path: root/c/src/tests/mptests/mp03/delay.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/mptests/mp03/delay.c')
-rw-r--r--c/src/tests/mptests/mp03/delay.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/c/src/tests/mptests/mp03/delay.c b/c/src/tests/mptests/mp03/delay.c
deleted file mode 100644
index 9a86ddb923..0000000000
--- a/c/src/tests/mptests/mp03/delay.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Delayed_send_event
- *
- * This routine is a timer service routine which sends an event to task 1.
- *
- * Input parameters: NONE
- *
- * Output parameters: NONE
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include "system.h"
-
-rtems_timer_service_routine Delayed_send_event(
- rtems_id ignored_id,
- void *ignored_address
-)
-{
- rtems_status_code status;
-
- status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_16 );
- directive_failed_with_level( status, "rtems_event_send", 1 );
-}