xref: /freebsd/lib/libc/gen/psignal.3 (revision 12dacf622b5b8b31e2bcca0bebc9d3dba4755a83)
158f0484fSRodney W. Grimes.\" Copyright (c) 1983, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
658f0484fSRodney W. Grimes.\" are met:
758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
858f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1058f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1158f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
1258f0484fSRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
1358f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1458f0484fSRodney W. Grimes.\"    without specific prior written permission.
1558f0484fSRodney W. Grimes.\"
1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2658f0484fSRodney W. Grimes.\" SUCH DAMAGE.
2758f0484fSRodney W. Grimes.\"
280014b4c0SPeter Wemm.\"     @(#)psignal.3	8.2 (Berkeley) 2/27/95
297f3dea24SPeter Wemm.\" $FreeBSD$
3058f0484fSRodney W. Grimes.\"
31*12dacf62SJilles Tjoelker.Dd February 4, 2011
3258f0484fSRodney W. Grimes.Dt PSIGNAL 3
33a307d598SRuslan Ermilov.Os
3458f0484fSRodney W. Grimes.Sh NAME
3558f0484fSRodney W. Grimes.Nm psignal ,
3678121e79SPeter Wemm.Nm strsignal ,
37712dc76eSMike Pritchard.Nm sys_siglist ,
3858f0484fSRodney W. Grimes.Nm sys_signame
3958f0484fSRodney W. Grimes.Nd system signal messages
4025bb73e0SAlexey Zelkin.Sh LIBRARY
4125bb73e0SAlexey Zelkin.Lb libc
4258f0484fSRodney W. Grimes.Sh SYNOPSIS
4332eef9aeSRuslan Ermilov.In signal.h
4458f0484fSRodney W. Grimes.Ft void
4558f0484fSRodney W. Grimes.Fn psignal "unsigned sig" "const char *s"
466da47fa5SBruce Evans.Vt extern const char * const sys_siglist[] ;
476da47fa5SBruce Evans.Vt extern const char * const sys_signame[] ;
4832eef9aeSRuslan Ermilov.In string.h
4979ac8967SBruce Evans.Ft "char *"
5079ac8967SBruce Evans.Fn strsignal "int sig"
5158f0484fSRodney W. Grimes.Sh DESCRIPTION
5258f0484fSRodney W. GrimesThe
5358f0484fSRodney W. Grimes.Fn psignal
5478121e79SPeter Wemmand
5578121e79SPeter Wemm.Fn strsignal
5678121e79SPeter Wemmfunctions locate the descriptive message
5778121e79SPeter Wemmstring for a signal number.
5878121e79SPeter Wemm.Pp
5978121e79SPeter WemmThe
6078121e79SPeter Wemm.Fn strsignal
6178121e79SPeter Wemmfunction accepts a signal number argument
6278121e79SPeter Wemm.Fa sig
6378121e79SPeter Wemmand returns a pointer to the corresponding message string.
6478121e79SPeter Wemm.Pp
6578121e79SPeter WemmThe
6678121e79SPeter Wemm.Fn psignal
67d64ada50SJens Schweikhardtfunction accepts a signal number argument
6858f0484fSRodney W. Grimes.Fa sig
6958f0484fSRodney W. Grimesand writes it to the standard error.
7058f0484fSRodney W. GrimesIf the argument
7158f0484fSRodney W. Grimes.Fa s
7258f0484fSRodney W. Grimesis
7358f0484fSRodney W. Grimes.Pf non- Dv NULL
7430af8849SRobert Nordierand does not point to the null character,
7530af8849SRobert Nordier.Fa s
7630af8849SRobert Nordieris written to the standard error file descriptor
7758f0484fSRodney W. Grimesprior to the message string,
7858f0484fSRodney W. Grimesimmediately followed by a colon and a space.
7958f0484fSRodney W. GrimesIf the signal number is not recognized
8058f0484fSRodney W. Grimes.Pq Xr sigaction 2 ,
8158f0484fSRodney W. Grimesthe string
8258f0484fSRodney W. Grimes.Dq "Unknown signal
8358f0484fSRodney W. Grimesis produced.
8458f0484fSRodney W. Grimes.Pp
8558f0484fSRodney W. GrimesThe message strings can be accessed directly
8658f0484fSRodney W. Grimesthrough the external array
8758f0484fSRodney W. Grimes.Va sys_siglist ,
8858f0484fSRodney W. Grimesindexed by recognized signal numbers.
8958f0484fSRodney W. GrimesThe external array
9058f0484fSRodney W. Grimes.Va sys_signame
9158f0484fSRodney W. Grimesis used similarly and
92*12dacf62SJilles Tjoelkercontains short, upper-case abbreviations for signals
9358f0484fSRodney W. Grimeswhich are useful for recognizing signal names
9458f0484fSRodney W. Grimesin user input.
9558f0484fSRodney W. GrimesThe defined variable
9658f0484fSRodney W. Grimes.Dv NSIG
9758f0484fSRodney W. Grimescontains a count of the strings in
9858f0484fSRodney W. Grimes.Va sys_siglist
9958f0484fSRodney W. Grimesand
10058f0484fSRodney W. Grimes.Va sys_signame .
10158f0484fSRodney W. Grimes.Sh SEE ALSO
10258f0484fSRodney W. Grimes.Xr sigaction 2 ,
10378121e79SPeter Wemm.Xr perror 3 ,
10478121e79SPeter Wemm.Xr strerror 3
10558f0484fSRodney W. Grimes.Sh HISTORY
10658f0484fSRodney W. GrimesThe
10758f0484fSRodney W. Grimes.Fn psignal
10858f0484fSRodney W. Grimesfunction appeared in
10958f0484fSRodney W. Grimes.Bx 4.2 .
110