Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __vdso_gettimeofday (0.14 sec)

  1. src/runtime/vdso_linux_amd64.go

    	// See cmd/compile/internal/amd64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6", 0x3ae75f6}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_gettimeofday", 0x315ca59, 0xb01bca00, &vdsoGettimeofdaySym},
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    var (
    	vdsoGettimeofdaySym uintptr
    	vdsoClockgettimeSym uintptr
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 816 bytes
    - Viewed (0)
  2. src/runtime/vdso_freebsd.go

    	// an atomic_thread_fence_acq() call which behaves as an instruction reordering and
    	// memory barrier.
    	binuptimeDummy uint32
    
    	zeroBintime bintime
    )
    
    // based on /usr/src/lib/libc/sys/__vdso_gettimeofday.c
    //
    //go:nosplit
    func binuptime(abs bool) (bt bintime) {
    	timehands := (*[_VDSO_TH_NUM]vdsoTimehands)(add(unsafe.Pointer(timekeepSharedPage), vdsoTimekeepSize))
    	for {
    		if timekeepSharedPage.enabled == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top