Debugger can pause/resume threads.

This commit is contained in:
Ben Vanik
2015-06-09 20:14:23 -07:00
parent 8dc20eb5cd
commit d482885378
3 changed files with 31 additions and 55 deletions

View File

@@ -45,10 +45,6 @@ class ThreadState {
uint32_t pcr_address() const { return pcr_address_; }
xe::cpu::frontend::PPCContext* context() const { return context_; }
bool Suspend() { return Suspend(~0); }
bool Suspend(uint32_t timeout_ms) { return false; }
bool Resume(bool force = false) { return false; }
static void Bind(ThreadState* thread_state);
static ThreadState* Get();
static uint32_t GetThreadID();