Atomic.h
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:2k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  *  OpenKore C++ Standard Library
  3.  *  Copyright (C) 2006  VCL
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Lesser General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Lesser General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Lesser General Public
  16.  *  License along with this library; if not, write to the Free Software
  17.  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18.  *  MA  02110-1301  USA
  19.  */
  20. #ifndef _OSL_ATOMIC_H_
  21. #define _OSL_ATOMIC_H_
  22. namespace OSL {
  23. /**
  24.  * Basic atomic integer operations.
  25.  *
  26.  * This class provides functions for atomically increasing and decreasing
  27.  * integers. On certain platforms, this is implemented as assembly, with
  28.  * fallback implementations on other platforms. Using these functions can
  29.  * sometimes avoid the use of relatively expensive mutexes.
  30.  *
  31.  * @warning
  32.  * Be careful with using these functions, they can cause all kinds of
  33.  * weird problems. Read <a href="http://en.wikipedia.org/wiki/Memory_barrier">the
  34.  * Wikipedia article about memory barriers</a> on why this is so. As such,
  35.  * these functions should only be used for simple reference counting,
  36.  * unless you really know what goes on behind the scenes.
  37.  *
  38.  * @class Atomic OSL/Threading/Atomic.h
  39.  * @ingroup Threading
  40.  * @see OSL::Mutex
  41.  */
  42. class Atomic {
  43. public:
  44. /**
  45.  * Atomically increase an integer by 1.
  46.  */
  47. static void increment(volatile int &i) throw();
  48. /**
  49.  * Atomically decrease an integer by 1.
  50.  *
  51.  * @return Whether the integer is 0 after the decrement
  52.  *         was performed.
  53.  */
  54. static bool decrement(volatile int &i) throw();
  55. };
  56. }
  57. #endif /* _OSL_ATOMIC_H_ */