Merge pull request #21325 from frenkel/openbsd-support
Support OpenBSD build Upstream-commit: 131c59193f16d1f752103f97302546ec819cb6f7 Component: engine
This commit is contained in:
15
components/engine/pkg/system/stat_openbsd.go
Normal file
15
components/engine/pkg/system/stat_openbsd.go
Normal 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
|
||||
}
|
||||
@ -1,4 +1,4 @@
|
||||
// +build !linux,!windows,!freebsd,!solaris
|
||||
// +build !linux,!windows,!freebsd,!solaris,!openbsd
|
||||
|
||||
package system
|
||||
|
||||
|
||||
Reference in New Issue
Block a user