diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-11-04 16:59:50 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-11-04 16:59:50 +0200 |
commit | ec7cb94cc9d5cf605623b83d78d5665abda699be (patch) | |
tree | ea53b0216dfb9100088a12e66a9c3fd91b4f093b /innobase/ut | |
parent | 0f6eb9654dae4d5c0a62e115f0021893ef6351ec (diff) | |
download | mariadb-git-ec7cb94cc9d5cf605623b83d78d5665abda699be.tar.gz |
ut0dbg.h, ut0dbg.c:
Marko's patch to ut_a() fputs
innobase/ut/ut0dbg.c:
Marko's patch to ut_a() fputs
innobase/include/ut0dbg.h:
Marko's patch to ut_a() fputs
Diffstat (limited to 'innobase/ut')
-rw-r--r-- | innobase/ut/ut0dbg.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/innobase/ut/ut0dbg.c b/innobase/ut/ut0dbg.c index 970dd501fad..6cd0ed62454 100644 --- a/innobase/ut/ut0dbg.c +++ b/innobase/ut/ut0dbg.c @@ -19,9 +19,10 @@ ibool ut_dbg_stop_threads = FALSE; ulint* ut_dbg_null_ptr = NULL; -/* Dummy function to prevent gcc from ignoring this file */ -void -ut_dummy(void) -{ - printf("Hello world\n"); -} +const char* ut_dbg_msg_assert_fail = +"InnoDB: Assertion failure in thread %lu in file %s line %lu\n"; +const char* ut_dbg_msg_trap = +"InnoDB: We intentionally generate a memory trap.\n" +"InnoDB: Send a detailed bug report to mysql@lists.mysql.com.\n"; +const char* ut_dbg_msg_stop = +"InnoDB: Thread %lu stopped in file %s line %lu\n"; |