File indexing completed on 2025-01-18 09:50:06
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_PROCESS_POSIX_SHELL_PATH_HPP
0011 #define BOOST_PROCESS_POSIX_SHELL_PATH_HPP
0012
0013 #include <boost/process/detail/config.hpp>
0014 #include <boost/system/error_code.hpp>
0015 #include <boost/process/filesystem.hpp>
0016
0017 namespace boost { namespace process { namespace detail { namespace posix {
0018
0019 inline boost::process::filesystem::path shell_path()
0020 {
0021 return "/bin/sh";
0022 }
0023
0024 inline boost::process::filesystem::path shell_path(std::error_code &ec)
0025 {
0026 ec.clear();
0027 return "/bin/sh";
0028 }
0029
0030 }}}}
0031
0032 #endif