mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
830f73a316
For the Wii, SDL's mutex functionality is used. The implementation in the original patch was wrong though, so this part required non-trivial changes. git-svn-id: https://svn.eduke32.com/eduke32@2626 1a8010ca-5511-0410-912e-c29ae57300e0
29 lines
656 B
C
29 lines
656 B
C
#ifndef __mutex_h__
|
|
#define __mutex_h__
|
|
|
|
/* Mutual exclusion mechanism wrappers for the different platforms */
|
|
|
|
#if defined(_WIN32)
|
|
# include <windows.h>
|
|
# include <process.h>
|
|
#elif !defined GEKKO
|
|
# include <pthread.h>
|
|
#else
|
|
# include <SDL.h>
|
|
#endif
|
|
|
|
#if defined(_WIN32)
|
|
typedef HANDLE mutex_t;
|
|
#elif !defined GEKKO
|
|
typedef pthread_mutex_t mutex_t;
|
|
#else
|
|
/* PK: I don't like pointer typedefs, but SDL_CreateMutex() _returns_ one,
|
|
* so we're out of luck with our interface. */
|
|
typedef SDL_mutex* 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
|