summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/macros/rtems/rtems/tasks.inl
blob: 243d0addc7aeed44dd0a2ff992dc01904ddb7a80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*  tasks.inl
 *
 *  This file contains the macro implementation of all inlined
 *  routines in the with RTEMS Tasks Manager.
 *
 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
 *  On-Line Applications Research Corporation (OAR).
 *  All rights assigned to U.S. Government, 1994.
 *
 *  This material may be reproduced by or for the U.S. Government pursuant
 *  to the copyright license under the clause at DFARS 252.227-7013.  This
 *  notice must appear in all copies of this file and its derivatives.
 *
 *  $Id$
 */

#ifndef __RTEMS_TASKS_inl
#define __RTEMS_TASKS_inl

#include <rtems/msgmp.h>
#include <rtems/partmp.h>
#include <rtems/regionmp.h>
#include <rtems/semmp.h>

/*PAGE
 *
 *  _RTEMS_tasks_Allocate
 *
 */

#define _RTEMS_tasks_Allocate() \
  (Thread_Control *) _Objects_Allocate( &_RTEMS_tasks_Information )

/*PAGE
 *
 *  _RTEMS_tasks_Free
 *
 */

#define _RTEMS_tasks_Free( _the_task ) \
  _Objects_Free( &_RTEMS_tasks_Information, &(_the_task)->Object )

/*PAGE
 *
 *  _RTEMS_tasks_Cancel_wait
 *
 */

#define _RTEMS_tasks_Cancel_wait( _the_thread ) \
  { \
    States_Control _state; \
    States_Control _remote_state; \
    \
    _state = (_the_thread)->current_state; \
    \
    if ( _States_Is_waiting_on_thread_queue( _state ) ) { \
      if ( _States_Is_waiting_for_rpc_reply( _state ) && \
            _States_Is_locally_blocked( _state ) ) { \
        _remote_state = _States_Clear( \
                       STATES_WAITING_FOR_RPC_REPLY + STATES_TRANSIENT, \
                       _state \
                     ); \
        \
        switch ( _remote_state ) { \
          \
          case STATES_WAITING_FOR_BUFFER: \
            _Partition_MP_Send_extract_proxy( (_the_thread) ); \
            break; \
          case STATES_WAITING_FOR_SEGMENT: \
            _Region_MP_Send_extract_proxy( (_the_thread) ); \
            break; \
          case STATES_WAITING_FOR_SEMAPHORE: \
            _Semaphore_MP_Send_extract_proxy( (_the_thread) ); \
            break; \
          case STATES_WAITING_FOR_MESSAGE: \
            _Message_queue_MP_Send_extract_proxy( (_the_thread) ); \
            break; \
        } \
      } \
      _Thread_queue_Extract( (_the_thread)->Wait.queue, (_the_thread) ); \
    } \
    else if ( _Watchdog_Is_active( &(_the_thread)->Timer ) ) \
      (void) _Watchdog_Remove( &(_the_thread)->Timer ); \
  }

/*PAGE
 *
 *  _RTEMS_Tasks_Priority_to_Core
 */
 
#define _RTEMS_Tasks_Priority_to_Core( _priority ) \
  ((Priority_Control) (_priority))

#endif
/* end of include file */