Home | History | Annotate | Download | only in SDL

Lines Matching refs:SDL_mutex

53 /* The SDL mutex structure, defined in SDL_mutex.c */
54 struct SDL_mutex;
55 typedef struct SDL_mutex SDL_mutex;
58 extern DECLSPEC SDL_mutex * SDLCALL SDL_CreateMutex(void);
62 extern DECLSPEC int SDLCALL SDL_mutexP(SDL_mutex *mutex);
69 extern DECLSPEC int SDLCALL SDL_mutexV(SDL_mutex *mutex);
72 extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex *mutex);
146 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut);
154 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);