Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 10:09:30

0001 // (C) Copyright 2013 Vicente J. Botet Escriba
0002 // Distributed under the Boost Software License, Version 1.0. (See
0003 // accompanying file LICENSE_1_0.txt or copy at
0004 // http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 
0007 #ifndef BOOST_THREAD_INTERRUPTION_HPP
0008 #define BOOST_THREAD_INTERRUPTION_HPP
0009 
0010 #include <boost/thread/detail/config.hpp>
0011 
0012 namespace boost
0013 {
0014     namespace this_thread
0015     {
0016         void BOOST_THREAD_DECL interruption_point();
0017         bool BOOST_THREAD_DECL interruption_enabled() BOOST_NOEXCEPT;
0018         bool BOOST_THREAD_DECL interruption_requested() BOOST_NOEXCEPT;
0019     }
0020 }
0021 
0022 #endif // header