unix上有纳秒级的时间函数吗?
我只是对一个lib进行了性能测试,也许有些操作是纳秒级的,所以我想知道是否有任何函数可以做到这样的事情,谢谢您的关注。
I just have a performance test on a lib, maybe some operation is nanosecond-class, so I wonder if there is any function can do such thing, thank you for paying attention.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实需要纳米精度,那么您可能需要 HPET 和
clock_gettime()
。第一个链接甚至有一些示例代码,可以帮助您开始对 linux hpet 支持进行很好的解释。If you really need nano precision then you probably want HPET and the
clock_gettime()
. First link even has some sample code to get you started with a nice explanation of the linux hpet support.