blob: 72887b21accb8fd716a1ec497ea3541b8dcaec1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
type 'a getter = unit -> 'a
type 'a installer = ('a getter) -> unit
type remote_counters_status = (string * Obj.t) list
let counters : remote_counters_status ref = ref []
let (!!) x = !(!x)
let new_counter ~name a ~incr ~build =
assert(not (List.mem_assoc name !counters));
let data = ref (ref a) in
counters := (name, Obj.repr data) :: !counters;
let m = Mutex.create () in
let mk_thsafe_getter f () =
(* - slaves must use a remote counter getter, not this one! *)
(* - in the main process there is a race condition between slave
managers (that are threads) and the main thread, hence the mutex *)
if Flags.async_proofs_is_worker () then
Errors.anomaly(Pp.str"Slave processes must install remote counters");
Mutex.lock m; let x = f () in Mutex.unlock m;
build x in
let getter = ref(mk_thsafe_getter (fun () -> !data := incr !!data; !!data)) in
let installer f =
if not (Flags.async_proofs_is_worker ()) then
Errors.anomaly(Pp.str"Only slave processes can install a remote counter");
getter := f in
(fun () -> !getter ()), installer
let backup () = !counters
let restore l =
List.iter (fun (name, data) ->
assert(List.mem_assoc name !counters);
let dataref = Obj.obj (List.assoc name !counters) in
!dataref := !!(Obj.obj data))
l
|