#include "VERSION.h"
#include <new>
#include "simtls.cpp"
#include <dlfcn.h>
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) |
Functions | |
static void | exitRoutine (void) |
static void * | startMeUp (void *a) |
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 *) |
static void exitRoutine | ( | void | ) | [static] |
int pthread_create | ( | pthread_t * | thread, | |
const pthread_attr_t * | attr, | |||
void *(*)(void *) | start_routine, | |||
void * | arg | |||
) | throw () |
void pthread_exit | ( | void * | value_ptr | ) |
static void* startMeUp | ( | void * | a | ) | [inline, static] |