Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PtraceIO (0.07 sec)

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

    	return PtraceIO(PIOD_READ_D, pid, addr, out, SizeofLong)
    }
    
    func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err error) {
    	return PtraceIO(PIOD_READ_I, pid, addr, out, SizeofLong)
    }
    
    func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err error) {
    	return PtraceIO(PIOD_WRITE_D, pid, addr, data, SizeofLong)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top