Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[xbt] Forgot to properly return the return value in Task
[simgrid.git] / include / xbt / asserts.h
1 /*  xbt/asserts.h -- assertion mechanism                                    */
2
3 /* Copyright (c) 2005-2007, 2009-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef _XBT_ASSERTS_H
10 #define _XBT_ASSERTS_H
11
12 #include "xbt/misc.h"
13 #include "xbt/log.h"
14 #include "xbt/ex.h"
15
16 SG_BEGIN_DECL()
17 /**
18  * @addtogroup XBT_error
19  * @brief Those are the SimGrid version of the good ol' assert macro.
20  *
21  * You can pass them a format message and arguments, just as if it where a printf.
22  * It is converted to a XBT_CRITICAL logging request.
23  * Be careful: the boolean expression that you want to test should not have side effects, because assertions are
24  * disabled at compile time if NDEBUG is set.
25  *
26  * @{
27  */
28 #ifdef NDEBUG
29 #define xbt_assert(...) ((void)0)
30 #else
31    /** @brief The condition which failed will be displayed.
32    @hideinitializer  */
33 #define xbt_assert(...) \
34   _XBT_IF_ONE_ARG(_xbt_assert_ARG1, _xbt_assert_ARGN, __VA_ARGS__)(__VA_ARGS__)
35 #define _xbt_assert_ARG1(cond) \
36   _xbt_assert_ARGN(cond, "Assertion %s failed", #cond)
37 #define _xbt_assert_ARGN(cond, ...) \
38   do { if (!(cond)) THROWF(0, 0, __VA_ARGS__); } while (0)
39 #endif
40
41 /** @} */
42 SG_END_DECL()
43 #endif                          /* _XBT_ASSERTS_H */