OSDN Git Service

Merge "Remove makefile cruft."
authorElliott Hughes <enh@google.com>
Fri, 9 Jan 2015 23:42:52 +0000 (23:42 +0000)
committerGerrit Code Review <noreply-gerritcodereview@google.com>
Fri, 9 Jan 2015 23:42:52 +0000 (23:42 +0000)
libril/ril_event.cpp

index 9d2954e..6bdf59d 100644 (file)
@@ -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)