Module nix::sys::ptrace

source ·

Enums

Ptrace Request enum defining the action to be taken.

Functions

Attach to a running process, as with ptrace(PT_ATTACH, ...)
Restart the stopped tracee process, as with ptrace(PTRACE_CONT, ...)
Detaches the current running process, as with ptrace(PT_DETACH, ...)
Issues a kill request as with ptrace(PT_KILL, ...)
Reads a word from a processes memory at the given address
Move the stopped tracee process forward by a single step as with ptrace(PT_STEP, ...)
Sets the process as traceable, as with ptrace(PT_TRACEME, ...)
Writes a word into the processes memory at the given address

Type Definitions