Deleted Added
full compact
ptrace.2 (231902) ptrace.2 (233648)
1.\" $FreeBSD: head/lib/libc/sys/ptrace.2 231902 2012-02-18 22:26:32Z kib $
1.\" $FreeBSD: head/lib/libc/sys/ptrace.2 233648 2012-03-29 05:02:12Z eadler $
2.\" $NetBSD: ptrace.2,v 1.2 1995/02/27 12:35:37 cgd Exp $
3.\"
4.\" This file is in the public domain.
5.Dd February 19, 2012
6.Dt PTRACE 2
7.Os
8.Sh NAME
9.Nm ptrace

--- 426 unchanged lines hidden (view full) ---

436.Fn ptrace .
437This provides a low-cost way for the tracing process to determine if the
438VM map changed since the last time this request was made.
439.It PT_VM_ENTRY
440This request is used to iterate over the entries of the VM map of the traced
441process.
442The
443.Fa addr
2.\" $NetBSD: ptrace.2,v 1.2 1995/02/27 12:35:37 cgd Exp $
3.\"
4.\" This file is in the public domain.
5.Dd February 19, 2012
6.Dt PTRACE 2
7.Os
8.Sh NAME
9.Nm ptrace

--- 426 unchanged lines hidden (view full) ---

436.Fn ptrace .
437This provides a low-cost way for the tracing process to determine if the
438VM map changed since the last time this request was made.
439.It PT_VM_ENTRY
440This request is used to iterate over the entries of the VM map of the traced
441process.
442The
443.Fa addr
444argument specifies a pointer to a
444argument specifies a pointer to a
445.Vt "struct ptrace_vm_entry" ,
446which is defined as follows:
447.Bd -literal
448struct ptrace_vm_entry {
449 int pve_entry;
450 int pve_timestamp;
451 u_long pve_start;
452 u_long pve_end;

--- 154 unchanged lines hidden ---
445.Vt "struct ptrace_vm_entry" ,
446which is defined as follows:
447.Bd -literal
448struct ptrace_vm_entry {
449 int pve_entry;
450 int pve_timestamp;
451 u_long pve_start;
452 u_long pve_end;

--- 154 unchanged lines hidden ---