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

Private GIT Repository
1decbefd4b27fa6497aa3e0b94c5c70d9a496ac5
[loba.git] / misc.h
1 #ifndef MISC_H
2 #define MISC_H
3
4 #include <xbt/log.h>
5
6 /* Returns true if the given priority is enabled for the default
7  * category.  Priority is xbt_log_priority_SUFFIX, where SUFFIX may
8  * be: trace, debug, verbose, info, warning, error, critical.
9  */
10 #define LOG_ISENABLED(priority) \
11     (_XBT_LOG_ISENABLEDV((*_XBT_LOGV(default)), (priority)))
12
13 #define ESSE(n) ((n) > 1 ? "s" : "")
14
15 #endif // !MISC_H
16
17 // Local variables:
18 // mode: c++
19 // End: