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.

link|improve this question

40% accept rate
1  
Are you 100% sure that you do not do anything with the return value before you print it? Because, as a and b are integers, there is no roundoff error possible. Simply put: if the cout statement returns 2000 0 2000, the return value (from what I can see) definitely is 2000. – Yuri Mar 23 '11 at 17:05
It seems likely that the problem is in another section of the code. Can you can provide a full example that demonstrates it? As an aside, the ceil function won't do anything as used. The /1000 will produce an integer result (the floor value). You might want to change it to /1000.0 to 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
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.