better check for clock_gettime_nsec_np() -- cf. bug #5467.
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2021 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_internal.h"
23 /* An implementation of mutexes using semaphores */
25 #include "SDL_thread.h"
26 #include "SDL_systhread_c.h"
42 /* Allocate mutex memory */
43 mutex = (SDL_mutex *) SDL_malloc(sizeof(*mutex));
45 /* Create the mutex semaphore, with initial value 1 */
46 mutex->sem = SDL_CreateSemaphore(1);
61 SDL_DestroyMutex(SDL_mutex * mutex)
65 SDL_DestroySemaphore(mutex->sem);
73 SDL_LockMutex(SDL_mutex * mutex)
75 #if SDL_THREADS_DISABLED
78 SDL_threadID this_thread;
81 return SDL_SetError("Passed a NULL mutex");
84 this_thread = SDL_ThreadID();
85 if (mutex->owner == this_thread) {
88 /* The order of operations is important.
89 We set the locking thread id after we obtain the lock
90 so unlocks from other threads will fail.
92 SDL_SemWait(mutex->sem);
93 mutex->owner = this_thread;
98 #endif /* SDL_THREADS_DISABLED */
101 /* try Lock the mutex */
103 SDL_TryLockMutex(SDL_mutex * mutex)
105 #if SDL_THREADS_DISABLED
109 SDL_threadID this_thread;
112 return SDL_SetError("Passed a NULL mutex");
115 this_thread = SDL_ThreadID();
116 if (mutex->owner == this_thread) {
119 /* The order of operations is important.
120 We set the locking thread id after we obtain the lock
121 so unlocks from other threads will fail.
123 retval = SDL_SemWait(mutex->sem);
125 mutex->owner = this_thread;
126 mutex->recursive = 0;
131 #endif /* SDL_THREADS_DISABLED */
134 /* Unlock the mutex */
136 SDL_mutexV(SDL_mutex * mutex)
138 #if SDL_THREADS_DISABLED
142 return SDL_SetError("Passed a NULL mutex");
145 /* If we don't own the mutex, we can't unlock it */
146 if (SDL_ThreadID() != mutex->owner) {
147 return SDL_SetError("mutex not owned by this thread");
150 if (mutex->recursive) {
153 /* The order of operations is important.
154 First reset the owner so another thread doesn't lock
155 the mutex and set the ownership before we reset it,
156 then release the lock semaphore.
159 SDL_SemPost(mutex->sem);
162 #endif /* SDL_THREADS_DISABLED */
165 /* vi: set ts=4 sw=4 expandtab: */