Sha256: 0e4b15992c834a5ae516fb5b53237f5ae22a1aa07baac6ee58f18f1f99926f21

Contents?: true

Size: 1.34 KB

Versions: 27

Compression:

Stored size: 1.34 KB

Contents

#ifndef BOOST_SMART_PTR_DETAIL_SPINLOCK_HPP_INCLUDED
#define BOOST_SMART_PTR_DETAIL_SPINLOCK_HPP_INCLUDED

// MS compatible compilers support #pragma once

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif

//
//  boost/detail/spinlock.hpp
//
//  Copyright (c) 2008 Peter Dimov
//
//  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)
//
//  struct spinlock
//  {
//      void lock();
//      bool try_lock();
//      void unlock();
//
//      class scoped_lock;
//  };
//
//  #define BOOST_DETAIL_SPINLOCK_INIT <unspecified>
//

#include <boost/config.hpp>
#include <boost/smart_ptr/detail/sp_has_sync.hpp>

#if defined(__GNUC__) && defined( __arm__ ) && !defined( __thumb__ )
#  include <boost/smart_ptr/detail/spinlock_gcc_arm.hpp>

#elif defined( BOOST_SP_HAS_SYNC )
#  include <boost/smart_ptr/detail/spinlock_sync.hpp>

#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
#  include <boost/smart_ptr/detail/spinlock_w32.hpp>

#elif defined(BOOST_HAS_PTHREADS)
#  include <boost/smart_ptr/detail/spinlock_pt.hpp>

#elif !defined(BOOST_HAS_THREADS)
#  include <boost/smart_ptr/detail/spinlock_nt.hpp>

#else
#  error Unrecognized threading platform
#endif

#endif // #ifndef BOOST_SMART_PTR_DETAIL_SPINLOCK_HPP_INCLUDED

Version data entries

27 entries across 27 versions & 4 rubygems

Version Path
passenger-3.0.21 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.19 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.18 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.17 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.15 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.14 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.13 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.12 ext/boost/smart_ptr/detail/spinlock.hpp
yspassenger-3.0.12 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.11 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.10 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.9 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.8 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.7 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.6 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.5 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.4 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.3 ext/boost/smart_ptr/detail/spinlock.hpp
railsware-passenger-3.0.2.1 ext/boost/smart_ptr/detail/spinlock.hpp
passenger-3.0.2 ext/boost/smart_ptr/detail/spinlock.hpp