mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 08:30:58 +00:00
21 lines
367 B
C
21 lines
367 B
C
|
#ifndef __mutex_h__
|
||
|
#define __mutex_h__
|
||
|
|
||
|
#if defined(_WIN32)
|
||
|
#include <windows.h>
|
||
|
#include <process.h>
|
||
|
#else
|
||
|
#include <pthread.h>
|
||
|
#endif
|
||
|
|
||
|
#if defined(_WIN32)
|
||
|
typedef HANDLE mutex_t;
|
||
|
#else
|
||
|
typedef pthread_mutex_t mutex_t;
|
||
|
#endif
|
||
|
|
||
|
extern int32_t mutex_init(mutex_t *mutex);
|
||
|
extern int32_t mutex_lock(mutex_t *mutex);
|
||
|
extern int32_t mutex_unlock(mutex_t *mutex);
|
||
|
|
||
|
#endif
|