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

Latest commit

 

History

History
225 lines (188 loc) · 4.65 KB

SDL_syssem.c

File metadata and controls

225 lines (188 loc) · 4.65 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
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.
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:
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
/* An implementation of semaphores using mutexes and condition variables */
#include "SDL_timer.h"
#include "SDL_thread.h"
#include "SDL_systhread_c.h"
Feb 16, 2006
Feb 16, 2006
30
#if SDL_THREADS_DISABLED
Apr 26, 2001
Apr 26, 2001
31
Jul 10, 2006
Jul 10, 2006
32
33
SDL_sem *
SDL_CreateSemaphore(Uint32 initial_value)
Apr 26, 2001
Apr 26, 2001
34
{
Jul 10, 2006
Jul 10, 2006
35
36
SDL_SetError("SDL not configured with thread support");
return (SDL_sem *) 0;
Apr 26, 2001
Apr 26, 2001
37
38
}
Jul 10, 2006
Jul 10, 2006
39
40
void
SDL_DestroySemaphore(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
41
{
Jul 10, 2006
Jul 10, 2006
42
return;
Apr 26, 2001
Apr 26, 2001
43
44
}
Jul 10, 2006
Jul 10, 2006
45
46
int
SDL_SemTryWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
47
{
Jul 10, 2006
Jul 10, 2006
48
49
SDL_SetError("SDL not configured with thread support");
return -1;
Apr 26, 2001
Apr 26, 2001
50
51
}
Jul 10, 2006
Jul 10, 2006
52
53
int
SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout)
Apr 26, 2001
Apr 26, 2001
54
{
Jul 10, 2006
Jul 10, 2006
55
56
SDL_SetError("SDL not configured with thread support");
return -1;
Apr 26, 2001
Apr 26, 2001
57
58
}
Jul 10, 2006
Jul 10, 2006
59
60
int
SDL_SemWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
61
{
Jul 10, 2006
Jul 10, 2006
62
63
SDL_SetError("SDL not configured with thread support");
return -1;
Apr 26, 2001
Apr 26, 2001
64
65
}
Jul 10, 2006
Jul 10, 2006
66
67
Uint32
SDL_SemValue(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
68
{
Jul 10, 2006
Jul 10, 2006
69
return 0;
Apr 26, 2001
Apr 26, 2001
70
71
}
Jul 10, 2006
Jul 10, 2006
72
73
int
SDL_SemPost(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
74
{
Jul 10, 2006
Jul 10, 2006
75
76
SDL_SetError("SDL not configured with thread support");
return -1;
Apr 26, 2001
Apr 26, 2001
77
78
79
80
81
82
}
#else
struct SDL_semaphore
{
Jul 10, 2006
Jul 10, 2006
83
84
85
86
Uint32 count;
Uint32 waiters_count;
SDL_mutex *count_lock;
SDL_cond *count_nonzero;
Apr 26, 2001
Apr 26, 2001
87
88
};
Jul 10, 2006
Jul 10, 2006
89
90
SDL_sem *
SDL_CreateSemaphore(Uint32 initial_value)
Apr 26, 2001
Apr 26, 2001
91
{
Jul 10, 2006
Jul 10, 2006
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
SDL_sem *sem;
sem = (SDL_sem *) SDL_malloc(sizeof(*sem));
if (!sem) {
SDL_OutOfMemory();
return NULL;
}
sem->count = initial_value;
sem->waiters_count = 0;
sem->count_lock = SDL_CreateMutex();
sem->count_nonzero = SDL_CreateCond();
if (!sem->count_lock || !sem->count_nonzero) {
SDL_DestroySemaphore(sem);
return NULL;
}
return sem;
Apr 26, 2001
Apr 26, 2001
110
111
112
113
114
}
/* WARNING:
You cannot call this function when another thread is using the semaphore.
*/
Jul 10, 2006
Jul 10, 2006
115
116
void
SDL_DestroySemaphore(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
117
{
Jul 10, 2006
Jul 10, 2006
118
119
120
121
122
123
124
125
126
127
128
129
130
131
if (sem) {
sem->count = 0xFFFFFFFF;
while (sem->waiters_count > 0) {
SDL_CondSignal(sem->count_nonzero);
SDL_Delay(10);
}
SDL_DestroyCond(sem->count_nonzero);
if (sem->count_lock) {
SDL_mutexP(sem->count_lock);
SDL_mutexV(sem->count_lock);
SDL_DestroyMutex(sem->count_lock);
}
SDL_free(sem);
}
Apr 26, 2001
Apr 26, 2001
132
133
}
Jul 10, 2006
Jul 10, 2006
134
135
int
SDL_SemTryWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
136
{
Jul 10, 2006
Jul 10, 2006
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
int retval;
if (!sem) {
SDL_SetError("Passed a NULL semaphore");
return -1;
}
retval = SDL_MUTEX_TIMEDOUT;
SDL_LockMutex(sem->count_lock);
if (sem->count > 0) {
--sem->count;
retval = 0;
}
SDL_UnlockMutex(sem->count_lock);
return retval;
Apr 26, 2001
Apr 26, 2001
153
154
}
Jul 10, 2006
Jul 10, 2006
155
156
int
SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout)
Apr 26, 2001
Apr 26, 2001
157
{
Jul 10, 2006
Jul 10, 2006
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
int retval;
if (!sem) {
SDL_SetError("Passed a NULL semaphore");
return -1;
}
/* A timeout of 0 is an easy case */
if (timeout == 0) {
return SDL_SemTryWait(sem);
}
SDL_LockMutex(sem->count_lock);
++sem->waiters_count;
retval = 0;
while ((sem->count == 0) && (retval != SDL_MUTEX_TIMEDOUT)) {
retval = SDL_CondWaitTimeout(sem->count_nonzero,
sem->count_lock, timeout);
}
--sem->waiters_count;
Sep 21, 2009
Sep 21, 2009
178
179
180
if (retval == 0) {
--sem->count;
}
Jul 10, 2006
Jul 10, 2006
181
182
183
SDL_UnlockMutex(sem->count_lock);
return retval;
Apr 26, 2001
Apr 26, 2001
184
185
}
Jul 10, 2006
Jul 10, 2006
186
187
int
SDL_SemWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
188
{
Jul 10, 2006
Jul 10, 2006
189
return SDL_SemWaitTimeout(sem, SDL_MUTEX_MAXWAIT);
Apr 26, 2001
Apr 26, 2001
190
191
}
Jul 10, 2006
Jul 10, 2006
192
193
Uint32
SDL_SemValue(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
194
{
Jul 10, 2006
Jul 10, 2006
195
196
197
198
199
200
201
202
203
Uint32 value;
value = 0;
if (sem) {
SDL_LockMutex(sem->count_lock);
value = sem->count;
SDL_UnlockMutex(sem->count_lock);
}
return value;
Apr 26, 2001
Apr 26, 2001
204
205
}
Jul 10, 2006
Jul 10, 2006
206
207
int
SDL_SemPost(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
208
{
Jul 10, 2006
Jul 10, 2006
209
210
211
212
213
214
215
216
217
218
219
220
221
if (!sem) {
SDL_SetError("Passed a NULL semaphore");
return -1;
}
SDL_LockMutex(sem->count_lock);
if (sem->waiters_count > 0) {
SDL_CondSignal(sem->count_nonzero);
}
++sem->count;
SDL_UnlockMutex(sem->count_lock);
return 0;
Apr 26, 2001
Apr 26, 2001
222
223
}
Feb 16, 2006
Feb 16, 2006
224
#endif /* SDL_THREADS_DISABLED */
Jul 10, 2006
Jul 10, 2006
225
/* vi: set ts=4 sw=4 expandtab: */