Posts Tagged ‘unshare’
clone, clone2 – create a child process
USAGE
#include <sched.h>
int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg);
_syscall2(int, clone, int, flags, void *, child_stack)
_syscall5(int, clone, int, flags, void [...]
Categories: c
