sentry/syscalls: update docs for the unshare syscall

Mount and network namespace are supported.

PiperOrigin-RevId: 663442921
This commit is contained in:
Andrei Vagin
2024-08-15 14:04:15 -07:00
committed by gVisor bot
parent 371107d57f
commit 3b28deddf4
+2 -2
View File
@@ -324,7 +324,7 @@ var AMD64 = &kernel.SyscallTable{
269: syscalls.Supported("faccessat", Faccessat),
270: syscalls.Supported("pselect6", Pselect6),
271: syscalls.Supported("ppoll", Ppoll),
272: syscalls.PartiallySupported("unshare", Unshare, "Mount, cgroup namespaces not supported. Network namespaces supported but must be empty.", nil),
272: syscalls.PartiallySupported("unshare", Unshare, "Time, cgroup namespaces not supported.", nil),
273: syscalls.Supported("set_robust_list", SetRobustList),
274: syscalls.Supported("get_robust_list", GetRobustList),
275: syscalls.Supported("splice", Splice),
@@ -528,7 +528,7 @@ var ARM64 = &kernel.SyscallTable{
94: syscalls.Supported("exit_group", ExitGroup),
95: syscalls.Supported("waitid", Waitid),
96: syscalls.Supported("set_tid_address", SetTidAddress),
97: syscalls.PartiallySupported("unshare", Unshare, "Mount, cgroup namespaces not supported. Network namespaces supported but must be empty.", nil),
97: syscalls.PartiallySupported("unshare", Unshare, "Time, cgroup namespaces not supported.", nil),
98: syscalls.PartiallySupported("futex", Futex, "Robust futexes not supported.", nil),
99: syscalls.Supported("set_robust_list", SetRobustList),
100: syscalls.Supported("get_robust_list", GetRobustList),