vote up 0 vote down star

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?

flag

43% accept rate

1 Answer

vote up 0 vote down check

How about using setitimer()?

link|flag
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 at 1:51
Ah so... You shouldn't worry about this, signal() and sigactions() are just interfaces for the same function. – jpalecek Mar 2 at 1:53
But sigaction() should be preferred over signal() for portability issues. – Raim Mar 2 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 at 0:34

Your Answer

Get an OpenID
or

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