2 Simple DirectMedia Layer
3 Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
21 #include "SDL_config.h"
23 /* An implementation of mutexes using semaphores */
25 #include "SDL_thread.h"
26 #include "SDL_systhread_c.h"
43 /* Allocate mutex memory */
44 mutex = (SDL_mutex *) SDL_malloc(sizeof(*mutex));
46 /* Create the mutex semaphore, with initial value 1 */
47 mutex->sem = SDL_CreateSemaphore(1);
63 SDL_DestroyMutex(SDL_mutex * mutex)
67 SDL_DestroySemaphore(mutex->sem);
73 /* Lock the semaphore */
76 SDL_mutexP(SDL_mutex * mutex)
78 #if SDL_THREADS_DISABLED
81 SDL_threadID this_thread;
84 SDL_SetError("Passed a NULL mutex");
88 this_thread = SDL_ThreadID();
89 if (mutex->owner == this_thread) {
92 /* The order of operations is important.
93 We set the locking thread id after we obtain the lock
94 so unlocks from other threads will fail.
96 SDL_SemWait(mutex->sem);
97 mutex->owner = this_thread;
102 #endif /* SDL_THREADS_DISABLED */
105 /* Unlock the mutex */
108 SDL_mutexV(SDL_mutex * mutex)
110 #if SDL_THREADS_DISABLED
114 SDL_SetError("Passed a NULL mutex");
118 /* If we don't own the mutex, we can't unlock it */
119 if (SDL_ThreadID() != mutex->owner) {
120 SDL_SetError("mutex not owned by this thread");
124 if (mutex->recursive) {
127 /* The order of operations is important.
128 First reset the owner so another thread doesn't lock
129 the mutex and set the ownership before we reset it,
130 then release the lock semaphore.
133 SDL_SemPost(mutex->sem);
136 #endif /* SDL_THREADS_DISABLED */
139 /* vi: set ts=4 sw=4 expandtab: */