aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-11-03 11:12:52 -0800
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-11-03 11:12:52 -0800
commit04f4054546ccc794fa59e8e989bba14142d50495 (patch)
tree5b9e9339e6dd02445d18e60410832c27824b4167 /src/core/support
parent786a031b5dc07bf72a6587db93dcbb9dce7bf814 (diff)
use QueryPerformanceCounter as precise clock for windows
Diffstat (limited to 'src/core/support')
-rw-r--r--src/core/support/time_win32.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/support/time_win32.c b/src/core/support/time_win32.c
index bc0586d069..623a8d9233 100644
--- a/src/core/support/time_win32.c
+++ b/src/core/support/time_win32.c
@@ -66,14 +66,12 @@ gpr_timespec gpr_now(gpr_clock_type clock) {
now_tv.tv_nsec = now_tb.millitm * 1000000;
break;
case GPR_CLOCK_MONOTONIC:
+ case GPR_CLOCK_PRECISE:
QueryPerformanceCounter(&timestamp);
now_dbl = (timestamp.QuadPart - g_start_time.QuadPart) * g_time_scale;
now_tv.tv_sec = (time_t)now_dbl;
now_tv.tv_nsec = (int)((now_dbl - (double)now_tv.tv_sec) * 1e9);
break;
- case GPR_CLOCK_PRECISE:
- gpr_precise_clock_now(&now_tv);
- break;
}
return now_tv;
}