mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e94a48ffc8
Partially addresses #11581 Signed-off-by: Ankush Agarwal <ankushagarwal11@gmail.com>
17 lines
324 B
Go
17 lines
324 B
Go
// +build !linux,!windows
|
|
|
|
package system
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// fromStatT creates a system.Stat_t type from a syscall.Stat_t type
|
|
func fromStatT(s *syscall.Stat_t) (*Stat_t, error) {
|
|
return &Stat_t{size: s.Size,
|
|
mode: uint32(s.Mode),
|
|
uid: s.Uid,
|
|
gid: s.Gid,
|
|
rdev: uint64(s.Rdev),
|
|
mtim: s.Mtimespec}, nil
|
|
}
|