X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4db64504cb1972613311ca094cf183e7375bc34c..f7285314d1e9f432bfc439d568a68884a823f069:/src/instr/interface.c?ds=sidebyside diff --git a/src/instr/interface.c b/src/instr/interface.c index 61103f8a9e..daab4a454d 100644 --- a/src/instr/interface.c +++ b/src/instr/interface.c @@ -15,15 +15,25 @@ #ifdef HAVE_TRACING -XBT_LOG_NEW_DEFAULT_CATEGORY(tracing,"Tracing Surf"); +XBT_LOG_NEW_DEFAULT_CATEGORY(tracing,"Tracing Interface"); -extern xbt_dict_t created_containers; /* declared in general.c */ static xbt_dict_t defined_types; static xbt_dict_t created_categories; int trace_mask; -/** +/** \ingroup tracing + * \brief Simple initialization of tracing. + * + * \param filename of the file that will contain the traces + * \return 0 if everything is ok + */ +int TRACE_start (const char *filename) +{ + return TRACE_start_with_mask (filename, TRACE_PLATFORM); +} + +/** \ingroup tracing * \brief Initialization of tracing. * * Function to be called at first when tracing a simulation @@ -93,7 +103,6 @@ int TRACE_start_with_mask(const char *filename, int mask) { if (IS_TRACING_PLATFORM) pajeCreateContainer(MSG_get_clock(), "platform", "PLATFORM", "0", "simgrid-platform"); - created_containers = xbt_dict_new(); defined_types = xbt_dict_new(); created_categories = xbt_dict_new(); __TRACE_msg_init(); @@ -163,7 +172,6 @@ int TRACE_create_category (const char *category, } //check if category is created if (xbt_dict_get_or_null (created_categories, category)){ - INFO1 ("Category %s is already created", category); return 1; }