X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/346c06db41ebb088e88351d8381d0c232d2ddbb5..967421ad9a8dcd567206f2c398a30c08c9507a81:/src/surf/surf_private.h diff --git a/src/surf/surf_private.h b/src/surf/surf_private.h index f115c1256d..6e87529dd2 100644 --- a/src/surf/surf_private.h +++ b/src/surf/surf_private.h @@ -17,12 +17,6 @@ #define NO_MAX_DURATION -1.0 -typedef enum { - UM_FULL, - UM_LAZY, - UM_UNDEFINED -} e_UM_t; - /* user-visible parameters */ extern double sg_tcp_gamma; extern double sg_sender_gap; @@ -36,9 +30,16 @@ extern double sg_gtnets_jitter; extern int sg_gtnets_jitter_seed; #endif +extern xbt_dict_t watched_hosts_lib; extern const char *surf_action_state_names[6]; +typedef enum { + UM_FULL, + UM_LAZY, + UM_UNDEFINED +} e_UM_t; + typedef struct surf_model_private { int (*resource_used) (void *resource_id); /* Share the resources to the actions and return in how much time @@ -49,12 +50,20 @@ typedef struct surf_model_private { void (*update_resource_state) (void *id, tmgr_trace_event_t event_type, double value, double time); void (*finalize) (void); + + lmm_system_t maxmin_system; + e_UM_t update_mechanism; + xbt_swag_t modified_set; + xbt_heap_t action_heap; + int selective_update; + } s_surf_model_private_t; double generic_maxmin_share_resources(xbt_swag_t running_actions, size_t offset, lmm_system_t sys, void (*solve) (lmm_system_t)); +double generic_share_resources_lazy(double now, surf_model_t model); /* Generic functions common to all models */ void surf_action_init(void); @@ -72,6 +81,21 @@ void surf_action_lmm_heap_insert(xbt_heap_t heap, surf_action_lmm_t action, double key, enum heap_action_type hat); void surf_action_lmm_heap_remove(xbt_heap_t heap,surf_action_lmm_t action); +void surf_action_cancel(surf_action_t action); +int surf_action_unref(surf_action_t action); +void surf_action_suspend(surf_action_t action); +void surf_action_resume(surf_action_t action); +int surf_action_is_suspended(surf_action_t action); +void surf_action_set_max_duration(surf_action_t action, double duration); +void surf_action_set_priority(surf_action_t action, double priority); +#ifdef HAVE_TRACING +void surf_action_set_category(surf_action_t action, + const char *category); +#endif +double surf_action_get_remains(surf_action_t action); +void generic_update_action_remaining_lazy( surf_action_lmm_t action, double now); +void generic_update_actions_state_lazy(double now, double delta, surf_model_t model); +void generic_update_actions_state_full(double now, double delta, surf_model_t model); FILE *surf_fopen(const char *name, const char *mode); @@ -87,7 +111,7 @@ double net_action_get_remains(surf_action_t action); #ifdef HAVE_LATENCY_BOUND_TRACKING int net_get_link_latency_limited(surf_action_t action); #endif -void net_action_set_max_duration(surf_action_t action, double duration); + /* * Returns the initial path. On Windows the initial path is * the current directory for the current process in the other @@ -145,7 +169,7 @@ typedef enum { typedef struct s_as { xbt_dynar_t index_network_elm; - xbt_dict_t bypassRoutes; /* store bypass routes */ + xbt_dict_t bypassRoutes; /* store bypass routes */ routing_model_description_t model_desc; e_surf_routing_hierarchy_t hierarchy; char *name;