diff options
Diffstat (limited to 'src/platform/mutex.c')
-rw-r--r-- | src/platform/mutex.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/platform/mutex.c b/src/platform/mutex.c new file mode 100644 index 0000000..2aeb825 --- /dev/null +++ b/src/platform/mutex.c @@ -0,0 +1,9 @@ +#include "mutex.h" + +#if defined(CEL_PLATFORM_LINUX) || defined(CEL_PLATFORM_MAC) +// TODO: implement in terms of pthreads +#endif + +#if defined(CEL_PLATFORM_WINDOWS) +// TODO: implement using win32 api +#endif
\ No newline at end of file |