New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
sp_counted_base.hpp in vendors/XIOS/current/extern/boost/include/boost/smart_ptr/detail – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/smart_ptr/detail/sp_counted_base.hpp @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1#ifndef BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_HPP_INCLUDED
2#define BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_HPP_INCLUDED
3
4// MS compatible compilers support #pragma once
5
6#if defined(_MSC_VER) && (_MSC_VER >= 1020)
7# pragma once
8#endif
9
10//
11//  detail/sp_counted_base.hpp
12//
13//  Copyright 2005, 2006 Peter Dimov
14//
15// Distributed under the Boost Software License, Version 1.0. (See
16// accompanying file LICENSE_1_0.txt or copy at
17// http://www.boost.org/LICENSE_1_0.txt)
18//
19
20#include <boost/config.hpp>
21#include <boost/smart_ptr/detail/sp_has_sync.hpp>
22
23#if defined( BOOST_SP_DISABLE_THREADS )
24# include <boost/smart_ptr/detail/sp_counted_base_nt.hpp>
25
26#elif defined( BOOST_SP_USE_SPINLOCK )
27# include <boost/smart_ptr/detail/sp_counted_base_spin.hpp>
28
29#elif defined( BOOST_SP_USE_PTHREADS )
30# include <boost/smart_ptr/detail/sp_counted_base_pt.hpp>
31
32#elif defined( BOOST_DISABLE_THREADS ) && !defined( BOOST_SP_ENABLE_THREADS ) && !defined( BOOST_DISABLE_WIN32 )
33# include <boost/smart_ptr/detail/sp_counted_base_nt.hpp>
34
35#elif defined( __GNUC__ ) && ( defined( __i386__ ) || defined( __x86_64__ ) )
36# include <boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>
37
38#elif defined( __GNUC__ ) && defined( __ia64__ ) && !defined( __INTEL_COMPILER )
39# include <boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>
40
41#elif defined(__HP_aCC) && defined(__ia64)
42# include <boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>
43
44#elif defined( __MWERKS__ ) && defined( __POWERPC__ )
45# include <boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp>
46
47#elif defined( __GNUC__ ) && ( defined( __powerpc__ ) || defined( __ppc__ ) || defined( __ppc ) )
48# include <boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp>
49
50#elif defined( __GNUC__ ) && ( defined( __mips__ ) || defined( _mips ) )
51# include <boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp>
52
53#elif defined( BOOST_SP_HAS_SYNC )
54# include <boost/smart_ptr/detail/sp_counted_base_sync.hpp>
55
56#elif defined(__GNUC__) && ( defined( __sparcv9 ) || ( defined( __sparcv8 ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 402 ) ) )
57# include <boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp>
58
59#elif defined( WIN32 ) || defined( _WIN32 ) || defined( __WIN32__ ) || defined(__CYGWIN__)
60# include <boost/smart_ptr/detail/sp_counted_base_w32.hpp>
61
62#elif !defined( BOOST_HAS_THREADS )
63# include <boost/smart_ptr/detail/sp_counted_base_nt.hpp>
64
65#else
66# include <boost/smart_ptr/detail/sp_counted_base_spin.hpp>
67
68#endif
69
70#endif  // #ifndef BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_HPP_INCLUDED
Note: See TracBrowser for help on using the repository browser.