MCPcopy Create free account
hub / github.com/F-Stack/f-stack / proc_readmem

Function proc_readmem

freebsd/kern/sys_process.c:321–327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319}
320
321ssize_t
322proc_readmem(struct thread *td, struct proc *p, vm_offset_t va, void *buf,
323 size_t len)
324{
325
326 return (proc_iop(td, p, va, buf, len, UIO_READ));
327}
328
329ssize_t
330proc_writemem(struct thread *td, struct proc *p, vm_offset_t va, void *buf,

Callers 6

ptrace_read_intFunction · 0.85
ptrace_read_intFunction · 0.85
proc_read_stringFunction · 0.85
get_proc_vector32Function · 0.85
get_proc_vectorFunction · 0.85
kern_ptraceFunction · 0.85

Calls 1

proc_iopFunction · 0.85

Tested by

no test coverage detected