开发者

Cross-platform way of yielding a thread in C/C++?

开发者 https://www.devze.com 2023-01-27 05:17 出处:网络
In C and C++ is there a cross-platform way of yielding a thread? Something like sched_yield() or Sleep(0)?

In C and C++ is there a cross-platform way of yielding a thread? Something like sched_yield() or Sleep(0)? Does SDL_Delay(0) always yield or will it return immediat开发者_如何学Cely in some implementations?


Given that neither C nor C++ (up to C++98) has "threads," there is no fully cross-platform way for a thread to yield.

In C++0x, there is a function std::this_thread::yield() that can be called to yield. That will be the portable way for a thread to yield, once people start using the C++0x threads library.


in the c++ case, boost::thread::yield() does what you ask. On platforms with posix threads, pthread_yield() performs the same function for C and anything that links with it. On platforms where this doesn't immediately stop the thread and start another, it's because the scheduler doesn't support that functionality. I don't think that many such platforms actually exist in the wild.

0

精彩评论

暂无评论...
验证码 换一张
取 消