timeval.h

来自「java softwar for you to send out the req」· C头文件 代码 · 共 40 行

H
40
字号
/* adapted from timeval.h by Wu Yongwei */

#ifndef _TIMEVAL_H
#define _TIMEVAL_H

#ifdef _WIN32

#include <windows.h>

#define EPOCHFILETIME (116444736000000000i64)

__inline int gettimeofday( struct timeval *tv, void *tz )
{
    FILETIME ft;
    LARGE_INTEGER li;
    __int64 t;

    if( tv != NULL )
    {
        GetSystemTimeAsFileTime( &ft );

        li.LowPart  = ft.dwLowDateTime;
        li.HighPart = ft.dwHighDateTime;

        t  = li.QuadPart;       /* In 100-nanosecond intervals */
        t -= EPOCHFILETIME;     /* Offset to the Epoch time */
        t /= 10;                /* In microseconds */

        tv->tv_sec  = (long) ( t / 1000000 );
        tv->tv_usec = (long) ( t % 1000000 );
    }

    return 0;
}

#else
#include <sys/time.h>
#endif

#endif /* timeval.h */

⌨️ 快捷键说明

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