annotate lib/strsignal.c @ 12518:b5e42ef33b49

update nearly all FSF copyright year lists to include 2009 The files named by the following are exempted: grep -v '^#' config/srclist.txt|grep -v '^$' \ | while read src dst; do test -f "$dst" && { echo "$dst"; continue; } test -d "$dst" || continue echo "$dst"/$(basename "$src") done > exempt git ls-files tests/unictype >> exempt In the remaining files, convert to all-interval notation if - there is already at least one year interval like 2000-2003 - the file is maintained by me - the file is in lib/uni*/, where that style already prevails Otherwise, use update-copyright's default.
author Jim Meyering <meyering@redhat.com>
date Mon, 28 Dec 2009 10:50:36 +0100
parents e8d2c6fc33ad
children c2cbabec01dd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12518
b5e42ef33b49 update nearly all FSF copyright year lists to include 2009
Jim Meyering <meyering@redhat.com>
parents: 12421
diff changeset
1 /* Copyright (C) 1991, 1994-2002, 2005, 2008-2009 Free Software Foundation,
b5e42ef33b49 update nearly all FSF copyright year lists to include 2009
Jim Meyering <meyering@redhat.com>
parents: 12421
diff changeset
2 Inc.
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
3 This file is part of the GNU C Library.
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
4
12002
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
5 This program is free software: you can redistribute it and/or modify
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
6 it under the terms of the GNU General Public License as published by
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
7 the Free Software Foundation; either version 3 of the License, or
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
8 (at your option) any later version.
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
9
12002
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
10 This program is distributed in the hope that it will be useful,
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12002
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
13 GNU General Public License for more details.
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
14
12002
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
15 You should have received a copy of the GNU General Public License
f295924fa612 Use the standard header with GPL copyright.
Bruno Haible <bruno@clisp.org>
parents: 10318
diff changeset
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
17
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
18 #ifndef _LIBC
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
19 # include <config.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
20 #endif
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
21
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
22 #include <signal.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
23 #include <stdio.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
24 #include <stdlib.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
25 #include <string.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
26
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
27 #ifdef _LIBC
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
28 # include <libintl.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
29 #else /* !_LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
30 # include "gettext.h"
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
31 # define _(msgid) gettext (msgid)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
32 # define N_(msgid) gettext_noop (msgid)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
33 #endif /* _LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
34
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
35 #ifdef _LIBC
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
36 # include <bits/libc-lock.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
37 #else /* !_LIBC */
10318
8a3539888308 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 9893
diff changeset
38 # include "glthread/lock.h"
8a3539888308 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 9893
diff changeset
39 # include "glthread/tls.h"
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
40 # define __libc_once_define(CLASS, NAME) gl_once_define (CLASS, NAME)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
41 # define __libc_once(NAME, INIT) gl_once ((NAME), (INIT))
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
42 # define __libc_key_t gl_tls_key_t
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
43 # define __libc_getspecific(NAME) gl_tls_get ((NAME))
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
44 # define __libc_setspecific(NAME, POINTER) gl_tls_set ((NAME), (POINTER))
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
45 # define __snprintf snprintf
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
46 #endif /* _LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
47
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
48 #ifdef _LIBC
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
49
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
50 /* Defined in siglist.c. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
51 extern const char *const _sys_siglist[];
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
52 extern const char *const _sys_siglist_internal[] attribute_hidden;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
53
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
54 #else /* !_LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
55
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
56 /* NetBSD declares sys_siglist in unistd.h. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
57 # include <unistd.h>
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
58
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
59 # define INTUSE(x) (x)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
60
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
61 # if HAVE_DECL_SYS_SIGLIST
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
62 # undef _sys_siglist
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
63 # define _sys_siglist sys_siglist
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
64 # else /* !HAVE_DECL_SYS_SIGLIST */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
65 # ifndef NSIG
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
66 # define NSIG 32
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
67 # endif /* NSIG */
9893
ec6e90aaf2d7 Fix two compilation errors.
Bruno Haible <bruno@clisp.org>
parents: 9616
diff changeset
68 # if !HAVE_DECL__SYS_SIGLIST
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
69 static const char *_sys_siglist[NSIG];
9893
ec6e90aaf2d7 Fix two compilation errors.
Bruno Haible <bruno@clisp.org>
parents: 9616
diff changeset
70 # endif
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
71 # endif /* !HAVE_DECL_SYS_SIGLIST */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
72
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
73 #endif /* _LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
74
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
75 static __libc_key_t key;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
76
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
77 /* If nonzero the key allocation failed and we should better use a
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
78 static buffer than fail. */
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
79 #define BUFFERSIZ 100
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
80 static char local_buf[BUFFERSIZ];
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
81 static char *static_buf;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
82
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
83 /* Destructor for the thread-specific data. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
84 static void init (void);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
85 static void free_key_mem (void *mem);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
86 static char *getbuffer (void);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
87
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
88
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
89 /* Return a string describing the meaning of the signal number SIGNUM. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
90 char *
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
91 strsignal (int signum)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
92 {
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
93 const char *desc;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
94 __libc_once_define (static, once);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
95
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
96 /* If we have not yet initialized the buffer do it now. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
97 __libc_once (once, init);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
98
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
99 if (
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
100 #ifdef SIGRTMIN
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
101 (signum >= SIGRTMIN && signum <= SIGRTMAX) ||
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
102 #endif
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
103 signum < 0 || signum >= NSIG
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
104 || (desc = INTUSE(_sys_siglist)[signum]) == NULL)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
105 {
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
106 char *buffer = getbuffer ();
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
107 int len;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
108 #ifdef SIGRTMIN
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
109 if (signum >= SIGRTMIN && signum <= SIGRTMAX)
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
110 len = __snprintf (buffer, BUFFERSIZ - 1, _("Real-time signal %d"),
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
111 signum - SIGRTMIN);
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
112 else
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
113 #endif
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
114 len = __snprintf (buffer, BUFFERSIZ - 1, _("Unknown signal %d"),
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
115 signum);
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
116 if (len >= BUFFERSIZ)
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
117 buffer = NULL;
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
118 else
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
119 buffer[len] = '\0';
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
120
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
121 return buffer;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
122 }
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
123
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
124 return (char *) _(desc);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
125 }
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
126
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
127
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
128 /* Initialize buffer. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
129 static void
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
130 init (void)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
131 {
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
132 #ifdef _LIBC
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
133 if (__libc_key_create (&key, free_key_mem))
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
134 /* Creating the key failed. This means something really went
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
135 wrong. In any case use a static buffer which is better than
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
136 nothing. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
137 static_buf = local_buf;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
138 #else /* !_LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
139 gl_tls_key_init (key, free_key_mem);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
140
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
141 # if !HAVE_DECL_SYS_SIGLIST
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
142 memset (_sys_siglist, 0, NSIG * sizeof *_sys_siglist);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
143
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
144 /* No need to use a do {} while (0) here since init_sig(...) must expand
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
145 to a complete statement. (We cannot use the ISO C99 designated array
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
146 initializer syntax since it is not supported by ANSI C compilers and
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
147 since some signal numbers might exceed NSIG.) */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
148 # define init_sig(sig, abbrev, desc) \
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
149 if (sig >= 0 && sig < NSIG) \
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
150 _sys_siglist[sig] = desc;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
151
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
152 # include "siglist.h"
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
153
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
154 # undef init_sig
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
155
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
156 # endif /* !HAVE_DECL_SYS_SIGLIST */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
157 #endif /* !_LIBC */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
158 }
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
159
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
160
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
161 /* Free the thread specific data, this is done if a thread terminates. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
162 static void
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
163 free_key_mem (void *mem)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
164 {
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
165 free (mem);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
166 __libc_setspecific (key, NULL);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
167 }
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
168
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
169
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
170 /* Return the buffer to be used. */
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
171 static char *
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
172 getbuffer (void)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
173 {
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
174 char *result;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
175
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
176 if (static_buf != NULL)
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
177 result = static_buf;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
178 else
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
179 {
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
180 /* We don't use the static buffer and so we have a key. Use it
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
181 to get the thread-specific buffer. */
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
182 result = __libc_getspecific (key);
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
183 if (result == NULL)
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
184 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
185 /* No buffer allocated so far. */
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
186 result = malloc (BUFFERSIZ);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
187 if (result == NULL)
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
188 /* No more memory available. We use the static buffer. */
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
189 result = local_buf;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
190 else
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
191 __libc_setspecific (key, result);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 12002
diff changeset
192 }
9616
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
193 }
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
194
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
195 return result;
878f41b0e41e New module 'strsignal'.
Colin Watson <cjwatson@debian.org>
parents:
diff changeset
196 }