aboutsummaryrefslogtreecommitdiff
path: root/stm/tQueue.ml
diff options
context:
space:
mode:
authorAlec Faithfull2015-10-06 14:20:22 +0200
committerEnrico Tassi2015-10-09 11:01:49 +0200
commitf6b3704391de97ee544da9ae7316685cd2d9fae3 (patch)
tree68c2b7507386e0cea221893b7bd28d45c91d8b65 /stm/tQueue.ml
parent56ca108e63191e90c3d4169c37a4c97017e3c6ae (diff)
TQueue: Allow some tasks to be saved when clearing a TQueue
Diffstat (limited to 'stm/tQueue.ml')
-rw-r--r--stm/tQueue.ml12
1 files changed, 12 insertions, 0 deletions
diff --git a/stm/tQueue.ml b/stm/tQueue.ml
index 2a43cd7d13..2dad962bec 100644
--- a/stm/tQueue.ml
+++ b/stm/tQueue.ml
@@ -105,6 +105,18 @@ let clear { queue = q; lock = m; cond = c } =
PriorityQueue.clear q;
Mutex.unlock m
+let clear_saving { queue = q; lock = m; cond = c } f =
+ Mutex.lock m;
+ let saved = ref [] in
+ while not (PriorityQueue.is_empty q) do
+ let elem = PriorityQueue.pop q in
+ match f elem with
+ | Some x -> saved := x :: !saved
+ | None -> ()
+ done;
+ Mutex.unlock m;
+ List.rev !saved
+
let is_empty { queue = q } = PriorityQueue.is_empty q
let destroy tq =