X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e487ef4538248f261ddb6e814357593df7646e33..6f3abb56f13b8fb7c77c7f56dfb20059f1f4e353:/src/msg/gos.c diff --git a/src/msg/gos.c b/src/msg/gos.c index fc58b2bbea..4e90b14b79 100644 --- a/src/msg/gos.c +++ b/src/msg/gos.c @@ -1,8 +1,5 @@ -/* $Id$ */ - -/* Copyright (c) 2002-2007 Arnaud Legrand. */ -/* Copyright (c) 2007 Bruno Donassolo. */ -/* All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -42,14 +39,23 @@ 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_assert0((!simdata->compute) - && (task->simdata->refcount == 1), - "This task is executed somewhere else. Go fix your code!"); + + 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); + if (simdata->computation_amount == 0) { +#ifdef HAVE_TRACING + TRACE_msg_task_execute_end (task); +#endif + return MSG_OK; + } simdata->refcount++; SIMIX_mutex_lock(simdata->mutex); simdata->compute = @@ -76,18 +82,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); } } @@ -228,6 +243,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), @@ -256,29 +275,26 @@ 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); } -/** \ingroup msg_gos_functions - * \brief Return the number of MSG tasks currently running on - * the host of the current running process. - */ -static int MSG_get_msgload(void) -{ - xbt_die("not implemented yet"); - return 0; -} - - - /** \ingroup msg_gos_functions * \brief Listen on \a channel and waits for receiving a task from \a host. *