From 05074a8ee576e155596cf0c8bb3c8372a4dfa086 Mon Sep 17 00:00:00 2001 From: filliatr Date: Fri, 3 Sep 1999 09:53:11 +0000 Subject: modules Libobject et Summary (partiel) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@36 85f007b7-540e-0410-9357-904b9bb8a0f7 --- library/summary.mli | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 library/summary.mli (limited to 'library/summary.mli') diff --git a/library/summary.mli b/library/summary.mli new file mode 100644 index 000000000..faa887f37 --- /dev/null +++ b/library/summary.mli @@ -0,0 +1,25 @@ + +(* $Id$ *) + +(*i*) +open Names +(*i*) + +(* This module registers the declaration of global tables, which will be kept + in synchronization during the various backtracks of the system. *) + +type 'a summary_declaration = { + freeze_function : unit -> 'a; + unfreeze_function : 'a -> unit; + init_function : unit -> unit } + +val declare_summary : string -> 'a summary_declaration -> unit + +type frozen_summaries + +val freeze_summaries : unit -> frozen_summaries +val unfreeze_summaries : frozen_summaries -> unit +val init_summaries : unit -> unit + + + -- cgit v1.2.3