cgv
Loading...
Searching...
No Matches
mutex.cxx
1#include "mutex.h"
2#ifdef _WIN32
3#include <cgv/config/cpp_version.h>
4#ifdef CPP11
5#define USE_STD_THREAD
6#endif
7#else
8#define USE_STD_THREAD
9#endif
10
11#ifdef USE_STD_THREAD
12#include "mutex_std_thread.h"
13#else
14#include "mutex_pthread.h"
15#endif