Lines Matching full:signaled
24 integer denoting the maximum value. It is considered signaled (that is,
31 identifier denoting its owner. A mutex is considered signaled when its
49 a volatile boolean state denoting whether it is signaled or not. There
86 __u32 signaled;
144 * - ``signaled``
145 - If nonzero, the event is initially signaled, otherwise
164 semaphore's count causes it to become signaled, eligible threads
186 unowned and signaled, and eligible threads waiting on it will be
252 * - ``signaled``
283 signaled, and will not fail with ``ETIMEDOUT``.
300 which was signaled. If ``alert`` was signaled instead,
304 specifies an "alert" event object which, if signaled, will
315 to do so, it sleeps until an object becomes signaled, subsequently
318 if multiple objects are signaled.
320 A semaphore is considered to be signaled if its count is nonzero, and
322 to be signaled if it is unowned or if its owner matches the ``owner``
331 signaled. If two wait operations are queued on the same semaphore,
332 and a value of one is posted to it, only one is signaled.
345 wakeup occurs due to that object being signaled, ``index`` is set to
359 simultaneously signaled, subsequently acquiring them, or the timeout
363 Objects may become signaled and subsequently designaled (through
365 once all objects are simultaneously signaled does the ioctl acquire
377 succeed if all members in ``objs`` are signaled, *or* if ``alert`` is
378 signaled. In the latter case ``index`` will be set to ``count``. As