mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
234e9abf6a
Removed unused code .del-os0trash.c~8cae5c1695501117: Delete: innobase/os/os0trash.c dict0crea.c: Protect all sprintf(%s) with assertions
20 lines
530 B
C
20 lines
530 B
C
/*********************************************************************
|
|
Debug utilities for Innobase.
|
|
|
|
(c) 1994, 1995 Innobase Oy
|
|
|
|
Created 1/30/1994 Heikki Tuuri
|
|
**********************************************************************/
|
|
|
|
#include "univ.i"
|
|
|
|
/* This is used to eliminate compiler warnings */
|
|
ulint ut_dbg_zero = 0;
|
|
|
|
/* If this is set to TRUE all threads will stop into the next assertion
|
|
and assert */
|
|
ibool ut_dbg_stop_threads = FALSE;
|
|
|
|
/* Null pointer used to generate memory trap */
|
|
|
|
ulint* ut_dbg_null_ptr = NULL;
|