Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PtraceSetOptions (0.16 sec)

  1. src/syscall/syscall_linux.go

    	var iov Iovec
    	iov.Base = (*byte)(unsafe.Pointer(regs))
    	iov.SetLen(int(unsafe.Sizeof(*regs)))
    	return ptracePtr(PTRACE_SETREGSET, pid, uintptr(_NT_PRSTATUS), unsafe.Pointer(&iov))
    }
    
    func PtraceSetOptions(pid int, options int) (err error) {
    	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
    }
    
    func PtraceGetEventMsg(pid int) (msg uint, err error) {
    	var data _C_long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top