27 R Y(elapsed_seconds)(ticks t1, ticks t0)
31 return (R)(elapsed(t1,t0)) / (R)(TICKS_PER_SECOND);
34 R Y(clock_gettime_seconds)(void)
36 #if defined(HAVE_CLOCK_GETTIME) 38 if (clock_gettime(CLOCK_REALTIME, &tp) != 0)
44 return tp.tv_sec+(R)tp.tv_nsec/K(1e9);
#define UNUSED(x)
Dummy use of unused parameters to silence compiler warnings.