Changelog: - Integrate custom memory arena with o1heap - Integrate sc and cc for data structures - integrate with o1heap for dynamic memory - Add some tests |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
README.md | ||
sc_mutex.c | ||
sc_mutex.h |
README.md
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;
}