X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4959dfb50f77f6569ae7c59a2b1bdb18d07bfc02..6cb691951277de5ede59b021bd50648ba9968182:/src/surf/surf_action.c?ds=sidebyside diff --git a/src/surf/surf_action.c b/src/surf/surf_action.c index 431baa6cad..5ab946eedd 100644 --- a/src/surf/surf_action.c +++ b/src/surf/surf_action.c @@ -7,6 +7,10 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_kernel); +/* + * Generic action + */ + const char *surf_action_state_names[6] = { "SURF_ACTION_READY", "SURF_ACTION_RUNNING", @@ -16,6 +20,29 @@ const char *surf_action_state_names[6] = { "SURF_ACTION_NOT_IN_THE_SYSTEM" }; +void *surf_action_new(size_t size, double cost, surf_model_t model, + int failed) +{ + surf_action_t action = xbt_malloc0(size); + action->refcount = 1; + action->cost = cost; + action->remains = cost; + action->priority = 1.0; + action->max_duration = NO_MAX_DURATION; + action->start = surf_get_clock(); + action->finish = -1.0; + action->model_type = model; + + if (failed) + action->state_set = model->states.failed_action_set; + else + action->state_set = model->states.running_action_set; + + xbt_swag_insert(action, action->state_set); + + return action; +} + e_surf_action_state_t surf_action_state_get(surf_action_t action) { surf_action_state_t action_state = &(action->model_type->states); @@ -38,7 +65,8 @@ double surf_action_get_start_time(surf_action_t action) double surf_action_get_finish_time(surf_action_t action) { - return action->finish; + /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */ + return action->remains == 0 ? action->finish : -1; } void surf_action_free(surf_action_t * action) @@ -48,8 +76,7 @@ void surf_action_free(surf_action_t * action) *action = NULL; } -void surf_action_state_set(surf_action_t action, - e_surf_action_state_t state) +void surf_action_state_set(surf_action_t action, e_surf_action_state_t state) { surf_action_state_t action_state = &(action->model_type->states); XBT_IN2("(%p,%s)", action, surf_action_state_names[state]); @@ -80,3 +107,13 @@ void surf_action_ref(surf_action_t action) { action->refcount++; } + +/* +void surf_action_suspend(surf_action_t action) +{ + action->suspended = 1; +}*/ + +/* + * Maxmin action + */