C++、MingW、ctime、nanosleep() 未找到?
我只是想使用 nanosleep() 但它似乎在 MingW ctime 中不可用:
#include <ctime> //this is what I need, isn't it?
How can I use nanosleep on MingW?谢谢。
I just wanted to use nanosleep() but it seems not to be available in MingW ctime:
#include <ctime> //this is what I need, isn't it?
How can I use nanosleep on MingW? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,MinGW 不提供 nanosleep()。
MinGW 仅提供此列表中的函数,这些函数位于 Microsoft API 中。
Unfortunately, MinGW doesn't provide nanosleep().
MinGW only provides functions on this list, which are in the Microsoft API.
标准 C++ 库中没有这样的函数 (
nanosleep
)。它是在
中声明的 POSIX 特定函数,而不是在
中声明的。你在窗户下面。 Windows 不是 POSIX。如果你想使用 POSIX 库,你需要安装 Cygwin。
In standard C++ library there is no such function (
nanosleep
).It is POSIX specific function declared in
<time.h>
not in<ctime>
. You are under windows. Windows isn't POSIX.If you want to use POSIX library you need to install Cygwin.