8#include <cosmos/proc/PidFD.hxx>
9#include <cosmos/proc/process.hxx>
10#include <cosmos/types.hxx>
51 *
this = std::move(other);
62 auto running()
const {
return m_child_fd.valid(); }
86 std::optional<ChildData> waitTimed(
const IntervalTime max,
87 const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
90 void kill(
const Signal signal);
113 m_pid{pid}, m_child_fd{pidfd}
A typesafe bit mask representation using class enums.
Sub process creation facility.
A specialized FileDescriptor for pidfds.
Represents a child process created via ChildCloner.
auto running() const
Returns whether a child process is still active.
SubProc(SubProc &&other) noexcept
Implements move-semantics.
PidFD pidFD() const
Returns a pidfd referring to the currently running child.
ProcessID pid() const
Returns the PID of the currently running child process or ProcessID::INVALID.
SubProc()=default
Creates an empty sub process without state.
PidFD m_child_fd
Pidfd referring to the active child, if any.
SubProc(const ProcessID pid, const PidFD pidfd)
Wraps the given process ID and pidfd.
Additional data found in SigInfo with SIGCHILD.