summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/pthreadexit.c
blob: d5b53bb45ff4dafd78ef1f37969502f3247875fc (plain) (tree)
1
2
3
4
5
6
7
8
9

        
  
                                             

                                         


   
                            
                                                    
  

                                            

                                                           
                                         

   
                    

                   

                    
 
                                   
 
                                    
 
                                                     
 
/**
 * @file
 *
 * @ingroup POSIX_THREAD Thread API Extension
 *
 * @brief POSIX Thread Exit Shared Helper
 */

/*
 *  COPYRIGHT (c) 1989-2011.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  Copyright (c) 2016 embedded brains GmbH.
 *
 *  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 <pthread.h>

#include <rtems/score/threadimpl.h>

void pthread_exit( void *value_ptr )
{
  _Thread_Exit( value_ptr, THREAD_LIFE_TERMINATING );
}