mirror of
https://github.com/tezc/sc.git
synced 2025-01-28 07:03:06 +08:00
c221478638
* Switched to tabs for indentation, amalgamation tool works with tabs only
Mutex
Mutex wrapper
- Basic mutex wrapper for Posix and Windows.
#include "sc_mutex.h"
int main(int argc, char *argv[])
{
struct sc_mutex mutex;
sc_mutex_init(&mutex); // Init mutex
sc_mutex_lock(&mutex);
sc_mutex_unlock(&mutex);
sc_mutex_term(&mutex); // destroy mutex
return 0;
}