雷火电竞-中国电竞赛事及体育赛事平台

歡迎來到入門教程網(wǎng)!

C語言

當前位置:主頁 > 軟件編程 > C語言 >

關于win32 gettimeofday替代方案

來源:本站原創(chuàng)|時間:2020-01-10|欄目:C語言|點擊:

來自nginx代碼:

void
ngx_gettimeofday(struct timeval *tp)
{
  uint64_t intervals;
  FILETIME ft;

  GetSystemTimeAsFileTime(&ft);

  /*
   * A file time is a 64-bit value that represents the number
   * of 100-nanosecond intervals that have elapsed since
   * January 1, 1601 12:00 A.M. UTC.
   *
   * Between January 1, 1970 (Epoch) and January 1, 1601 there were
   * 134744 days,
   * 11644473600 seconds or
   * 11644473600,000,000,0 100-nanosecond intervals.
   *
   * See also MSKB Q167296.
   */

  intervals = ((uint64_t) ft.dwHighDateTime << 32) | ft.dwLowDateTime;
  intervals -= 116444736000000000;

  tp->tv_sec = (long) (intervals / 10000000);
  tp->tv_usec = (long) ((intervals % 10000000) / 10);
}

以上就是小編為大家?guī)淼年P于win32 gettimeofday替代方案全部內(nèi)容了,希望大家多多支持我們~

上一篇:C/C++ 讀取16進制文件的方法

欄    目:C語言

下一篇:淺談do {...} while (0) 在宏定義中的作用

本文標題:關于win32 gettimeofday替代方案

本文地址:http://www.jygsgssxh.com/a1/Cyuyan/1864.html

網(wǎng)頁制作CMS教程網(wǎng)絡編程軟件編程腳本語言數(shù)據(jù)庫服務器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時內(nèi)進行處理、任何非本站因素導致的法律后果,本站均不負任何責任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有