2#include <sys/syscall.h>
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/memory.hxx>
7#include <cosmos/proc/clone.hxx>
8#include <cosmos/proc/signal.hxx>
13pid_t clone3(
const struct clone_args &args) {
14 return syscall(SYS_clone3, &args,
sizeof(args));
31std::optional<ProcessID> clone(
const CloneArgs &args) {
32 const auto child = clone3(args);
36 }
else if (child == 0) {
Specialized exception type used when system APIs fail.
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Argument struct for proc::clone().
void setExitSignal(const Signal sig)
Sets the signal to be delivered upon child process termination.
void clear()
Puts the data structure into a defined default state.