for ecore system time changed - use a real time in the future, not
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Tue, 22 Oct 2013 07:11:00 +0000 (08:11 +0100)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Tue, 22 Oct 2013 07:12:48 +0000 (08:12 +0100)
time 0

for ECORE_EVENT_SYSTEM_TIMEDATE_CHANGED we use a timerfd on linux (and
also support talking to systemd) to detet time/date changes. the
timerfd was set up to go off at the absolute time of 0. since that is
almost always... in the past.. lets set a REAL time in the future.
(almost end of time)

src/lib/ecore/ecore_main.c

index 3a6210d..045ccb1 100644 (file)
@@ -803,6 +803,7 @@ detect_time_changes_start(void)
    if (realtime_fd < 0) return;
 
    memset(&its, 0, sizeof(its));
+   its.it_value.tv_sec += 0xfffffff0; // end of time - 0xf
    if (timerfd_settime(realtime_fd,
                        TFD_TIMER_ABSTIME | TFD_TIMER_CANCELON_SET,
                        &its, NULL) < 0)