We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a1383 commit 09bc11dCopy full SHA for 09bc11d
libcxx/include/__thread/timed_backoff_policy.h
@@ -29,8 +29,6 @@ struct __libcpp_timed_backoff_policy {
29
__libcpp_thread_sleep_for(chrono::milliseconds(8));
30
else if (__elapsed > chrono::microseconds(64))
31
__libcpp_thread_sleep_for(__elapsed / 2);
32
- else if (__elapsed > chrono::microseconds(4))
33
- __libcpp_thread_yield();
34
else {
35
} // poll
36
return false;
0 commit comments