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
|
/*
* $Id: zassert.h,v 1.2 2004/12/03 18:01:04 ajs Exp $
*/
#ifndef _QUAGGA_ASSERT_H
#define _QUAGGA_ASSERT_H
#include "confirm.h"
extern void _zlog_assert_failed (const char *assertion, const char *file,
unsigned int line, const char *function)
__attribute__ ((noreturn));
extern void _zlog_abort_mess (const char *mess, const char *file,
unsigned int line, const char *function)
__attribute__ ((noreturn));
extern void _zlog_abort_errno (const char *mess, const char *file,
unsigned int line, const char *function)
__attribute__ ((noreturn));
extern void _zlog_abort_err (const char *mess, int err, 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
/* Abort with message */
#define zabort(MS) _zlog_abort_mess(MS, __FILE__, __LINE__, __ASSERT_FUNCTION)
/* Abort with message and errno and strerror() thereof */
#define zabort_errno(MS) _zlog_abort_errno(MS, __FILE__, __LINE__, \
__ASSERT_FUNCTION)
/* Abort with message and given error and strerror() thereof */
#define zabort_err(MS, ERR) _zlog_abort_err(MS, ERR, __FILE__, __LINE__, \
__ASSERT_FUNCTION)
#endif /* _QUAGGA_ASSERT_H */
|