source: rtems/cpukit/rtems/src/tasksuspend.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was 1095ec1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/05 at 09:03:45

Include config.h.

  • Property mode set to 100644
File size: 2.0 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.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <rtems/system.h>
20#include <rtems/rtems/status.h>
21#include <rtems/rtems/support.h>
22#include <rtems/rtems/modes.h>
23#include <rtems/score/object.h>
24#include <rtems/score/stack.h>
25#include <rtems/score/states.h>
26#include <rtems/rtems/tasks.h>
27#include <rtems/score/thread.h>
28#include <rtems/score/threadq.h>
29#include <rtems/score/tod.h>
30#include <rtems/score/userext.h>
31#include <rtems/score/wkspace.h>
32#include <rtems/score/apiext.h>
33#include <rtems/score/sysstate.h>
34
35/*PAGE
36 *
37 *  rtems_task_suspend
38 *
39 *  This directive will place the specified thread in the "suspended"
40 *  state.  Note that the suspended state can be in addition to
41 *  other waiting states.
42 *
43 *  Input parameters:
44 *    id - thread id
45 *
46 *  Output parameters:
47 *    RTEMS_SUCCESSFUL - if successful
48 *    error code        - if unsuccessful
49 */
50
51rtems_status_code rtems_task_suspend(
52  Objects_Id id
53)
54{
55  register Thread_Control *the_thread;
56  Objects_Locations        location;
57
58  the_thread = _Thread_Get( id, &location );
59  switch ( location ) {
60
61    case OBJECTS_REMOTE:
62#if defined(RTEMS_MULTIPROCESSING)
63      return _RTEMS_tasks_MP_Send_request_packet(
64        RTEMS_TASKS_MP_SUSPEND_REQUEST,
65        id,
66        0,          /* Not used */
67        0,          /* Not used */
68        0           /* Not used */
69      );
70#endif
71
72    case OBJECTS_ERROR:
73      return RTEMS_INVALID_ID;
74
75    case OBJECTS_LOCAL:
76      if ( !_States_Is_suspended( the_thread->current_state ) ) {
77        _Thread_Suspend( the_thread );
78        _Thread_Enable_dispatch();
79        return RTEMS_SUCCESSFUL;
80      }
81      _Thread_Enable_dispatch();
82      return RTEMS_ALREADY_SUSPENDED;
83  }
84
85  return RTEMS_INTERNAL_ERROR;   /* unreached - only to remove warnings */
86}
Note: See TracBrowser for help on using the repository browser.