Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new tracing mask TRACE_VOLUME to trace the msg tasks communication size and group...
[simgrid.git] / src / surf / surf_model.c
index 02104c2..2e9700e 100644 (file)
@@ -35,10 +35,17 @@ surf_model_t surf_model_init(void)
     xbt_swag_new(xbt_swag_offset(action, state_hookup));
   model->resource_set = xbt_dict_new();
 
-  model->action_free = int_die_impossible_paction;
+  model->action_unref = int_die_impossible_paction;
   model->action_cancel = void_die_impossible_paction;
   model->action_recycle = void_die_impossible_paction;
 
+  model->action_state_get = surf_action_state_get;
+  model->action_state_set = surf_action_state_set;
+  model->action_get_start_time = surf_action_get_start_time;
+  model->action_get_finish_time = surf_action_get_finish_time;
+  model->action_data_set = surf_action_data_set;
+
+
   return model;
 }
 /** @brief finalize common datastructures to all models */