X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/76da2a87ea1cf4def9fcb62ec75bbcd949c71bd5..9eb42c5feb5b12390fee2dcf3cfb9a031d3c1fa0:/src/msg/global.c diff --git a/src/msg/global.c b/src/msg/global.c index 36bff657fe..4e587cc93f 100644 --- a/src/msg/global.c +++ b/src/msg/global.c @@ -8,8 +8,8 @@ #include "private.h" #include "xbt/sysdep.h" #include "xbt/log.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(global, msg, - "Logging specific to MSG (global)"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg, + "Logging specific to MSG (kernel)"); int __stop_at_time = -1.0 ; @@ -22,6 +22,7 @@ MSG_Global_t msg_global = NULL; * \brief This section describes the functions you need to know to * set up a simulation. You should have a look at \ref MSG_examples * to have an overview of their usage. + * \htmlonly \endhtmlonly */ /********************************* MSG **************************************/ @@ -142,6 +143,7 @@ void MSG_paje_output(const char *filename) "% EntityType string\n" "% Container string\n" "% Value string\n" + "% TaskName string\n" "%EndEventDef\n" "%EventDef PajePopState 12\n" "% Time date\n" @@ -236,6 +238,8 @@ void MSG_paje_output(const char *filename) /** \defgroup m_channel_management Understanding channels * \brief This section briefly describes the channel notion of MSG * (#m_channel_t). + * \htmlonly \endhtmlonly + * * * For convenience, the simulator provides the notion of channel * that is close to the tag notion in MPI. A channel is not a @@ -326,9 +330,9 @@ MSG_error_t MSG_main(void) } if(!state_modifications) { - DEBUG1("%g : Calling surf_solve",MSG_get_clock()); + DEBUG1("%f : Calling surf_solve",MSG_get_clock()); elapsed_time = surf_solve(); - DEBUG1("Elapsed_time %g",elapsed_time); + DEBUG1("Elapsed_time %f",elapsed_time); if (elapsed_time<0.0) { /* fprintf(stderr, "We're done %g\n",elapsed_time); */ @@ -444,7 +448,7 @@ MSG_error_t MSG_main(void) } } if(XBT_LOG_ISENABLED(msg, xbt_log_priority_debug) || - XBT_LOG_ISENABLED(global, xbt_log_priority_debug)) { + XBT_LOG_ISENABLED(msg_kernel, xbt_log_priority_debug)) { DEBUG0("Aborting!"); xbt_abort(); }