Monado OpenXR Runtime
|
A wrapper around a native conditional variable. More...
#include <os/os_threading.h>
Static Public Member Functions | |
static int | os_cond_init (struct os_cond *oc) |
Init. More... | |
static void | os_cond_signal (struct os_cond *oc) |
Signal. More... | |
static void | os_cond_wait (struct os_cond *oc, struct os_mutex *om) |
Wait. More... | |
static void | os_cond_destroy (struct os_cond *oc) |
Clean up. More... | |
Data Fields | |
pthread_cond_t | cond |
bool | initialized |
A wrapper around a native conditional variable.