Initial commit
This commit is contained in:
17
vendor/github.com/hyperhq/hypercli/pkg/system/stat_solaris.go
generated
vendored
Normal file
17
vendor/github.com/hyperhq/hypercli/pkg/system/stat_solaris.go
generated
vendored
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
|
||||
}
|
||||
Reference in New Issue
Block a user