summaryrefslogtreecommitdiffstats
path: root/sh
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2010-05-14 13:38:07 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2010-05-14 13:38:07 -0700
commit538e5778be15382669b0058de5bafa9f4961247e (patch)
treedcea830a317fd76c5cee7d4f9eeccbd21b1a289b /sh
parentd00eba458706a38f6c072ed90c5da35f3e3f1bba (diff)
parent34ed47a378cffe6350a64cd361045b6341d0a5a0 (diff)
downloadcore-538e5778be15382669b0058de5bafa9f4961247e.tar.gz
core-538e5778be15382669b0058de5bafa9f4961247e.tar.bz2
core-538e5778be15382669b0058de5bafa9f4961247e.zip
merge from open-source master
Change-Id: Ia81df7e22e563b01091778043bba65dee1699e83
Diffstat (limited to 'sh')
-rw-r--r--sh/trap.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/sh/trap.c b/sh/trap.c
index b3b2db414..7cb5201c0 100644
--- a/sh/trap.c
+++ b/sh/trap.c
@@ -60,20 +60,6 @@ __RCSID("$NetBSD: trap.c,v 1.31 2005/01/11 19:38:57 christos Exp $");
#include "mystring.h"
#include "var.h"
-static const char *sys_signame[NSIG] = {
- "Unused",
- "HUP", "INT", "QUIT", "ILL",
- "TRAP", "ABRT", "BUS", "FPE",
- "KILL", "USR1", "SEGV", "USR2",
- "PIPE", "ALRM", "TERM",
- "Unknown",
- "CHLD",
- "CONT", "STOP", "TSTP", "TTIN",
- "TTOU", "URG", "XCPU", "XFSZ",
- "VTALRM", "PROF", "WINCH", "IO",
- "PWR", "SYS"
-};
-
/*
* Sigmode records the current value of the signal handlers for the various
* modes. A value of zero means that the current handler is not known.