Penguin
Annotated edit history of pause(2) version 2, including all changes. View license author blame.
Rev Author # Line
1 perry 1 !!NAME
2 PerryLorier 2 pause - wait for signal
1 perry 3
4 !!SYNOPSIS
2 PerryLorier 5 __#include <unistd.h>__
1 perry 6
2 PerryLorier 7 __int pause(void);__
1 perry 8 !!DESCRIPTION
2 PerryLorier 9 The pause(2) syscall causes the invoking process (or thread) to sleep until a signal is received that either terminates it or causes it to call a signal-catching function.
1 perry 10
11 !!RETURN VALUE
2 PerryLorier 12 The pause(2) function only returns when a signal was caught and the signal-catching function returned. In this case pause(2) returns -1, and ''errno'' is set to [EINTR].
1 perry 13
14 !!ERRORS
2 PerryLorier 15 ;[EINTR]: a signal was caught and the signal-catching function returned.
1 perry 16
17 !!CONFORMING TO
2 PerryLorier 18 SVr4, SVID, POSIX, X/OPEN, BSD 4.3, SUSv2
1 perry 19
20 !!SEE ALSO
2 PerryLorier 21 kill(2), select(2), signal(2)
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach() (...repeated 6 times)