mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
8f97d39dd2
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
16 lines
393 B
Go
16 lines
393 B
Go
// +build !linux,!windows
|
|
|
|
package configs
|
|
|
|
func (n *Namespace) Syscall() int {
|
|
panic("No namespace syscall support")
|
|
return 0
|
|
}
|
|
|
|
// CloneFlags parses the container's Namespaces options to set the correct
|
|
// flags on clone, unshare. This functions returns flags only for new namespaces.
|
|
func (n *Namespaces) CloneFlags() uintptr {
|
|
panic("No namespace syscall support")
|
|
return uintptr(0)
|
|
}
|