Skip to content

Commit 464b03e

Browse files
committed
use Mutex.protect directly
1 parent 4e5ba47 commit 464b03e

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

src/common/ctx_util.ml

-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ let timed : _ t = fun k ->
5959
| Error _ as e, _ -> e
6060
| Ok r, t -> Ok (r, t)
6161

62-
let lock_mutex m : _ t = Mutex.protect m
63-
6462
let capture_exceptions ?(filter = Fun.const true) () : _ t = fun k ->
6563
match k () with
6664
| Ok x -> Ok (Ok x)

src/stdlib-variants/thread-counter/thread_counter.ml

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Counter = struct
3131
open Ctx_util
3232
open Ctx_util.Syntax
3333

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' ()
3535

3636
(** Note: we enforce that spawned threads don't raise uncaught exceptions,
3737
which in theory changes the semantics of threads. The value of being
@@ -61,7 +61,7 @@ module Counter = struct
6161
Condition.broadcast group.finished
6262

6363
let try_finish group fin =
64-
let< _ = lock_mutex group.owner.mut in
64+
let< _ = Mutex.protect group.owner.mut in
6565
if group.state = Running then
6666
finish ~lock:false group fin
6767

@@ -81,7 +81,7 @@ module Counter = struct
8181
Util.try_to_result f x
8282
|> Result.iter_error (fun e -> try_finish group (Uncaught e)))
8383
~finally:(fun () ->
84-
let< _ = lock_mutex cnt.mut in
84+
let< _ = Mutex.protect cnt.mut in
8585
let tid = Thread.self () in
8686
group.thread_count <- group.thread_count - 1;
8787
ThreadH.remove cnt.groups tid;
@@ -121,15 +121,15 @@ module Counter = struct
121121
}
122122

123123
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
125125

126126
(** Wait for threads in a group to complete. Group must be finished first. *)
127127
let join_group ~leftover_thread_limit ~timeout group =
128128
(* busy waits to implement timeout *)
129129
d_ "join_group";
130130

131131
let _ =
132-
let< _ = lock_mutex group.owner.mut in
132+
let< _ = Mutex.protect group.owner.mut in
133133
if group.state = Running then failwith "join_group: still running"
134134
in
135135

@@ -164,7 +164,7 @@ module Counter = struct
164164
| Running -> d_ "still running"; Condition.wait group.finished cnt.mut; loop ()
165165
| Finished fin -> fin
166166
in
167-
let< _ = lock_mutex cnt.mut in loop ()
167+
let< _ = Mutex.protect cnt.mut in loop ()
168168
in
169169

170170
let leftover_count =

0 commit comments

Comments
 (0)