ut0dbg.h:

Print the failing assertion if it fails; helps to analyze bug reports


innobase/include/ut0dbg.h:
  Print the failing assertion if it fails; helps to analyze bug reports
This commit is contained in:
unknown 2003-04-25 21:12:44 +03:00
parent 3e81b9d22b
commit 5d80c04f5b

View File

@ -20,7 +20,6 @@ extern ibool ut_dbg_stop_threads;
extern ulint* ut_dbg_null_ptr;
#define ut_a(EXPR)\
{\
ulint dbg_i;\
@ -31,8 +30,10 @@ extern ulint* ut_dbg_null_ptr;
" InnoDB: Assertion failure in thread %lu in file %s line %lu\n",\
os_thread_pf(os_thread_get_curr_id()), IB__FILE__,\
(ulint)__LINE__);\
fprintf(stderr,\
"InnoDB: Failing assertion: " #EXPR);\
fprintf(stderr,\
"InnoDB: We intentionally generate a memory trap.\n");\
"\nInnoDB: We intentionally generate a memory trap.\n");\
fprintf(stderr,\
"InnoDB: Send a detailed bug report to mysql@lists.mysql.com\n");\
ut_dbg_stop_threads = TRUE;\