eina: Add a note about potential use of CLOCK_MONOTONIC

Note it down so we can think about this at some later point.
This commit is contained in:
Stefan Schmidt 2014-10-23 11:12:00 +02:00
parent 5c9024424f
commit 03ca51abe7
1 changed files with 3 additions and 0 deletions

View File

@ -52,6 +52,9 @@ _eina_time_get(Eina_Nano_Time *tp)
if (!clock_gettime(CLOCK_REALTIME, tp))
return 0;
# endif
/* FIXME: Have a look if and how we can support CLOCK_MONOTONIC */
struct timeval tv;
if (gettimeofday(&tv, NULL))