You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For systems programming (container-like) I would like to access for example through
syscall.SysProcAttr clone flags that control the properties of forked child processes
(e.g. CLONE_NEWPID, CLONE_NEWNS, CLONE_NEWNET, CLONE_NEWUTS).
I have prepared 2 draft CLs:
- add CLONE_* constants to syscall: https://golang.org/cl/13160043/
- use clone() instead of fork() in syscall/exec_linux.c:
https://golang.org/cl/13159044/
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: