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.
我只是想使用 nanosleep() 但它似乎在 MingW ctime 中不可用:
#include <ctime> //this is what I need, isn't it?
如何在 MingW 上使用 nanosleep?谢谢。
不幸的是,MinGW 不提供 nanosleep()。 MinGW 仅提供此列表中的函数,这些函数位于 Microsoft API 中。
在标准 C++ 库中没有这样的函数 ( nanosleep)。<time.h>它是在not in 中声明的 POSIX 特定函数<ctime>。你在窗户下。Windows 不是 POSIX。如果你想使用 POSIX 库,你需要安装Cygwin。
nanosleep
<time.h>
<ctime>