2013-08-28 08:18:58 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2013-08-28 08:18:58 +02:00
|
|
|
* *
|
|
|
|
* 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; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef DEBUG_H
|
|
|
|
#define DEBUG_H
|
|
|
|
|
2013-10-03 22:10:46 +02:00
|
|
|
#include "i2-base.h"
|
2013-08-28 08:18:58 +02:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
#ifndef _DEBUG
|
2013-08-29 09:04:33 +02:00
|
|
|
# define ASSERT(expr) ((void)0)
|
2013-10-26 09:41:45 +02:00
|
|
|
#else /* _DEBUG */
|
2013-08-28 16:49:58 +02:00
|
|
|
# define ASSERT(expr) ((expr) ? 0 : icinga_assert_fail(#expr, __FILE__, __LINE__))
|
2013-10-26 09:41:45 +02:00
|
|
|
#endif /* _DEBUG */
|
2013-08-28 08:18:58 +02:00
|
|
|
|
|
|
|
#define VERIFY(expr) ((expr) ? 0 : icinga_assert_fail(#expr, __FILE__, __LINE__))
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define NORETURNPRE __declspec(noreturn)
|
|
|
|
#else /* _MSC_VER */
|
|
|
|
# define NORETURNPRE
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
2013-09-01 06:01:27 +02:00
|
|
|
#ifdef __GNUC__
|
2013-10-26 09:41:45 +02:00
|
|
|
# define NORETURNPOST __attribute__((noreturn))
|
2013-09-01 06:01:27 +02:00
|
|
|
#else /* __GNUC__ */
|
2013-10-26 09:41:45 +02:00
|
|
|
# define NORETURNPOST
|
2013-09-01 06:01:27 +02:00
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
NORETURNPRE int icinga_assert_fail(const char *expr, const char *file, int line) NORETURNPOST;
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma warning( push )
|
|
|
|
# pragma warning( disable : 4646 ) /* function declared with __declspec(noreturn) has non-void return type */
|
|
|
|
#endif /* _MSC_VER */
|
2013-08-28 16:49:58 +02:00
|
|
|
|
|
|
|
inline int icinga_assert_fail(const char *expr, const char *file, int line)
|
2013-08-28 08:18:58 +02:00
|
|
|
{
|
|
|
|
fprintf(stderr, "%s:%d: assertion failed: %s\n", file, line, expr);
|
|
|
|
abort();
|
2013-09-01 06:01:27 +02:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
#if !defined(__GNUC__) && !defined(_MSC_VER)
|
2013-09-01 06:01:27 +02:00
|
|
|
return 0;
|
2013-10-26 09:41:45 +02:00
|
|
|
#endif /* !defined(__GNUC__) && !defined(_MSC_VER) */
|
2013-08-28 08:18:58 +02:00
|
|
|
}
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma warning( pop )
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
2013-08-28 08:18:58 +02:00
|
|
|
#endif /* DEBUG_H */
|