/** * @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 #include void pthread_exit( void *value_ptr ) { _Thread_Exit( value_ptr, THREAD_LIFE_TERMINATING ); }