common/thread: remove YieldCPU()

simply use the standard library yield()
This commit is contained in:
Weiyi Wang 2018-09-22 00:32:19 -04:00
parent 1e9d60cab6
commit 1855fb3d88
1 changed files with 0 additions and 8 deletions

View File

@ -96,14 +96,6 @@ private:
void SleepCurrentThread(int ms);
void SwitchCurrentThread(); // On Linux, this is equal to sleep 1ms
// Use this function during a spin-wait to make the current thread
// relax while another thread is working. This may be more efficient
// than using events because event functions use kernel calls.
inline void YieldCPU() {
std::this_thread::yield();
}
void SetCurrentThreadName(const char* name);
} // namespace Common