19 #include <boost/system/error_code.hpp>
31 template <
class PosixExecutor>
35 if (::
pipe(fds_) == -1)
37 BOOST_PROCESS_RETURN_LAST_SYSTEM_ERROR(ec_);
39 if (::fcntl(fds_[1], F_SETFD, FD_CLOEXEC) == -1)
41 BOOST_PROCESS_RETURN_LAST_SYSTEM_ERROR(ec_);
47 template <
class PosixExecutor>
53 BOOST_PROCESS_RETURN_LAST_SYSTEM_ERROR(ec_);
59 template <
class PosixExecutor>
67 if (::
read(fds_[0], &code,
sizeof(
int)) > 0)
69 ec_ = boost::system::error_code(code, boost::system::system_category());
75 template <
class PosixExecutor>
85 template <
class PosixExecutor>
92 while (::
write(fds_[1], &e,
sizeof(
int)) == -1 && errno == EINTR)
99 boost::system::error_code& ec_;