X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0db814e6b23d3c10c1977b0a3ee6a8cb3e97263a..3595431d9a94c0b3833f488667f286529449b5ef:/src/msg/m_process.c diff --git a/src/msg/m_process.c b/src/msg/m_process.c index f47ed40ad3..2131afab83 100644 --- a/src/msg/m_process.c +++ b/src/msg/m_process.c @@ -27,7 +27,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(m_process, msg, * \brief Creates and runs a new #m_process_t. * * Does exactly the same as #MSG_process_create_with_arguments but without - providing standard arguments (\a argc, \a argv). + providing standard arguments (\a argc, \a argv, \a start_time, \a kill_time). * \sa MSG_process_create_with_arguments */ m_process_t MSG_process_create(const char *name, @@ -136,6 +136,8 @@ void MSG_process_kill(m_process_t process) int i; simdata_process_t p_simdata = process->simdata; simdata_host_t h_simdata= p_simdata->host->simdata; + int _cursor; + m_process_t proc = NULL; /* fprintf(stderr,"Killing %s(%d) on %s.\n",process->name, */ /* p_simdata->PID,p_simdata->host->name); */ @@ -148,6 +150,10 @@ void MSG_process_kill(m_process_t process) } if (i==msg_global->max_channel) { if(p_simdata->waiting_task) { + xbt_dynar_foreach(p_simdata->waiting_task->simdata->sleeping,_cursor,proc) { + if(proc==process) + xbt_dynar_remove_at(p_simdata->waiting_task->simdata->sleeping,_cursor,&proc); + } if(p_simdata->waiting_task->simdata->compute) surf_workstation_resource->common_public-> action_free(p_simdata->waiting_task->simdata->compute); @@ -155,12 +161,17 @@ void MSG_process_kill(m_process_t process) surf_workstation_resource->common_public-> action_change_state(p_simdata->waiting_task->simdata->comm,SURF_ACTION_FAILED); else - fprintf(stderr,"UNKNOWN STATUS. Please report this bug.\n"); + CRITICAL0("UNKNOWN STATUS. Please report this bug."); } else { /* Must be trying to put a task somewhere */ - fprintf(stderr,"UNKNOWN STATUS. Please report this bug.\n"); + if(process==MSG_process_self()) { + return; + } else { + CRITICAL0("UNKNOWN STATUS. Please report this bug."); + } } } + xbt_fifo_remove(msg_global->process_to_run,process); xbt_fifo_remove(msg_global->process_list,process); xbt_context_free(process->simdata->context); } @@ -482,15 +493,3 @@ int __MSG_process_isBlocked(m_process_t process) return (process->simdata->blocked); } - - -const char* xbt_procname(void) { - const char res = NULL; - m_process_t process = MSG_process_self(); - if ((process != NULL) && (process->simdata)) - res = MSG_process_get_name(process); - if (res) - return res; - else - return ""; -}