diff options
author | Roland McGrath <roland@gnu.org> | 1995-02-22 05:47:15 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-02-22 05:47:15 +0000 |
commit | 50843ff068aae5b1ff58581eddd3bd107e99114b (patch) | |
tree | 0c72d59f78d63861d4a901fafd90cf6c3c822193 /sysdeps/generic/signame.c | |
parent | 23ad311df0e01caa58b54afb8ae999a3ffc1ba7a (diff) | |
download | glibc-50843ff068aae5b1ff58581eddd3bd107e99114b.tar glibc-50843ff068aae5b1ff58581eddd3bd107e99114b.tar.gz glibc-50843ff068aae5b1ff58581eddd3bd107e99114b.tar.bz2 glibc-50843ff068aae5b1ff58581eddd3bd107e99114b.zip |
Wed Feb 22 00:44:41 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* sysdeps/mach/hurd/i386/sigreturn.c: Restore the FPU state.
* stdlib/random.c (__srandom): Change algorithm used to populate
the state array.
(randtbl): Recomputed with new algorithm.
Diffstat (limited to 'sysdeps/generic/signame.c')
-rw-r--r-- | sysdeps/generic/signame.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/sysdeps/generic/signame.c b/sysdeps/generic/signame.c index 5f8deab3ad..40e72e0e4c 100644 --- a/sysdeps/generic/signame.c +++ b/sysdeps/generic/signame.c @@ -1,5 +1,5 @@ /* Convert between signal names and numbers. - Copyright (C) 1990, 1992, 1993 Free Software Foundation, Inc. + Copyright (C) 1990, 1992, 1993, 1995 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -273,3 +273,20 @@ psignal (signal, message) fprintf (stderr, "%s: %s\n", message, sys_siglist[signal]); } #endif + +#ifndef HAVE_STRSIGNAL +/* Return the string associated with the signal number. */ + +char * +strsignal (signal) + int signal; +{ + static char buf[] = "Signal 12345678901234567890"; + + if (signal > 0 || signal < NSIG) + return sys_siglist[signal]; + + sprintf (buf, "Signal %d", signal); + return buf; +} +#endif |