mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
As the title says. Vendor Buildah v1.27.0 into Podman in preparation for Buildah v4.2 [No New Tests Needed] Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
26 lines
577 B
Go
26 lines
577 B
Go
package util
|
|
|
|
import (
|
|
"time"
|
|
"unsafe"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// For some reason, unix.ClockGettime isn't implemented by x/sys/unix on FreeBSD
|
|
func clockGettime(clockid int32, time *unix.Timespec) (err error) {
|
|
_, _, e1 := unix.Syscall(unix.SYS_CLOCK_GETTIME, uintptr(clockid), uintptr(unsafe.Pointer(time)), 0)
|
|
if e1 != 0 {
|
|
return e1
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func ReadUptime() (time.Duration, error) {
|
|
var uptime unix.Timespec
|
|
if err := clockGettime(unix.CLOCK_UPTIME, &uptime); err != nil {
|
|
return 0, err
|
|
}
|
|
return time.Duration(unix.TimespecToNsec(uptime)), nil
|
|
}
|