Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- libc - <b>alarm</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
alarm
=====

Syntax
------

     #include <unistd.h>
     
     unsigned alarm(unsigned seconds);

Description
-----------

This function causes the signal SIGALRM to be raised in SECONDS seconds.
A value of zero for SECONDS cancels any pending alarm.  If an alarm has
previously been set, the new alarm delay will superceed the prior call.

Return Value
------------

The number of seconds remaining on the timer (i.e. always SECONDS).

Example
-------

     signal(SIGALRM,my_alarm_routine);
     alarm(5);


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson