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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [itron/] [src/] [can_wup.c] - Blame information for rev 738

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

Line No. Rev Author Line
1 30 unneback
/*
2
 *  COPYRIGHT (c) 1989-1999.
3
 *  On-Line Applications Research Corporation (OAR).
4
 *
5
 *  The license and distribution terms for this file may be
6
 *  found in the file LICENSE in this distribution or at
7
 *  http://www.OARcorp.com/rtems/license.html.
8
 *
9
 *  $Id: can_wup.c,v 1.2 2001-09-27 11:59:13 chris Exp $
10
 */
11
 
12
#include <itron.h>
13
 
14
#include <rtems/score/thread.h>
15
#include <rtems/score/userext.h>
16
#include <rtems/score/wkspace.h>
17
#include <rtems/score/apiext.h>
18
#include <rtems/score/sysstate.h>
19
 
20
#include <rtems/itron/task.h>
21
 
22
/*
23
 *  can_wup - Cancel Wakeup Request
24
 */
25
 
26
ER can_wup(
27
  INT *p_wupcnt,
28
  ID   tskid
29
)
30
{
31
  register Thread_Control *the_thread;
32
  Objects_Locations        location;
33
 
34
  the_thread = _ITRON_Task_Get( tskid, &location );
35
  switch ( location ) {
36
    case OBJECTS_REMOTE:
37
    case OBJECTS_ERROR:
38
      return _ITRON_Task_Clarify_get_id_error( tskid );
39
 
40
    case OBJECTS_LOCAL:
41
      /*
42
       * XXX - FILL ME IN.
43
       */
44
      break;
45
  }
46
 
47
  _ITRON_return_errorno( E_OK );
48
}
49
 

powered by: WebSVN 2.1.0

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