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

Latest commit

 

History

History
230 lines (198 loc) · 4.67 KB

SDL_syssem.c

File metadata and controls

230 lines (198 loc) · 4.67 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "SDL_thread.h"
#include "SDL_timer.h"
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <errno.h>
#include "SDL_error.h"
#include "SDL_thread.h"
May 28, 2006
May 28, 2006
39
40
41
struct SDL_semaphore
{
int id;
Apr 26, 2001
Apr 26, 2001
42
43
44
};
/* Not defined by many operating systems, use configure to detect */
Feb 16, 2006
Feb 16, 2006
45
/*
Apr 26, 2001
Apr 26, 2001
46
47
48
49
50
51
52
#if !defined(HAVE_SEMUN)
union semun {
int val;
struct semid_ds *buf;
ushort *array;
};
#endif
Feb 16, 2006
Feb 16, 2006
53
*/
Apr 26, 2001
Apr 26, 2001
54
55
static struct sembuf op_trywait[2] = {
May 28, 2006
May 28, 2006
56
{0, -1, (IPC_NOWAIT | SEM_UNDO)} /* Decrement semaphore, no block */
Apr 26, 2001
Apr 26, 2001
57
58
};
static struct sembuf op_wait[2] = {
May 28, 2006
May 28, 2006
59
{0, -1, SEM_UNDO} /* Decrement semaphore */
Apr 26, 2001
Apr 26, 2001
60
61
};
static struct sembuf op_post[1] = {
May 28, 2006
May 28, 2006
62
{0, 1, (IPC_NOWAIT | SEM_UNDO)} /* Increment semaphore */
Apr 26, 2001
Apr 26, 2001
63
64
65
};
/* Create a blockable semaphore */
May 28, 2006
May 28, 2006
66
SDL_sem *
May 29, 2006
May 29, 2006
67
SDL_CreateSemaphore(Uint32 initial_value)
Apr 26, 2001
Apr 26, 2001
68
{
May 28, 2006
May 28, 2006
69
70
71
72
extern int _creating_thread_lock; /* SDL_threads.c */
SDL_sem *sem;
union semun init;
May 29, 2006
May 29, 2006
73
sem = (SDL_sem *) SDL_malloc(sizeof(*sem));
May 28, 2006
May 28, 2006
74
if (sem == NULL) {
May 29, 2006
May 29, 2006
75
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
76
77
return (NULL);
}
May 29, 2006
May 29, 2006
78
sem->id = semget(IPC_PRIVATE, 1, (0600 | IPC_CREAT));
May 28, 2006
May 28, 2006
79
if (sem->id < 0) {
May 29, 2006
May 29, 2006
80
81
SDL_SetError("Couldn't create semaphore");
SDL_free(sem);
May 28, 2006
May 28, 2006
82
83
84
return (NULL);
}
init.val = initial_value; /* Initialize semaphore */
May 29, 2006
May 29, 2006
85
semctl(sem->id, 0, SETVAL, init);
May 28, 2006
May 28, 2006
86
return (sem);
Apr 26, 2001
Apr 26, 2001
87
88
}
May 28, 2006
May 28, 2006
89
void
May 29, 2006
May 29, 2006
90
SDL_DestroySemaphore(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
91
{
May 28, 2006
May 28, 2006
92
if (sem) {
Feb 21, 2006
Feb 21, 2006
93
#ifdef __IRIX__
May 29, 2006
May 29, 2006
94
semctl(sem->id, 0, IPC_RMID);
Apr 26, 2001
Apr 26, 2001
95
#else
May 28, 2006
May 28, 2006
96
97
union semun dummy;
dummy.val = 0;
May 29, 2006
May 29, 2006
98
semctl(sem->id, 0, IPC_RMID, dummy);
Apr 26, 2001
Apr 26, 2001
99
#endif
May 29, 2006
May 29, 2006
100
SDL_free(sem);
May 28, 2006
May 28, 2006
101
}
Apr 26, 2001
Apr 26, 2001
102
103
}
May 28, 2006
May 28, 2006
104
int
May 29, 2006
May 29, 2006
105
SDL_SemTryWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
106
{
May 28, 2006
May 28, 2006
107
int retval;
Apr 26, 2001
Apr 26, 2001
108
May 28, 2006
May 28, 2006
109
if (!sem) {
May 29, 2006
May 29, 2006
110
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
111
112
return -1;
}
Apr 26, 2001
Apr 26, 2001
113
May 28, 2006
May 28, 2006
114
retval = 0;
Apr 26, 2001
Apr 26, 2001
115
tryagain:
May 29, 2006
May 29, 2006
116
if (semop(sem->id, op_trywait, 1) < 0) {
May 28, 2006
May 28, 2006
117
118
119
120
121
122
if (errno == EINTR) {
goto tryagain;
}
retval = SDL_MUTEX_TIMEDOUT;
}
return retval;
Apr 26, 2001
Apr 26, 2001
123
124
}
May 28, 2006
May 28, 2006
125
int
May 29, 2006
May 29, 2006
126
SDL_SemWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
127
{
May 28, 2006
May 28, 2006
128
int retval;
Apr 26, 2001
Apr 26, 2001
129
May 28, 2006
May 28, 2006
130
if (!sem) {
May 29, 2006
May 29, 2006
131
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
132
133
return -1;
}
Apr 26, 2001
Apr 26, 2001
134
May 28, 2006
May 28, 2006
135
retval = 0;
Apr 26, 2001
Apr 26, 2001
136
tryagain:
May 29, 2006
May 29, 2006
137
if (semop(sem->id, op_wait, 1) < 0) {
May 28, 2006
May 28, 2006
138
139
140
if (errno == EINTR) {
goto tryagain;
}
May 29, 2006
May 29, 2006
141
SDL_SetError("Semaphore operation error");
May 28, 2006
May 28, 2006
142
143
144
retval = -1;
}
return retval;
Apr 26, 2001
Apr 26, 2001
145
146
}
May 28, 2006
May 28, 2006
147
int
May 29, 2006
May 29, 2006
148
SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout)
Apr 26, 2001
Apr 26, 2001
149
{
May 28, 2006
May 28, 2006
150
151
152
int retval;
if (!sem) {
May 29, 2006
May 29, 2006
153
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
154
155
156
157
158
return -1;
}
/* Try the easy cases first */
if (timeout == 0) {
May 29, 2006
May 29, 2006
159
return SDL_SemTryWait(sem);
May 28, 2006
May 28, 2006
160
161
}
if (timeout == SDL_MUTEX_MAXWAIT) {
May 29, 2006
May 29, 2006
162
return SDL_SemWait(sem);
May 28, 2006
May 28, 2006
163
164
165
}
/* Ack! We have to busy wait... */
May 29, 2006
May 29, 2006
166
timeout += SDL_GetTicks();
May 28, 2006
May 28, 2006
167
do {
May 29, 2006
May 29, 2006
168
retval = SDL_SemTryWait(sem);
May 28, 2006
May 28, 2006
169
170
171
if (retval == 0) {
break;
}
May 29, 2006
May 29, 2006
172
SDL_Delay(1);
May 28, 2006
May 28, 2006
173
}
May 29, 2006
May 29, 2006
174
while (SDL_GetTicks() < timeout);
May 28, 2006
May 28, 2006
175
176
return retval;
Apr 26, 2001
Apr 26, 2001
177
178
}
May 28, 2006
May 28, 2006
179
Uint32
May 29, 2006
May 29, 2006
180
SDL_SemValue(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
181
{
May 28, 2006
May 28, 2006
182
183
184
185
186
187
int semval;
Uint32 value;
value = 0;
if (sem) {
tryagain:
Feb 21, 2006
Feb 21, 2006
188
#ifdef __IRIX__
May 29, 2006
May 29, 2006
189
semval = semctl(sem->id, 0, GETVAL);
Apr 26, 2001
Apr 26, 2001
190
#else
May 28, 2006
May 28, 2006
191
192
193
{
union semun arg;
arg.val = 0;
May 29, 2006
May 29, 2006
194
semval = semctl(sem->id, 0, GETVAL, arg);
May 28, 2006
May 28, 2006
195
}
Apr 26, 2001
Apr 26, 2001
196
#endif
May 28, 2006
May 28, 2006
197
198
199
200
201
202
203
204
205
if (semval < 0) {
if (errno == EINTR) {
goto tryagain;
}
} else {
value = (Uint32) semval;
}
}
return value;
Apr 26, 2001
Apr 26, 2001
206
207
}
May 28, 2006
May 28, 2006
208
int
May 29, 2006
May 29, 2006
209
SDL_SemPost(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
210
{
May 28, 2006
May 28, 2006
211
int retval;
Apr 26, 2001
Apr 26, 2001
212
May 28, 2006
May 28, 2006
213
if (!sem) {
May 29, 2006
May 29, 2006
214
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
215
216
return -1;
}
Apr 26, 2001
Apr 26, 2001
217
May 28, 2006
May 28, 2006
218
retval = 0;
Apr 26, 2001
Apr 26, 2001
219
tryagain:
May 29, 2006
May 29, 2006
220
if (semop(sem->id, op_post, 1) < 0) {
May 28, 2006
May 28, 2006
221
222
223
if (errno == EINTR) {
goto tryagain;
}
May 29, 2006
May 29, 2006
224
SDL_SetError("Semaphore operation error");
May 28, 2006
May 28, 2006
225
226
227
retval = -1;
}
return retval;
Apr 26, 2001
Apr 26, 2001
228
}
May 28, 2006
May 28, 2006
229
230
/* vi: set ts=4 sw=4 expandtab: */