syscall.SysProcAttr.GidMappings (field)
10 uses
syscall (current package)
exec_linux.go#L95: GidMappings []SysProcIDMap // Group ID mappings for user namespaces.
exec_linux.go#L141: if sys.UidMappings != nil || sys.GidMappings != nil {
exec_linux.go#L251: if sys.GidMappings != nil {
exec_linux.go#L260: gidmap = formatIDMappings(sys.GidMappings)
exec_linux.go#L281: if sys.UidMappings != nil || sys.GidMappings != nil {
exec_linux.go#L342: if sys.UidMappings != nil || sys.GidMappings != nil {
exec_linux.go#L403: if sys.Unshareflags&CLONE_NEWUSER != 0 && sys.GidMappings != nil {
exec_linux.go#L472: if !(sys.GidMappings != nil && !sys.GidMappingsEnableSetgroups && ngroups == 0) && !cred.NoSetGroups {
exec_linux.go#L707: if sys.GidMappings != nil {
exec_linux.go#L713: if err := writeIDMappings(gidf, sys.GidMappings); err != nil {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |