aboutsummaryrefslogtreecommitdiff
path: root/stm
diff options
context:
space:
mode:
authorEnrico Tassi2014-11-27 11:07:45 +0100
committerEnrico Tassi2014-11-27 16:06:54 +0100
commitdf8779378c3ea30f90b11204828c3a33513b9e3d (patch)
tree525a8406e70e13ea9e63489f2692d1e736ac200a /stm
parent72f471f42d7825b9ef370fb5a64acbd155d9140e (diff)
async_queries_* merged with async_proofs_*
Diffstat (limited to 'stm')
-rw-r--r--stm/stm.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/stm/stm.ml b/stm/stm.ml
index 2d1d8aefea..35c7239135 100644
--- a/stm/stm.ml
+++ b/stm/stm.ml
@@ -1500,7 +1500,7 @@ end = struct (* {{{ *)
QueryTask.({ QueryTask.t_where = prev; t_for = id; t_what = q }) switch
let init () = queue := Some (TaskQueue.create
- (if !Flags.async_queries_always_delegate then 1 else 0))
+ (if !Flags.async_proofs_always_delegate then 1 else 0))
end (* }}} *)
@@ -1969,7 +1969,7 @@ let process_transaction ?(newtip=Stateid.fresh ()) ~tty verbose c (loc, expr) =
assert(Stateid.equal report_id Stateid.dummy);
let id = VCS.new_node ~id:newtip () in
let queue =
- if !Flags.async_queries_always_delegate then `QueryQueue (ref false)
+ if !Flags.async_proofs_always_delegate then `QueryQueue (ref false)
else `MainQueue in
VCS.commit id (Cmd { cast = x; cids = []; cqueue = queue });
Backtrack.record (); if w == VtNow then finish (); `Ok