bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

small patch for signames.c


From: Stefan Teleman
Subject: small patch for signames.c
Date: Thu, 02 Sep 2010 16:49:36 -0400
User-agent: Thunderbird 2.0.0.19 (X11/20090218)

Hi!

I'd like to submit the attached small patch for bash, for ${top_srcdir}/support/signames.c. The patch is based on bash 4.1. The patch is specific to Solaris (SIGJVM1 and SIGJVM2).

Thank you very much!

--Stefan

--
Stefan Teleman
Oracle USA Corporation
stefan.teleman@Oracle.COM

--- support/signames.c  2008-08-13 05:31:48.000000000 -0700
+++ support/signames.c  2010-09-01 10:32:16.723519051 -0700
@@ -212,6 +212,14 @@
   signal_names[SIGXRES] = "SIGXRES";
 #endif
 
+#if defined (SIGJVM1) /* Solaris Java Virtual Machine 1 */
+  signal_names[SIGJVM1] = "SIGJVM1";
+#endif
+
+#if defined (SIGJVM2) /* Solaris Java Virtual Machine 2 */
+  signal_names[SIGJVM2] = "SIGJVM2";
+#endif
+
 /* HP-UX */
 #if defined (SIGDIL)   /* DIL signal (?) */
   signal_names[SIGDIL] = "SIGDIL";

reply via email to

[Prev in Thread] Current Thread [Next in Thread]