]> AND Private Git Repository - loba.git/blob - misc.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Make opt::exit_on_convergence an unsigned int.
[loba.git] / misc.h
1 #ifndef MISC_H
2 #define MISC_H
3
4 #include <xbt/log.h>
5
6 /* Returns c-string "s" if n > 1, empty string "" otherwise. */
7 #define ESSE(n) (misc::str_esse + ((n) <= 1))
8
9 namespace misc {
10     extern const char str_esse[];
11 }
12
13 /* Returns true if the given priority is enabled for the default
14  * category.  Priority is xbt_log_priority_SUFFIX, where SUFFIX may
15  * be: trace, debug, verbose, info, warning, error, critical.
16  */
17 #define LOG_ISENABLED(priority) \
18     (_XBT_LOG_ISENABLEDV((*_XBT_LOGV(default)), (priority)))
19
20 /* Defines XBT_XCLOG(...) which behave like XBT_CLOG(...), except that the
21  * given category is not passed through _XBT_LOGV before use.
22  */
23 #define XBT_XCLOG(c, p, ...) XBT_CLOG_((*(c)), p, __VA_ARGS__)
24
25 /* Use a faster version of TRY if available.
26  */
27 #if defined(TRY_NO_BACKTRACE)
28 #  define TRY_FAST TRY_NO_BACKTRACE
29 #else
30 #  define TRY_FAST TRY
31 #endif
32
33 #endif // !MISC_H
34
35 // Local variables:
36 // mode: c++
37 // End: