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

Function ResumeThread

pydevd_attach_to_process/winappdbg/win32/kernel32.py:4319–4327  ·  view source on GitHub ↗
(hThread)

Source from the content-addressed store, hash-verified

4317# __in HANDLE hThread
4318# );
4319def ResumeThread(hThread):
4320 _ResumeThread = windll.kernel32.ResumeThread
4321 _ResumeThread.argtypes = [HANDLE]
4322 _ResumeThread.restype = DWORD
4323
4324 previousCount = _ResumeThread(hThread)
4325 if previousCount == DWORD(-1).value:
4326 raise ctypes.WinError()
4327 return previousCount
4328
4329
4330# BOOL WINAPI TerminateThread(

Callers 2

ResumeThreadsFunction · 0.85
SuspendThreadsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected