summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/threadclearstate.c
blob: ae54e3aac194d4d2202395ce6921aa464319dce2 (plain) (tree)
1
2
3
4
5
6
7
8
9

         
  




                             
                            
                                                    

                                                           
                                                        
                                         

   



                   
                                   
                               
                                      
 
                                   



                             
                                


                                  
 
                                                  
 



                                             
 



                                                        

                                       
   

                                                  

                        
 
/**
 *  @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;
}