@@ -31,7 +31,7 @@ module Counter = struct
31
31
open Ctx_util
32
32
open Ctx_util.Syntax
33
33
34
- let lock_if b m = if b then lock_mutex m else empty_context' ()
34
+ let lock_if b m = if b then Mutex. protect m else empty_context' ()
35
35
36
36
(* * Note: we enforce that spawned threads don't raise uncaught exceptions,
37
37
which in theory changes the semantics of threads. The value of being
@@ -61,7 +61,7 @@ module Counter = struct
61
61
Condition. broadcast group.finished
62
62
63
63
let try_finish group fin =
64
- let < _ = lock_mutex group.owner.mut in
64
+ let < _ = Mutex. protect group.owner.mut in
65
65
if group.state = Running then
66
66
finish ~lock: false group fin
67
67
@@ -81,7 +81,7 @@ module Counter = struct
81
81
Util. try_to_result f x
82
82
|> Result. iter_error (fun e -> try_finish group (Uncaught e)))
83
83
~finally: (fun () ->
84
- let < _ = lock_mutex cnt.mut in
84
+ let < _ = Mutex. protect cnt.mut in
85
85
let tid = Thread. self () in
86
86
group.thread_count < - group.thread_count - 1 ;
87
87
ThreadH. remove cnt.groups tid;
@@ -121,15 +121,15 @@ module Counter = struct
121
121
}
122
122
123
123
let get_thread_count group =
124
- let < _ = lock_mutex group.owner.mut in group.thread_count
124
+ let < _ = Mutex. protect group.owner.mut in group.thread_count
125
125
126
126
(* * Wait for threads in a group to complete. Group must be finished first. *)
127
127
let join_group ~leftover_thread_limit ~timeout group =
128
128
(* busy waits to implement timeout *)
129
129
d_ " join_group" ;
130
130
131
131
let _ =
132
- let < _ = lock_mutex group.owner.mut in
132
+ let < _ = Mutex. protect group.owner.mut in
133
133
if group.state = Running then failwith " join_group: still running"
134
134
in
135
135
@@ -164,7 +164,7 @@ module Counter = struct
164
164
| Running -> d_ " still running" ; Condition. wait group.finished cnt.mut; loop ()
165
165
| Finished fin -> fin
166
166
in
167
- let < _ = lock_mutex cnt.mut in loop ()
167
+ let < _ = Mutex. protect cnt.mut in loop ()
168
168
in
169
169
170
170
let leftover_count =
0 commit comments