Home | History | Annotate | Download | only in python2.7

Lines Matching refs:blocking

118     without blocking; the thread must release it once for each time it has
127 again without blocking; the thread must release it once for each time it
146 def acquire(self, blocking=1):
147 """Acquire a lock, blocking or non-blocking.
158 When invoked with the blocking argument set to true, do the same thing
161 When invoked with the blocking argument set to false, do not block. If a
171 self._note("%s.acquire(%s): recursive success", self, blocking)
173 rc = self.__block.acquire(blocking)
178 self._note("%s.acquire(%s): initial success", self, blocking)
181 self._note("%s.acquire(%s): failure", self, blocking)
439 def acquire(self, blocking=1):
451 When invoked with blocking set to true, do the same thing as when called
454 When invoked with blocking
462 if not blocking:
466 self, blocking, self.__value)