summaryrefslogtreecommitdiff
path: root/src/platform/mutex.c
blob: 9735483f888a989ab06e61c7d3a1f8ae7f44ed9f (plain)
1
2
3
4
5
6
7
8
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