mirror of
https://github.com/wassname/ray.git
synced 2026-07-05 20:49:58 +08:00
b0b6b56bb7
* Platform shims for Windows * Satisfy linter
14 lines
222 B
C
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 */
|