Extracted from Pike v8.0 release 358 as of 2016-11-23.
   

Class Thread.Condition

Inheritance graph
Thread.Condition Thread.Fifo Thread.Fifo Thread.Queue
Description

Implementation of condition variables.

Condition variables are used by threaded programs to wait for events happening in other threads.

Note

Condition variables are only available on systems with thread support. The Condition class is not simulated otherwise, since that can't be done accurately without continuations.

See also

Mutex