1996-11-29 08:55:09 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Objective Caml *)
|
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* Objective Caml port by John Malecki and Xavier Leroy *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1998-11-12 06:51:27 -08:00
|
|
|
(* en Automatique. Distributed only by permission. *)
|
1996-11-29 08:55:09 -08:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
(**************************** Time travel ******************************)
|
|
|
|
|
|
|
|
open Primitives
|
|
|
|
|
|
|
|
exception Current_checkpoint_lost
|
|
|
|
|
|
|
|
val new_checkpoint : int -> io_channel -> unit
|
|
|
|
val set_file_descriptor : int -> io_channel -> bool
|
|
|
|
val kill_all_checkpoints : unit -> unit
|
|
|
|
val forget_process : io_channel -> int -> unit
|
|
|
|
val recover : unit -> unit
|
|
|
|
|
|
|
|
val go_to : int -> unit
|
|
|
|
|
|
|
|
val run : unit -> unit
|
|
|
|
val back_run : unit -> unit
|
|
|
|
val step : int -> unit
|
|
|
|
val finish : unit -> unit
|
|
|
|
val next : int -> unit
|
1997-03-30 11:43:01 -08:00
|
|
|
val start : unit -> unit
|
|
|
|
val previous : int -> unit
|