summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/newlibc_exit.c
blob: d29214af3f9cc8ade7614f36cb05abb454116e17 (plain) (tree)
1
2
3
4
5
6
7
8
9
  



                                                           
                                         
  

   
                    


                   


                         
                  
                   
 
                                
                                            
                                           


                               
 
                                    
        
 
                      
 
    
                                                             

                                     
                          
                  
        
 
                                   
                       

 
      
/*
 *  COPYRIGHT (c) 1994 by Division Incorporated
 *
 *  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.h>

#if defined(RTEMS_NEWLIB)
#include <stdio.h>
#include <unistd.h>

  #if defined(__USE_INIT_FINI__)
    #if CPU_USE_LIBC_INIT_FINI_ARRAY == TRUE
      #define FINI_SYMBOL __libc_fini_array
    #else
      #define FINI_SYMBOL _fini
    #endif

    extern void FINI_SYMBOL( void );
  #endif

void _exit(int status)
{
  /*
   *  If the toolset uses init/fini sections, then we need to
   *  run the global destructors now.
   */
  #if defined(FINI_SYMBOL)
    FINI_SYMBOL();
  #endif

  rtems_shutdown_executive(status);
  /* does not return */
}

#endif