X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a4aa7f5908948df11fbbc0b6fdf343773c568272..954eee41b751fe1b3f9dc7e35501d54abb636755:/src/simix/smx_process.c diff --git a/src/simix/smx_process.c b/src/simix/smx_process.c index 0615265848..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); @@ -51,11 +51,11 @@ void __SIMIX_create_maestro_process() /* Set it as the maestro process */ simix_global->maestro_process = process; simix_global->current_process = process; - + return; } -/** +/** * \brief Creates and runs a new #smx_process_t. * * A constructor for #m_process_t taking four arguments and returning the corresponding object. The structure (and the corresponding thread) is created, and put in the list of ready process. @@ -213,7 +213,6 @@ void SIMIX_process_kill(smx_process_t process) void *SIMIX_process_get_data(smx_process_t process) { xbt_assert0((process != NULL), "Invalid parameters"); - return (process->data); } @@ -405,7 +404,7 @@ void SIMIX_process_change_host(smx_process_t process, char *source, char *dest) */ int SIMIX_process_is_suspended(smx_process_t process) { - xbt_assert0(((process != NULL), "Invalid parameters"); + xbt_assert0((process != NULL), "Invalid parameters"); return (process->suspended); }