Triggers the system breakpoint in the process. @raise WindowsError: On error an exception is raised.
(self)
| 676 | win32.FlushInstructionCache(self.get_handle()) |
| 677 | |
| 678 | def debug_break(self): |
| 679 | """ |
| 680 | Triggers the system breakpoint in the process. |
| 681 | |
| 682 | @raise WindowsError: On error an exception is raised. |
| 683 | """ |
| 684 | # The exception is raised by a new thread. |
| 685 | # When continuing the exception, the thread dies by itself. |
| 686 | # This thread is hidden from the debugger. |
| 687 | win32.DebugBreakProcess(self.get_handle()) |
| 688 | |
| 689 | def is_wow64(self): |
| 690 | """ |
no test coverage detected