Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 linux 中使用基于 posix 的线程来监听非阻塞套接字。我想在特定的时间段内调用这个线程,例如 0.01 秒。有什么办法可以做到吗?谢谢
您可以在 0.01 秒内使用 select() 或 pselect() 函数。这样你的线程可以等待一个套接字(阻塞或非阻塞,没关系)。当 select() 返回时,它将告诉您套接字是否已准备好,或者在分配的超时时间内是否没有发生任何事情。