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

Private GIT Repository
Use matching quote.
[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 #endif // !MISC_H
26
27 // Local variables:
28 // mode: c++
29 // End: