package containers

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Utils around Mutex

  • since 0.8
type 'a t

A value surrounded with a lock

val create : 'a -> 'a t

Create a new protected value

val with_lock : 'a t -> ('a -> 'b) -> 'b

with_lock l f runs f x where x is the value protected with the lock l, in a critical section. If f x fails, with_lock l f fails too but the lock is released

module LockRef : sig ... end

Type allowing to manipulate the lock as a reference

val with_lock_as_ref : 'a t -> f:('a LockRef.t -> 'b) -> 'b

with_lock_as_ref l f calls f with a reference-like object that allows to manipulate the value of l safely. The object passed to f must not escape the function call

  • since 0.13
val update : 'a t -> ('a -> 'a) -> unit

update l f replaces the content x of l with f x, atomically

val mutex : _ t -> Mutex.t

Underlying mutex

val get : 'a t -> 'a

Get the value in the lock. The value that is returned isn't protected!

val set : 'a t -> 'a -> unit

Atomically set the value

  • since 0.13
val incr : int t -> unit

Atomically increment the value

  • since 0.13
val decr : int t -> unit

Atomically decrement the value

  • since 0.13
OCaml

Innovation. Community. Security.