Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Always enable contructor attribute on log categories.
[simgrid.git] / include / xbt / log.h
index 6e83916..4edbfed 100644 (file)
@@ -86,12 +86,6 @@ typedef enum {
 #define _XBT_LOGV_CTOR(cat) _XBT_LOG_CONCAT2(_XBT_LOGV(cat), __constructor__)
 #define _XBT_LOG_CONCAT(x, y) x ## y
 #define _XBT_LOG_CONCAT2(x, y) _XBT_LOG_CONCAT(x, y)
-/* Apparently, constructor priorities are not supported by gcc on Macs */
-#if defined(__GNUC__) && defined(__APPLE__)
-#  define _XBT_LOGV_CTOR_ATTRIBUTE
-#else
-#  define _XBT_LOGV_CTOR_ATTRIBUTE XBT_ATTRIB_CONSTRUCTOR(600)
-#endif
 
 /* The root of the category hierarchy. */
 #define XBT_LOG_ROOT_CAT   root
@@ -118,29 +112,30 @@ typedef enum {
 /* XBT_LOG_NEW_SUBCATEGORY_helper:
  * Implementation of XBT_LOG_NEW_SUBCATEGORY, which must declare "extern parent" in addition to avoid an extra
  * declaration of root when XBT_LOG_NEW_SUBCATEGORY is called by XBT_LOG_NEW_CATEGORY */
-#define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc)           \
-  SG_BEGIN_DECL()                                                       \
-  extern void _XBT_LOGV_CTOR(catName)(void) _XBT_LOGV_CTOR_ATTRIBUTE; \
-  void _XBT_LOGV_CTOR(catName)(void)                                    \
-  {                                                                     \
-    XBT_LOG_EXTERNAL_CATEGORY(catName);                                 \
-    if (!_XBT_LOGV(catName).initialized) {                              \
-      _xbt_log_cat_init(&_XBT_LOGV(catName), xbt_log_priority_uninitialized); \
-    }                                                                   \
-  }                                                                     \
-  SG_END_DECL()                                                         \
-  XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t) _XBT_LOGV(catName) = {     \
-    &_XBT_LOGV(parent),                                                 \
-    NULL /* firstChild */,                                              \
-    NULL /* nextSibling */,                                             \
-    #catName,                                                           \
-    desc,                                                               \
-    0 /*initialized */,                                                 \
-    xbt_log_priority_uninitialized /* threshold */,                     \
-    1 /* isThreshInherited */,                                          \
-    NULL /* appender */,                                                \
-    NULL /* layout */,                                                  \
-    1 /* additivity */                                                  \
+#define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc)                                                          \
+  SG_BEGIN_DECL()                                                                                                      \
+  extern void _XBT_LOGV_CTOR(catName)(void) XBT_ATTRIB_CONSTRUCTOR(600);                                               \
+  void _XBT_LOGV_CTOR(catName)(void)                                                                                   \
+  {                                                                                                                    \
+    XBT_LOG_EXTERNAL_CATEGORY(catName);                                                                                \
+    if (!_XBT_LOGV(catName).initialized) {                                                                             \
+      _xbt_log_cat_init(&_XBT_LOGV(catName), xbt_log_priority_uninitialized);                                          \
+    }                                                                                                                  \
+  }                                                                                                                    \
+  SG_END_DECL()                                                                                                        \
+  XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t)                                                                           \
+  _XBT_LOGV(catName) = {                                                                                               \
+      &_XBT_LOGV(parent),                                                                                              \
+      NULL /* firstChild */,                                                                                           \
+      NULL /* nextSibling */,                                                                                          \
+      #catName,                                                                                                        \
+      desc,                                                                                                            \
+      0 /*initialized */,                                                                                              \
+      xbt_log_priority_uninitialized /* threshold */,                                                                  \
+      1 /* isThreshInherited */,                                                                                       \
+      NULL /* appender */,                                                                                             \
+      NULL /* layout */,                                                                                               \
+      1 /* additivity */                                                                                               \
   }
 
 /**