mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
1601bdc38a
------------------------------------------------------------------------ r5092 | marko | 2009-05-25 09:54:17 +0300 (Mon, 25 May 2009) | 1 line branches/zip: Adjust some function comments after r5091. ------------------------------------------------------------------------ r5100 | marko | 2009-05-25 12:09:45 +0300 (Mon, 25 May 2009) | 1 line branches/zip: Split some long lines that were introduced in r5091. ------------------------------------------------------------------------ r5101 | marko | 2009-05-25 12:42:47 +0300 (Mon, 25 May 2009) | 2 lines branches/zip: Introduce the macro TEMP_INDEX_PREFIX_STR. This is to avoid triggering an error in Doxygen. ------------------------------------------------------------------------ r5102 | marko | 2009-05-25 13:47:14 +0300 (Mon, 25 May 2009) | 1 line branches/zip: Add missing file comments. ------------------------------------------------------------------------ r5103 | marko | 2009-05-25 13:52:29 +0300 (Mon, 25 May 2009) | 10 lines branches/zip: Add @file comments, and convert decorative /********************************* comments to Doxygen /** style like this: /*****************************//** This conversion was performed by the following command: perl -i -e 'while(<ARGV>){if (m|^/\*{30}\**$|) { s|\*{4}$|//**| if ++$com>1; $_ .= "\@file $ARGV\n" if $com==2} print; if(eof){$.=0;undef $com}}' */*[ch] include/univ.i ------------------------------------------------------------------------ r5104 | marko | 2009-05-25 14:39:07 +0300 (Mon, 25 May 2009) | 2 lines branches/zip: Revert ut0auxconf_* to r5102, that is, make Doxygen ignore these test programs. ------------------------------------------------------------------------ r5105 | marko | 2009-05-25 14:52:20 +0300 (Mon, 25 May 2009) | 2 lines branches/zip: Enclose some #error checks inside #ifndef DOXYGEN to prevent bogus Doxygen errors. ------------------------------------------------------------------------ r5106 | marko | 2009-05-25 16:09:24 +0300 (Mon, 25 May 2009) | 2 lines branches/zip: Add some Doxygen comments, mainly to structs, typedefs, macros and global variables. Many more to go. ------------------------------------------------------------------------ r5108 | marko | 2009-05-26 00:32:35 +0300 (Tue, 26 May 2009) | 2 lines branches/zip: lexyy.c: Remove the inadvertently added @file directive. There is nothing for Doxygen to see in this file, move along. ------------------------------------------------------------------------ r5125 | marko | 2009-05-26 16:28:49 +0300 (Tue, 26 May 2009) | 3 lines branches/zip: Add some Doxygen comments for many structs, typedefs, #defines and global variables. Many are still missing. ------------------------------------------------------------------------ r5134 | marko | 2009-05-27 09:08:43 +0300 (Wed, 27 May 2009) | 1 line branches/zip: Add some Doxygen @return comments. ------------------------------------------------------------------------ r5139 | marko | 2009-05-27 10:01:40 +0300 (Wed, 27 May 2009) | 1 line branches/zip: Add Doxyfile. ------------------------------------------------------------------------ r5143 | marko | 2009-05-27 10:57:25 +0300 (Wed, 27 May 2009) | 3 lines branches/zip: buf0buf.h, Doxyfile: Fix the Doxygen translation. @defgroup is for source code modules, not for field groups. Tell Doxygen to expand the UT_LIST declarations. ------------------------------------------------------------------------
175 lines
5.4 KiB
C
175 lines
5.4 KiB
C
/*****************************************************************************
|
|
|
|
Copyright (c) 1994, 2009, Innobase Oy. All Rights Reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************//**
|
|
@file include/ut0dbg.h
|
|
Debug utilities for Innobase
|
|
|
|
Created 1/30/1994 Heikki Tuuri
|
|
**********************************************************************/
|
|
|
|
#ifndef ut0dbg_h
|
|
#define ut0dbg_h
|
|
|
|
#include "univ.i"
|
|
#include <stdlib.h>
|
|
#include "os0thread.h"
|
|
|
|
#if defined(__GNUC__) && (__GNUC__ > 2)
|
|
/** Test if an assertion fails.
|
|
@param EXPR assertion expression
|
|
@return nonzero if EXPR holds, zero if not */
|
|
# define UT_DBG_FAIL(EXPR) UNIV_UNLIKELY(!((ulint)(EXPR)))
|
|
#else
|
|
/** This is used to eliminate compiler warnings */
|
|
extern ulint ut_dbg_zero;
|
|
/** Test if an assertion fails.
|
|
@param EXPR assertion expression
|
|
@return nonzero if EXPR holds, zero if not */
|
|
# define UT_DBG_FAIL(EXPR) !((ulint)(EXPR) + ut_dbg_zero)
|
|
#endif
|
|
|
|
/*************************************************************//**
|
|
Report a failed assertion. */
|
|
UNIV_INTERN
|
|
void
|
|
ut_dbg_assertion_failed(
|
|
/*====================*/
|
|
const char* expr, /*!< in: the failed assertion */
|
|
const char* file, /*!< in: source file containing the assertion */
|
|
ulint line); /*!< in: line number of the assertion */
|
|
|
|
#ifdef __NETWARE__
|
|
/** Flag for ignoring further assertion failures. This is set to TRUE
|
|
when on NetWare there happens an InnoDB assertion failure or other
|
|
fatal error condition that requires an immediate shutdown. */
|
|
extern ibool panic_shutdown;
|
|
/* Abort the execution. */
|
|
void ut_dbg_panic(void);
|
|
# define UT_DBG_PANIC ut_dbg_panic()
|
|
/* Stop threads in ut_a(). */
|
|
# define UT_DBG_STOP do {} while (0) /* We do not do this on NetWare */
|
|
#else /* __NETWARE__ */
|
|
# if defined(__WIN__) || defined(__INTEL_COMPILER)
|
|
# undef UT_DBG_USE_ABORT
|
|
# elif defined(__GNUC__) && (__GNUC__ > 2)
|
|
# define UT_DBG_USE_ABORT
|
|
# endif
|
|
|
|
# ifndef UT_DBG_USE_ABORT
|
|
/** A null pointer that will be dereferenced to trigger a memory trap */
|
|
extern ulint* ut_dbg_null_ptr;
|
|
# endif
|
|
|
|
# if defined(UNIV_SYNC_DEBUG) || !defined(UT_DBG_USE_ABORT)
|
|
/** If this is set to TRUE by ut_dbg_assertion_failed(), all threads
|
|
will stop at the next ut_a() or ut_ad(). */
|
|
extern ibool ut_dbg_stop_threads;
|
|
|
|
/*************************************************************//**
|
|
Stop a thread after assertion failure. */
|
|
UNIV_INTERN
|
|
void
|
|
ut_dbg_stop_thread(
|
|
/*===============*/
|
|
const char* file,
|
|
ulint line);
|
|
# endif
|
|
|
|
# ifdef UT_DBG_USE_ABORT
|
|
/** Abort the execution. */
|
|
# define UT_DBG_PANIC abort()
|
|
/** Stop threads (null operation) */
|
|
# define UT_DBG_STOP do {} while (0)
|
|
# else /* UT_DBG_USE_ABORT */
|
|
/** Abort the execution. */
|
|
# define UT_DBG_PANIC \
|
|
if (*(ut_dbg_null_ptr)) ut_dbg_null_ptr = NULL
|
|
/** Stop threads in ut_a(). */
|
|
# define UT_DBG_STOP do \
|
|
if (UNIV_UNLIKELY(ut_dbg_stop_threads)) { \
|
|
ut_dbg_stop_thread(__FILE__, (ulint) __LINE__); \
|
|
} while (0)
|
|
# endif /* UT_DBG_USE_ABORT */
|
|
#endif /* __NETWARE__ */
|
|
|
|
/** Abort execution if EXPR does not evaluate to nonzero.
|
|
@param EXPR assertion expression that should hold */
|
|
#define ut_a(EXPR) do { \
|
|
if (UT_DBG_FAIL(EXPR)) { \
|
|
ut_dbg_assertion_failed(#EXPR, \
|
|
__FILE__, (ulint) __LINE__); \
|
|
UT_DBG_PANIC; \
|
|
} \
|
|
UT_DBG_STOP; \
|
|
} while (0)
|
|
|
|
/** Abort execution. */
|
|
#define ut_error do { \
|
|
ut_dbg_assertion_failed(0, __FILE__, (ulint) __LINE__); \
|
|
UT_DBG_PANIC; \
|
|
} while (0)
|
|
|
|
#ifdef UNIV_DEBUG
|
|
/** Debug assertion. Does nothing unless UNIV_DEBUG is defined. */
|
|
#define ut_ad(EXPR) ut_a(EXPR)
|
|
/** Debug statement. Does nothing unless UNIV_DEBUG is defined. */
|
|
#define ut_d(EXPR) do {EXPR;} while (0)
|
|
#else
|
|
/** Debug assertion. Does nothing unless UNIV_DEBUG is defined. */
|
|
#define ut_ad(EXPR)
|
|
/** Debug statement. Does nothing unless UNIV_DEBUG is defined. */
|
|
#define ut_d(EXPR)
|
|
#endif
|
|
|
|
/** Silence warnings about an unused variable by doing a null assignment.
|
|
@param A the unused variable */
|
|
#define UT_NOT_USED(A) A = A
|
|
|
|
#ifdef UNIV_COMPILE_TEST_FUNCS
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <sys/resource.h>
|
|
|
|
/** structure used for recording usage statistics */
|
|
typedef struct speedo_struct {
|
|
struct rusage ru; /*!< getrusage() result */
|
|
struct timeval tv; /*!< gettimeofday() result */
|
|
} speedo_t;
|
|
|
|
/*******************************************************************//**
|
|
Resets a speedo (records the current time in it). */
|
|
UNIV_INTERN
|
|
void
|
|
speedo_reset(
|
|
/*=========*/
|
|
speedo_t* speedo); /*!< out: speedo */
|
|
|
|
/*******************************************************************//**
|
|
Shows the time elapsed and usage statistics since the last reset of a
|
|
speedo. */
|
|
UNIV_INTERN
|
|
void
|
|
speedo_show(
|
|
/*========*/
|
|
const speedo_t* speedo); /*!< in: speedo */
|
|
|
|
#endif /* UNIV_COMPILE_TEST_FUNCS */
|
|
|
|
#endif
|