]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/ocaml/contrib/debugger/show_information.mli
update
[l4.git] / l4 / pkg / ocaml / contrib / debugger / show_information.mli
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 (***********************************************************************)
13
14 (* $Id: show_information.mli 2908 2000-03-06 22:12:09Z weis $ *)
15
16 open Format;;
17
18 (* Display information about the current event. *)
19 val show_current_event : formatter -> unit;;
20
21 (* Display information about the current frame. *)
22 (* --- `select frame' must have succeded before calling this function. *)
23 val show_current_frame : formatter -> bool -> unit;;
24
25 (* Display short information about one frame. *)
26 val show_one_frame : int -> formatter -> Instruct.debug_event -> unit