Namespaces
Variants
Views
Actions

std::this_threadyield

From cppreference.com
< cpp‎ | thread
Revision as of 03:18, 22 July 2011 by P12 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:cpp/thread/sidebar

Defined in header <thread>
void yield;
Template:mark c++0x feature

Hints the implementation to reschedule the execution of threads. Another thread may continue execution after the call to this function.

Template:params Template:param none

Template:returns Template:return none

Template:example cpp