Update contrib.
1 #ifndef BOOST_DETAIL_ATOMIC_COUNT_HPP_INCLUDED
2 #define BOOST_DETAIL_ATOMIC_COUNT_HPP_INCLUDED
4 // MS compatible compilers support #pragma once
6 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
11 // boost/detail/atomic_count.hpp - thread/SMP safe reference counter
13 // Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
15 // Distributed under the Boost Software License, Version 1.0. (See
16 // accompanying file LICENSE_1_0.txt or copy at
17 // http://www.boost.org/LICENSE_1_0.txt)
19 // typedef <implementation-defined> boost::detail::atomic_count;
23 // (n is convertible to long)
25 // Effects: Constructs an atomic_count with an initial value of n
29 // Returns: (long) the current value of a
33 // Effects: Atomically increments the value of a
38 // Effects: Atomically decrements the value of a
39 // Returns: (long) zero if the new value of a is zero,
40 // unspecified non-zero value otherwise (usually the new value)
42 // Important note: when --a returns zero, it must act as a
43 // read memory barrier (RMB); i.e. the calling thread must
44 // have a synchronized view of the memory
46 // On Intel IA-32 (x86) memory is always synchronized, so this
49 // On many architectures the atomic instructions already act as
52 // This property is necessary for proper reference counting, since
53 // a thread can update the contents of a shared object, then
54 // release its reference, and another thread may immediately
55 // release the last reference causing object destruction.
57 // The destructor needs to have a synchronized view of the
58 // object to perform proper cleanup.
60 // Original example by Alexander Terekhov:
64 // - a mutable shared object OBJ;
65 // - two threads THREAD1 and THREAD2 each holding
66 // a private smart_ptr object pointing to that OBJ.
68 // t1: THREAD1 updates OBJ (thread-safe via some synchronization)
69 // and a few cycles later (after "unlock") destroys smart_ptr;
71 // t2: THREAD2 destroys smart_ptr WITHOUT doing any synchronization
72 // with respect to shared mutable object OBJ; OBJ destructors
73 // are called driven by smart_ptr interface...
76 #include <boost/config.hpp>
78 #ifndef BOOST_HAS_THREADS
86 typedef long atomic_count;
92 #elif defined(BOOST_AC_USE_PTHREADS)
93 # include <boost/detail/atomic_count_pthreads.hpp>
94 #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__)
95 # include <boost/detail/atomic_count_win32.hpp>
96 #elif defined(__GLIBCPP__) || defined(__GLIBCXX__)
97 # include <boost/detail/atomic_count_gcc.hpp>
98 #elif defined(BOOST_HAS_PTHREADS)
99 # define BOOST_AC_USE_PTHREADS
100 # include <boost/detail/atomic_count_pthreads.hpp>
103 // Use #define BOOST_DISABLE_THREADS to avoid the error
104 #error Unrecognized threading platform
108 #endif // #ifndef BOOST_DETAIL_ATOMIC_COUNT_HPP_INCLUDED