glib.Cond

Undocumented in source.

Public Imports

glib.c.types
public import glib.c.types;
gtkc.glibtypes
public import gtkc.glibtypes;

Members

Classes

Cond
class Cond

The glib.Cond struct is an opaque data structure that represents a condition. Threads can block on a glib.Cond if they find a certain condition to be false. If other threads change the state of this condition they signal the glib.Cond, and that causes the waiting threads to be woken up.