blob: 2aeb82560e546d19b3b8ac8ac0f175266a598c66 (
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
|