libacfutils
A general purpose library of utility functions designed to make it easier to develop addons for the X-Plane flight simulator.
|
#include <thread.h>
Data Fields | |
bool_t | inited |
CRITICAL_SECTION | cs |
A mutual-exclusion lock. This can be initialized using mutex_init() and afterwards must be disposed of using mutex_destroy(). Mutexes are used to protect critical sections of code, where you want to prevent multiple threads from entering at the same time. Use the mutex_enter() and mutex_exit() functions for that.