diff options
author | Fred Fish <fnf@specifix.com> | 1992-04-22 16:46:47 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-04-22 16:46:47 +0000 |
commit | 4ace50a5102f0839b7838993401520d90ee268d2 (patch) | |
tree | 632965d9d3c1131a7174ae6ce02f5bbe673fba60 /gdb/convex-xdep.c | |
parent | be2d8c134a174732a53bb6b6e2d4095054c18897 (diff) | |
download | gdb-4ace50a5102f0839b7838993401520d90ee268d2.zip gdb-4ace50a5102f0839b7838993401520d90ee268d2.tar.gz gdb-4ace50a5102f0839b7838993401520d90ee268d2.tar.bz2 |
Remove now obsolete signame.c and signame.h; functionality is handled by
libiberty/strsignal.c. Widespread changes to use libiberty/strerror.c
functions for errno manipulations and libiberty/strsignal.c for signo
(signals) manipulations.
Diffstat (limited to 'gdb/convex-xdep.c')
-rw-r--r-- | gdb/convex-xdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/convex-xdep.c b/gdb/convex-xdep.c index c078d9e..6bd57ab 100644 --- a/gdb/convex-xdep.c +++ b/gdb/convex-xdep.c @@ -212,7 +212,6 @@ static void psw_info (); static sig_noop (); static ptr_cmp (); -extern char *sys_siglist[]; /* Execute ptrace. Convex V7 replaced ptrace with pattach. Allow ptrace (0) as a no-op. */ @@ -950,9 +949,7 @@ core_file_command (filename, from_tty) printf_filtered ("thread %d received signal %d, %s\n", n, thread_signal[n], - thread_signal[n] < NSIG - ? sys_siglist[thread_signal[n]] - : "(undocumented)"); + safe_strsignal (thread_signal[n])); } /* Select an interesting thread -- also-rans died with SIGKILL, |