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

4.115
Last change on this file since c499856 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.3 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Suspend Task
5 *  @ingroup ClassicTasks
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/tasksimpl.h>
22#include <rtems/score/threadimpl.h>
23
24rtems_status_code rtems_task_suspend(
25  rtems_id id
26)
27{
28  Thread_Control          *the_thread;
29  Objects_Locations        location;
30
31  the_thread = _Thread_Get( id, &location );
32  switch ( location ) {
33
34    case OBJECTS_LOCAL:
35      if ( !_States_Is_suspended( the_thread->current_state ) ) {
36        _Thread_Suspend( the_thread );
37        _Objects_Put( &the_thread->Object );
38        return RTEMS_SUCCESSFUL;
39      }
40      _Objects_Put( &the_thread->Object );
41      return RTEMS_ALREADY_SUSPENDED;
42
43#if defined(RTEMS_MULTIPROCESSING)
44    case OBJECTS_REMOTE:
45      return _RTEMS_tasks_MP_Send_request_packet(
46        RTEMS_TASKS_MP_SUSPEND_REQUEST,
47        id,
48        0,          /* Not used */
49        0,          /* Not used */
50        0           /* Not used */
51      );
52#endif
53
54    case OBJECTS_ERROR:
55      break;
56  }
57
58  return RTEMS_INVALID_ID;
59}
Note: See TracBrowser for help on using the repository browser.