Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PT_TRACE_ME (0.21 sec)

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

    	parms[1] = unsafe.Pointer(&userdata[0])
    	parms[2] = unsafe.Pointer(&rv)
    	parms[3] = unsafe.Pointer(&rc)
    	parms[4] = unsafe.Pointer(&rn)
    	bpxcall(parms[:], BPX4PTQ)
    	return rv, rc, rn
    }
    
    const (
    	PT_TRACE_ME             = 0  // Debug this process
    	PT_READ_I               = 1  // Read a full word
    	PT_READ_D               = 2  // Read a full word
    	PT_READ_U               = 3  // Read control info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix.go

    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)
    		}
    		return 0
    	}
    	return ENOSYS
    }
    
    func ptracePeek(pid int, addr uintptr, out []byte) (count int, err error) {
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PT_READ_U", Const, 0},
    		{"PT_SIGEXC", Const, 0},
    		{"PT_STEP", Const, 0},
    		{"PT_TEXT_ADDR", Const, 0},
    		{"PT_TEXT_END_ADDR", Const, 0},
    		{"PT_THUPDATE", Const, 0},
    		{"PT_TRACE_ME", Const, 0},
    		{"PT_WRITE_D", Const, 0},
    		{"PT_WRITE_I", Const, 0},
    		{"PT_WRITE_U", Const, 0},
    		{"ParseDirent", Func, 0},
    		{"ParseNetlinkMessage", Func, 0},
    		{"ParseNetlinkRouteAttr", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top