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

         
  




                        
                            
                                                    

                                                           
                                                        
                                         

   



                   

                                   
                                      
 



                            
                                
 
                                                  


                                           
                                   
 
                                                  
 
/**
 *  @file
 *
 *  @brief Thread Ready
 *  @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/isrlevel.h>
#include <rtems/score/schedulerimpl.h>

void _Thread_Ready(
  Thread_Control *the_thread
)
{
  ISR_lock_Context lock_context;

  _Scheduler_Acquire( the_thread, &lock_context );

  the_thread->current_state = STATES_READY;

  _Scheduler_Unblock( the_thread );

  _Scheduler_Release( the_thread, &lock_context );
}