source: rtems/c/src/tests/sptests/sp22/delay.c @ 60b791ad

4.104.114.84.95
Last change on this file since 60b791ad was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 777 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-1998.
11 *  On-Line Applications Research Corporation (OAR).
12 *  Copyright assigned to U.S. Government, 1994.
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.OARcorp.com/rtems/license.html.
17 *
18 *  $Id$
19 */
20
21#include "system.h"
22
23rtems_timer_service_routine Delayed_resume(
24  rtems_id  ignored_id,
25  void     *ignored_address
26)
27{
28  rtems_status_code status;
29
30  status = rtems_task_resume( Task_id[ 1 ] );
31  directive_failed( status, "rtems_task_resume of self" );
32}
Note: See TracBrowser for help on using the repository browser.