ScummVM API documentation
as_atomic.h
1 /*
2  AngelCode Scripting Library
3  Copyright (c) 2003-2013 Andreas Jonsson
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any
7  damages arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any
10  purpose, including commercial applications, and to alter it and
11  redistribute it freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you
14  must not claim that you wrote the original software. If you use
15  this software in a product, an acknowledgment in the product
16  documentation would be appreciated but is not required.
17 
18  2. Altered source versions must be plainly marked as such, and
19  must not be misrepresented as being the original software.
20 
21  3. This notice may not be removed or altered from any source
22  distribution.
23 
24  The original version of this library can be located at:
25  http://www.angelcode.com/angelscript/
26 
27  Andreas Jonsson
28  andreas@angelcode.com
29 */
30 
31 
32 //
33 // as_atomic.h
34 //
35 // The asCAtomic class provides methods for performing threadsafe
36 // operations on a single dword, e.g. reference counting and
37 // bitfields.
38 //
39 
40 
41 
42 #ifndef AS_ATOMIC_H
43 #define AS_ATOMIC_H
44 
45 #include "as_config.h"
46 
47 BEGIN_AS_NAMESPACE
48 
49 class asCAtomic {
50 public:
51  asCAtomic();
52 
53  asDWORD get() const;
54  void set(asDWORD val);
55 
56  // Increase and return new value
57  asDWORD atomicInc();
58 
59  // Decrease and return new value
60  asDWORD atomicDec();
61 
62 protected:
63  asDWORD value;
64 };
65 
66 END_AS_NAMESPACE
67 
68 #endif
Definition: as_atomic.h:49