summaryrefslogtreecommitdiffstats
path: root/lib/zassert.h
blob: 26b67da6ab2f201798f9afb50a0a630c29cee948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * $Id: zassert.h,v 1.2 2004/12/03 18:01:04 ajs Exp $
 */

#ifndef _QUAGGA_ASSERT_H
#define _QUAGGA_ASSERT_H

extern void _zlog_assert_failed (const char *assertion, const char *file,
				 unsigned int line, const char *function)
				 __attribute__ ((noreturn));

#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define __ASSERT_FUNCTION    __func__
#elif defined(__GNUC__)
#define __ASSERT_FUNCTION    __FUNCTION__
#else
#define __ASSERT_FUNCTION    NULL
#endif

#define zassert(EX) ((void)((EX) ?  0 :	\
			    (_zlog_assert_failed(#EX, __FILE__, __LINE__, \
						 __ASSERT_FUNCTION), 0)))

/* Implicitly *permanent* assert() -- irrespective of NDEBUG    */
#undef assert
#define assert(EX) zassert(EX)

/* Explicitly permanent assert()                                */
#define passert(EX) zassert(EX)

/* NDEBUG time assert()                                         */
#ifndef NDEBUG
#define dassert(EX) zassert(EX)
#else
#define dassert(EX)
#endif

/* TODO: implement _zlog_abort() to give required messages      */

/* Abort with message                                           */
#define zabort(MS) _zlog_assert_failed(MS, __FILE__, __LINE__, \
                                                              __ASSERT_FUNCTION)

/* Abort with message and errno and strerror() thereof          */
#define zabort_errno(MS) _zlog_assert_failed(MS, __FILE__, __LINE__, \
                                                              __ASSERT_FUNCTION)

/* Abort with message and given error and strerror() thereof    */
#define zabort_err(MS, ERR) _zlog_assert_failed(MS, __FILE__, __LINE__, \
                                                              __ASSERT_FUNCTION)

/*==============================================================================
 * Compile time CONFIRM gizmo
 *
 * Two forms:  CONFIRM(e) for use at top (file) level
 *             confirm(e) for use inside compound statements
 */
#ifndef CONFIRM

 #define CONFIRM(e)  extern void CONFIRMATION(char CONFIRM[(e) ? 1 : -1]) ;
 #define confirm(e)  { CONFIRM(e) }

#endif

#endif /* _QUAGGA_ASSERT_H */