summaryrefslogtreecommitdiff
path: root/cross-build/beos-sig.h
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-04-09 16:13:32 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-04-09 16:15:01 -0700
commit2d698b6e42d8dca191ac795ef5dba3bf62496eec (patch)
treeac5e0b67043c50f49160e9fe407435706cf30444 /cross-build/beos-sig.h
parentf1250933e4a2ac09a3d0b25b3877068e12f44da5 (diff)
downloadvyatta-bash-2d698b6e42d8dca191ac795ef5dba3bf62496eec.tar.gz
vyatta-bash-2d698b6e42d8dca191ac795ef5dba3bf62496eec.zip
Integrate bash 3.2 version
This is merge of current Debian stable (Lenny) version of Bash with Vyatta changes.
Diffstat (limited to 'cross-build/beos-sig.h')
-rw-r--r--cross-build/beos-sig.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/cross-build/beos-sig.h b/cross-build/beos-sig.h
deleted file mode 100644
index ea82f85..0000000
--- a/cross-build/beos-sig.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/* This file is used when cross compiling bash to run native on BeOS. */
-
-#ifndef __GNUC__
-# error cross compiling requires gcc
-#endif
-
-/* A translation list so we can be polite to our users.
- Use gcc labelled initializers to set up the array. Note that
- some entries might wind up being NULL. */
-
-char *signal_names[NSIG + 3] = {
- [0] "EXIT",
- [SIGHUP] "SIGHUP",
- [SIGINT] "SIGINT",
- [SIGQUIT] "SIGQUIT",
- [SIGILL] "SIGILL",
- [SIGCHLD] "SIGCHLD",
- [SIGABRT] "SIGABRT",
- [SIGPIPE] "SIGPIPE",
- [SIGFPE] "SIGFPE",
- [SIGKILL] "SIGKILL",
- [SIGSTOP] "SIGSTOP",
- [SIGSEGV] "SIGSEGV",
- [SIGCONT] "SIGCONT",
- [SIGTSTP] "SIGTSTP",
- [SIGALRM] "SIGALRM",
- [SIGTERM] "SIGTERM",
- [SIGTTIN] "SIGTTIN",
- [SIGTTOU] "SIGTTOU",
- [SIGUSR1] "SIGUSR1",
- [SIGUSR2] "SIGUSR2",
- [SIGWINCH] "SIGWINCH",
- [SIGKILLTHR] "SIGKILLTHR",
- [NSIG] "DEBUG",
- [NSIG + 1] "ERR",
- [NSIG + 2] (char *)0x0,
-};