Skip to content

Instantly share code, notes, and snippets.

module Metasm
# this class implements a high-level debugging API (abstract superclass)
class Debugger
class Breakpoint
attr_accessor :address,
# context where the bp was defined
:pid, :tid,
# bool: oneshot ?
:oneshot,
# current bp state: :active, :inactive (internal use), :disabled (user-specified)