[haiku-commits] haiku: hrev44683 - src/bin/bash

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 8 Oct 2012 13:57:58 +0200 (CEST)

hrev44683 adds 1 changeset to branch 'master'
old head: 714ff0c581084a133a246879a5478d68fe987b1e
new head: cff0983994df0eba9ce5d308a5a9ae3686e4f47d

----------------------------------------------------------------------------

cff0983: bash: Fix mapping between signal number and signal string
  
  The signames_haiku.h header got out of sync when merging the real-time
  signals branch. It is used when cross-compiling Haiku, since the build
  tool mksignames only generates a signal name list suitable for the host
  platform.
  Fixes ticket #9046.
  
  Signed-off-by: Ingo Weinhold <ingo_weinhold@xxxxxx>

                              [ Prasad Joshi <prasadjoshi.linux@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev44683
Commit:      cff0983994df0eba9ce5d308a5a9ae3686e4f47d
URL:         http://cgit.haiku-os.org/haiku/commit/?id=cff0983
Author:      Prasad Joshi <prasadjoshi.linux@xxxxxxxxx>
Date:        Sun Oct  7 06:16:16 2012 UTC
Committer:   Ingo Weinhold <ingo_weinhold@xxxxxx>
Commit-Date: Mon Oct  8 11:50:21 2012 UTC

Ticket:      https://dev.haiku-os.org/ticket/9046

----------------------------------------------------------------------------

1 file changed, 35 insertions(+)
src/bin/bash/signames_haiku.h |   35 +++++++++++++++++++++++++++++++++++

----------------------------------------------------------------------------

diff --git a/src/bin/bash/signames_haiku.h b/src/bin/bash/signames_haiku.h
index 8125c7a..784b80a 100644
--- a/src/bin/bash/signames_haiku.h
+++ b/src/bin/bash/signames_haiku.h
@@ -33,6 +33,41 @@ char *signal_names[NSIG + 4] = {
     "SIGVTALRM",
     "SIGXCPU",
     "SIGXFSZ",
+    "SIGBUS",
+    "SIGJUNK(31)",
+    "SIGJUNK(32)",
+    "SIGRTMIN",
+    "SIGRTMIN+1",
+    "SIGRTMIN+2",
+    "SIGRTMIN+3",
+    "SIGRTMAX-3",
+    "SIGRTMAX-2",
+    "SIGRTMAX-1",
+    "SIGRTMAX",
+    "SIGJUNK(41)",
+    "SIGJUNK(42)",
+    "SIGJUNK(43)",
+    "SIGJUNK(44)",
+    "SIGJUNK(45)",
+    "SIGJUNK(46)",
+    "SIGJUNK(47)",
+    "SIGJUNK(48)",
+    "SIGJUNK(49)",
+    "SIGJUNK(50)",
+    "SIGJUNK(51)",
+    "SIGJUNK(52)",
+    "SIGJUNK(53)",
+    "SIGJUNK(54)",
+    "SIGJUNK(55)",
+    "SIGJUNK(56)",
+    "SIGJUNK(57)",
+    "SIGJUNK(58)",
+    "SIGJUNK(59)",
+    "SIGJUNK(60)",
+    "SIGJUNK(61)",
+    "SIGJUNK(62)",
+    "SIGJUNK(63)",
+    "SIGJUNK(64)",
     "DEBUG",
     "ERR",
     "RETURN",


Other related posts:

  • » [haiku-commits] haiku: hrev44683 - src/bin/bash - ingo_weinhold