xref: /illumos-gate/usr/src/man/man3c/strsignal.3c (revision b210e77709da8e42dfe621e10ccf4be504206058)
te
Copyright (c) 2005, Sun Microsystems, Inc. All Rights Reserved.
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
STRSIGNAL 3C "Mar 31, 2005"
NAME
strsignal - get name of signal
SYNOPSIS

#include <string.h>

char *strsignal(int sig);
DESCRIPTION

The strsignal() function maps the signal number in sig to a string describing the signal and returns a pointer to that string. It uses the same set of the messages as psignal(3C). The returned string should not be overwritten.

RETURN VALUES

The strsignal() function returns NULL if sig is not a valid signal number.

USAGE

Messages returned from this function are in the native language specified by the LC_MESSAGES locale category. See setlocale(3C).

ATTRIBUTES

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE ATTRIBUTE VALUE
MT-Level Safe
SEE ALSO

gettext (3C), psignal (3C), setlocale (3C), str2sig (3C), attributes (7)