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) · 3.03 KB

SDL_syssem.c

File metadata and controls

154 lines (118 loc) · 3.03 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
40
SDL_sem *
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 28, 2006
May 28, 2006
44
sem = (SDL_sem *) SDL_malloc (sizeof (*sem));
May 10, 2001
May 10, 2001
45
May 28, 2006
May 28, 2006
46
47
48
49
if (!sem) {
SDL_OutOfMemory ();
return (0);
}
Apr 26, 2001
Apr 26, 2001
50
May 28, 2006
May 28, 2006
51
D (bug ("Creating semaphore %lx...\n", sem));
Apr 26, 2001
Apr 26, 2001
52
May 28, 2006
May 28, 2006
53
SDL_memset (sem, 0, sizeof (*sem));
May 10, 2001
May 10, 2001
54
May 28, 2006
May 28, 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
61
void
SDL_DestroySemaphore (SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
62
{
May 28, 2006
May 28, 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 28, 2006
May 28, 2006
67
68
SDL_free (sem);
}
Apr 26, 2001
Apr 26, 2001
69
70
}
May 28, 2006
May 28, 2006
71
72
int
SDL_SemTryWait (SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
73
{
May 28, 2006
May 28, 2006
74
75
76
77
if (!sem) {
SDL_SetError ("Passed a NULL semaphore");
return -1;
}
Apr 26, 2001
Apr 26, 2001
78
May 28, 2006
May 28, 2006
79
D (bug ("TryWait semaphore...%lx\n", sem));
Apr 26, 2001
Apr 26, 2001
80
May 28, 2006
May 28, 2006
81
82
ObtainSemaphore (&sem->Sem);
// 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
88
int
SDL_SemWaitTimeout (SDL_sem * sem, Uint32 timeout)
Apr 26, 2001
Apr 26, 2001
89
{
May 28, 2006
May 28, 2006
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
int retval;
if (!sem) {
SDL_SetError ("Passed a NULL semaphore");
return -1;
}
D (bug ("WaitTimeout (%ld) semaphore...%lx\n", timeout, sem));
/* A timeout of 0 is an easy case */
if (timeout == 0) {
ObtainSemaphore (&sem->Sem);
return 1;
}
if (!(retval = AttemptSemaphore (&sem->Sem))) {
SDL_Delay (timeout);
retval = AttemptSemaphore (&sem->Sem);
}
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
119
int
SDL_SemWait (SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
120
{
May 28, 2006
May 28, 2006
121
122
ObtainSemaphore (&sem->Sem);
return 0;
Apr 26, 2001
Apr 26, 2001
123
124
}
May 28, 2006
May 28, 2006
125
126
Uint32
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
142
int
SDL_SemPost (SDL_sem * sem)
Apr 26, 2001
Apr 26, 2001
143
{
May 28, 2006
May 28, 2006
144
145
146
147
148
149
150
151
if (!sem) {
SDL_SetError ("Passed a NULL semaphore");
return -1;
}
D (bug ("SemPost semaphore...%lx\n", sem));
ReleaseSemaphore (&sem->Sem);
return 0;
Apr 26, 2001
Apr 26, 2001
152
153
}
May 28, 2006
May 28, 2006
154
/* vi: set ts=4 sw=4 expandtab: */