source: rtems/cpukit/rtems/src/taskissuspended.c @ e6b31b27

4.115
Last change on this file since e6b31b27 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/**
2 * @file
3 *
4 * @brief rtems_task_is_suspended
5 * @ingroup ClassicTasks Tasks
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/rtems/tasks.h>
22#include <rtems/score/threadimpl.h>
23
24/*
25 *  rtems_task_is_suspended
26 *
27 *  This directive returns a status indicating whether or not
28 *  the specified task is suspended.
29 *
30 *  Input parameters:
31 *    id - thread id
32 *
33 *  Output parameters:
34 *    RTEMS_SUCCESSFUL        - if successful and not suspended
35 *    RTEMS_ALREADY_SUSPENDED - if successful and suspended
36 *    error code              - if unsuccessful
37 */
38
39rtems_status_code rtems_task_is_suspended(
40  rtems_id id
41)
42{
43  Thread_Control          *the_thread;
44  Objects_Locations        location;
45
46  the_thread = _Thread_Get( id, &location );
47  switch ( location ) {
48
49    case OBJECTS_LOCAL:
50      if ( !_States_Is_suspended( the_thread->current_state ) ) {
51        _Objects_Put( &the_thread->Object );
52        return RTEMS_SUCCESSFUL;
53      }
54      _Objects_Put( &the_thread->Object );
55      return RTEMS_ALREADY_SUSPENDED;
56
57#if defined(RTEMS_MULTIPROCESSING)
58    case OBJECTS_REMOTE:
59      _Thread_Dispatch();
60      return RTEMS_ILLEGAL_ON_REMOTE_OBJECT;
61#endif
62
63    case OBJECTS_ERROR:
64      break;
65  }
66
67  return RTEMS_INVALID_ID;
68}
Note: See TracBrowser for help on using the repository browser.