up vote 1 down vote favorite
share [g+] share [fb]

I currently have some C code that uses sigaction to associate a handler to the SIGALRM signal. Then I do alarm(TIME_OUT_IN_SECONDS). Problem is, I need milliseconds, not seconds and alarm takes an integer. How can I set the signal to fire off in milliseconds?

link|improve this question

47% accept rate
feedback

1 Answer

up vote 3 down vote accepted

How about using setitimer()?

link|improve this answer
Thanks, the examples I had seen with setitimer() were all associated with signal() and not sigaction so I wasn't sure if they were compatible. As you can tell, I'm a C newbie :) – Tim Merrifield Mar 2 '09 at 1:51
Ah so... You shouldn't worry about this, signal() and sigactions() are just interfaces for the same function. – jpalecek Mar 2 '09 at 1:53
But sigaction() should be preferred over signal() for portability issues. – Raim Mar 2 '09 at 17:55
AFAIK, it's not for portability issues, but to avoid some races the use of the signal() function normally creates. – jpalecek Mar 3 '09 at 0:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.