Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not give maestro a name, or it will change every output, invalidating any tests
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 13 Jul 2009 18:08:31 +0000 (18:08 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 13 Jul 2009 18:08:31 +0000 (18:08 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6499 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/simix/smx_process.c

index a35a229..b7bb080 100644 (file)
@@ -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);