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

Method resume

pydevd_attach_to_process/winappdbg/thread.py:408–416  ·  view source on GitHub ↗

Resumes the thread execution. @rtype: int @return: Suspend count. If zero, the thread is running.

(self)

Source from the content-addressed store, hash-verified

406 return win32.SuspendThread(hThread)
407
408 def resume(self):
409 """
410 Resumes the thread execution.
411
412 @rtype: int
413 @return: Suspend count. If zero, the thread is running.
414 """
415 hThread = self.get_handle(win32.THREAD_SUSPEND_RESUME)
416 return win32.ResumeThread(hThread)
417
418 def is_alive(self):
419 """

Callers 6

get_contextMethod · 0.95
set_contextMethod · 0.95
change_registerMethod · 0.45
__clear_bpMethod · 0.45
__set_bpMethod · 0.45

Calls 1

get_handleMethod · 0.95

Tested by

no test coverage detected