From ecd6907f35ee280179a57c28008a80a1dacfc8bc Mon Sep 17 00:00:00 2001 From: mquinson Date: Thu, 15 Oct 2009 16:24:49 +0000 Subject: [PATCH] unify the log channels for SG and RL implementations of xbt_synchro git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6785 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/xbt_rl_synchro.c | 4 ++-- src/xbt/xbt_sg_synchro.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xbt/xbt_rl_synchro.c b/src/xbt/xbt_rl_synchro.c index e5ead866df..c66c29a8df 100644 --- a/src/xbt/xbt_rl_synchro.c +++ b/src/xbt/xbt_rl_synchro.c @@ -20,8 +20,8 @@ #include "xbt/xbt_os_thread.h" /* The implementation we use */ /* the implementation would be cleaner (and faster) with ELF symbol aliasing */ -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_sync_rl, xbt, - "Synchronization mechanism (RL)"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_sync, xbt, + "Synchronization mechanism"); typedef struct s_xbt_thread_ { xbt_os_thread_t os_thread; diff --git a/src/xbt/xbt_sg_synchro.c b/src/xbt/xbt_sg_synchro.c index 8cd0d25df6..2befd04ab7 100644 --- a/src/xbt/xbt_sg_synchro.c +++ b/src/xbt/xbt_sg_synchro.c @@ -18,8 +18,8 @@ #include "simix/simix.h" /* used implementation */ #include "simix/datatypes.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_sync_sg, xbt, - "Synchronization mechanism (SG)"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_sync, xbt, + "Synchronization mechanism"); /* the implementation would be cleaner (and faster) with ELF symbol aliasing */ -- 2.20.1