source: rtems/testsuites/sptests/sp30/resume.c @ de569fe

4.104.114.84.95
Last change on this file since de569fe was de569fe, checked in by Joel Sherrill <joel.sherrill@…>, on 01/16/02 at 22:13:29

2001-01-16 Joel Sherrill <joel@…>

  • Added tests for task-based timers. This included the new tests sp30 and sp31.
  • Makefile.am, configure.ac: Modified to reflect new tests and files.
  • sp09/screen14.c, sp09/sp09.scn: Modified to add error checks for task-based timer services.
  • sp30/.cvsignore, sp30/Makefile.am, sp30/init.c, sp30/resume.c, sp30/sp30.doc, sp30/sp30.scn, sp30/system.h, sp30/task1.c, sp31/.cvsignore, sp31/Makefile.am, sp31/delay.c, sp31/init.c, sp31/prtime.c, sp31/sp31.doc, sp31/sp31.scn, sp31/system.h, sp31/task1.c: New files.
  • Property mode set to 100644
File size: 837 bytes
Line 
1/*  Resume_task
2 *
3 *  This subprogram is scheduled as a timer service routine.  When
4 *  it fires it resumes the task which is mapped to this timer.
5 *
6 *  Input parameters:  NONE
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989-2002.
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.OARcorp.com/rtems/license.html.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22rtems_timer_service_routine Resume_task(
23  rtems_id  timer_id,
24  void     *ignored_address
25)
26{
27  rtems_id          task_to_resume;
28  rtems_status_code status;
29
30  task_to_resume = Task_id[ rtems_get_index( timer_id ) ];
31  status = rtems_task_resume( task_to_resume );
32  directive_failed_with_level( status, "rtems_task_resume", 1 );
33}
Note: See TracBrowser for help on using the repository browser.