summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadclearstate.c
blob: ae54e3aac194d4d2202395ce6921aa464319dce2 (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
/**
 *  @file
 *
 *  @brief Clear Thread state
 *  @ingroup ScoreThread
 */

/*
 *  COPYRIGHT (c) 1989-2011.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/threadimpl.h>
#include <rtems/score/assert.h>
#include <rtems/score/schedulerimpl.h>

States_Control _Thread_Clear_state(
  Thread_Control *the_thread,
  States_Control  state
)
{
  ISR_lock_Context lock_context;
  States_Control   previous_state;

  _Assert( state != 0 );

  _Scheduler_Acquire( the_thread, &lock_context );

  previous_state = the_thread->current_state;

  if ( ( previous_state & state ) != 0 ) {
    States_Control next_state;

    next_state = _States_Clear( state, previous_state );
    the_thread->current_state = next_state;

    if ( _States_Is_ready( next_state ) ) {
      _Scheduler_Unblock( the_thread );
    }
  }

  _Scheduler_Release( the_thread, &lock_context );

  return previous_state;
}