mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 13:31:27 +00:00
284af9f5d9
git-svn-id: https://svn.eduke32.com/eduke32@7960 1a8010ca-5511-0410-912e-c29ae57300e0
37 lines
550 B
C++
37 lines
550 B
C++
#include "compat.h"
|
|
|
|
#ifdef _WIN32
|
|
# define NEED_PROCESS_H
|
|
# include "windows_inc.h"
|
|
#endif
|
|
|
|
#include "mutex.h"
|
|
|
|
int32_t mutex_init(mutex_t *mutex)
|
|
{
|
|
#ifdef RENDERTYPEWIN
|
|
*mutex = CreateMutex(0, FALSE, 0);
|
|
return (*mutex == 0);
|
|
#else
|
|
*mutex = 0;
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
void mutex_lock(mutex_t *mutex)
|
|
{
|
|
#ifdef RENDERTYPEWIN
|
|
WaitForSingleObject(*mutex, INFINITE);
|
|
#else
|
|
SDL_AtomicLock(mutex);
|
|
#endif
|
|
}
|
|
|
|
void mutex_unlock(mutex_t *mutex)
|
|
{
|
|
#ifdef RENDERTYPEWIN
|
|
ReleaseMutex(*mutex);
|
|
#else
|
|
SDL_AtomicUnlock(mutex);
|
|
#endif
|
|
}
|