summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-23 17:51:53 -0400
committerGravatar GitHub2018-09-23 17:51:53 -0400
commit6b05f71b671268e15ce0fd83fd7adbef8896a491 (patch)
tree1763dadf5559f41231fc2da5842c74a32fe96f31 /src
parentMerge pull request #1385 from FearlessTobi/port-4214 (diff)
parentcommon/thread: remove YieldCPU() (diff)
downloadyuzu-6b05f71b671268e15ce0fd83fd7adbef8896a491.tar.gz
yuzu-6b05f71b671268e15ce0fd83fd7adbef8896a491.tar.xz
yuzu-6b05f71b671268e15ce0fd83fd7adbef8896a491.zip
Merge pull request #1387 from FearlessTobi/port-4245
Port citra-emu/citra#4245: "common/thread: remove YieldCPU()"
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