common/thread: remove YieldCPU()
simply use the standard library yield()
This commit is contained in:
parent
1e9d60cab6
commit
1855fb3d88
@ -96,14 +96,6 @@ private:
|
|||||||
|
|
||||||
void SleepCurrentThread(int ms);
|
void SleepCurrentThread(int ms);
|
||||||
void SwitchCurrentThread(); // On Linux, this is equal to sleep 1ms
|
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);
|
void SetCurrentThreadName(const char* name);
|
||||||
|
|
||||||
} // namespace Common
|
} // namespace Common
|
||||||
|
Loading…
Reference in New Issue
Block a user