本文介绍了timeval结构不正确?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

timeval结构未由opengroup定义,请参见http://www.opengroup.org/onlinepubs/007908799/xsh/systime.h.html .在Windows 64位上,time_t为64位,长为32位. timeval结构应使用time_t,否则将来随着时间的推移也会出现问题.

The timeval struct is not defined as by the opengroup, see http://www.opengroup.org/onlinepubs/007908799/xsh/systime.h.html. time_t is 64bit on windows 64bit, long is 32bit. The timeval struct should use time_t, else we also get a problem in the future with time.

推荐答案

 

是否有正确的时间结构定义?

Is a correct definition of timeval structure available?


这篇关于timeval结构不正确?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 15:34