#ifndef BOOST_DETAIL_LWM_LINUX_HPP_INCLUDED #define BOOST_DETAIL_LWM_LINUX_HPP_INCLUDED #if _MSC_VER >= 1020 #pragma once #endif // // boost/detail/lwm_linux.hpp // // Copyright (c) 2002 Peter Dimov and Multi Media Ltd. // // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // // Not a correct comment: // This file is only provided because the performance of this implementation // is about 3.5 times higher than the pthreads version. Use at your own risk // (by defining BOOST_USE_ASM_ATOMIC_H.) // #include #include namespace boost { namespace detail { class lightweight_mutex { private: _Atomic_word a_; lightweight_mutex(lightweight_mutex const &); lightweight_mutex & operator=(lightweight_mutex const &); public: lightweight_mutex() { _Atomic_word a = 1; a_ = a; } class scoped_lock; friend class scoped_lock; class scoped_lock { private: lightweight_mutex & m_; scoped_lock(scoped_lock const &); scoped_lock & operator=(scoped_lock const &); public: explicit scoped_lock(lightweight_mutex & m): m_(m) { while( !__exchange_and_add(&m_.a_, -1) ) { __atomic_add(&m_.a_, 1); sched_yield(); } } ~scoped_lock() { __atomic_add(&m_.a_, 1); } }; }; } // namespace detail } // namespace boost #endif // #ifndef BOOST_DETAIL_LWM_WIN32_HPP_INCLUDED