Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move e_surf_link_sharing_policy_t structure to surf.h and fix the way to create link...
[simgrid.git] / src / surf / surf_model.c
index cd5993a..7713410 100644 (file)
@@ -1,5 +1,6 @@
 
-/* Copyright (c) 2009 The SimGrid Team. All rights reserved.                */
+/* Copyright (c) 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. */
@@ -35,11 +36,12 @@ 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;