Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for raw_ptrace (0.09 sec)

  1. src/syscall/syscall_aix.go

    //sys	ptrace64(request int, id int64, addr int64, data int, buff uintptr) (err error)
    //sys	ptrace64Ptr(request int, id int64, addr int64, data int, buff unsafe.Pointer) (err error) = ptrace64
    
    func raw_ptrace(request int, pid int, addr *byte, data *byte) Errno {
    	if request == PTRACE_TRACEME {
    		// Convert to AIX ptrace call.
    		err := ptrace64(PT_TRACE_ME, 0, 0, 0, 0)
    		if err != nil {
    			return err.(Errno)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top