Home | History | Annotate | Download | only in os

Lines Matching refs:block

25  * open(), close() and block() are sticky.  If open() is called before block(),
26 * block() will not block, and instead return immediately.
59 * Any threads that later approach block() will not block unless close()
77 * Any threads that call block() will block until someone calls open.
87 * Block the current thread until the condition is opened.
92 public void block()
106 * Block the current thread until the condition is opened or until
117 public boolean block(long timeout)
120 // call the other block() method in that case. It simplifies
137 this.block();