Penguin
Annotated edit history of SIGALRM version 2, including all changes. View license author blame.
Rev Author # Line
1 PerryLorier 1 !!!Signal: Alarm
2
2 IanMcDonald 3 This signal is raised a user defined number of seconds after the [alarm(2)] syscall is called. The default action of this signal is to terminate the program. This signal is often used for timeouts on syscalls. Be aware that other processes can send you a [SIGALRM] before your timeout is up if they are owned by the same user or root, so using this to enforce a timeout doesn't work, investigate using [select(2)] in that instance.