Merge pull request #19006 from jen20/f-solaris-stat
Fix downstream client API build errors on Solaris
This commit is contained in:
commit
24e9bc0daf
2 changed files with 18 additions and 1 deletions
17
system/stat_solaris.go
Normal file
17
system/stat_solaris.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
// +build solaris
|
||||
|
||||
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
|
||||
// +build !linux,!windows,!freebsd,!solaris
|
||||
|
||||
package system
|
||||
|
||||
|
|
Loading…
Reference in a new issue