Sha256: d4658713faa75628885f4244933f1b00c6263502ed50aac0e985cc61f385870a
Contents?: true
Size: 539 Bytes
Versions: 30
Compression:
Stored size: 539 Bytes
Contents
// Copyright (C) 2007 Anthony Williams // // 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) #ifndef BOOST_THREAD_TSS_HPP #define BOOST_THREAD_TSS_HPP #include <boost/thread/detail/platform.hpp> #if defined(BOOST_THREAD_PLATFORM_WIN32) #include <boost/thread/win32/tss.hpp> #elif defined(BOOST_THREAD_PLATFORM_PTHREAD) #include <boost/thread/pthread/tss.hpp> #else #error "Boost threads unavailable on this platform" #endif #endif
Version data entries
30 entries across 30 versions & 5 rubygems