Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Chord: update some messages displayed
[simgrid.git] / examples / msg / tracing / volume.c
index 673d3d4..c19720a 100644 (file)
@@ -23,9 +23,6 @@ MSG_error_t test_all(const char *platform_file,
 /** Emitter function  */
 int master(int argc, char *argv[])
 {
-  //defining the category of the master process
-  TRACE_msg_set_process_category(MSG_process_self(), "master");
-
   long number_of_tasks = atol(argv[1]);
   long slaves_count = atol(argv[4]);
   int p = 1000000000;
@@ -59,9 +56,6 @@ int master(int argc, char *argv[])
 /** Receiver function  */
 int slave(int argc, char *argv[])
 {
-  //defining the category of this slave process
-  TRACE_msg_set_process_category(MSG_process_self(), "slave");
-
   m_task_t task = NULL;
   int res;
 
@@ -101,10 +95,6 @@ MSG_error_t test_all(const char *platform_file,
     TRACE_category_with_color ("request", "0 1 0"); //green
     TRACE_category_with_color ("data", "0 0 1");    //blue
     TRACE_category_with_color ("finalize", "0 0 0");//black
-
-    //declaring user categories (for processes)
-    TRACE_category_with_color ("master", "1 0 0");
-    TRACE_category_with_color ("slave", "0 0 1");
   }
   {                             /*   Application deployment */
     MSG_function_register("master", master);
@@ -113,7 +103,7 @@ MSG_error_t test_all(const char *platform_file,
   }
   res = MSG_main();
 
-  INFO1("Simulation time %g", MSG_get_clock());
+  XBT_INFO("Simulation time %g", MSG_get_clock());
   return res;
 }