|
NAMEualarm —
schedule signal after specified time
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <unistd.h>
useconds_t
DESCRIPTIONThis is a simplified interface to
setitimer(2).
The If the interval argument is non-zero, the
Due to setitimer(2) restriction the maximum number of microseconds and interval is limited to 100000000000000 (in case this value fits in the unsigned integer). RETURN VALUESWhen the signal has successfully been caught,ualarm ()
returns the amount of time left on the clock.
NOTESA microsecond is 0.000001 seconds.SEE ALSOgetitimer(2), setitimer(2), sigaction(2), sigsuspend(2), alarm(3), signal(3), sleep(3), usleep(3)HISTORYTheualarm () function appeared in
4.3BSD.
Visit the GSP FreeBSD Man Page Interface. |