求sys/time.h文件,注意不是time.h,谢谢好人帮助!

C++语言 码拜 9年前 (2015-05-11) 2719次浏览 0个评论

我最近在弄box2d,运行时发现缺少<sys/time.h>文件,用time.h编译就会出错,缺少gettimeofday()  etc…在VS中没找到,网上也搜索了好久,希望能有好心人帮助给个链接,谢谢了!好人一生平安!

求助,很着急
10分
VS下本来就没,提取给你
http://vdisk.weibo.com/s/wPulE
linux的代码你要放windows用吗。。。
…那是linux 下的吧!  windows 当然没有啊
gettimeofday()  我在C#中用过
10分
#ifndef _SYS_TIME_H_
#define _SYS_TIME_H_
#include <time.h>

#ifdef	__cplusplus
extern "C" {
#endif

#ifndef _TIMEVAL_DEFINED /* also in winsock[2].h */
#define _TIMEVAL_DEFINED
struct timeval {
  long tv_sec;
  long tv_usec;
};
#define timerisset(tvp)	 ((tvp)->tv_sec || (tvp)->tv_usec)
#define timercmp(tvp, uvp, cmp) \
	(((tvp)->tv_sec != (uvp)->tv_sec) ? \
	((tvp)->tv_sec cmp (uvp)->tv_sec) : \
	((tvp)->tv_usec cmp (uvp)->tv_usec))
#define timerclear(tvp)	 (tvp)->tv_sec = (tvp)->tv_usec = 0
#endif /* _TIMEVAL_DEFINED */

/* Provided for compatibility with code that assumes that
   the presence of gettimeofday function implies a definition
   of struct timezone. */
struct timezone
{
  int tz_minuteswest; /* of Greenwich */
  int tz_dsttime;     /* type of dst correction to apply */
};

/*
   Implementation as per:
   The Open Group Base Specifications, Issue 6
   IEEE Std 1003.1, 2004 Edition

   The timezone pointer arg is ignored.  Errors are ignored.
*/ 
int __cdecl __MINGW_NOTHROW gettimeofday(struct timeval *__restrict__,
			 void *__restrict__  /*	tzp (unused) */);

#ifdef	__cplusplus
}
#endif


#endif /* _SYS_TIME_H_ */
换个时间函数就是
gettickcount
谢谢大家的回复,我昨天已经解决了,是 6楼的方法,在msdn上找到替换掉就好了,感谢2楼给的链接
我也遇到这个问题,能具体说一下吗?我是新手,不是太理解

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明求sys/time.h文件,注意不是time.h,谢谢好人帮助!
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!