summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Weiyi Wang2018-09-22 00:32:19 -0400
committerGravatar fearlessTobi2018-09-22 23:27:42 +0200
commite0ce07aa7d7642fb6da35654256e0f7c7dd33a55 (patch)
tree850b7d8234a21e2663666730adca172b32b3581f /src
parentMerge pull request #1386 from jroweboy/oops (diff)
downloadyuzu-e0ce07aa7d7642fb6da35654256e0f7c7dd33a55.tar.gz
yuzu-e0ce07aa7d7642fb6da35654256e0f7c7dd33a55.tar.xz
yuzu-e0ce07aa7d7642fb6da35654256e0f7c7dd33a55.zip
common/thread: remove YieldCPU()
simply use the standard library yield()
Diffstat (limited to 'src')
-rw-r--r--src/common/thread.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index 12a1c095c..6cbdb96a3 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -87,14 +87,6 @@ private:
87 87
88void SleepCurrentThread(int ms); 88void SleepCurrentThread(int ms);
89void SwitchCurrentThread(); // On Linux, this is equal to sleep 1ms 89void SwitchCurrentThread(); // On Linux, this is equal to sleep 1ms
90
91// Use this function during a spin-wait to make the current thread
92// relax while another thread is working. This may be more efficient
93// than using events because event functions use kernel calls.
94inline void YieldCPU() {
95 std::this_thread::yield();
96}
97
98void SetCurrentThreadName(const char* name); 90void SetCurrentThreadName(const char* name);
99 91
100} // namespace Common 92} // namespace Common