imgtools/imglib/boostlibrary/boost/thread/mutex.hpp
changeset 2 39c28ec933dd
equal deleted inserted replaced
1:820b22e13ff1 2:39c28ec933dd
       
     1 #ifndef BOOST_THREAD_MUTEX_HPP
       
     2 #define BOOST_THREAD_MUTEX_HPP
       
     3 
       
     4 //  mutex.hpp
       
     5 //
       
     6 //  (C) Copyright 2007 Anthony Williams 
       
     7 //
       
     8 //  Distributed under the Boost Software License, Version 1.0. (See
       
     9 //  accompanying file LICENSE_1_0.txt or copy at
       
    10 //  http://www.boost.org/LICENSE_1_0.txt)
       
    11 
       
    12 #include <boost/thread/detail/platform.hpp>
       
    13 #if defined(BOOST_THREAD_PLATFORM_WIN32)
       
    14 #include <boost/thread/win32/mutex.hpp>
       
    15 #elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
       
    16 #include <boost/thread/pthread/mutex.hpp>
       
    17 #else
       
    18 #error "Boost threads unavailable on this platform"
       
    19 #endif
       
    20 
       
    21 #endif