Improve notation of BuiltinTrancheNames
[pgsql.git] / src / port / pgstrsignal.c
blobbd4add8249f3c7e5048a7d2664b2d18a55aaedc8
1 /*-------------------------------------------------------------------------
3 * pgstrsignal.c
4 * Identify a Unix signal number
6 * On platforms compliant with modern POSIX, this just wraps strsignal(3).
7 * Elsewhere, we do the best we can.
9 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
10 * Portions Copyright (c) 1994, Regents of the University of California
12 * IDENTIFICATION
13 * src/port/pgstrsignal.c
15 *-------------------------------------------------------------------------
18 #include "c.h"
22 * pg_strsignal
24 * Return a string identifying the given Unix signal number.
26 * The result is declared "const char *" because callers should not
27 * modify the string. Note, however, that POSIX does not promise that
28 * the string will remain valid across later calls to strsignal().
30 * This version guarantees to return a non-NULL pointer, although
31 * some platforms' versions of strsignal() reputedly do not.
33 * Note that the fallback cases just return constant strings such as
34 * "unrecognized signal". Project style is for callers to print the
35 * numeric signal value along with the result of this function, so
36 * there's no need to work harder than that.
38 const char *
39 pg_strsignal(int signum)
41 const char *result;
44 * If we have strsignal(3), use that --- but check its result for NULL.
46 #ifdef HAVE_STRSIGNAL
47 result = strsignal(signum);
48 if (result == NULL)
49 result = "unrecognized signal";
50 #else
53 * We used to have code here to try to use sys_siglist[] if available.
54 * However, it seems that all platforms with sys_siglist[] have also had
55 * strsignal() for many years now, so that was just a waste of code.
57 result = "(signal names not available on this platform)";
58 #endif
60 return result;