psignalのヘルプ・マニュアル
日本語 英語
psignal --help
man psignal
PSIGNAL(3) Linux Programmer’s Manual PSIGNAL(3)
名前
psignal - シグナルメッセージを表示
書式
#include
void psignal(int sig, const char *s);
extern const char *const sys_siglist[];
glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):
psignal(): _SVID_SOURCE || _BSD_SOURCE
sys_siglist: _BSD_SOURCE
説明
psignal() 関数は、文字列 s、コロン、スペース、シグナル番号 sig を説明す
る文字列から構成されるメッセージを stderr に表示する。もし sig が不正な
らば、表示されるメッセージは未知のシグナルを示す。
配列 sys_siglist はシグナルを説明する文字列を保持しており、配列へのアク
セスにはシグナル番号を添え字として用いる事ができる。
返り値
psignal() 関数は、値を返さない。
準拠
POSIX.1-2008, 4.3BSD.
関連項目
perror(3), strsignal(3)
GNU 2008-08-21 PSIGNAL(3)
PSIGNAL(3) Linux Programmer’s Manual PSIGNAL(3)
NAME
psignal - print signal message
SYNOPSIS
#include
void psignal(int sig, const char *s);
extern const char *const sys_siglist[];
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
psignal(): _SVID_SOURCE || _BSD_SOURCE
sys_siglist: _BSD_SOURCE
DESCRIPTION
The psignal() function displays a message on stderr consisting of the
string s, a colon, a space, and a string describing the signal number
sig. If sig is invalid, the message displayed will indicate an unknown
signal.
The array sys_siglist holds the signal description strings indexed by
signal number.
RETURN VALUE
The psignal() function returns no value.
CONFORMING TO
POSIX.1-2008, 4.3BSD.
SEE ALSO
perror(3), strsignal(3)
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/.
GNU 2008-08-21 PSIGNAL(3)