MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / notify_all

Method notify_all

tools/python-3.11.9-amd64/Lib/threading.py:396–403  ·  view source on GitHub ↗

Wake up all threads waiting on this condition. If the calling thread has not acquired the lock when this method is called, a RuntimeError is raised.

(self)

Source from the content-addressed store, hash-verified

394 pass
395
396 def notify_all(self):
397 """Wake up all threads waiting on this condition.
398
399 If the calling thread has not acquired the lock when this method
400 is called, a RuntimeError is raised.
401
402 """
403 self.notify(len(self._waiters))
404
405 def notifyAll(self):
406 """Wake up all threads waiting on this condition.

Callers 8

notifyAllMethod · 0.95
setMethod · 0.45
_releaseMethod · 0.45
_exitMethod · 0.45
resetMethod · 0.45
_breakMethod · 0.45
task_doneMethod · 0.45
_M_store_notify_allMethod · 0.45

Calls 1

notifyMethod · 0.95

Tested by

no test coverage detected