1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Add fix for MDEV-7369

See also https://mariadb.atlassian.net/browse/MDEV-7369
This commit is contained in:
James Taylor
2014-12-27 03:23:49 +00:00
parent f65901eef2
commit 7860333669
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ this program; if not, write to the Free Software Foundation, Inc.,
#ifndef os0stacktrace_h #ifndef os0stacktrace_h
#define os0stacktrace_h #define os0stacktrace_h
#ifdef __linux__ #if defined (__linux__) && HAVE_BACKTRACE && HAVE_BACKTRACE_SYMBOLS
#if HAVE_EXECINFO_H #if HAVE_EXECINFO_H
#include <execinfo.h> #include <execinfo.h>
#endif #endif
@@ -40,5 +40,5 @@ os_stacktrace_print(
siginfo_t* info, /*!< in: signal information */ siginfo_t* info, /*!< in: signal information */
void* ucontext);/*!< in: signal context */ void* ucontext);/*!< in: signal context */
#endif /* __linux__ */ #endif /* defined (__linux__) && HAVE_BACKTRACE && HAVE_BACKTRACE_SYMBOLS */
#endif /* os0stacktrace.h */ #endif /* os0stacktrace.h */

View File

@@ -1646,7 +1646,7 @@ innobase_start_or_create_for_mysql(void)
stacktrace feature. */ stacktrace feature. */
if (srv_use_stacktrace) { if (srv_use_stacktrace) {
#ifdef __linux__ #if defined (__linux__) && HAVE_BACKTRACE && HAVE_BACKTRACE_SYMBOLS
struct sigaction sigact; struct sigaction sigact;
sigact.sa_sigaction = os_stacktrace_print; sigact.sa_sigaction = os_stacktrace_print;
@@ -1659,7 +1659,7 @@ innobase_start_or_create_for_mysql(void)
srv_use_stacktrace = FALSE; srv_use_stacktrace = FALSE;
} }
#endif /* __linux__ */ #endif /* defined (__linux__) && HAVE_BACKTRACE && HAVE_BACKTRACE_SYMBOLS */
} }
#ifdef UNIV_DEBUG #ifdef UNIV_DEBUG