commented out code added back
This commit is contained in:
parent
0f0ddfc375
commit
ad8c6f3528
@ -83,6 +83,16 @@ ReturnValue_t Clock::getUptime(timeval* uptime) {
|
|||||||
uptime->tv_sec = uptimeSeconds;
|
uptime->tv_sec = uptimeSeconds;
|
||||||
uptime->tv_usec = uptimeSeconds *(double) 1e6 - (uptime->tv_sec *1e6);
|
uptime->tv_usec = uptimeSeconds *(double) 1e6 - (uptime->tv_sec *1e6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO This is not posix compatible and delivers only seconds precision
|
||||||
|
// I suggest this is moved into another clock function which will
|
||||||
|
// deliver second precision later.
|
||||||
|
// struct sysinfo sysInfo;
|
||||||
|
// int result = sysinfo(&sysInfo);
|
||||||
|
// if(result != 0){
|
||||||
|
// return HasReturnvaluesIF::RETURN_FAILED;
|
||||||
|
// }
|
||||||
|
// return sysInfo.uptime;
|
||||||
return HasReturnvaluesIF::RETURN_OK;
|
return HasReturnvaluesIF::RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user