Remove processor dependency on XThread for breakpoints

This commit is contained in:
Dr. Chat
2015-11-28 13:12:01 -06:00
committed by Ben Vanik
parent 666f5543a8
commit 42c657c40a
3 changed files with 13 additions and 5 deletions

View File

@@ -10,6 +10,7 @@
#ifndef XENIA_BASE_THREADING_H_
#define XENIA_BASE_THREADING_H_
#include <algorithm>
#include <atomic>
#include <chrono>
#include <climits>
@@ -344,6 +345,7 @@ class Thread : public WaitHandle {
// within that thread.
static std::unique_ptr<Thread> Create(CreationParameters params,
std::function<void()> start_routine);
static std::unique_ptr<Thread> GetCurrentThread();
// Ends the calling thread.
// No destructors are called, and this function does not return.