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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [rtems/] [src/] [taskissuspended.c] - Blame information for rev 751

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

Line No. Rev Author Line
1 30 unneback
/*
2
 *  RTEMS Task Manager
3
 *
4
 *
5
 *  COPYRIGHT (c) 1989-1999.
6
 *  On-Line Applications Research Corporation (OAR).
7
 *
8
 *  The license and distribution terms for this file may be
9
 *  found in the file LICENSE in this distribution or at
10
 *  http://www.OARcorp.com/rtems/license.html.
11
 *
12
 *  $Id: taskissuspended.c,v 1.2 2001-09-27 11:59:19 chris Exp $
13
 */
14
 
15
#include <rtems/system.h>
16
#include <rtems/rtems/status.h>
17
#include <rtems/rtems/support.h>
18
#include <rtems/rtems/modes.h>
19
#include <rtems/score/object.h>
20
#include <rtems/score/stack.h>
21
#include <rtems/score/states.h>
22
#include <rtems/rtems/tasks.h>
23
#include <rtems/score/thread.h>
24
#include <rtems/score/threadq.h>
25
#include <rtems/score/tod.h>
26
#include <rtems/score/userext.h>
27
#include <rtems/score/wkspace.h>
28
#include <rtems/score/apiext.h>
29
#include <rtems/score/sysstate.h>
30
 
31
/*PAGE
32
 *
33
 *  rtems_task_is_suspended
34
 *
35
 *  This directive returns a status indicating whether or not
36
 *  the specified task is suspended.
37
 *
38
 *  Input parameters:
39
 *    id - thread id
40
 *
41
 *  Output parameters:
42
 *    RTEMS_SUCCESSFUL        - if successful and not suspended
43
 *    RTEMS_ALREADY_SUSPENDED - if successful and suspended
44
 *    error code              - if unsuccessful
45
 */
46
 
47
rtems_status_code rtems_task_is_suspended(
48
  Objects_Id id
49
)
50
{
51
  register Thread_Control *the_thread;
52
  Objects_Locations        location;
53
 
54
  the_thread = _Thread_Get( id, &location );
55
  switch ( location ) {
56
 
57
    case OBJECTS_REMOTE:
58
 
59
#if defined(RTEMS_MULTIPROCESSING)
60
      _Thread_Dispatch();
61
      return RTEMS_ILLEGAL_ON_REMOTE_OBJECT;
62
#endif
63
 
64
    case OBJECTS_ERROR:
65
      return RTEMS_INVALID_ID;
66
 
67
    case OBJECTS_LOCAL:
68
      if ( !_States_Is_suspended( the_thread->current_state ) ) {
69
        _Thread_Enable_dispatch();
70
        return RTEMS_SUCCESSFUL;
71
      }
72
      _Thread_Enable_dispatch();
73
      return RTEMS_ALREADY_SUSPENDED;
74
  }
75
 
76
  return RTEMS_INTERNAL_ERROR;   /* unreached - only to remove warnings */
77
}

powered by: WebSVN 2.1.0

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