github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/mergeCode/runc/libcontainer/system/unsupported.go (about) 1 // +build !linux 2 3 package system 4 5 // RunningInUserNS is a stub for non-Linux systems 6 // Always returns false 7 func RunningInUserNS() bool { 8 return false 9 }