X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1bff4c4aa3caab353f2b4121456efde822cad955..27ab0589420bc5bb6d52e5fdc54bab36c63b8be0:/src/msg/gos.c diff --git a/src/msg/gos.c b/src/msg/gos.c index 4a999fe6e0..f656ec4e79 100644 --- a/src/msg/gos.c +++ b/src/msg/gos.c @@ -42,11 +42,13 @@ MSG_error_t MSG_task_execute(m_task_t task) m_process_t self = MSG_process_self(); e_surf_action_state_t state = SURF_ACTION_NOT_IN_THE_SYSTEM; CHECK_HOST(); +#ifdef HAVE_TRACING + TRACE_msg_task_execute_start (task); +#endif simdata = task->simdata; - xbt_assert1((!simdata->compute), - //&& (task->simdata->refcount == 1), FIXME: since lua bindings play with this refcount to make sure that tasks don't get gc() twice, this field cannot be used here as is anymore + xbt_assert1((!simdata->compute) && (task->simdata->refcount == 1), "This task is executed somewhere else. Go fix your code! %d", task->simdata->refcount); DEBUG1("Computing on %s", MSG_process_self()->simdata->m_host->name); @@ -77,18 +79,27 @@ MSG_error_t MSG_task_execute(m_task_t task) simdata->computation_amount = 0.0; simdata->comm = NULL; simdata->compute = NULL; +#ifdef HAVE_TRACING + TRACE_msg_task_execute_end (task); +#endif MSG_RETURN(MSG_OK); } else if (SIMIX_host_get_state(SIMIX_host_self()) == 0) { /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */ SIMIX_action_destroy(task->simdata->compute); simdata->comm = NULL; simdata->compute = NULL; +#ifdef HAVE_TRACING + TRACE_msg_task_execute_end (task); +#endif MSG_RETURN(MSG_HOST_FAILURE); } else { /* action ended, set comm and compute = NULL, the actions is already destroyed in the main function */ SIMIX_action_destroy(task->simdata->compute); simdata->comm = NULL; simdata->compute = NULL; +#ifdef HAVE_TRACING + TRACE_msg_task_execute_end (task); +#endif MSG_RETURN(MSG_TASK_CANCELLED); } } @@ -229,6 +240,10 @@ MSG_error_t MSG_process_sleep(double nb_sec) smx_mutex_t mutex; smx_cond_t cond; +#ifdef HAVE_TRACING + TRACE_msg_process_sleep_in (MSG_process_self()); +#endif + /* create action to sleep */ act_sleep = SIMIX_action_sleep(SIMIX_process_get_host(proc->simdata->s_process), @@ -257,14 +272,23 @@ MSG_error_t MSG_process_sleep(double nb_sec) if (SIMIX_action_get_state(act_sleep) == SURF_ACTION_DONE) { if (SIMIX_host_get_state(SIMIX_host_self()) == SURF_RESOURCE_OFF) { SIMIX_action_destroy(act_sleep); +#ifdef HAVE_TRACING + TRACE_msg_process_sleep_out (MSG_process_self()); +#endif MSG_RETURN(MSG_HOST_FAILURE); } } else { SIMIX_action_destroy(act_sleep); +#ifdef HAVE_TRACING + TRACE_msg_process_sleep_out (MSG_process_self()); +#endif MSG_RETURN(MSG_HOST_FAILURE); } SIMIX_action_destroy(act_sleep); +#ifdef HAVE_TRACING + TRACE_msg_process_sleep_out (MSG_process_self()); +#endif MSG_RETURN(MSG_OK); }