13 #include <boost/system/error_code.hpp>
20 template <
class Process>
24 if (::WaitForSingleObject(p.process_handle(), INFINITE) == WAIT_FAILED)
26 BOOST_PROCESS_THROW_LAST_SYSTEM_ERROR(
"WaitForSingleObject() failed");
30 if (!::GetExitCodeProcess(p.process_handle(), &exit_code))
32 BOOST_PROCESS_THROW_LAST_SYSTEM_ERROR(
"GetExitCodeProcess() failed");
38 template <
class Process>
44 if (::WaitForSingleObject(p.process_handle(), INFINITE) == WAIT_FAILED)
46 BOOST_PROCESS_RETURN_LAST_SYSTEM_ERROR(ec);
48 else if (!::GetExitCodeProcess(p.process_handle(), &exit_code))
50 BOOST_PROCESS_RETURN_LAST_SYSTEM_ERROR(ec);