Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Create a new log channel tbx containing dict, set, log, dynar, config (to shut
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 3 Jul 2004 03:08:32 +0000 (03:08 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 3 Jul 2004 03:08:32 +0000 (03:08 +0000)
them all up in one shot)

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@145 48e7efb5-ca39-0410-a469-dd3cf9ba447f

changelog
src/xbt/config.c
src/xbt/dict.c
src/xbt/dynar.c
src/xbt/log.c
src/xbt/set.c

index 0cb9047..f96da96 100644 (file)
--- a/changelog
+++ b/changelog
@@ -1,4 +1,6 @@
-TODO:
+2004-07-03
+ - Create a new log channel tbx containing dict, set, log, dynar (to shut
+   them all up in one shot)
 
 2004-06-21
  [Transport]
 
 2004-06-21
  [Transport]
index a74d572..77a1a8b 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "gras_private.h" /* prototypes of this module */
 
 
 #include "gras_private.h" /* prototypes of this module */
 
-GRAS_LOG_NEW_DEFAULT_CATEGORY(config);
+GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(config,tbx);
 
 /* gras_cfgelm_t: the typedef corresponding to a config cell. 
 
 
 /* gras_cfgelm_t: the typedef corresponding to a config cell. 
 
index 1e8ccdb..d62ec7f 100644 (file)
@@ -17,7 +17,7 @@
 
 #include <stdio.h>
 
 
 #include <stdio.h>
 
-GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(dict,GRAS);
+GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(dict,tbx);
 
 /*####[ Private prototypes ]#################################################*/
 
 
 /*####[ Private prototypes ]#################################################*/
 
index b039d34..8a65bc5 100644 (file)
@@ -10,8 +10,7 @@
 
 #include "gras_private.h"
 
 
 #include "gras_private.h"
 
-
-GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(dynar,GRAS);
+GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(dynar,tbx);
 
 struct gras_dynar_s {
   size_t          size;
 
 struct gras_dynar_s {
   size_t          size;
index e55a4c0..37c978c 100644 (file)
@@ -48,7 +48,8 @@ gras_log_category_t _GRAS_LOGV(GRAS_LOG_ROOT_CAT) = {
   NULL, 0
 };
 GRAS_LOG_NEW_SUBCATEGORY(GRAS,GRAS_LOG_ROOT_CAT);
   NULL, 0
 };
 GRAS_LOG_NEW_SUBCATEGORY(GRAS,GRAS_LOG_ROOT_CAT);
-GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(log,GRAS);
+GRAS_LOG_NEW_SUBCATEGORY(tbx,GRAS);
+GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(log,tbx);
 
 
 static void _apply_control(gras_log_category_t* cat) {
 
 
 static void _apply_control(gras_log_category_t* cat) {
index 1827c30..47ef8d3 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "gras_private.h"
 
 
 #include "gras_private.h"
 
-GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(set,GRAS);
+GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(set,tbx);
 
 /*####[ Type definition ]####################################################*/
 struct gras_set_ {
 
 /*####[ Type definition ]####################################################*/
 struct gras_set_ {