Resumes the thread execution. @rtype: int @return: Suspend count. If zero, the thread is running.
(self)
| 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 | """ |
no test coverage detected