Sys.Signals module for a Variant type of signals (and a set_signal function that...
[ocaml.git] / debugger / envaux.mli
blob8b122cc347aa74d3379dbcb4457c620761f9b240
1 (***********************************************************************)
2 (* *)
3 (* Objective Caml *)
4 (* *)
5 (* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
6 (* Objective Caml port by John Malecki and Xavier Leroy *)
7 (* *)
8 (* Copyright 1996 Institut National de Recherche en Informatique et *)
9 (* en Automatique. All rights reserved. This file is distributed *)
10 (* under the terms of the Q Public License version 1.0. *)
11 (* *)
12 (***********************************************************************)
14 (* $Id$ *)
16 open Format
18 (* Convert environment summaries to environments *)
20 val env_of_event: Instruct.debug_event option -> Env.t
22 (* Empty the environment caches. To be called when load_path changes. *)
24 val reset_cache: unit -> unit
26 (* Error report *)
28 type error =
29 Module_not_found of Path.t
31 exception Error of error
33 val report_error: formatter -> error -> unit