package mopsa

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Breakpoints for the interactive mode

type breakpoint =
  1. | B_function of string
    (*

    function

    *)
  2. | B_line of string * int
    (*

    line

    *)
  3. | B_named of string
    (*

    Named breakpoint

    *)
  4. | B_alarm
    (*

    Break on new alarms

    *)

Breakpoint

val compare_breakpoint : breakpoint -> breakpoint -> int

Compare two breakpoints

val pp_breakpoint : Stdlib.Format.formatter -> breakpoint -> unit

Print a breakpoint

module BreakpointSet : sig ... end

Set of breakpoints

val pp_breakpoint_set : Stdlib.Format.formatter -> BreakpointSet.t -> unit

Print a set of breakpoints

exception Invalid_breakpoint_syntax

Exception raised when parsing an invalid breakpoint string

val parse_breakpoint : string -> string -> breakpoint

Parse a breakpoint string

val breakpoints : BreakpointSet.t Stdlib.ref

Set of active breakpoints

OCaml

Innovation. Community. Security.