Lines Matching refs:current
501 A bounded semaphore checks to make sure its current value doesn't exceed its
1072 "Remove current thread from the dict of currently running threads."
1098 join() raises a RuntimeError if an attempt is made to join the current
1109 raise RuntimeError("cannot join current thread")
1447 """Return the current Thread object, corresponding to the caller's thread of control.
1459 """Return the current Thread object, corresponding to the caller's thread of control.
1617 # fork() only copied the current thread; clear references to others.
1621 current = _active[get_ident()]
1626 current = _MainThread()
1628 _main_thread = current
1642 if thread is current: