summaryrefslogtreecommitdiffstats
path: root/src/common/thread.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-29 18:26:19 +0100
committerLioncash <mathew1800@gmail.com>2019-03-29 18:26:21 +0100
commit394095438ac5de4723954b1498cac8d677ddd4f5 (patch)
tree5a4f57afae68adcf398c399a167b29eb5cb8e274 /src/common/thread.h
parentMerge pull request #2284 from lioncash/heap-alloc (diff)
downloadyuzu-394095438ac5de4723954b1498cac8d677ddd4f5.tar
yuzu-394095438ac5de4723954b1498cac8d677ddd4f5.tar.gz
yuzu-394095438ac5de4723954b1498cac8d677ddd4f5.tar.bz2
yuzu-394095438ac5de4723954b1498cac8d677ddd4f5.tar.lz
yuzu-394095438ac5de4723954b1498cac8d677ddd4f5.tar.xz
yuzu-394095438ac5de4723954b1498cac8d677ddd4f5.tar.zst
yuzu-394095438ac5de4723954b1498cac8d677ddd4f5.zip
Diffstat (limited to 'src/common/thread.h')
-rw-r--r--src/common/thread.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index 2cf74452d..c5fc3533d 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -9,7 +9,6 @@
#include <cstddef>
#include <mutex>
#include <thread>
-#include "common/common_types.h"
namespace Common {
@@ -78,9 +77,6 @@ private:
std::size_t generation = 0; // Incremented once each time the barrier is used
};
-void SetThreadAffinity(std::thread::native_handle_type thread, u32 mask);
-void SetCurrentThreadAffinity(u32 mask);
-void SwitchCurrentThread(); // On Linux, this is equal to sleep 1ms
void SetCurrentThreadName(const char* name);
} // namespace Common