sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
module Mutex : Mutex.Mutex_t
val create : unit -> condition
Create a condition. Implementation-wise, * a duppy task is created that will be used to select a * waiting computation, and resume it. * Thus, priority
and s
represents, resp., the priority * and scheduler used when running calling process' computation.
val wait : condition -> Mutex.mutex -> (unit, 'a) t
wait h m
is a computation that: *
m
Condition.signal c
or Condition.broadcast c
has been calledm
unit
broadcast c
is a computation that * resumes all computations waiting on c
. It should * return immediately.