Suppress condition/mutex/thread stuff.

This commit is contained in:
NAKAMURA Takumi
2011-04-20 11:33:09 +09:00
parent 4e66976786
commit b13c5fc1a9
215 changed files with 41 additions and 11086 deletions

View File

@@ -95,7 +95,15 @@ void sleep_for(const chrono::duration<Rep, Period>& rel_time);
#include <system_error>
#include <chrono>
#include <__mutex_base>
#ifdef __MINGW32__
#define pthread_key_delete(a) (-1)
#define pthread_join(a,b) (-1)
#define pthread_detach(a) (-1)
#define nanosleep(a,b) (-1)
#define pthread_key_create(a,b) (-1)
#else
#include <pthread.h>
#endif
#pragma GCC system_header