Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kernelBase (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		}
    	}
    	return nil, nil
    }
    
    // kernelBase calculates the base for kernel mappings, which usually require
    // special handling. For kernel mappings, tools (like perf) use the address of
    // the kernel relocation symbol (_text or _stext) as the mmap start. Additionally,
    // for obfuscation, ChromeOS profiles have the kernel image remapped to the 0-th page.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/sys_linux_arm.s

    //
    TEXT cas<>(SB),NOSPLIT,$0
    	MOVW	$0xffff0fc0, R15 // R15 is hardware PC.
    
    TEXT ·Cas(SB),NOSPLIT|NOFRAME,$0
    	MOVB	runtime·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	JMP	·armcas(SB)
    	JMP	kernelcas<>(SB)
    
    TEXT kernelcas<>(SB),NOSPLIT,$0
    	MOVW	ptr+0(FP), R2
    	// trigger potential paging fault here,
    	// because we don't know how to traceback through __kuser_cmpxchg
    	MOVW    (R2), R0
    	MOVW	old+4(FP), R0
    	MOVW	new+8(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		sigsetWords := (_C__NSIG - 1 + wordBits - 1) / (wordBits)
    
    		sigsetBytes := uintptr(sigsetWords * (wordBits / 8))
    		kernelMask = &sigset_argpack{
    			ss:    sigmask,
    			ssLen: sigsetBytes,
    		}
    	}
    
    	return pselect6(nfd, r, w, e, mutableTimeout, kernelMask)
    }
    
    //sys	schedSetattr(pid int, attr *SchedAttr, flags uint) (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