github.com/rita33cool1/iot-system-gateway@v0.0.0-20200911033302-e65bde238cc5/docker-engine/pkg/system/stat_openbsd.go (about) 1 package system // import "github.com/docker/docker/pkg/system" 2 3 import "syscall" 4 5 // fromStatT converts a syscall.Stat_t type to a system.Stat_t type 6 func fromStatT(s *syscall.Stat_t) (*StatT, error) { 7 return &StatT{size: s.Size, 8 mode: uint32(s.Mode), 9 uid: s.Uid, 10 gid: s.Gid, 11 rdev: uint64(s.Rdev), 12 mtim: s.Mtim}, nil 13 }