/usr/include/boost/lockfree
NameSizeModeActions
detail/-0755rm
lockfree_forward.hpp15410644editdlrm
policies.hpp17000644editdlrm
queue.hpp205840644editdlrm
spsc_queue.hpp330070644editdlrm
stack.hpp273320644editdlrm
Edit: /usr/include/boost/lockfree/lockfree_forward.hpp (1541B)
// Copyright (C) 2008-2016 Tim Blechmann // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_LOCKFREE_FORWARD_HPP_INCLUDED #define BOOST_LOCKFREE_FORWARD_HPP_INCLUDED #ifndef BOOST_DOXYGEN_INVOKED #include // size_t #include #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES #include #endif namespace boost { namespace lockfree { // policies template struct fixed_sized; template struct capacity; template struct allocator; // data structures #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES template #else template #endif class queue; #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES template #else template #endif class stack; #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES template #else template #endif class spsc_queue; } } #endif // BOOST_DOXYGEN_INVOKED #endif // BOOST_LOCKFREE_FORWARD_HPP_INCLUDED