]> git.saurik.com Git - wxWidgets.git/blob - include/wx/atomic.h
fix to make 'wxAtomicInt i = 0;' work with generic implementation and gcc
[wxWidgets.git] / include / wx / atomic.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/atomic.h
3 // Purpose: functions to manipulate atomically integers and pointers
4 // Author: Armel Asselin
5 // Created: 12/13/2006
6 // RCS-ID: $Id$
7 // Copyright: (c) Armel Asselin
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_ATOMIC_H_
12 #define _WX_ATOMIC_H_
13
14 // ----------------------------------------------------------------------------
15 // headers
16 // ----------------------------------------------------------------------------
17
18 // get the value of wxUSE_THREADS configuration flag
19 #include "wx/defs.h"
20
21 // constraints on the various functions:
22 // - wxAtomicDec must return a zero value if the value is zero once
23 // decremented else it must return any non-zero value (the true value is OK
24 // but not necessary).
25
26 #if wxUSE_THREADS
27
28 #if defined(__WXMSW__)
29
30 // include standard Windows headers
31 #include "wx/msw/wrapwin.h"
32
33 inline void wxAtomicInc (wxUint32 &value)
34 {
35 InterlockedIncrement ((LONG*)&value);
36 }
37
38 inline wxUint32 wxAtomicDec (wxUint32 &value)
39 {
40 return InterlockedDecrement ((LONG*)&value);
41 }
42
43 #elif defined(__WXMAC__) || defined(__DARWIN__)
44
45 #include "libkern/OSAtomic.h"
46 inline void wxAtomicInc (wxUint32 &value)
47 {
48 OSAtomicIncrement32 ((int32_t*)&value);
49 }
50
51 inline wxUint32 wxAtomicDec (wxUint32 &value)
52 {
53 return OSAtomicDecrement32 ((int32_t*)&value);
54 }
55
56 #elif defined(__LINUX__)
57
58 #include <asm/atomic.h>
59
60 inline void wxAtomicInc (wxUint32 &value)
61 {
62 atomic_inc ((atomic_t*)&value);
63 }
64
65 inline wxUint32 wxAtomicDec (wxUint32 &value)
66 {
67 return atomic_dec_and_test ((atomic_t*)&value) ? 0 : 1;
68 }
69
70 #elif defined (__SOLARIS__)
71
72 #include <atomic.h>
73
74 inline void wxAtomicInc (wxUint32 &value)
75 {
76 atomic_add_32 ((uint32_t*)&value, 1);
77 }
78
79 inline wxUint32 wxAtomicDec (wxUint32 &value)
80 {
81 return atomic_add_32_nv ((uint32_t*)&value, (uint32_t)-1);
82 }
83
84 #else // unknown platform
85
86 // it will result in inclusion if the generic implementation code a bit later in this page
87 #define wxHAS_GENERIC_ATOMIC_OPS 1
88
89 #endif // unknown platform
90
91 #else // else of wxUSE_THREADS
92 // if no threads are used we can safely use simple ++/--
93
94 inline void wxAtomicInc (wxUint32 &value) { ++value; }
95 inline wxUint32 wxAtomicDec (wxUint32 &value) { return --value; }
96
97 #endif // !wxUSE_THREADS
98
99 // ----------------------------------------------------------------------------
100 // proxies to actual implementations, but for various other types with same
101 // behaviour
102 // ----------------------------------------------------------------------------
103
104 #if !defined(wxHAS_GENERIC_ATOMIC_OPS)
105 #define wxHAS_GENERIC_ATOMIC_OPS 0
106 #endif
107
108 #if wxHAS_GENERIC_ATOMIC_OPS
109 #include "wx/thread.h" // for wxCriticalSection
110
111 class wxAtomicInt32
112 {
113 public:
114 wxAtomicInt32() { } // non initialized for consistency with basic int type
115 wxAtomicInt32(wxInt32 v) : m_value(v) { }
116 wxAtomicInt32(const wxAtomicInt32& a) : m_value(a.m_value) {}
117
118 operator wxInt32() const { return m_value; }
119 operator volatile wxInt32&() { return m_value; }
120
121 wxAtomicInt32& operator=(wxInt32 v) { m_value = v; return *this; }
122
123 void Inc()
124 {
125 wxCriticalSectionLocker lock(m_locker);
126 ++m_value;
127 }
128
129 wxInt32 Dec()
130 {
131 wxCriticalSectionLocker lock(m_locker);
132 return --m_value;
133 }
134
135 private:
136 volatile wxInt32 m_value;
137 wxCriticalSection m_locker;
138 };
139
140 inline void wxAtomicInc(wxAtomicInt32 &value) { value.Inc(); }
141 inline wxInt32 wxAtomicDec(wxAtomicInt32 &value) { return value.Dec(); }
142
143 #else // !wxHAS_GENERIC_ATOMIC_OPS
144
145 inline void wxAtomicInc(wxInt32 &value) { wxAtomicInc((wxUint32&)value); }
146 inline wxInt32 wxAtomicDec(wxInt32 &value) { return wxAtomicDec((wxUint32&)value); }
147
148 typedef wxInt32 wxAtomicInt32;
149
150 #endif // wxHAS_GENERIC_ATOMIC_OPS
151
152 // all the native implementations use 32 bits currently
153 // for a 64 bits implementation we could use (a future) wxAtomicInt64 as
154 // default type
155 typedef wxAtomicInt32 wxAtomicInt;
156
157 #endif // _WX_ATOMIC_H_