Merge pull request #21325 from frenkel/openbsd-support

Support OpenBSD build
This commit is contained in:
Brian Goff 2016-03-18 20:53:17 -04:00
commit ebe1aafedc
3 changed files with 85 additions and 1 deletions

15
system/stat_openbsd.go Normal file
View file

@ -0,0 +1,15 @@
package system
import (
"syscall"
)
// fromStatT creates a system.StatT type from a syscall.Stat_t type
func fromStatT(s *syscall.Stat_t) (*StatT, error) {
return &StatT{size: s.Size,
mode: uint32(s.Mode),
uid: s.Uid,
gid: s.Gid,
rdev: uint64(s.Rdev),
mtim: s.Mtim}, nil
}

View file

@ -1,4 +1,4 @@
// +build !linux,!windows,!freebsd,!solaris
// +build !linux,!windows,!freebsd,!solaris,!openbsd
package system