List:Commits« Previous MessageNext Message »
From:Joerg Bruehe Date:October 12 2006 10:42pm
Subject:bk commit into 5.1 tree (joerg:1.2315)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of joerg. When joerg does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-10-12 22:42:43+02:00, joerg@trift2. +1 -0
  unittest/mytap/tap.c  :
  Do not (try to) set a signal handler action unless a signal is defined on the platform.

  unittest/mytap/tap.c@stripped, 2006-10-12 22:42:40+02:00, joerg@trift2. +13 -5
    Do not (try to) set a signal handler action unless a signal is defined on the
platform.
    SIGXCPU, SIGXFSZ, SIGSYS, and SIGTRAP were reported as undefined in Netware build of
5.1.12-beta.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	joerg
# Host:	trift2.
# Root:	/MySQL/M51/clone-5.1

--- 1.6/unittest/mytap/tap.c	2006-10-12 22:42:52 +02:00
+++ 1.7/unittest/mytap/tap.c	2006-10-12 22:42:52 +02:00
@@ -140,11 +140,19 @@
   { SIGABRT, handle_core_signal },
   { SIGFPE,  handle_core_signal },
   { SIGSEGV, handle_core_signal },
-  { SIGBUS,  handle_core_signal },
-  { SIGXCPU, handle_core_signal },
-  { SIGXFSZ, handle_core_signal },
-  { SIGSYS,  handle_core_signal },
-  { SIGTRAP, handle_core_signal }
+  { SIGBUS,  handle_core_signal }
+#ifdef SIGXCPU
+  , { SIGXCPU, handle_core_signal }
+#endif
+#ifdef SIGXCPU
+  , { SIGXFSZ, handle_core_signal }
+#endif
+#ifdef SIGXCPU
+  , { SIGSYS,  handle_core_signal }
+#endif
+#ifdef SIGXCPU
+  , { SIGTRAP, handle_core_signal }
+#endif
 };
 
 void
Thread
bk commit into 5.1 tree (joerg:1.2315)Joerg Bruehe12 Oct