diff options
Diffstat (limited to 'library/summary.mli')
| -rw-r--r-- | library/summary.mli | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/library/summary.mli b/library/summary.mli new file mode 100644 index 0000000000..faa887f37b --- /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 + + + |
