source: rtems/cpukit/score/src/threadresume.c @ 632e4306

4.104.115
Last change on this file since 632e4306 was 931dd97, checked in by Joel Sherrill <joel.sherrill@…>, on 06/01/09 at 21:44:01

2009-06-01 Joel Sherrill <joel.sherrill@…>

  • score/include/rtems/score/thread.h, score/src/threadinitialize.c, score/src/threadreset.c, score/src/threadresume.c, score/src/threadsuspend.c: Nesting count on thread suspension is only supported from ITRON API so disable if ITRON is disabled.
  • Property mode set to 100644
File size: 2.3 KB
Line 
1/*
2 *  Thread Handler
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 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/score/apiext.h>
21#include <rtems/score/context.h>
22#include <rtems/score/interr.h>
23#include <rtems/score/isr.h>
24#include <rtems/score/object.h>
25#include <rtems/score/priority.h>
26#include <rtems/score/states.h>
27#include <rtems/score/sysstate.h>
28#include <rtems/score/thread.h>
29#include <rtems/score/threadq.h>
30#include <rtems/score/userext.h>
31#include <rtems/score/wkspace.h>
32
33/*PAGE
34 *
35 *  _Thread_Resume
36 *
37 *  This kernel routine clears the SUSPEND state if the suspend_count
38 *  drops below one.  If the force parameter is set the suspend_count
39 *  is forced back to zero. The thread ready chain is adjusted if
40 *  necessary and the Heir thread is set accordingly.
41 *
42 *  Input parameters:
43 *    the_thread - pointer to thread control block
44 *    force      - force the suspend count back to 0
45 *
46 *  Output parameters:  NONE
47 *
48 *  INTERRUPT LATENCY:
49 *    priority map
50 *    select heir
51 */
52
53
54void _Thread_Resume(
55  Thread_Control   *the_thread,
56  bool              force
57)
58{
59
60  ISR_Level       level;
61  States_Control  current_state;
62
63  _ISR_Disable( level );
64
65  #if defined(RTEMS_ITRON_API)
66    if ( force == true )
67      the_thread->suspend_count = 0;
68    else
69      the_thread->suspend_count--;
70
71    if ( the_thread->suspend_count > 0 ) {
72      _ISR_Enable( level );
73      return;
74    }
75  #endif
76
77  current_state = the_thread->current_state;
78  if ( current_state & STATES_SUSPENDED ) {
79    current_state =
80    the_thread->current_state = _States_Clear(STATES_SUSPENDED, current_state);
81
82    if ( _States_Is_ready( current_state ) ) {
83
84      _Priority_Add_to_bit_map( &the_thread->Priority_map );
85
86      _Chain_Append_unprotected(the_thread->ready, &the_thread->Object.Node);
87
88      _ISR_Flash( level );
89
90      if ( the_thread->current_priority < _Thread_Heir->current_priority ) {
91        _Thread_Heir = the_thread;
92        if ( _Thread_Executing->is_preemptible ||
93             the_thread->current_priority == 0 )
94          _Context_Switch_necessary = true;
95      }
96    }
97  }
98
99  _ISR_Enable( level );
100}
Note: See TracBrowser for help on using the repository browser.