int thread_get_time_until_wakeup(int tid){
struct itimerval tv;
int result = getitimer(ITIMER_VIRTUAL, &tv);
int milliseconds;
int a = tv.it_value.tv_sec*1000;
int b = ceil((tv.it_value.tv_usec)/1000);
cout << a << " " << b << " " << a+b << endl; //DEBUG PRINT
return a+b;// num of milliseconds remained;
}
Here you can see a method used for checking the num of milliseconds left to the ITIMER (that was set in a previous method).
When i set the timer to 2000 milliseconds, i get the right values:
a = 2000
b = 0
a+b = 2000
when i first check, but from some unknown reason - the return value is 2001!
What am i doing here wrong?
Note: removing the 'ceil' from b doesn't change anything.
aandbare integers, there is no roundoff error possible. Simply put: if thecoutstatement returns2000 0 2000, the return value (from what I can see) definitely is 2000. – Yuri Mar 23 '11 at 17:05ceilfunction won't do anything as used. The/1000will produce an integer result (the floor value). You might want to change it to/1000.0to force a floating point operation (however that may not be the most efficient way of getting that information). – Mark Wilkins Mar 23 '11 at 17:08