I'm building a multithreaded application with pthreads
and need a thread to periodically check some stuff.
(我正在使用pthreads
构建多线程应用程序,并且需要一个线程来定期检查一些东西。)
(在此线程之间的时间内,不应使用任何CPU。)
Is this possible withusleep()
? (usleep()
有可能吗?)
usleep()
not busy waiting? (usleep()
不忙于等待?)
(还是有更好的解决方案?)
ask by zeebonk translate from so