Lines Matching full:mutex
71 SDL_mutex* mutex;
87 SDL_mutex *mutex;
109 if (SDL_LockMutex (s->mutex)) {
118 if (SDL_UnlockMutex (s->mutex)) {
597 s->mutex = SDL_CreateMutex ();
598 if (!s->mutex) {
599 sdl_logerr ("Failed to create SDL mutex\n");
607 SDL_DestroyMutex (s->mutex);
625 if (s->mutex) {
626 SDL_DestroyMutex (s->mutex);
627 s->mutex = NULL;