| 
    Eneboo - Documentación para desarrolladores 
   | 
 
'defines' | |
| #define | GCC_VERSION | 
'typedefs' | |
| typedef void *(* | threadFunctionType )(void *) | 
| typedef int(* | pthread_create_function )(pthread_t *thread, const pthread_attr_t *attr, threadFunctionType start_routine, void *arg) | 
| typedef void(* | pthread_exit_function )(void *arg) | 
Funciones | |
| void | pthread_exit (void *value_ptr) | 
| int | pthread_create (pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg) throw () | 
| #define GCC_VERSION | 
(__GNUC__ * 10000 \
                     + __GNUC_MINOR__ * 100 \
                     + __GNUC_PATCHLEVEL__)
| typedef int(* pthread_create_function)(pthread_t *thread, const pthread_attr_t *attr, threadFunctionType start_routine, void *arg) | 
| typedef void(* pthread_exit_function)(void *arg) | 
| typedef void*(* threadFunctionType)(void *) | 
| int pthread_create | ( | pthread_t * | thread, | 
| const pthread_attr_t * | attr, | ||
| void *(*)(void *) | start_routine, | ||
| void * | arg | ||
| ) | throw () | 
| void pthread_exit | ( | void * | value_ptr | ) | 
 1.7.4