summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/inline/rtems/rtems/tasks.inl
blob: d392b8b3706a4bbab1edc3dfa8340ca16769d227 (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 static inline 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
 *
 */

STATIC INLINE Thread_Control *_RTEMS_tasks_Allocate( void )
{
  return (Thread_Control *) _Objects_Allocate( &_RTEMS_tasks_Information );
}

/*PAGE
 *
 *  _RTEMS_tasks_Free
 *
 */

STATIC INLINE void _RTEMS_tasks_Free (
  Thread_Control *the_task
)
{
  _Objects_Free( &_RTEMS_tasks_Information, &the_task->Object );
}

/*PAGE
 *
 *  _RTEMS_tasks_Cancel_wait
 *
 */

STATIC INLINE void _RTEMS_tasks_Cancel_wait(
  Thread_Control *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 );
}

#endif
/* end of include file */