Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:24

0001 
0002 //          Copyright Oliver Kowalke 2014.
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //    (See accompanying file LICENSE_1_0.txt or copy at
0005 //          http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 
0008 #include <boost/config.hpp>
0009 #include <boost/context/detail/config.hpp>
0010 
0011 #if defined(BOOST_USE_ASAN)
0012 extern "C" {
0013 void __sanitizer_start_switch_fiber( void **, const void *, size_t);
0014 void __sanitizer_finish_switch_fiber( void *, const void **, size_t *);
0015 }
0016 #endif
0017 
0018 #if defined(BOOST_USE_SEGMENTED_STACKS)
0019 extern "C" {
0020 void __splitstack_getcontext( void * [BOOST_CONTEXT_SEGMENTS]);
0021 void __splitstack_setcontext( void * [BOOST_CONTEXT_SEGMENTS]);
0022 }
0023 #endif