2008-11-16 16:36:30 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* include/assert.h
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2015-04-22 07:35:35 -06:00
|
|
|
* Copyright (C) 2007-2009, 2011-2013, 2015 Gregory Nutt. All rights reserved.
|
2012-02-12 23:54:26 +00:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2008-11-16 16:36:30 +00:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-17 23:21:28 +00:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2008-11-16 16:36:30 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-11-16 16:36:30 +00:00
|
|
|
#ifndef __INCLUDE_ASSERT_H
|
|
|
|
#define __INCLUDE_ASSERT_H
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-11-16 16:36:30 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-11-16 16:36:30 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-02-12 14:37:55 +00:00
|
|
|
#include <nuttx/compiler.h>
|
2009-12-14 23:32:23 +00:00
|
|
|
#include <stdint.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-11-16 16:36:30 +00:00
|
|
|
/****************************************************************************
|
2009-12-14 23:32:23 +00:00
|
|
|
* Pre-processor Definitions
|
2008-11-16 16:36:30 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2013-05-02 06:28:59 -06:00
|
|
|
/* Macro Name: ASSERT, VERIFY, et al. */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2013-05-02 06:28:59 -06:00
|
|
|
#undef ASSERT /* Assert if the condition is not true */
|
|
|
|
#undef VERIFY /* Assert if a function returns a negative value */
|
|
|
|
#undef DEBUGASSERT /* Like ASSERT, but only if CONFIG_DEBUG is defined */
|
|
|
|
#undef DEBUGVERIFY /* Like VERIFY, but only if CONFIG_DEBUG is defined */
|
|
|
|
#undef PANIC /* Unconditional abort */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-02-12 14:37:55 +00:00
|
|
|
#ifdef CONFIG_HAVE_FILENAME
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# define ASSERT(f) \
|
2015-04-22 07:35:35 -06:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (!(f)) \
|
|
|
|
{ \
|
|
|
|
up_assert((const uint8_t *)__FILE__, (int)__LINE__); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
2007-02-21 21:55:16 +00:00
|
|
|
|
2013-03-13 17:32:37 +00:00
|
|
|
# define VERIFY(f) \
|
2015-04-22 07:35:35 -06:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if ((f) < 0) \
|
|
|
|
{ \
|
|
|
|
up_assert((const uint8_t *)__FILE__, (int)__LINE__); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
2013-03-13 17:32:37 +00:00
|
|
|
|
2013-06-23 14:39:56 -06:00
|
|
|
# define PANIC() \
|
|
|
|
up_assert((const uint8_t *)__FILE__, (int)__LINE__)
|
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# ifdef CONFIG_DEBUG
|
2013-06-23 14:39:56 -06:00
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# define DEBUGASSERT(f) \
|
2015-04-22 07:35:35 -06:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (!(f)) \
|
|
|
|
{ \
|
|
|
|
up_assert((const uint8_t *)__FILE__, (int)__LINE__); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
2013-06-23 14:39:56 -06:00
|
|
|
|
2013-03-13 17:32:37 +00:00
|
|
|
# define DEBUGVERIFY(f) \
|
2015-04-22 07:35:35 -06:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if ((f) < 0) \
|
|
|
|
{ \
|
|
|
|
up_assert((const uint8_t *)__FILE__, (int)__LINE__); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
2013-06-23 14:39:56 -06:00
|
|
|
|
|
|
|
# define DEBUGPANIC() \
|
|
|
|
up_assert((const uint8_t *)__FILE__, (int)__LINE__)
|
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# else
|
2013-06-23 14:39:56 -06:00
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# define DEBUGASSERT(f)
|
2013-03-13 17:32:37 +00:00
|
|
|
# define DEBUGVERIFY(f) ((void)(f))
|
2013-06-23 14:39:56 -06:00
|
|
|
# define DEBUGPANIC()
|
2007-02-21 21:55:16 +00:00
|
|
|
|
2013-06-23 14:39:56 -06:00
|
|
|
# endif /* CONFIG_DEBUG */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
#else
|
2007-02-21 21:55:16 +00:00
|
|
|
|
2013-06-23 14:39:56 -06:00
|
|
|
# define ASSERT(f) { if (!(f)) up_assert(); }
|
|
|
|
# define VERIFY(f) { if ((f) < 0) up_assert(); }
|
|
|
|
# define PANIC() up_assert()
|
2013-03-13 17:32:37 +00:00
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# ifdef CONFIG_DEBUG
|
2013-06-23 14:39:56 -06:00
|
|
|
|
|
|
|
# define DEBUGASSERT(f) { if (!(f)) up_assert(); }
|
|
|
|
# define DEBUGVERIFY(f) { if ((f) < 0) up_assert(); }
|
|
|
|
# define DEBUGPANIC() up_assert()
|
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# else
|
2013-06-23 14:39:56 -06:00
|
|
|
|
2007-02-21 21:55:16 +00:00
|
|
|
# define DEBUGASSERT(f)
|
2013-03-13 17:32:37 +00:00
|
|
|
# define DEBUGVERIFY(f) ((void)(f))
|
2013-06-23 14:39:56 -06:00
|
|
|
# define DEBUGPANIC()
|
2007-02-21 21:55:16 +00:00
|
|
|
|
2013-06-23 14:39:56 -06:00
|
|
|
# endif /* CONFIG_DEBUG */
|
2007-02-21 21:55:16 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2012-08-30 20:13:50 +00:00
|
|
|
#ifndef assert
|
2013-06-23 14:39:56 -06:00
|
|
|
# define assert ASSERT
|
2012-08-30 20:13:50 +00:00
|
|
|
#endif
|
|
|
|
|
2008-11-16 16:36:30 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-11-16 16:36:30 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-11-16 16:36:30 +00:00
|
|
|
/****************************************************************************
|
2013-01-31 23:29:34 +00:00
|
|
|
* Public Data
|
2008-11-16 16:36:30 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2013-01-31 23:29:34 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2007-02-17 23:21:28 +00:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2013-01-31 23:29:34 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-02-12 14:37:55 +00:00
|
|
|
#ifdef CONFIG_HAVE_FILENAME
|
2013-01-31 23:29:34 +00:00
|
|
|
void up_assert(FAR const uint8_t *filename, int linenum) noreturn_function;
|
2007-02-21 21:55:16 +00:00
|
|
|
#else
|
2013-01-31 23:29:34 +00:00
|
|
|
void up_assert(void) noreturn_function;
|
2007-02-21 21:55:16 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-16 16:36:30 +00:00
|
|
|
#endif /* __INCLUDE_ASSERT_H */
|