X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a0275c20fef8125716769f5408cd7b54e914a7a..8d8521a35887b41cb63e3473c650140ea3322298:/examples/msg/tracing/volume.c diff --git a/examples/msg/tracing/volume.c b/examples/msg/tracing/volume.c index 2e1bee71cf..805225e5c3 100644 --- a/examples/msg/tracing/volume.c +++ b/examples/msg/tracing/volume.c @@ -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", "1 0 0"); - 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", "0 0 1"); - m_task_t task = NULL; int res;