1996-11-29 08:55:09 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1996-11-29 08:55:09 -08:00
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml port by John Malecki and Xavier Leroy *)
|
1996-11-29 08:55:09 -08:00
|
|
|
(* *)
|
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1996-11-29 08:55:09 -08:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2000-03-06 14:12:09 -08:00
|
|
|
open Format;;
|
|
|
|
|
1996-11-29 08:55:09 -08:00
|
|
|
(* Display information about the current event. *)
|
2000-03-06 14:12:09 -08:00
|
|
|
val show_current_event : formatter -> unit;;
|
1996-11-29 08:55:09 -08:00
|
|
|
|
|
|
|
(* Display information about the current frame. *)
|
|
|
|
(* --- `select frame' must have succeded before calling this function. *)
|
2000-03-06 14:12:09 -08:00
|
|
|
val show_current_frame : formatter -> bool -> unit;;
|
1996-11-29 08:55:09 -08:00
|
|
|
|
|
|
|
(* Display short information about one frame. *)
|
2000-03-06 14:12:09 -08:00
|
|
|
val show_one_frame : int -> formatter -> Instruct.debug_event -> unit
|