7#include <cosmos/BitMask.hxx>
8#include <cosmos/proc/pidfd.h>
9#include <cosmos/proc/PidFD.hxx>
10#include <cosmos/proc/process.hxx>
11#include <cosmos/proc/signal.hxx>
12#include <cosmos/proc/types.hxx>
62 *
this = std::move(other);
65 ProcessFile& operator=(ProcessFile &&other)
noexcept {
92 signal::send(m_fd, sig);
123 return proc::wait(m_fd, flags);
A typesafe bit mask representation using class enums.
Thin Wrapper around OS file descriptors.
A specialized FileDescriptor for pidfds.
PidFD fd() const
Returns the raw PidFD file descriptor.
void sendSignal(const Signal sig) const
Send a signal to the represented process.
ProcessFile(const PidFD fd)
Wraps the given PidFD and takes ownership of it.
std::optional< ChildData > wait(const WaitFlags flags=WaitFlags{WaitFlag::WAIT_FOR_EXITED})
Wait for the child process to exit.
bool open() const
Returns whether a pidfd is currently open.
Represents a POSIX signal number and offers a minimal API around it.
FileNum
Primitive file descriptor.
@ NONBLOCK
Attempt to open the file in non-blocking mode causing I/O operations not to block.