Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PtraceGetRegs (0.11 sec)

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

    // elfNT_PRSTATUS is a copy of the debug/elf.NT_PRSTATUS constant so
    // x/sys/unix doesn't need to depend on debug/elf and thus
    // compress/zlib, debug/dwarf, and other packages.
    const elfNT_PRSTATUS = 1
    
    func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {
    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regsout))
    	iov.SetLen(int(unsafe.Sizeof(*regsout)))
    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