Initial mysqlwsrep80

This commit is contained in:
Xavier Beaudouin
2024-01-24 10:33:30 +01:00
parent ef61d4684e
commit 53ecf53d1b
55 changed files with 2193 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- include/my_stacktrace.h.orig 2020-01-23 19:43:07.769584000 +0100
+++ include/my_stacktrace.h 2020-01-23 19:43:48.684042000 +0100
@@ -43,7 +43,7 @@
HAVE_BACKTRACE - Linux, FreeBSD, OSX, Solaris
_WIN32 - Windows
*/
-#if defined(HAVE_BACKTRACE) || defined(_WIN32)
+#if (defined(HAVE_BACKTRACE) || defined(_WIN32)) && (defined(__aarch64__) || defined(__amd64__) || defined(__i386__))
#define HAVE_STACKTRACE 1
void my_init_stacktrace();
void my_print_stacktrace(uchar *stack_bottom, ulong thread_stack);