compat_1.5_linux.go 219 B

1234567891011
  1. // +build linux,!go1.5
  2. package libcontainer
  3. import "syscall"
  4. // GidMappingsEnableSetgroups was added in Go 1.5, so do nothing when building
  5. // with earlier versions
  6. func enableSetgroups(sys *syscall.SysProcAttr) {
  7. }