From: mquinson Date: Mon, 13 Jul 2009 18:08:31 +0000 (+0000) Subject: do not give maestro a name, or it will change every output, invalidating any tests X-Git-Tag: SVN~1149 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/954eee41b751fe1b3f9dc7e35501d54abb636755 do not give maestro a name, or it will change every output, invalidating any tests git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6499 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/simix/smx_process.c b/src/simix/smx_process.c index a35a229a14..b7bb08095f 100644 --- a/src/simix/smx_process.c +++ b/src/simix/smx_process.c @@ -43,7 +43,7 @@ void __SIMIX_create_maestro_process() process = xbt_new0(s_smx_process_t, 1); /* Process data */ - process->name = (char *)"maestro"; + process->name = (char *)""; /*Create the right context type (FIXME: check the return value for success)*/ SIMIX_context_create_maestro(&process);