sigpauseのヘルプ・マニュアル
日本語 英語
sigpause --help
man sigpause
SIGPAUSE(3) Linux Programmer’s Manual SIGPAUSE(3)
名前
sigpause - ブロックされたシグナルをアトミックに解放して割り込みを待つ
書式
#include
int sigpause(int sigmask); /* BSD */
int sigpause(int sig); /* System V / Unix95 */
説明
この関数を使わないこと。代わりに sigsuspend(2) を使うこと。
関 数 sigpause() はシグナルを待つように設計されている。この関数はプロセ
スのシグナルマスク (ブロックされたシグナルのセット) を変更し、シグナ ル
が 到着するのを待つ。シグナルが到着すると、シグナルマスクは元に戻される
。
返り値
sigpause() が返った場合、この関数はシグナルによって割り込まれている。返
り値は -1 で、 errno は EINTR に設定される。
準拠
System V 版の sigpause() は POSIX.1-2001 で標準化されている。
備考
歴史
この関数の古典的な BSD 版は 4.2BSD で登場した。この関数はプロセスのシグ
ナルマスクを sigmask に設定する。 Unix95 では BSD 版と互換性のない Sys-
tem V 版のこの関数が標準化された。 Unix95 版は、指定されたシグナル sig
をプロセスのシグナルマスクから削除するだけである。同じ名前で互換性の な
い 2 つの関数があるという不幸な事態は、 sigsuspend(2) 関数によって解消
された。この関数は (int の代わりに) sigset_t * 引き数をとる。
Linux での注意
Linux では、このルーチンは Sparc (sparc64) アーキテクチャでのみシステム
コールとなっている。
libc4 と libc5 には BSD 版しかない。
機能検査マクロ _BSD_SOURCE が定義され、 _POSIX_SOURCE, _POSIX_C_SOURCE,
_XOPEN_SOURCE, _GNU_SOURCE, _SVID_SOURCE のいずれも定義されていない場合
、 glibc は BSD 版を使う。 _XOPEN_SOURCE が定義された場合、System V 版
を使用する。
関連項目
kill(2), sigaction(2), sigprocmask(2), sigsuspend(2), sigblock(3),
sigvec(3), feature_test_macros(7)
Linux 2005-12-01 SIGPAUSE(3)
SIGPAUSE(3) Linux Programmer’s Manual SIGPAUSE(3)
NAME
sigpause - atomically release blocked signals and wait for interrupt
SYNOPSIS
#include
int sigpause(int sigmask); /* BSD */
int sigpause(int sig); /* System V / Unix95 */
DESCRIPTION
Don’t use this function. Use sigsuspend(2) instead.
The function sigpause() is designed to wait for some signal. It
changes the process’s signal mask (set of blocked signals), and then
waits for a signal to arrive. Upon arrival of a signal, the original
signal mask is restored.
RETURN VALUE
If sigpause() returns, it was interrupted by a signal and the return
value is -1 with errno set to EINTR.
CONFORMING TO
The System V version of sigpause() is standardized in POSIX.1-2001.
NOTES
History
The classical BSD version of this function appeared in 4.2BSD. It sets
the process’s signal mask to sigmask. Unix95 standardized the incom-
patible System V version of this function, which removes only the spec-
ified signal sig from the process’s signal mask. The unfortunate situ-
ation with two incompatible functions with the same name was solved by
the sigsuspend(2) function, that takes a sigset_t * argument (instead
of an int).
Linux Notes
On Linux, this routine is a system call only on the Sparc (sparc64)
architecture.
Libc4 and libc5 only know about the BSD version.
Glibc uses the BSD version if the _BSD_SOURCE feature test macro is
defined and none of _POSIX_SOURCE, _POSIX_C_SOURCE, _XOPEN_SOURCE,
_GNU_SOURCE, or _SVID_SOURCE is defined. The System V version is used
if _XOPEN_SOURCE is defined.
SEE ALSO
kill(2), sigaction(2), sigprocmask(2), sigsuspend(2), sigblock(3),
sigvec(3), feature_test_macros(7)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
Linux 2005-12-01 SIGPAUSE(3)