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

Private GIT Repository
Wip...
[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 #endif // !MISC_H
14
15 // Local variables:
16 // mode: c++
17 // End: