OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [sptests/] [sp24/] [resume.c] - Blame information for rev 30

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  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-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.OARcorp.com/rtems/license.html.
16
 *
17
 *  $Id: resume.c,v 1.2 2001-09-27 12:02:36 chris Exp $
18
 */
19
 
20
#include "system.h"
21
 
22
rtems_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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.