aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/global.ml
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2014-12-12 16:39:32 +0100
committerGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2014-12-17 15:05:04 +0100
commit5f2f22e7ff5d53e3258affa0e0e41666d5e0691d (patch)
treea8a52df78e46d9b663f5583f36aa1afe401fdd05 /library/global.ml
parenteb1eddf24932232890e32acf0fc4ff418ad0c281 (diff)
Global: export the name of the summary entry
In this way one can make surgery on the system states, like checking if two frozen states have the same environment (i.e. no running "abstract" in between)
Diffstat (limited to 'library/global.ml')
-rw-r--r--library/global.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/global.ml b/library/global.ml
index 68fb1c46f..9aaeffd71 100644
--- a/library/global.ml
+++ b/library/global.ml
@@ -12,6 +12,8 @@ open Environ
(** We introduce here the global environment of the system,
and we declare it as a synchronized table. *)
+let global_env_summary_name = "Global environment"
+
module GlobalSafeEnv : sig
val safe_env : unit -> Safe_typing.safe_environment
@@ -26,7 +28,7 @@ let join_safe_environment ?except () =
global_env := Safe_typing.join_safe_environment ?except !global_env
let () =
- Summary.declare_summary "Global environment"
+ Summary.declare_summary global_env_summary_name
{ Summary.freeze_function = (function
| `Yes -> join_safe_environment (); !global_env
| `No -> !global_env