get_time.win32.c

来自「这是一个C的源代码」· C语言 代码 · 共 43 行

C
43
字号
#include <sys/time.h>#include "pbc_utils.h"typedef struct _FILETIME {  unsigned long dwLowDateTime;  unsigned long dwHighDateTime;} FILETIME;void __stdcall GetSystemTimeAsFileTime(FILETIME*);int __cdecl gettimeofday(struct timeval* p, void* tz /* IGNORED */){  union {    long long ns100; /*time since 1 Jan 1601 in 100ns units */    FILETIME ft;  } _now;    UNUSED_VAR(tz);  GetSystemTimeAsFileTime( &(_now.ft) );  p->tv_usec=(long)((_now.ns100 / 10LL) % 1000000LL );  p->tv_sec= (long)((_now.ns100-(116444736000000000LL))/10000000LL);  return 0; //assume success?}double get_time(void){    static struct timeval last_tv, tv;    static int first = 1;    static double res = 0;    if (first) {        gettimeofday(&last_tv, NULL);        first = 0;        return 0;    } else {        gettimeofday(&tv, NULL);        res += tv.tv_sec - last_tv.tv_sec;        res += (tv.tv_usec - last_tv.tv_usec) / 1000000.0;        last_tv = tv;        return res;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?