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

Latest commit

 

History

History
241 lines (208 loc) · 7.08 KB

SDL_atomic.h

File metadata and controls

241 lines (208 loc) · 7.08 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2006 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
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
Lesser General Public License for more details.
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
Sam Lantinga
slouken@libsdl.org
Sep 17, 2009
Sep 17, 2009
21
22
Contributed by Bob Pendleton, bob@pendleton.com
23
24
25
26
27
*/
/**
* \file SDL_atomic.h
*
Jun 24, 2009
Jun 24, 2009
28
* Atomic operations.
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
*/
#ifndef _SDL_atomic_h_
#define _SDL_atomic_h_
#include "SDL_stdinc.h"
#include "SDL_platform.h"
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
#endif
Jun 24, 2009
Jun 24, 2009
46
/**
Jun 29, 2009
Jun 29, 2009
47
48
49
50
* These operations may, or may not, actually be implemented using
* processor specific atomic operations. When possible they are
* implemented as true processor specific atomic operations. When that
* is not possible the are implemented using locks that *do* use the
Sep 17, 2009
Sep 17, 2009
51
52
53
54
55
* available atomic operations.
*
* At the very minimum spin locks must be implemented. Without spin
* locks it is not possible (AFAICT) to emulate the rest of the atomic
* operations.
Jun 24, 2009
Jun 24, 2009
56
*/
Jun 10, 2009
Jun 10, 2009
57
Jun 29, 2009
Jun 29, 2009
58
/* Function prototypes */
Sep 17, 2009
Sep 17, 2009
60
61
62
63
64
65
66
67
/**
* SDL AtomicLock.
*
* The spin lock functions and type are required and can not be
* emulated because they are used in the emulation code.
*/
typedef volatile Uint32 SDL_SpinLock;
Jun 24, 2009
Jun 24, 2009
69
/**
Sep 17, 2009
Sep 17, 2009
70
* \fn void SDL_AtomicLock(SDL_SpinLock *lock);
Jun 24, 2009
Jun 24, 2009
71
*
Sep 17, 2009
Sep 17, 2009
72
* \brief Lock a spin lock by setting it to a none zero value.
Jun 24, 2009
Jun 24, 2009
73
*
Sep 17, 2009
Sep 17, 2009
74
* \param lock points to the lock.
Jun 24, 2009
Jun 24, 2009
75
76
*
*/
Sep 17, 2009
Sep 17, 2009
77
extern DECLSPEC void SDLCALL SDL_AtomicLock(SDL_SpinLock *lock);
Aug 11, 2009
Aug 11, 2009
78
Jun 24, 2009
Jun 24, 2009
79
/**
Sep 17, 2009
Sep 17, 2009
80
* \fn void SDL_AtomicUnlock(SDL_SpinLock *lock);
Jun 24, 2009
Jun 24, 2009
81
*
Sep 17, 2009
Sep 17, 2009
82
* \brief Unlock a spin lock by setting it to 0. Always returns immediately
Jun 24, 2009
Jun 24, 2009
83
*
Sep 17, 2009
Sep 17, 2009
84
* \param lock points to the lock.
Jun 24, 2009
Jun 24, 2009
85
86
*
*/
Sep 17, 2009
Sep 17, 2009
87
88
89
90
extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
/* 32 bit atomic operations */
Jun 24, 2009
Jun 24, 2009
91
/**
Jul 9, 2009
Jul 9, 2009
92
* \fn SDL_bool SDL_AtomicTestThenSet32(volatile Uint32 * ptr);
Jun 24, 2009
Jun 24, 2009
93
*
Sep 17, 2009
Sep 17, 2009
94
* \brief Check to see if *ptr == 0 and set it to 1.
Jun 24, 2009
Jun 24, 2009
95
96
97
98
99
100
101
*
* \return SDL_True if the value pointed to by ptr was zero and
* SDL_False if it was not zero
*
* \param ptr points to the value to be tested and set.
*
*/
Jul 9, 2009
Jul 9, 2009
102
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTestThenSet32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
103
Jun 24, 2009
Jun 24, 2009
104
/**
Jul 9, 2009
Jul 9, 2009
105
* \fn void SDL_AtomicClear32(volatile Uint32 * ptr);
Jun 24, 2009
Jun 24, 2009
106
107
108
109
110
111
*
* \brief set the value pointed to by ptr to be zero.
*
* \param ptr address of the value to be set to zero
*
*/
Jul 9, 2009
Jul 9, 2009
112
extern DECLSPEC void SDLCALL SDL_AtomicClear32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
113
Jun 24, 2009
Jun 24, 2009
114
/**
Jul 9, 2009
Jul 9, 2009
115
* \fn Uint32 SDL_AtomicFetchThenIncrement32(volatile Uint32 * ptr);
Jun 24, 2009
Jun 24, 2009
116
117
118
119
120
121
122
123
124
*
* \brief fetch the current value of *ptr and then increment that
* value in place.
*
* \return the value before it was incremented.
*
* \param ptr address of the value to fetch and increment
*
*/
Jul 9, 2009
Jul 9, 2009
125
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenIncrement32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
126
Jun 24, 2009
Jun 24, 2009
127
/**
Jul 9, 2009
Jul 9, 2009
128
* \fn Uint32 SDL_AtomicFetchThenDecrement32(volatile Uint32 * ptr);
Jun 24, 2009
Jun 24, 2009
129
130
131
132
133
134
135
136
*
* \brief fetch *ptr and then decrement the value in place.
*
* \return the value before it was decremented.
*
* \param ptr address of the value to fetch and drement
*
*/
Jul 9, 2009
Jul 9, 2009
137
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenDecrement32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
138
Jun 24, 2009
Jun 24, 2009
139
/**
Jul 9, 2009
Jul 9, 2009
140
* \fn Uint32 SDL_AtomicFetchThenAdd32(volatile Uint32 * ptr, Uint32 value);
Jun 24, 2009
Jun 24, 2009
141
142
143
144
145
146
147
148
149
*
* \brief fetch the current value at ptr and then add value to *ptr.
*
* \return *ptr before the addition took place.
*
* \param ptr the address of data we are changing.
* \param value the value to add to *ptr.
*
*/
Jul 9, 2009
Jul 9, 2009
150
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenAdd32(volatile Uint32 * ptr, Uint32 value);
Aug 11, 2009
Aug 11, 2009
151
Jun 24, 2009
Jun 24, 2009
152
/**
Jul 9, 2009
Jul 9, 2009
153
* \fn Uint32 SDL_AtomicFetchThenSubtract32(volatile Uint32 * ptr, Uint32 value);
Jun 24, 2009
Jun 24, 2009
154
155
156
157
158
159
160
161
162
*
* \brief Fetch *ptr and then subtract value from it.
*
* \return *ptr before the subtraction took place.
*
* \param ptr the address of the data being changed.
* \param value the value to subtract from *ptr.
*
*/
Jul 9, 2009
Jul 9, 2009
163
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenSubtract32(volatile Uint32 * ptr, Uint32 value);
Aug 11, 2009
Aug 11, 2009
164
Jun 24, 2009
Jun 24, 2009
165
/**
Jul 9, 2009
Jul 9, 2009
166
* \fn Uint32 SDL_AtomicIncrementThenFetch32(volatile Uint32 * ptr);
Jun 24, 2009
Jun 24, 2009
167
168
169
170
171
172
173
174
*
* \brief Add one to the data pointed to by ptr and return that value.
*
* \return the incremented value.
*
* \param ptr address of the data to increment.
*
*/
Jul 9, 2009
Jul 9, 2009
175
extern DECLSPEC Uint32 SDLCALL SDL_AtomicIncrementThenFetch32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
176
Jun 24, 2009
Jun 24, 2009
177
/**
Jul 9, 2009
Jul 9, 2009
178
* \fn Uint32 SDL_AtomicDecrementThenFetch32(volatile Uint32 * ptr);
Jun 24, 2009
Jun 24, 2009
179
180
181
182
183
184
185
186
*
* \brief Subtract one from data pointed to by ptr and return the new value.
*
* \return The decremented value.
*
* \param ptr The address of the data to decrement.
*
*/
Jul 9, 2009
Jul 9, 2009
187
extern DECLSPEC Uint32 SDLCALL SDL_AtomicDecrementThenFetch32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
188
Jun 24, 2009
Jun 24, 2009
189
/**
Jul 9, 2009
Jul 9, 2009
190
* \fn Uint32 SDL_AtomicAddThenFetch32(volatile Uint32 * ptr, Uint32 value);
Jun 24, 2009
Jun 24, 2009
191
192
193
194
195
196
197
198
199
*
* \brief Add value to the data pointed to by ptr and return result.
*
* \return The sum of *ptr and value.
*
* \param ptr The address of the data to be modified.
* \param value The value to be added.
*
*/
Jul 9, 2009
Jul 9, 2009
200
extern DECLSPEC Uint32 SDLCALL SDL_AtomicAddThenFetch32(volatile Uint32 * ptr, Uint32 value);
Aug 11, 2009
Aug 11, 2009
201
Jun 24, 2009
Jun 24, 2009
202
/**
Jul 9, 2009
Jul 9, 2009
203
* \fn Uint32 SDL_AtomicSubtractThenFetch32(volatile Uint32 * ptr, Uint32 value);
Jun 24, 2009
Jun 24, 2009
204
205
206
207
208
209
210
211
212
*
* \brief Subtract value from the data pointed to by ptr and return the result.
*
* \return the difference between *ptr and value.
*
* \param ptr The address of the data to be modified.
* \param value The value to be subtracted.
*
*/
Jul 9, 2009
Jul 9, 2009
213
extern DECLSPEC Uint32 SDLCALL SDL_AtomicSubtractThenFetch32(volatile Uint32 * ptr, Uint32 value);
Jun 24, 2009
Jun 24, 2009
214
Jun 29, 2009
Jun 29, 2009
215
/* 64 bit atomic operations */
Jun 24, 2009
Jun 24, 2009
216
217
#ifdef SDL_HAS_64BIT_TYPE
Jul 9, 2009
Jul 9, 2009
218
219
220
221
222
223
224
225
226
227
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTestThenSet64(volatile Uint64 * ptr);
extern DECLSPEC void SDLCALL SDL_AtomicClear64(volatile Uint64 * ptr);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicFetchThenIncrement64(volatile Uint64 * ptr);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicFetchThenDecrement64(volatile Uint64 * ptr);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicFetchThenAdd64(volatile Uint64 * ptr, Uint64 value);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicFetchThenSubtract64(volatile Uint64 * ptr, Uint64 value);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicIncrementThenFetch64(volatile Uint64 * ptr);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicDecrementThenFetch64(volatile Uint64 * ptr);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicAddThenFetch64(volatile Uint64 * ptr, Uint64 value);
extern DECLSPEC Uint64 SDLCALL SDL_AtomicSubtractThenFetch64(volatile Uint64 * ptr, Uint64 value);
Jun 29, 2009
Jun 29, 2009
228
#endif /* SDL_HAS_64BIT_TYPE */
229
230
231
232
233
234
235
236
237
238
239
240
241
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
}
/* *INDENT-ON* */
#endif
#include "close_code.h"
#endif /* _SDL_atomic_h_ */
/* vi: set ts=4 sw=4 expandtab: */