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

                           

                                                         


   
                            
                                                    

                                                           
                                                        
                                         

   
                    


                   
                                  
                         
 
                                    
 
                                                               
 
/**
 * @file
 *
 * @ingroup RTEMSScoreStack
 *
 * @brief This source file contains the implementation of
 *   _Stack_Free().
 */

/*
 *  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.
 */

#ifdef 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 );
}