source: rtems/cpukit/rtems/src/taskresume.c @ 4bf1801

4.104.114.84.95
Last change on this file since 4bf1801 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*
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$
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_resume
34 *
35 *  This directive will remove the specified thread
36 *  from the suspended state.
37 *
38 *  Input parameters:
39 *    id - thread id
40 *
41 *  Output parameters:
42 *    RTEMS_SUCCESSFUL - if successful
43 *    error code        - if unsuccessful
44 */
45
46rtems_status_code rtems_task_resume(
47  Objects_Id id
48)
49{
50  register Thread_Control *the_thread;
51  Objects_Locations        location;
52
53  the_thread = _Thread_Get( id, &location );
54  switch ( location ) {
55
56    case OBJECTS_REMOTE:
57#if defined(RTEMS_MULTIPROCESSING)
58      return _RTEMS_tasks_MP_Send_request_packet(
59          RTEMS_TASKS_MP_RESUME_REQUEST,
60          id,
61          0,          /* Not used */
62          0,          /* Not used */
63          0           /* Not used */
64        );
65#endif
66
67    case OBJECTS_ERROR:
68      return RTEMS_INVALID_ID;
69
70    case OBJECTS_LOCAL:
71      if ( _States_Is_suspended( the_thread->current_state ) ) {
72        _Thread_Resume( the_thread, TRUE );
73        _Thread_Enable_dispatch();
74        return RTEMS_SUCCESSFUL;
75      }
76      _Thread_Enable_dispatch();
77      return RTEMS_INCORRECT_STATE;
78  }
79
80  return RTEMS_INTERNAL_ERROR;   /* unreached - only to remove warnings */
81}
Note: See TracBrowser for help on using the repository browser.