MCPcopy Create free account
hub / github.com/beefytech/Beef / ThreadRestoreUnpause

Method ThreadRestoreUnpause

IDEHelper/WinDebugger.cpp:621–633  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

619}
620
621void WinDebugger::ThreadRestoreUnpause()
622{
623 BfLogDbg("ThreadRestoreUnpause\n");
624 for (auto threadInfo : mThreadList)
625 {
626 if (threadInfo->mIsBreakRestorePaused)
627 {
628 BfLogDbg("ResumeThread %d\n", threadInfo->mThreadId);
629 ::ResumeThread(threadInfo->mHThread);
630 threadInfo->mIsBreakRestorePaused = false;
631 }
632 }
633}
634
635void WinDebugger::UpdateThreadDebugRegisters(WdThreadInfo* threadInfo)
636{

Callers 1

ScanMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected