mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #19006 from jen20/f-solaris-stat
Fix downstream client API build errors on Solaris
This commit is contained in:
commit
5c0af43ebe
3 changed files with 19 additions and 2 deletions
17
pkg/system/stat_solaris.go
Normal file
17
pkg/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
|
package system
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// +build linux freebsd darwin
|
// +build linux freebsd darwin solaris
|
||||||
|
|
||||||
package volume
|
package volume
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue