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

Latest commit

 

History

History
216 lines (181 loc) · 6.54 KB

SDL_atomic.h

File metadata and controls

216 lines (181 loc) · 6.54 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
*/
/**
Oct 19, 2009
Oct 19, 2009
26
27
28
29
30
31
32
33
34
35
36
37
38
* \file SDL_atomic.h
*
* Atomic operations.
*
* 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
* 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.
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
*/
#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 29, 2009
Jun 29, 2009
56
/* Function prototypes */
Sep 17, 2009
Sep 17, 2009
58
/**
Oct 19, 2009
Oct 19, 2009
59
60
61
62
* \name SDL AtomicLock
*
* The spin lock functions and type are required and can not be
* emulated because they are used in the emulation code.
Sep 17, 2009
Sep 17, 2009
63
*/
Oct 19, 2009
Oct 19, 2009
64
/*@{*/
Sep 17, 2009
Sep 17, 2009
65
66
typedef volatile Uint32 SDL_SpinLock;
Jun 24, 2009
Jun 24, 2009
68
/**
Oct 19, 2009
Oct 19, 2009
69
70
71
* \brief Lock a spin lock by setting it to a none zero value.
*
* \param lock Points to the lock.
Jun 24, 2009
Jun 24, 2009
72
*/
Sep 17, 2009
Sep 17, 2009
73
extern DECLSPEC void SDLCALL SDL_AtomicLock(SDL_SpinLock *lock);
Aug 11, 2009
Aug 11, 2009
74
Jun 24, 2009
Jun 24, 2009
75
/**
Oct 19, 2009
Oct 19, 2009
76
* \brief Unlock a spin lock by setting it to 0. Always returns immediately
Jun 24, 2009
Jun 24, 2009
77
*
Oct 19, 2009
Oct 19, 2009
78
* \param lock Points to the lock.
Jun 24, 2009
Jun 24, 2009
79
*/
Sep 17, 2009
Sep 17, 2009
80
81
extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
Oct 19, 2009
Oct 19, 2009
82
/*@}*//*SDL AtomicLock*/
Sep 17, 2009
Sep 17, 2009
83
Jun 24, 2009
Jun 24, 2009
84
/**
Oct 19, 2009
Oct 19, 2009
85
86
87
88
89
90
91
92
93
94
95
* \name 32 bit atomic operations
*/
/*@{*/
/**
* \brief Check to see if \c *ptr == 0 and set it to 1.
*
* \return SDL_True if the value pointed to by \c ptr was zero and
* SDL_False if it was not zero
*
* \param ptr Points to the value to be tested and set.
Jun 24, 2009
Jun 24, 2009
96
*/
Jul 9, 2009
Jul 9, 2009
97
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTestThenSet32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
98
Jun 24, 2009
Jun 24, 2009
99
/**
Oct 19, 2009
Oct 19, 2009
100
101
102
* \brief Set the value pointed to by \c ptr to be zero.
*
* \param ptr Address of the value to be set to zero
Jun 24, 2009
Jun 24, 2009
103
*/
Jul 9, 2009
Jul 9, 2009
104
extern DECLSPEC void SDLCALL SDL_AtomicClear32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
105
Jun 24, 2009
Jun 24, 2009
106
/**
Oct 19, 2009
Oct 19, 2009
107
108
109
110
111
112
* \brief Fetch the current value of \c *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
Jun 24, 2009
Jun 24, 2009
113
*/
Jul 9, 2009
Jul 9, 2009
114
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenIncrement32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
115
Jun 24, 2009
Jun 24, 2009
116
/**
Oct 19, 2009
Oct 19, 2009
117
118
119
120
* \brief Fetch \c *ptr and then decrement the value in place.
*
* \return The value before it was decremented.
*
Jun 28, 2010
Jun 28, 2010
121
* \param ptr Address of the value to fetch and decrement
Jun 24, 2009
Jun 24, 2009
122
*/
Jul 9, 2009
Jul 9, 2009
123
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenDecrement32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
124
Jun 24, 2009
Jun 24, 2009
125
/**
Oct 19, 2009
Oct 19, 2009
126
127
128
129
130
131
* \brief Fetch the current value at \c ptr and then add \c value to \c *ptr.
*
* \return \c *ptr before the addition took place.
*
* \param ptr The address of data we are changing.
* \param value The value to add to \c *ptr.
Jun 24, 2009
Jun 24, 2009
132
*/
Jul 9, 2009
Jul 9, 2009
133
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenAdd32(volatile Uint32 * ptr, Uint32 value);
Aug 11, 2009
Aug 11, 2009
134
Jun 24, 2009
Jun 24, 2009
135
/**
Oct 19, 2009
Oct 19, 2009
136
137
138
139
140
141
* \brief Fetch \c *ptr and then subtract \c value from it.
*
* \return \c *ptr before the subtraction took place.
*
* \param ptr The address of the data being changed.
* \param value The value to subtract from \c *ptr.
Jun 24, 2009
Jun 24, 2009
142
*/
Jul 9, 2009
Jul 9, 2009
143
extern DECLSPEC Uint32 SDLCALL SDL_AtomicFetchThenSubtract32(volatile Uint32 * ptr, Uint32 value);
Aug 11, 2009
Aug 11, 2009
144
Jun 24, 2009
Jun 24, 2009
145
/**
Oct 19, 2009
Oct 19, 2009
146
147
148
149
150
* \brief Add one to the data pointed to by \c ptr and return that value.
*
* \return The incremented value.
*
* \param ptr The address of the data to increment.
Jun 24, 2009
Jun 24, 2009
151
*/
Jul 9, 2009
Jul 9, 2009
152
extern DECLSPEC Uint32 SDLCALL SDL_AtomicIncrementThenFetch32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
153
Jun 24, 2009
Jun 24, 2009
154
/**
Oct 19, 2009
Oct 19, 2009
155
156
157
158
159
* \brief Subtract one from data pointed to by \c ptr and return the new value.
*
* \return The decremented value.
*
* \param ptr The address of the data to decrement.
Jun 24, 2009
Jun 24, 2009
160
*/
Jul 9, 2009
Jul 9, 2009
161
extern DECLSPEC Uint32 SDLCALL SDL_AtomicDecrementThenFetch32(volatile Uint32 * ptr);
Aug 11, 2009
Aug 11, 2009
162
Jun 24, 2009
Jun 24, 2009
163
/**
Oct 19, 2009
Oct 19, 2009
164
165
166
167
168
169
* \brief Add \c value to the data pointed to by \c ptr and return result.
*
* \return The sum of \c *ptr and \c value.
*
* \param ptr The address of the data to be modified.
* \param value The value to be added.
Jun 24, 2009
Jun 24, 2009
170
*/
Jul 9, 2009
Jul 9, 2009
171
extern DECLSPEC Uint32 SDLCALL SDL_AtomicAddThenFetch32(volatile Uint32 * ptr, Uint32 value);
Aug 11, 2009
Aug 11, 2009
172
Jun 24, 2009
Jun 24, 2009
173
/**
Oct 19, 2009
Oct 19, 2009
174
175
176
177
178
179
* \brief Subtract \c value from the data pointed to by \c ptr and return the result.
*
* \return The difference between \c *ptr and \c value.
*
* \param ptr The address of the data to be modified.
* \param value The value to be subtracted.
Jun 24, 2009
Jun 24, 2009
180
*/
Jul 9, 2009
Jul 9, 2009
181
extern DECLSPEC Uint32 SDLCALL SDL_AtomicSubtractThenFetch32(volatile Uint32 * ptr, Uint32 value);
Jun 24, 2009
Jun 24, 2009
182
Oct 19, 2009
Oct 19, 2009
183
184
185
186
187
188
/*@}*//*32 bit atomic operations*/
/**
* \name 64 bit atomic operations
*/
/*@{*/
Jun 24, 2009
Jun 24, 2009
189
190
#ifdef SDL_HAS_64BIT_TYPE
Jul 9, 2009
Jul 9, 2009
191
192
193
194
195
196
197
198
199
200
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
201
#endif /* SDL_HAS_64BIT_TYPE */
202
Oct 19, 2009
Oct 19, 2009
203
204
/*@}*//*64 bit atomic operations*/
205
206
207
208
209
210
211
212
213
214
215
216
/* 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: */