summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadexit.c
blob: d5b53bb45ff4dafd78ef1f37969502f3247875fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
 * @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 );
}