source: rtems/cpukit/score/include/rtems/score/atomic.h @ 3bac8a4c

4.115
Last change on this file since 3bac8a4c was 3bac8a4c, checked in by Sebastian Huber <sebastian.huber@…>, on 09/03/13 at 09:04:33

score: Use void * for some atomic pointer ops

  • Property mode set to 100644
File size: 7.7 KB
Line 
1/**
2 * @file  rtems/score/atomic.h
3 *
4 * This include file defines the interface for all the atomic
5 * operations which can be used in the synchronization primitives
6 * or in the lock-less algorithms. You should not use these API
7 * in the other components directly.
8 */
9
10/*
11 * COPYRIGHT (c) 2012-2013 Deng Hengyi.
12 *
13 * The license and distribution terms for this file may be
14 * found in the file LICENSE in this distribution or at
15 * http://www.rtems.com/license/LICENSE.
16 */
17
18#ifndef _RTEMS_SCORE_ATOMIC_H
19#define _RTEMS_SCORE_ATOMIC_H
20
21#include <rtems/score/cpuatomic.h>
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/**
28 * @defgroup RTEMS atomic interface
29 *
30 */
31
32/**@{*/
33
34/**
35 * @brief atomic data initializer for static initialization.
36 */
37#define ATOMIC_INITIALIZER_ULONG(value) CPU_ATOMIC_INITIALIZER_ULONG(value)
38#define ATOMIC_INITIALIZER_PTR(value) CPU_ATOMIC_INITIALIZER_PTR(value)
39
40/**
41 * @brief Initializes an atomic flag object to the cleared state.
42 */
43#define ATOMIC_INITIALIZER_FLAG CPU_ATOMIC_INITIALIZER_FLAG
44
45/**
46 * @brief Initializes an atomic type value into a atomic object.
47 *
48 * @param object an atomic type pointer of object.
49 * @param pointer a pointer to be stored into object.
50 */
51static inline void _Atomic_Init_ulong(
52  volatile Atomic_Ulong *object,
53  unsigned long value
54)
55{
56  _CPU_atomic_Init_ulong(object, value);
57}
58
59static inline void _Atomic_Init_ptr(
60  volatile Atomic_Pointer *object,
61  void *pointer
62)
63{
64  _CPU_atomic_Init_ptr(object, pointer);
65}
66
67/**
68 * @brief Atomically load an atomic type value from atomic object.
69 *
70 * @param object an atomic type pointer of object.
71 * @param order a type of Atomic_Order.
72 *
73 * The order shall not be ATOMIC_ORDER_RELEASE.
74 */
75static inline unsigned long _Atomic_Load_ulong(
76  volatile Atomic_Ulong *object,
77  Atomic_Order order
78)
79{
80  return _CPU_atomic_Load_ulong( object, order );
81}
82
83static inline void *_Atomic_Load_ptr(
84  volatile Atomic_Pointer *object,
85  Atomic_Order order
86)
87{
88  return _CPU_atomic_Load_ptr( object, order );
89}
90
91/**
92 * @brief Atomically store an atomic type value into a atomic object.
93 *
94 * @param object an atomic type pointer of object.
95 * @param value a value to be stored into object.
96 * @param order a type of Atomic_Order.
97 *
98 * The order shall not be ATOMIC_ORDER_ACQUIRE.
99 */
100static inline void _Atomic_Store_ulong(
101  volatile Atomic_Ulong *object,
102  unsigned long value,
103  Atomic_Order order
104)
105{
106  _CPU_atomic_Store_ulong( object, value, order );
107}
108
109static inline void _Atomic_Store_ptr(
110  volatile Atomic_Pointer *object,
111  void *pointer,
112  Atomic_Order order
113)
114{
115  _CPU_atomic_Store_ptr( object, pointer, order );
116}
117
118/**
119 * @brief Atomically load-add-store an atomic type value into object
120 *
121 * @param object a atomic type pointer of object.
122 * @param value a value to be add and store into object.
123 * @param order a type of Atomic_Order.
124 *
125 * @retval a result value before add ops.
126 */
127static inline unsigned long _Atomic_Fetch_add_ulong(
128  volatile Atomic_Ulong *object,
129  unsigned long value,
130  Atomic_Order order
131)
132{
133  return _CPU_atomic_Fetch_add_ulong( object, value, order );
134}
135
136static inline uintptr_t _Atomic_Fetch_add_ptr(
137  volatile Atomic_Pointer *object,
138  uintptr_t value,
139  Atomic_Order order
140)
141{
142  return _CPU_atomic_Fetch_add_ptr( object, value, order );
143}
144
145/**
146 * @brief Atomically load-sub-store an atomic type value into object
147 *
148 * @param object a atomic type pointer of object.
149 * @param value a value to be sub and store into object.
150 * @param order a type of Atomic_Order.
151 *
152 * @retval a result value before sub ops.
153 */
154static inline unsigned long _Atomic_Fetch_sub_ulong(
155  volatile Atomic_Ulong *object,
156  unsigned long value,
157  Atomic_Order order
158)
159{
160  return _CPU_atomic_Fetch_sub_ulong( object, value, order );
161}
162
163static inline uintptr_t _Atomic_Fetch_sub_ptr(
164  volatile Atomic_Pointer *object,
165  uintptr_t value,
166  Atomic_Order order
167)
168{
169  return _CPU_atomic_Fetch_sub_ptr( object, value, order );
170}
171
172/**
173 * @brief Atomically load-or-store an atomic type value into object
174 *
175 * @param object a atomic type pointer of object.
176 * @param value a value to be or and store into object.
177 * @param order a type of Atomic_Order.
178 *
179 * @retval a result value before or ops.
180 */
181static inline unsigned long _Atomic_Fetch_or_ulong(
182  volatile Atomic_Ulong *object,
183  unsigned long value,
184  Atomic_Order order
185)
186{
187  return _CPU_atomic_Fetch_or_ulong( object, value, order );
188}
189
190static inline uintptr_t _Atomic_Fetch_or_ptr(
191  volatile Atomic_Pointer *object,
192  uintptr_t value,
193  Atomic_Order order
194)
195{
196  return _CPU_atomic_Fetch_or_ptr( object, value, order );
197}
198
199/**
200 * @brief Atomically load-and-store an atomic type value into object
201 *
202 * @param object a atomic type pointer of object.
203 * @param value a value to be and and store into object.
204 * @param order a type of Atomic_Order.
205 *
206 * @retval a result value before and ops.
207 */
208static inline unsigned long _Atomic_Fetch_and_ulong(
209  volatile Atomic_Ulong *object,
210  unsigned long value,
211  Atomic_Order order
212)
213{
214  return _CPU_atomic_Fetch_and_ulong( object, value, order );
215}
216
217static inline uintptr_t _Atomic_Fetch_and_ptr(
218  volatile Atomic_Pointer *object,
219  uintptr_t value,
220  Atomic_Order order
221)
222{
223  return _CPU_atomic_Fetch_and_ptr( object, value, order );
224}
225
226/**
227 * @brief Atomically exchange an atomic type value into object
228 *
229 * @param object a atomic type pointer of object.
230 * @param value a value to exchange and and store into object.
231 * @param order a type of Atomic_Order.
232 *
233 * @retval a result value before exchange ops.
234 */
235static inline unsigned long _Atomic_Exchange_ulong(
236 volatile Atomic_Ulong *object,
237 unsigned long value,
238 Atomic_Order order
239)
240{
241  return _CPU_atomic_Exchange_ulong( object, value, order );
242}
243
244static inline void *_Atomic_Exchange_ptr(
245 volatile Atomic_Pointer *object,
246 void *pointer,
247 Atomic_Order order
248)
249{
250  return _CPU_atomic_Exchange_ptr( object, pointer, order );
251}
252
253/**
254 * @brief Atomically compare the value stored at object with a
255 * old_value and if the two values are equal, update the value of a
256 * address with a new_value
257 *
258 * @param object a atomic type pointer of object.
259 * @param old_value pointer of a value.
260 * @param new_value a atomic type value.
261 * @param order_succ a type of Atomic_Order for successful exchange.
262 * @param order_fail a type of Atomic_Order for failed exchange.
263 *
264 * @retval true if the compare exchange successully.
265 * @retval false if the compare exchange failed.
266 */
267static inline bool _Atomic_Compare_exchange_ulong(
268  volatile Atomic_Ulong *object,
269  unsigned long *old_value,
270  unsigned long new_value,
271  Atomic_Order order_succ,
272  Atomic_Order order_fail
273)
274{
275  return _CPU_atomic_Compare_exchange_ulong( object, old_value, new_value,
276    order_succ, order_fail );
277}
278
279static inline bool _Atomic_Compare_exchange_ptr(
280  volatile Atomic_Pointer *object,
281  void **old_pointer,
282  void *new_pointer,
283  Atomic_Order order_succ,
284  Atomic_Order order_fail
285)
286{
287  return _CPU_atomic_Compare_exchange_ptr( object, old_pointer, new_pointer,
288    order_succ, order_fail );
289}
290
291/**
292 * @brief Atomically clears an atomic flag.
293 *
294 * @param[in, out] object Pointer to the atomic flag object.
295 * @param[in] order The atomic memory order.
296 *
297 */
298static inline void _Atomic_Flag_clear(
299  volatile Atomic_Flag *object,
300  Atomic_Order order
301)
302{
303  _CPU_atomic_Flag_clear( object, order );
304}
305
306/**
307 * @brief Atomically tests and sets an atomic flag.
308 *
309 * @param[in, out] object Pointer to the atomic flag object.
310 * @param[in] order The atomic memory order.
311 *
312 * @retval true The atomic flag was already set.
313 * @retval false Otherwise.
314 */
315static inline bool _Atomic_Flag_test_and_set(
316  volatile Atomic_Flag *object,
317  Atomic_Order order
318)
319{
320  return _CPU_atomic_Flag_test_and_set( object, order );
321}
322
323#ifdef __cplusplus
324}
325#endif
326
327/**@}*/
328#endif
329/*  end of include file */
Note: See TracBrowser for help on using the repository browser.