package sysfs
import (
"syscall"
"unsafe"
"golang.org/x/sys/unix"
experimentalsys "github.com/tetratelabs/wazero/experimental/sys"
)
const _UTIME_OMIT = unix .UTIME_OMIT
func utimens(path string , atim , mtim int64 ) experimentalsys .Errno {
times := timesToTimespecs (atim , mtim )
if times == nil {
return 0
}
return experimentalsys .UnwrapOSError (syscall .UtimesNano (path , times [:]))
}
func futimens(fd uintptr , atim , mtim int64 ) experimentalsys .Errno {
times := timesToTimespecs (atim , mtim )
if times == nil {
return 0
}
return experimentalsys .UnwrapOSError (utimensat (int (fd ), 0 , times , 0 ))
}
func utimensat(dirfd int , strPtr uintptr , times *[2 ]syscall .Timespec , flags int ) (err error ) {
_ , _ , e1 := syscall .Syscall6 (syscall .SYS_UTIMENSAT , uintptr (dirfd ), strPtr , uintptr (unsafe .Pointer (times )), uintptr (flags ), 0 , 0 )
if e1 != 0 {
err = e1
}
return
}
The pages are generated with Golds v0.8.2 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .