OSDN Git Service

(split) LDP: Update original to LDP v3.51.
[linuxjm/LDP_man-pages.git] / original / man3 / sigpause.3
1 .\" Copyright (C) 2004 Andries Brouwer (aeb@cwi.nl)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH SIGPAUSE 3 2010-09-12 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 sigpause \- atomically release blocked signals and wait for interrupt
28 .SH SYNOPSIS
29 .nf
30 .B #include <signal.h>
31 .sp
32 .BI "int sigpause(int " sigmask ");  /* BSD */"
33 .sp
34 .BI "int sigpause(int " sig ");      /* System V / UNIX 95 */"
35 .fi
36 .SH DESCRIPTION
37 Don't use this function.
38 Use
39 .BR sigsuspend (2)
40 instead.
41 .LP
42 The function
43 .BR sigpause ()
44 is designed to wait for some signal.
45 It changes the process's signal mask (set of blocked signals),
46 and then waits for a signal to arrive.
47 Upon arrival of a signal, the original signal mask is restored.
48 .SH RETURN VALUE
49 If
50 .BR sigpause ()
51 returns, it was interrupted by a signal and the return value is \-1
52 with
53 .I errno
54 set to
55 .BR EINTR .
56 .SH CONFORMING TO
57 The System V version of
58 .BR sigpause ()
59 is standardized in POSIX.1-2001.
60 .SH NOTES
61 .SS History
62 The classical BSD version of this function appeared in 4.2BSD.
63 It sets the process's signal mask to
64 .IR sigmask .
65 UNIX 95 standardized the incompatible System V version of
66 this function, which removes only the specified signal
67 .I sig
68 from the process's signal mask.
69 .\" __xpg_sigpause: UNIX 95, spec 1170, SVID, SVr4, XPG
70 The unfortunate situation with two incompatible functions with the
71 same name was solved by the
72 .BR \%sigsuspend (2)
73 function, that takes a
74 .I "sigset_t *"
75 argument (instead of an
76 .IR int ).
77 .SS Linux notes
78 On Linux, this routine is a system call only on the Sparc (sparc64)
79 architecture.
80
81 Libc4 and libc5 know only about the BSD version.
82
83 Glibc uses the BSD version if the
84 .B _BSD_SOURCE
85 feature test macro is defined and none of
86 .BR _POSIX_SOURCE ,
87 .BR _POSIX_C_SOURCE ,
88 .BR _XOPEN_SOURCE ,
89 .BR _GNU_SOURCE ,
90 or
91 .B _SVID_SOURCE
92 is defined.
93 Otherwise, the System V version is used.
94 .\"
95 .\" For the BSD version, one usually uses a zero
96 .\" .I sigmask
97 .\" to indicate that no signals are to be blocked.
98 .SH SEE ALSO
99 .BR kill (2),
100 .BR sigaction (2),
101 .BR sigprocmask (2),
102 .BR sigsuspend (2),
103 .BR sigblock (3),
104 .BR sigvec (3),
105 .BR feature_test_macros (7)