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/umax-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/umax-xdep.c')
-rw-r--r-- | gdb/umax-xdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/umax-xdep.c b/gdb/umax-xdep.c index ce74023..31abfff 100644 --- a/gdb/umax-xdep.c +++ b/gdb/umax-xdep.c @@ -94,10 +94,7 @@ core_file_command (filename, from_tty) printf ("Core file is from \"%s\".\n", u.pt_comm); if (u.pt_signal > 0) printf ("Program terminated with signal %d, %s.\n", - u.pt_signal, - u.pt_signal < NSIG - ? sys_siglist[u.pt_signal] - : "(undocumented)"); + u.pt_signal, safe_strsignal (u.pt_signal)); /* Read the register values out of the core file and store them where `read_register' will find them. */ |