On F16_64 in a complex C++ program, I first check the time with:
timespec ts_;
clock_gettime(CLOCK_REALTIME,&ts_);
and get:
15:33:00.000108220
A little later I check with:
time_t timeI;
time(&timeI);
and get:
15:32:59
Earlier! So what's happening?
Thanks for your help.
Mike.