From: mquinson Date: Sun, 23 Oct 2005 12:45:12 +0000 (+0000) Subject: These modules does not use logging anymore now that asserts dont X-Git-Tag: v3.3~3548 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3cf22df9688dee5cea0a742b75ffa97bae8bb722?ds=sidebyside These modules does not use logging anymore now that asserts dont git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1810 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Virtu/rl_process.c b/src/gras/Virtu/rl_process.c index 6f1ebe524a..49f6e9032c 100644 --- a/src/gras/Virtu/rl_process.c +++ b/src/gras/Virtu/rl_process.c @@ -11,9 +11,6 @@ #include "gras/Virtu/virtu_rl.h" #include "portable.h" -XBT_LOG_EXTERNAL_CATEGORY(process); -XBT_LOG_DEFAULT_CATEGORY(process); - /* globals */ static gras_procdata_t *_gras_procdata = NULL; char const *_gras_procname = NULL; diff --git a/src/xbt/dict.c b/src/xbt/dict.c index 87e4ae97bb..12fe1d5979 100644 --- a/src/xbt/dict.c +++ b/src/xbt/dict.c @@ -10,7 +10,7 @@ #include "xbt/ex.h" #include "dict_private.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(dict,xbt, +XBT_LOG_NEW_SUBCATEGORY(dict,xbt, "Dictionaries provide the same functionnalities than hash tables"); /*####[ Private prototypes ]#################################################*/ diff --git a/src/xbt/heap.c b/src/xbt/heap.c index 05c0a7af44..1357fce1da 100644 --- a/src/xbt/heap.c +++ b/src/xbt/heap.c @@ -16,8 +16,6 @@ * \brief This section describes the API to generic heap with O(log(n)) access. */ -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(heap, xbt, "Heap"); - /** * @brief Creates a new heap. * \param init_size initial size of the heap diff --git a/src/xbt/log_default_appender.c b/src/xbt/log_default_appender.c index afbf413a72..df94569ce4 100644 --- a/src/xbt/log_default_appender.c +++ b/src/xbt/log_default_appender.c @@ -12,8 +12,6 @@ #include #include "gras/virtu.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(log_app,log,"default logging handler"); - /** * The root category's default logging function. */ diff --git a/src/xbt/swag.c b/src/xbt/swag.c index d20cd5ee43..6af255492d 100644 --- a/src/xbt/swag.c +++ b/src/xbt/swag.c @@ -15,8 +15,6 @@ #include "xbt/log.h" #include "xbt/swag.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(swag,xbt,"Swag : O(1) set library"); - #define PREV(obj,offset) xbt_swag_getPrev(obj,offset) #define NEXT(obj,offset) xbt_swag_getNext(obj,offset)