Lines Matching full:variable
6 A :dfn:`condition variable` is a synchronization primitive
17 condition variable is referenced by its memory address.
20 variable.
22 A condition variable is basically a queue of threads that threads can put
28 #. Puts the current thread in the condition variable queue.
38 A condition variable must be initialized before it can be used.
44 Defining a Condition Variable
47 A condition variable is defined using a variable of type :c:struct:`k_condvar`.
50 The following code defines a condition variable:
58 Alternatively, a condition variable can be defined and initialized at compile time
67 Waiting on a Condition Variable
72 The following code waits on the condition variable.
93 Signaling a Condition Variable
96 A condition variable is signaled on by calling :c:func:`k_condvar_signal` for