as_atomic.h 1.6 KB

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