RTEMS  5.1
pthread.h
Go to the documentation of this file.
1 
10 /*
11  * COPYRIGHT (c) 1989-2011.
12  * On-Line Applications Research Corporation (OAR).
13  *
14  * The license and distribution terms for this file may be
15  * found in the file LICENSE in this distribution or at
16  * http://www.rtems.org/license/LICENSE.
17  */
18 
19 #ifndef _RTEMS_POSIX_PTHREAD_H
20 #define _RTEMS_POSIX_PTHREAD_H
21 
22 #include <rtems/posix/threadsup.h>
23 #include <rtems/score/thread.h>
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
43 typedef struct {
45  void *(*thread_entry)(void *);
49 
50 extern const size_t _POSIX_Threads_Minimum_stack_size;
51 
60 
64 extern void _POSIX_Threads_Initialize_user_thread( void );
65 
71 
74 #ifdef __cplusplus
75 }
76 #endif
77 
78 #endif
79 /* end of include file */
POSIX Thread API Support.
const posix_initialization_threads_table _POSIX_Threads_User_thread_table
Initialization table for the first user POSIX thread.
The thread object information.
Definition: thread.h:997
Thread_Information _POSIX_Threads_Information
int stack_size
Definition: pthread.h:47
Constants and Structures Related with the Thread Control Block.
Definition: pthread.h:43
void _POSIX_Threads_Initialize_user_thread(void)
System initialization handler to create the first user POSIX thread.
Definition: pthreadinitthreads.c:30