2010-05-02 23:27:30 +00:00
|
|
|
#include "compat.h"
|
2017-02-19 22:15:44 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
# define NEED_PROCESS_H
|
|
|
|
# include "windows_inc.h"
|
|
|
|
#endif
|
|
|
|
|
2010-05-02 23:27:30 +00:00
|
|
|
#include "mutex.h"
|
|
|
|
|
|
|
|
int32_t mutex_init(mutex_t *mutex)
|
|
|
|
{
|
2014-04-17 19:58:07 +00:00
|
|
|
#ifdef RENDERTYPEWIN
|
2010-05-02 23:27:30 +00:00
|
|
|
*mutex = CreateMutex(0, FALSE, 0);
|
|
|
|
return (*mutex == 0);
|
2012-05-01 12:39:20 +00:00
|
|
|
#else
|
|
|
|
if (mutex)
|
|
|
|
{
|
|
|
|
*mutex = SDL_CreateMutex();
|
|
|
|
if (*mutex != NULL)
|
|
|
|
return 0;
|
|
|
|
}
|
2010-05-02 23:27:30 +00:00
|
|
|
return -1;
|
2012-05-01 12:39:20 +00:00
|
|
|
#endif
|
2010-05-02 23:27:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mutex_lock(mutex_t *mutex)
|
|
|
|
{
|
2014-04-17 19:58:07 +00:00
|
|
|
#ifdef RENDERTYPEWIN
|
2010-05-02 23:27:30 +00:00
|
|
|
return (WaitForSingleObject(*mutex, INFINITE) == WAIT_FAILED);
|
2012-05-01 12:39:20 +00:00
|
|
|
#else
|
|
|
|
return SDL_LockMutex(*mutex);
|
2010-05-02 23:27:30 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t mutex_unlock(mutex_t *mutex)
|
|
|
|
{
|
2014-04-17 19:58:07 +00:00
|
|
|
#ifdef RENDERTYPEWIN
|
2010-05-02 23:27:30 +00:00
|
|
|
return (ReleaseMutex(*mutex) == 0);
|
2012-05-01 12:39:20 +00:00
|
|
|
#else
|
|
|
|
return SDL_UnlockMutex(*mutex);
|
2010-05-02 23:27:30 +00:00
|
|
|
#endif
|
|
|
|
}
|