mirror of
https://github.com/boostorg/atomic.git
synced 2026-02-08 22:12:10 +00:00
25 lines
709 B
C++
25 lines
709 B
C++
#include <boost/atomic.hpp>
|
|
|
|
// Copyright (c) 2011 Helge Bahmann
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
namespace boost {
|
|
namespace atomics {
|
|
namespace detail {
|
|
|
|
static lockpool::lock_type lock_pool_[41];
|
|
|
|
// NOTE: This function must NOT be inline. Otherwise MSVC 9 will sometimes generate broken code for modulus operation which result in crashes.
|
|
BOOST_ATOMIC_DECL lockpool::lock_type& lockpool::get_lock_for(const volatile void* addr)
|
|
{
|
|
std::size_t index = reinterpret_cast<std::size_t>(addr) % (sizeof(lock_pool_) / sizeof(*lock_pool_));
|
|
return lock_pool_[index];
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|