List:Commits« Previous MessageNext Message »
From:joerg Date:October 12 2006 6:41pm
Subject:bk commit into 5.1 tree (jbruehe:1.2319)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of mysqldev. When mysqldev 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 18:41:23+02:00, jbruehe@stripped +1 -0
  Allow for missing signals

  unittest/mytap/tap.c@stripped, 2006-10-12 18:40:58+02:00, jbruehe@stripped +13 -5
    Allow for missing signals

# 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:	jbruehe
# Host:	suse9-x86.mysql.com
# Root:	/data0/mydev/mysql-5.1.12-build

--- 1.6/unittest/mytap/tap.c	2006-10-12 18:41:32 +02:00
+++ 1.7/unittest/mytap/tap.c	2006-10-12 18:41:32 +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 (jbruehe:1.2319)joerg12 Oct