Module nix::sys::ptrace[][src]

Enums

Request

Ptrace Request enum defining the action to be taken.

Functions

attach

Attach to a running process, as with ptrace(PT_ATTACH, ...)

cont

Restart the stopped tracee process, as with ptrace(PTRACE_CONT, ...)

detach

Detaches the current running process, as with ptrace(PT_DETACH, ...)

kill

Issues a kill request as with ptrace(PT_KILL, ...)

read

Reads a word from a processes memory at the given address

step

Move the stopped tracee process forward by a single step as with ptrace(PT_STEP, ...)

traceme

Sets the process as traceable, as with ptrace(PT_TRACEME, ...)

write

Writes a word into the processes memory at the given address

Type Definitions

RequestType