ut0dbg.c
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:

MySQL

Development Platform:

Visual C++

  1. /*********************************************************************
  2. Debug utilities for Innobase.
  3. (c) 1994, 1995 Innobase Oy
  4. Created 1/30/1994 Heikki Tuuri
  5. **********************************************************************/
  6. #include "univ.i"
  7. /* This is used to eliminate compiler warnings */
  8. ulint ut_dbg_zero = 0;
  9. /* If this is set to TRUE all threads will stop into the next assertion
  10. and assert */
  11. ibool ut_dbg_stop_threads = FALSE;
  12. /* Null pointer used to generate memory trap */
  13. ulint* ut_dbg_null_ptr = NULL;
  14. /* Dummy function to prevent gcc from ignoring this file */
  15. void
  16. ut_dummy(void)
  17. {
  18.   printf("Hello worldn");
  19. }