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


                                 


   
                            
                                                    

                                                           
                                                        
                                         

   



                   
                                  
                         
 
                                    
 
                                                               
 
/**
 * @file
 *
 * @ingroup RTEMSScoreStack
 *
 * @brief Deallocate Thread Stack
 */

/*
 *  COPYRIGHT (c) 1989-2008.
 *  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/stackimpl.h>
#include <rtems/config.h>

void _Stack_Free( void *stack_area )
{
  ( *rtems_configuration_get_stack_free_hook() )( stack_area );
}