leave......
posted on 2008-07-04 21:26 codekitten 阅读(9355) 评论(3) 编辑 收藏 引用 所属分类: C++
有一篇文章,或许有帮助http://www-128.ibm.com/developerworks/cn/linux/sdk/rt/part1/index.htmlbtw:ftime已经obsolete, 在linux下的man page, mac os x 也是obsolete. 回复 更多评论
很好 回复 更多评论
linux上都是用gettimeofday win上还是ftime,一般为了跨平台,win上会实现gettimeofday,如下: int inline gettimeofday (struct timeval *tp, void *tz) { struct _timeb timebuffer; _ftime (&timebuffer); tp->tv_sec = timebuffer.time; tp->tv_usec = timebuffer.millitm * 1000; return 0; } 回复 更多评论