]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/leaf/config/tls.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / leaf / config / tls.hpp
1 #ifndef BOOST_LEAF_CONFIG_TLS_HPP_INCLUDED
2 #define BOOST_LEAF_CONFIG_TLS_HPP_INCLUDED
3
4 // Copyright 2018-2022 Emil Dotchevski and Reverge Studios, Inc.
5
6 // Distributed under the Boost Software License, Version 1.0. (See accompanying
7 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8
9 #if defined(BOOST_LEAF_TLS_FREERTOS)
10 # include <boost/leaf/config/tls_freertos.hpp>
11 #endif
12
13 #ifndef BOOST_LEAF_USE_TLS_ARRAY
14 # ifdef BOOST_LEAF_CFG_TLS_INDEX_TYPE
15 # warning "BOOST_LEAF_CFG_TLS_INDEX_TYPE" is ignored if BOOST_LEAF_USE_TLS_ARRAY is not defined.
16 # endif
17 # ifdef BOOST_LEAF_CFG_TLS_ARRAY_SIZE
18 # warning "BOOST_LEAF_CFG_TLS_ARRAY_SIZE" is ignored if BOOST_LEAF_USE_TLS_ARRAY is not defined.
19 # endif
20 # ifdef BOOST_LEAF_CFG_TLS_ARRAY_START_INDEX
21 # warning "BOOST_LEAF_CFG_TLS_ARRAY_START_INDEX" is ignored if BOOST_LEAF_USE_TLS_ARRAY is not defined.
22 # endif
23 #endif
24
25 #if defined BOOST_LEAF_USE_TLS_ARRAY
26 # include <boost/leaf/config/tls_array.hpp>
27 #elif defined(BOOST_LEAF_NO_THREADS)
28 # include <boost/leaf/config/tls_globals.hpp>
29 #else
30 # include <boost/leaf/config/tls_cpp11.hpp>
31 #endif
32
33 #endif