X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/93c0b0a94f95c8f3cacd3bd4d9a6d02f2807a2be..f2c8100157073c9fa6be8ab93d723432fef5c5c7:/include/gras/log.h diff --git a/include/gras/log.h b/include/gras/log.h index 8c0782e441..04996099d6 100644 --- a/include/gras/log.h +++ b/include/gras/log.h @@ -150,13 +150,14 @@ typedef struct gras_log_category_s gras_log_category_t; * Do NOT access any members of this structure directly. */ struct gras_log_category_s { - gras_log_category_t *parent; - gras_log_category_t *firstChild, *nextSibling; - const char *name; - int threshold; - int isThreshInherited; - gras_log_appender_t *appender; - int willLogToParent; + gras_log_category_t *parent; +/*@null@*/ gras_log_category_t *firstChild; +/*@null@*/ gras_log_category_t *nextSibling; + const char *name; + int threshold; + int isThreshInherited; +/*@null@*/ gras_log_appender_t *appender; + int willLogToParent; // TODO: Formats? };