19 #include <boost/system/error_code.hpp>
20 #include <boost/system/system_error.hpp>
28 template <
class PosixExecutor>
32 if (::
pipe(fds_) == -1)
34 BOOST_PROCESS_THROW_LAST_SYSTEM_ERROR(
"pipe(2) failed");
36 if (::fcntl(fds_[1], F_SETFD, FD_CLOEXEC) == -1)
42 boost::system::error_code(e, boost::system::system_category()),
43 BOOST_PROCESS_SOURCE_LOCATION
"fcntl(2) failed"));
47 template <
class PosixExecutor>
55 boost::system::error_code(e, boost::system::system_category()),
56 BOOST_PROCESS_SOURCE_LOCATION
"fork(2) failed"));
59 template <
class PosixExecutor>
65 if (::
read(fds_[0], &code,
sizeof(
int)) > 0)
69 boost::system::error_code(code, boost::system::system_category()),
70 BOOST_PROCESS_SOURCE_LOCATION
"execve(2) failed"));
75 template <
class PosixExecutor>
82 template <
class PosixExecutor>
87 while (::
write(fds_[1], &e,
sizeof(
int)) == -1 && errno == EINTR)