libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
clone.cxx
1// Linux
2#include <sys/syscall.h>
3
4// Cosmos
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/memory.hxx>
7#include <cosmos/proc/clone.hxx>
8#include <cosmos/proc/signal.hxx>
9
10namespace {
11
12// for clone(3) there is no glibc wrapper yet so we need to wrap it ourselves
13pid_t clone3(const struct clone_args &args) {
14 return syscall(SYS_clone3, &args, sizeof(args));
15}
16
17} // end anon ns
18
19namespace cosmos {
20
22 zero_object(static_cast<clone_args&>(*this));
23
24 // this must not be zero by default or we don't get any child exit
25 // signal notification.
26 setExitSignal(signal::CHILD);
27}
28
29namespace proc {
30
31std::optional<ProcessID> clone(const CloneArgs &args) {
32 const auto child = clone3(args);
33
34 if (child == -1) {
35 cosmos_throw (ApiError("clone3()"));
36 } else if (child == 0) {
37 return std::nullopt;
38 }
39
40 return ProcessID{child};
41}
42
43} // end ns
44} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23
ProcessID
Definition types.hxx:25
Argument struct for proc::clone().
Definition clone.hxx:61
void setExitSignal(const Signal sig)
Sets the signal to be delivered upon child process termination.
Definition clone.hxx:98
void clear()
Puts the data structure into a defined default state.
Definition clone.cxx:21