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

Function ptrace_write_int

freebsd/mips/mips/pm_machdep.c:225–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223}
224
225static int
226ptrace_write_int(struct thread *td, uintptr_t addr, int v)
227{
228
229 if (proc_writemem(td, td->td_proc, addr, &v, sizeof(v)) != sizeof(v))
230 return (EFAULT);
231 return (0);
232}
233
234int
235ptrace_single_step(struct thread *td)

Callers 2

ptrace_single_stepFunction · 0.70
ptrace_clear_single_stepFunction · 0.70

Calls 1

proc_writememFunction · 0.85

Tested by

no test coverage detected