7 /* Returns true if the given priority is enabled for the default
8 * category. Priority is xbt_log_priority_SUFFIX, where SUFFIX may
9 * be: trace, debug, verbose, info, warning, error, critical.
11 #define LOG_ISENABLED(priority) \
12 (_XBT_LOG_ISENABLEDV((*_XBT_LOGV(default)), (priority)))
14 /* Defines XCLOGn(...) which behave like CLOGn(...), except that the
15 * given category is not passed through _XBT_LOGV before use.
16 * (auto-generated, like its name says...)
18 #include "misc_autogen.h"
20 /* Returns c-string "s" if n > 1, empty string "" otherwise. */
21 #define ESSE(n) ((n) > 1 ? misc::str_esse : misc::str_nil)
24 extern const char str_esse[];
25 extern const char str_nil[];
28 struct address: public std::unary_function<T&, T*> {
29 T* operator()(T& ref) { return &ref; }