File indexing completed on 2025-01-18 09:50:11
0001
0002
0003
0004
0005 #ifndef BOOST_PROCESS_V2_POSIX_DETAIL_CLOSE_HANDLES_HPP
0006 #define BOOST_PROCESS_V2_POSIX_DETAIL_CLOSE_HANDLES_HPP
0007
0008 #include <boost/process/v2/detail/config.hpp>
0009 #include <vector>
0010
0011 BOOST_PROCESS_V2_BEGIN_NAMESPACE
0012
0013 namespace posix
0014 {
0015
0016 namespace detail
0017 {
0018
0019
0020 BOOST_PROCESS_V2_DECL void close_all(const std::vector<int> & whitelist,
0021 error_code & ec);
0022
0023 }
0024
0025 }
0026
0027 BOOST_PROCESS_V2_END_NAMESPACE
0028
0029 #endif