Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for clock_getres (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	state = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ClockGetres(clockid int32, res *Timespec) (err error) {
    	_, _, e1 := Syscall(SYS_CLOCK_GETRES, uintptr(clockid), uintptr(unsafe.Pointer(res)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sysnb	Capset(hdr *CapUserHeader, data *CapUserData) (err error)
    //sys	Chdir(path string) (err error)
    //sys	Chroot(path string) (err error)
    //sys	ClockAdjtime(clockid int32, buf *Timex) (state int, err error)
    //sys	ClockGetres(clockid int32, res *Timespec) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top