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

Latest commit

 

History

History
154 lines (118 loc) · 2.99 KB

SDL_syssem.c

File metadata and controls

154 lines (118 loc) · 2.99 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
May 10, 2001
May 10, 2001
24
/* An implementation of semaphores using mutexes and condition variables */
Apr 26, 2001
Apr 26, 2001
25
26
27
28
29
30
31
#include "SDL_thread.h"
#include "SDL_systhread_c.h"
struct SDL_semaphore
{
May 28, 2006
May 28, 2006
32
struct SignalSemaphore Sem;
Apr 26, 2001
Apr 26, 2001
33
34
};
May 10, 2001
May 10, 2001
35
#undef D
Apr 26, 2001
Apr 26, 2001
36
37
38
#define D(x)
May 28, 2006
May 28, 2006
39
SDL_sem *
May 29, 2006
May 29, 2006
40
SDL_CreateSemaphore(Uint32 initial_value)
Apr 26, 2001
Apr 26, 2001
41
{
May 28, 2006
May 28, 2006
42
SDL_sem *sem;
Apr 26, 2001
Apr 26, 2001
43
May 29, 2006
May 29, 2006
44
sem = (SDL_sem *) SDL_malloc(sizeof(*sem));
May 10, 2001
May 10, 2001
45
May 28, 2006
May 28, 2006
46
if (!sem) {
May 29, 2006
May 29, 2006
47
SDL_OutOfMemory();
May 28, 2006
May 28, 2006
48
49
return (0);
}
Apr 26, 2001
Apr 26, 2001
50
May 29, 2006
May 29, 2006
51
D(bug("Creating semaphore %lx...\n", sem));
Apr 26, 2001
Apr 26, 2001
52
May 29, 2006
May 29, 2006
53
SDL_memset(sem, 0, sizeof(*sem));
May 10, 2001
May 10, 2001
54
May 29, 2006
May 29, 2006
55
InitSemaphore(&sem->Sem);
Dec 16, 2001
Dec 16, 2001
56
May 28, 2006
May 28, 2006
57
return (sem);
Apr 26, 2001
Apr 26, 2001
58
59
}
May 28, 2006
May 28, 2006
60
void
May 29, 2006
May 29, 2006
61
SDL_DestroySemaphore(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
62
{
May 29, 2006
May 29, 2006
63
D(bug("Destroying semaphore %lx...\n", sem));
Apr 26, 2001
Apr 26, 2001
64
May 28, 2006
May 28, 2006
65
if (sem) {
Apr 26, 2001
Apr 26, 2001
66
// Condizioni per liberare i task in attesa?
May 29, 2006
May 29, 2006
67
SDL_free(sem);
May 28, 2006
May 28, 2006
68
}
Apr 26, 2001
Apr 26, 2001
69
70
}
May 28, 2006
May 28, 2006
71
int
May 29, 2006
May 29, 2006
72
SDL_SemTryWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
73
{
May 28, 2006
May 28, 2006
74
if (!sem) {
May 29, 2006
May 29, 2006
75
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
76
77
return -1;
}
Apr 26, 2001
Apr 26, 2001
78
May 29, 2006
May 29, 2006
79
D(bug("TryWait semaphore...%lx\n", sem));
Apr 26, 2001
Apr 26, 2001
80
May 29, 2006
May 29, 2006
81
ObtainSemaphore(&sem->Sem);
May 28, 2006
May 28, 2006
82
// ReleaseSemaphore(&sem->Sem);
May 10, 2001
May 10, 2001
83
May 28, 2006
May 28, 2006
84
return 1;
Apr 26, 2001
Apr 26, 2001
85
86
}
May 28, 2006
May 28, 2006
87
int
May 29, 2006
May 29, 2006
88
SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout)
Apr 26, 2001
Apr 26, 2001
89
{
May 28, 2006
May 28, 2006
90
91
92
93
int retval;
if (!sem) {
May 29, 2006
May 29, 2006
94
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
95
96
97
return -1;
}
May 29, 2006
May 29, 2006
98
D(bug("WaitTimeout (%ld) semaphore...%lx\n", timeout, sem));
May 28, 2006
May 28, 2006
99
100
101
/* A timeout of 0 is an easy case */
if (timeout == 0) {
May 29, 2006
May 29, 2006
102
ObtainSemaphore(&sem->Sem);
May 28, 2006
May 28, 2006
103
104
return 1;
}
May 29, 2006
May 29, 2006
105
106
107
if (!(retval = AttemptSemaphore(&sem->Sem))) {
SDL_Delay(timeout);
retval = AttemptSemaphore(&sem->Sem);
May 28, 2006
May 28, 2006
108
109
110
111
112
113
114
115
}
if (retval == TRUE) {
// ReleaseSemaphore(&sem->Sem);
retval = 1;
}
return retval;
Apr 26, 2001
Apr 26, 2001
116
117
}
May 28, 2006
May 28, 2006
118
int
May 29, 2006
May 29, 2006
119
SDL_SemWait(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
120
{
May 29, 2006
May 29, 2006
121
ObtainSemaphore(&sem->Sem);
May 28, 2006
May 28, 2006
122
return 0;
Apr 26, 2001
Apr 26, 2001
123
124
}
May 28, 2006
May 28, 2006
125
Uint32
May 29, 2006
May 29, 2006
126
SDL_SemValue(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
127
{
May 28, 2006
May 28, 2006
128
129
130
131
132
133
134
135
136
137
138
Uint32 value;
value = 0;
if (sem) {
#ifdef STORMC4_WOS
value = sem->Sem.ssppc_SS.ss_NestCount;
#else
value = sem->Sem.ss_NestCount;
#endif
}
return value;
Apr 26, 2001
Apr 26, 2001
139
140
}
May 28, 2006
May 28, 2006
141
int
May 29, 2006
May 29, 2006
142
SDL_SemPost(SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
143
{
May 28, 2006
May 28, 2006
144
if (!sem) {
May 29, 2006
May 29, 2006
145
SDL_SetError("Passed a NULL semaphore");
May 28, 2006
May 28, 2006
146
147
return -1;
}
May 29, 2006
May 29, 2006
148
D(bug("SemPost semaphore...%lx\n", sem));
May 28, 2006
May 28, 2006
149
May 29, 2006
May 29, 2006
150
ReleaseSemaphore(&sem->Sem);
May 28, 2006
May 28, 2006
151
return 0;
Apr 26, 2001
Apr 26, 2001
152
153
}
May 28, 2006
May 28, 2006
154
/* vi: set ts=4 sw=4 expandtab: */