MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / wait

Method wait

pydevd_attach_to_process/winappdbg/thread.py:354–362  ·  view source on GitHub ↗

Waits for the thread to finish executing. @type dwTimeout: int @param dwTimeout: (Optional) Timeout value in milliseconds. Use C{INFINITE} or C{None} for no timeout.

(self, dwTimeout=None)

Source from the content-addressed store, hash-verified

352 # ------------------------------------------------------------------------------
353
354 def wait(self, dwTimeout=None):
355 """
356 Waits for the thread to finish executing.
357
358 @type dwTimeout: int
359 @param dwTimeout: (Optional) Timeout value in milliseconds.
360 Use C{INFINITE} or C{None} for no timeout.
361 """
362 self.get_handle(win32.SYNCHRONIZE).wait(dwTimeout)
363
364 def kill(self, dwExitCode=0):
365 """

Callers 1

is_aliveMethod · 0.95

Calls 1

get_handleMethod · 0.95

Tested by

no test coverage detected