source: rtems/testsuites/sptests/spwatchdog/delay.c @ d5ae827

4.104.115
Last change on this file since d5ae827 was 22fa9d61, checked in by Jennifer Averett <Jennifer.Averett@…>, on 01/16/09 at 18:57:53

2009-01-16 Jennifer Averett <jennifer.averett@…>

  • Makefile.am, configure.ac: Add new test to test Watchdog display helper routines. These reach into the SuperCore?.
  • spwatchdog/.cvsignore, spwatchdog/Makefile.am, spwatchdog/delay.c, spwatchdog/init.c, spwatchdog/prtime.c, spwatchdog/spwatchdog.scn, spwatchdog/system.h, spwatchdog/task1.c: New files.
  • Property mode set to 100644
File size: 737 bytes
Line 
1/*  Delayed_resume
2 *
3 *  This routine is scheduled to be fired as a timer service routine.
4 *  When fired this subprogram resumes Task_1.
5 *
6 *  Input parameters:  NONE
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22rtems_timer_service_routine Delayed_resume(
23  rtems_id  ignored_id,
24  void     *ignored_address
25)
26{
27  rtems_status_code status;
28
29  status = rtems_task_resume( Task_id[ 1 ] );
30  directive_failed_with_level( status, "rtems_task_resume of self", 1 );
31}
Note: See TracBrowser for help on using the repository browser.