aboutsummaryrefslogtreecommitdiffstats
path: root/support/mksignames.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/mksignames.c')
-rw-r--r--support/mksignames.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/support/mksignames.c b/support/mksignames.c
index 19fd3f2..634263e 100644
--- a/support/mksignames.c
+++ b/support/mksignames.c
@@ -260,7 +260,7 @@ initialize_signames ()
#endif
/* 4.4 BSD */
-#if defined (SIGINFO) /* information request */
+#if defined (SIGINFO) && !defined (_SEQUENT_) /* information request */
signal_names[SIGINFO] = "SIGINFO";
#endif
@@ -272,6 +272,10 @@ initialize_signames ()
signal_names[SIGUSR2] = "SIGUSR2";
#endif
+#if defined (SIGKILLTHR) /* BeOS: Kill Thread */
+ signal_names[SIGKILLTHR] = "SIGKILLTHR";
+#endif
+
for (i = 0; i < NSIG; i++)
if (signal_names[i] == (char *)NULL)
{