Commits

Saleem Abdulrasool committed 91a296fad69
stdlib: avoid posix sched_yield in favour of C++11 Use the C++11 std::this_thread::yield to abstract away platform specific differences for yield execution time. This makes the code more portable to non-POSIX environments (i.e. Windows). NFC.