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

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