有 libfaketime 到 OSX 的端口吗?

发布于 2024-11-04 15:25:08 字数 161 浏览 0 评论 0原文

有 libfaketime 到 OSX 的端口吗? http://www.code-wizards.com/projects/libfaketime/

Is there a port of libfaketime to OSX? http://www.code-wizards.com/projects/libfaketime/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绮筵 2024-11-11 15:25:08

freshmeat 上,libfaketime 将其平台列为 Linux 和 POSIX。由于 OSX 被列为完全 POSIX 兼容,因此它应该可以按原样完美使用。

编辑

如果clock_gettime是唯一有问题的函数并且您感觉很傻,您可以尝试这个小黑客

#if _POSIX_TIMERS > 0
clock_gettime(CLOCK_REALTIME, &tp);
#else
struct timeval tv;
gettimeofday(&tv, NULL);
tp.tv_sec = tv.tv_sec;
tp.tv_nsec = tv.tv_usec*1000;
#endif

On freshmeat libfaketime lists its platforms as Linux and POSIX. Since OSX is listed as fully POSIX compliant, it should be perfectly usable as-is.

EDIT

if clock_gettime is the only problematic function and you're feeling fool-hardy, you could try this little hack:

#if _POSIX_TIMERS > 0
clock_gettime(CLOCK_REALTIME, &tp);
#else
struct timeval tv;
gettimeofday(&tv, NULL);
tp.tv_sec = tv.tv_sec;
tp.tv_nsec = tv.tv_usec*1000;
#endif
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文