Argument struct for proc::clone().
More...
#include <clone.hxx>
Argument struct for proc::clone().
Definition at line 60 of file clone.hxx.
◆ CloneArgs()
cosmos::CloneArgs::CloneArgs |
( |
| ) |
|
|
inline |
Definition at line 63 of file clone.hxx.
63 {
65 }
void clear()
Puts the data structure into a defined default state.
◆ clear()
void cosmos::CloneArgs::clear |
( |
| ) |
|
Puts the data structure into a defined default state.
This resets everything to zero except for the child exit signal (see setExitSignal()), which is set to signal::CHILD, which is the default.
Definition at line 21 of file clone.cxx.
21 {
23
24
25
27}
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
void setExitSignal(const Signal sig)
Sets the signal to be delivered upon child process termination.
◆ setCGroup()
Sets the cgroup2 file descriptor of which the child should become a member.
- See also
- CloneFlag::INTO_CGROUP.
Definition at line 133 of file clone.hxx.
133 {
134 this->cgroup = static_cast<uint64_t>(fd.raw());
135 }
◆ setChildTID()
void cosmos::CloneArgs::setChildTID |
( |
ThreadID * | tid | ) |
|
|
inline |
Definition at line 83 of file clone.hxx.
83 {
84 this->child_tid = reinterpret_cast<uint64_t>(tid);
85 }
◆ setExitSignal()
void cosmos::CloneArgs::setExitSignal |
( |
const Signal | sig | ) |
|
|
inline |
Sets the signal to be delivered upon child process termination.
This should be set to signal::CHILD by default. If set to Signal::NONE then no signal at all will be sent. If set to a non-default value then special precautions needs to be taken when performing a proc::wait() on the child.
Definition at line 98 of file clone.hxx.
98 {
99 this->exit_signal = static_cast<uint64_t>(to_integral(sig.raw()));
100 }
◆ setFlags()
void cosmos::CloneArgs::setFlags |
( |
const CloneFlags | p_flags | ) |
|
|
inline |
Definition at line 75 of file clone.hxx.
75 {
76 this->flags = p_flags.raw();
77 }
◆ setParentTID()
void cosmos::CloneArgs::setParentTID |
( |
ProcessID * | pid | ) |
|
|
inline |
Definition at line 87 of file clone.hxx.
87 {
88 this->parent_tid = reinterpret_cast<uint64_t>(pid);
89 }
◆ setPidFD()
void cosmos::CloneArgs::setPidFD |
( |
PidFD & | fd | ) |
|
|
inline |
Definition at line 79 of file clone.hxx.
79 {
80 this->pidfd = reinterpret_cast<uintptr_t>(&fd.m_fd);
81 }
◆ setStack()
void cosmos::CloneArgs::setStack |
( |
void * | p_stack | ) |
|
|
inline |
Sets the pointer to the lowest byte of the stack area.
If CloneFlag::SHARE_VM is specified then this value must be provided, otherwise the parent's stack is reused for the child if this is set to 0.
Definition at line 108 of file clone.hxx.
108 {
109 this->stack = reinterpret_cast<uint64_t>(p_stack);
110 }
◆ setTIDs()
void cosmos::CloneArgs::setTIDs |
( |
const ThreadID * | tids, |
|
|
size_t | num_tids ) |
|
inline |
Allows to set an explicit thread ID to use for the child.
This instructs the kernel to use a specific thread ID for the new child process. If the process should have multiple specific TIDs in multiple PID namespaces then an array of num_tids
can be specified. The first entry defines the TID in the most nested PID namespace and so on.
This requires CAP_CHECKPOINT_RESTORE. The feature is meant for reconstructing a certain system state e.g. from a container snapshot.
Definition at line 124 of file clone.hxx.
124 {
125 this->set_tid = reinterpret_cast<uint64_t>(tids);
126 this->set_tid_size = num_tids;
127 }
The documentation for this struct was generated from the following files: