X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..47770f3f517351a06cd159b2e0f79f72461fbb34:/src/surf/surf_model.c diff --git a/src/surf/surf_model.c b/src/surf/surf_model.c index 77134100b1..028b732e67 100644 --- a/src/surf/surf_model.c +++ b/src/surf/surf_model.c @@ -27,14 +27,13 @@ surf_model_t surf_model_init(void) model->model_private = xbt_new0(s_surf_model_private_t, 1); model->states.ready_action_set = - xbt_swag_new(xbt_swag_offset(action, state_hookup)); + xbt_swag_new(xbt_swag_offset(action, state_hookup)); model->states.running_action_set = - xbt_swag_new(xbt_swag_offset(action, state_hookup)); + xbt_swag_new(xbt_swag_offset(action, state_hookup)); model->states.failed_action_set = - xbt_swag_new(xbt_swag_offset(action, state_hookup)); + xbt_swag_new(xbt_swag_offset(action, state_hookup)); model->states.done_action_set = - xbt_swag_new(xbt_swag_offset(action, state_hookup)); - model->resource_set = xbt_dict_new(); + xbt_swag_new(xbt_swag_offset(action, state_hookup)); model->action_unref = int_die_impossible_paction; model->action_cancel = void_die_impossible_paction; @@ -49,6 +48,7 @@ surf_model_t surf_model_init(void) return model; } + /** @brief finalize common datastructures to all models */ void surf_model_exit(surf_model_t model) { @@ -56,14 +56,6 @@ void surf_model_exit(surf_model_t model) xbt_swag_free(model->states.running_action_set); xbt_swag_free(model->states.failed_action_set); xbt_swag_free(model->states.done_action_set); - xbt_dict_free(&model->resource_set); free(model->model_private); free(model); } - -void *surf_model_resource_by_name(surf_model_t model, const char *name) -{ - return xbt_dict_get_or_null(model->resource_set, name); -} - -