std::this_thread::yield
From cppreference.com
                    
                                        
                    
                    
                                                            
                    |   Defined in header <thread>
   | 
||
|   void yield();  | 
(since C++11) | |
Hints the implementation to reschedule the execution of threads. Another thread may continue execution after the call to this function.
[edit] Parameters
(none)
[edit] Return value
(none)
[edit] Example
| This section is incomplete Reason: no example  |