From 4c4ae39dece89336f82c9467094c55816beb0bac Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 9 Jan 2015 15:27:28 -0800 Subject: [PATCH] We have POSIX clocks. We're probably not running the RIL on a Mac. Change-Id: Ib6be56cd26d67e2b72b559cb364b1e34ab613016 --- ril/libril/ril_event.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ril/libril/ril_event.cpp b/ril/libril/ril_event.cpp index 9d2954e4..6bdf59d6 100644 --- a/ril/libril/ril_event.cpp +++ b/ril/libril/ril_event.cpp @@ -95,14 +95,10 @@ static void dump_event(struct ril_event * ev) static void getNow(struct timeval * tv) { -#ifdef HAVE_POSIX_CLOCKS struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts); tv->tv_sec = ts.tv_sec; tv->tv_usec = ts.tv_nsec/1000; -#else - gettimeofday(tv, NULL); -#endif } static void init_list(struct ril_event * list)