#include <microfeedthread.h>
Data Fields | |
void *(* | thread_new )(MicrofeedThreadFunction function, void *data) |
void(* | thread_free )(void *thread_implementation) |
void *(* | thread_get_current )(void) |
void(* | thread_send_signal )(void *thread_implementation, int signal_number) |
void(* | thread_join )(void *thread_implementation) |
void *(* | mutex_new )(void) |
void(* | mutex_free )(void *mutex_implementation) |
void(* | mutex_lock )(void *mutex_implementation) |
void(* | mutex_unlock )(void *mutex_implementation) |
Definition at line 35 of file microfeedthread.h.
void*(* thread_new)(MicrofeedThreadFunction function, void *data) |
void(* thread_free)(void *thread_implementation) |
Referenced by microfeed_thread_free().
void*(* thread_get_current)(void) |
Referenced by microfeed_thread_cleanup(), and microfeed_thread_get_current().
void(* thread_send_signal)(void *thread_implementation, int signal_number) |
Referenced by microfeed_thread_send_signal().
void(* thread_join)(void *thread_implementation) |
Referenced by microfeed_thread_join().
void*(* mutex_new)(void) |
Referenced by microfeed_mutex_new().
void(* mutex_free)(void *mutex_implementation) |
Referenced by microfeed_mutex_free().
void(* mutex_lock)(void *mutex_implementation) |
Referenced by microfeed_mutex_lock().
void(* mutex_unlock)(void *mutex_implementation) |
Referenced by microfeed_mutex_unlock().