Files
ray/src/shims/windows/pthread.h
T
mehrdadn b0b6b56bb7 Platform shims for Windows (#6548)
* Platform shims for Windows

* Satisfy linter
2019-12-20 12:32:07 -08:00

14 lines
222 B
C

#ifndef _PTHREAD_H
#define _PTHREAD_H 1
#ifndef _INC_WINDOWS
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#include <Windows.h>
#endif
typedef CRITICAL_SECTION pthread_mutex_t;
#endif /* pthread.h */