mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
fbb1b6ed94
git-svn-id: file:///svn/toku/tokudb@18087 c7de825b-a66e-492c-adef-691d508d4ae1
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
#include <toku_portability.h>
|
|
#include "toku_assert.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#if !TOKU_WINDOWS
|
|
#include <execinfo.h>
|
|
#endif
|
|
|
|
|
|
#if !TOKU_WINDOWS
|
|
#define N_POINTERS 1000
|
|
// These are statically allocated so that the backtrace can run without any calls to malloc()
|
|
static void *backtrace_pointers[N_POINTERS];
|
|
#endif
|
|
|
|
void toku_do_assert_fail (const char* expr_as_string,const char *function,const char*file,int line)
|
|
{
|
|
fprintf(stderr, "%s:%d %s: Assertion `%s' failed\n", file,line,function,expr_as_string);
|
|
|
|
// backtrace
|
|
#if !TOKU_WINDOWS
|
|
int n = backtrace(backtrace_pointers, N_POINTERS);
|
|
fprintf(stderr, "Backtrace: (Note: toku_do_assert=0x%p)\n", toku_do_assert); fflush(stderr);
|
|
backtrace_symbols_fd(backtrace_pointers, n, fileno(stderr));
|
|
#endif
|
|
|
|
fflush(stderr);
|
|
|
|
#if TOKU_WINDOWS
|
|
//Following commented methods will not always end the process (could hang).
|
|
//They could be unacceptable for other reasons as well (popups,
|
|
//flush buffers before quitting, etc)
|
|
// abort()
|
|
// assert(FALSE) (assert.h assert)
|
|
// raise(SIGABRT)
|
|
// divide by 0
|
|
// null dereference
|
|
// _exit
|
|
// exit
|
|
// ExitProcess
|
|
TerminateProcess(GetCurrentProcess(), 134); //Only way found so far to unconditionally
|
|
//Terminate the process
|
|
#endif
|
|
abort();
|
|
}
|
|
|
|
void toku_do_assert(int expr,const char* expr_as_string,const char *function,const char*file,int line) {
|
|
if (expr==0) {
|
|
toku_do_assert_fail(expr_as_string, function, file, line);
|
|
}
|
|
}
|