| 327 | } |
| 328 | |
| 329 | ssize_t |
| 330 | proc_writemem(struct thread *td, struct proc *p, vm_offset_t va, void *buf, |
| 331 | size_t len) |
| 332 | { |
| 333 | |
| 334 | return (proc_iop(td, p, va, buf, len, UIO_WRITE)); |
| 335 | } |
| 336 | |
| 337 | static int |
| 338 | ptrace_vm_entry(struct thread *td, struct proc *p, struct ptrace_vm_entry *pve) |
no test coverage detected