Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
223 lines (193 loc) · 6.08 KB

SDL_syscond.c

File metadata and controls

223 lines (193 loc) · 6.08 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
Apr 26, 2001
Apr 26, 2001
4
Apr 8, 2011
Apr 8, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Apr 26, 2001
Apr 26, 2001
8
Apr 8, 2011
Apr 8, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
Apr 26, 2001
Apr 26, 2001
12
Apr 8, 2011
Apr 8, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Apr 26, 2001
Apr 26, 2001
20
*/
Feb 21, 2006
Feb 21, 2006
21
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
22
23
24
25
26
27
28
29
30
31
32
/* An implementation of condition variables using semaphores and mutexes */
/*
This implementation borrows heavily from the BeOS condition variable
implementation, written by Christopher Tate and Owen Smith. Thanks!
*/
#include "SDL_thread.h"
struct SDL_cond
{
Jul 10, 2006
Jul 10, 2006
33
34
35
36
37
SDL_mutex *lock;
int waiting;
int signals;
SDL_sem *wait_sem;
SDL_sem *wait_done;
Apr 26, 2001
Apr 26, 2001
38
39
40
};
/* Create a condition variable */
Jul 10, 2006
Jul 10, 2006
41
42
SDL_cond *
SDL_CreateCond(void)
Apr 26, 2001
Apr 26, 2001
43
{
Jul 10, 2006
Jul 10, 2006
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
SDL_cond *cond;
cond = (SDL_cond *) SDL_malloc(sizeof(SDL_cond));
if (cond) {
cond->lock = SDL_CreateMutex();
cond->wait_sem = SDL_CreateSemaphore(0);
cond->wait_done = SDL_CreateSemaphore(0);
cond->waiting = cond->signals = 0;
if (!cond->lock || !cond->wait_sem || !cond->wait_done) {
SDL_DestroyCond(cond);
cond = NULL;
}
} else {
SDL_OutOfMemory();
}
return (cond);
Apr 26, 2001
Apr 26, 2001
60
61
62
}
/* Destroy a condition variable */
Jul 10, 2006
Jul 10, 2006
63
64
void
SDL_DestroyCond(SDL_cond * cond)
Apr 26, 2001
Apr 26, 2001
65
{
Jul 10, 2006
Jul 10, 2006
66
67
68
69
70
71
72
73
74
75
76
77
if (cond) {
if (cond->wait_sem) {
SDL_DestroySemaphore(cond->wait_sem);
}
if (cond->wait_done) {
SDL_DestroySemaphore(cond->wait_done);
}
if (cond->lock) {
SDL_DestroyMutex(cond->lock);
}
SDL_free(cond);
}
Apr 26, 2001
Apr 26, 2001
78
79
80
}
/* Restart one of the threads that are waiting on the condition variable */
Jul 10, 2006
Jul 10, 2006
81
82
int
SDL_CondSignal(SDL_cond * cond)
Apr 26, 2001
Apr 26, 2001
83
{
Jul 10, 2006
Jul 10, 2006
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
if (!cond) {
SDL_SetError("Passed a NULL condition variable");
return -1;
}
/* If there are waiting threads not already signalled, then
signal the condition and wait for the thread to respond.
*/
SDL_LockMutex(cond->lock);
if (cond->waiting > cond->signals) {
++cond->signals;
SDL_SemPost(cond->wait_sem);
SDL_UnlockMutex(cond->lock);
SDL_SemWait(cond->wait_done);
} else {
SDL_UnlockMutex(cond->lock);
}
return 0;
Apr 26, 2001
Apr 26, 2001
103
104
105
}
/* Restart all threads that are waiting on the condition variable */
Jul 10, 2006
Jul 10, 2006
106
107
int
SDL_CondBroadcast(SDL_cond * cond)
Apr 26, 2001
Apr 26, 2001
108
{
Jul 10, 2006
Jul 10, 2006
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
if (!cond) {
SDL_SetError("Passed a NULL condition variable");
return -1;
}
/* If there are waiting threads not already signalled, then
signal the condition and wait for the thread to respond.
*/
SDL_LockMutex(cond->lock);
if (cond->waiting > cond->signals) {
int i, num_waiting;
num_waiting = (cond->waiting - cond->signals);
cond->signals = cond->waiting;
for (i = 0; i < num_waiting; ++i) {
SDL_SemPost(cond->wait_sem);
}
/* Now all released threads are blocked here, waiting for us.
Collect them all (and win fabulous prizes!) :-)
*/
SDL_UnlockMutex(cond->lock);
for (i = 0; i < num_waiting; ++i) {
SDL_SemWait(cond->wait_done);
}
} else {
SDL_UnlockMutex(cond->lock);
}
return 0;
Apr 26, 2001
Apr 26, 2001
138
139
140
141
142
143
144
145
146
}
/* Wait on the condition variable for at most 'ms' milliseconds.
The mutex must be locked before entering this function!
The mutex is unlocked during the wait, and locked again after the wait.
Typical use:
Thread A:
Jan 27, 2011
Jan 27, 2011
147
148
149
150
151
SDL_LockMutex(lock);
while ( ! condition ) {
SDL_CondWait(cond, lock);
}
SDL_UnlockMutex(lock);
Apr 26, 2001
Apr 26, 2001
152
153
Thread B:
Jan 27, 2011
Jan 27, 2011
154
155
156
157
158
159
SDL_LockMutex(lock);
...
condition = true;
...
SDL_CondSignal(cond);
SDL_UnlockMutex(lock);
Apr 26, 2001
Apr 26, 2001
160
*/
Jul 10, 2006
Jul 10, 2006
161
162
int
SDL_CondWaitTimeout(SDL_cond * cond, SDL_mutex * mutex, Uint32 ms)
Apr 26, 2001
Apr 26, 2001
163
{
Jul 10, 2006
Jul 10, 2006
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
int retval;
if (!cond) {
SDL_SetError("Passed a NULL condition variable");
return -1;
}
/* Obtain the protection mutex, and increment the number of waiters.
This allows the signal mechanism to only perform a signal if there
are waiting threads.
*/
SDL_LockMutex(cond->lock);
++cond->waiting;
SDL_UnlockMutex(cond->lock);
/* Unlock the mutex, as is required by condition variable semantics */
SDL_UnlockMutex(mutex);
/* Wait for a signal */
if (ms == SDL_MUTEX_MAXWAIT) {
retval = SDL_SemWait(cond->wait_sem);
} else {
retval = SDL_SemWaitTimeout(cond->wait_sem, ms);
}
/* Let the signaler know we have completed the wait, otherwise
the signaler can race ahead and get the condition semaphore
if we are stopped between the mutex unlock and semaphore wait,
giving a deadlock. See the following URL for details:
http://www-classic.be.com/aboutbe/benewsletter/volume_III/Issue40.html
*/
SDL_LockMutex(cond->lock);
if (cond->signals > 0) {
/* If we timed out, we need to eat a condition signal */
if (retval > 0) {
SDL_SemWait(cond->wait_sem);
}
/* We always notify the signal thread that we are done */
SDL_SemPost(cond->wait_done);
/* Signal handshake complete */
--cond->signals;
}
--cond->waiting;
SDL_UnlockMutex(cond->lock);
/* Lock the mutex, as is required by condition variable semantics */
SDL_LockMutex(mutex);
return retval;
Apr 26, 2001
Apr 26, 2001
214
215
216
}
/* Wait on the condition variable forever */
Jul 10, 2006
Jul 10, 2006
217
218
int
SDL_CondWait(SDL_cond * cond, SDL_mutex * mutex)
Apr 26, 2001
Apr 26, 2001
219
{
Jul 10, 2006
Jul 10, 2006
220
return SDL_CondWaitTimeout(cond, mutex, SDL_MUTEX_MAXWAIT);
Apr 26, 2001
Apr 26, 2001
221
}
Jul 10, 2006
Jul 10, 2006
222
223
/* vi: set ts=4 sw=4 expandtab: */