Mercurial > sdl-ios-xcode
diff src/thread/win32/SDL_sysmutex.c @ 1668:4da1ee79c9af SDL-1.3
more tweaking indent options
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 29 May 2006 04:04:35 +0000 |
parents | 782fd950bd46 |
children |
line wrap: on
line diff
--- a/src/thread/win32/SDL_sysmutex.c Mon May 29 03:53:21 2006 +0000 +++ b/src/thread/win32/SDL_sysmutex.c Mon May 29 04:04:35 2006 +0000 @@ -36,49 +36,49 @@ /* Create a mutex */ SDL_mutex * -SDL_CreateMutex (void) +SDL_CreateMutex(void) { SDL_mutex *mutex; /* Allocate mutex memory */ - mutex = (SDL_mutex *) SDL_malloc (sizeof (*mutex)); + mutex = (SDL_mutex *) SDL_malloc(sizeof(*mutex)); if (mutex) { /* Create the mutex, with initial value signaled */ - mutex->id = CreateMutex (NULL, FALSE, NULL); + mutex->id = CreateMutex(NULL, FALSE, NULL); if (!mutex->id) { - SDL_SetError ("Couldn't create mutex"); - SDL_free (mutex); + SDL_SetError("Couldn't create mutex"); + SDL_free(mutex); mutex = NULL; } } else { - SDL_OutOfMemory (); + SDL_OutOfMemory(); } return (mutex); } /* Free the mutex */ void -SDL_DestroyMutex (SDL_mutex * mutex) +SDL_DestroyMutex(SDL_mutex * mutex) { if (mutex) { if (mutex->id) { - CloseHandle (mutex->id); + CloseHandle(mutex->id); mutex->id = 0; } - SDL_free (mutex); + SDL_free(mutex); } } /* Lock the mutex */ int -SDL_mutexP (SDL_mutex * mutex) +SDL_mutexP(SDL_mutex * mutex) { if (mutex == NULL) { - SDL_SetError ("Passed a NULL mutex"); + SDL_SetError("Passed a NULL mutex"); return -1; } - if (WaitForSingleObject (mutex->id, INFINITE) == WAIT_FAILED) { - SDL_SetError ("Couldn't wait on mutex"); + if (WaitForSingleObject(mutex->id, INFINITE) == WAIT_FAILED) { + SDL_SetError("Couldn't wait on mutex"); return -1; } return (0); @@ -86,14 +86,14 @@ /* Unlock the mutex */ int -SDL_mutexV (SDL_mutex * mutex) +SDL_mutexV(SDL_mutex * mutex) { if (mutex == NULL) { - SDL_SetError ("Passed a NULL mutex"); + SDL_SetError("Passed a NULL mutex"); return -1; } - if (ReleaseMutex (mutex->id) == FALSE) { - SDL_SetError ("Couldn't release mutex"); + if (ReleaseMutex(mutex->id) == FALSE) { + SDL_SetError("Couldn't release mutex"); return -1; } return (0);