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

Private GIT Repository
4bae95a80ff2fde41c30d8e297308b8c3172ca89
[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 namespace misc {
14     extern const char str_esse[];
15     extern const char str_nil[];
16 }
17 /* Returns c-string "s" if n > 1, empty string "" otherwise. */
18 #define ESSE(n) ((n) > 1 ? misc::str_esse : misc::str_nil)
19
20 #endif // !MISC_H
21
22 // Local variables:
23 // mode: c++
24 // End: