From: Arnaud Legrand Date: Fri, 2 Mar 2012 13:34:04 +0000 (+0100) Subject: cosmetics X-Git-Tag: v3_7~315^2~27^2~17 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ce47a7b1b7e9954d5dcbfddc94fa556ab6f7a197 cosmetics --- diff --git a/src/surf/network.c b/src/surf/network.c index fdcac41c5c..9f3b07704b 100644 --- a/src/surf/network.c +++ b/src/surf/network.c @@ -56,7 +56,7 @@ e_UM_t network_update_mechanism = UM_UNDEFINED; static int net_selective_update = 0; static int net_action_is_suspended(surf_action_t action); -static void update_action_remaining(double now); +static void update_action_remaining_lazy(double now); static xbt_swag_t net_modified_set = NULL; static xbt_heap_t net_action_heap = NULL; @@ -378,11 +378,11 @@ int net_get_link_latency_limited(surf_action_t action) double net_action_get_remains(surf_action_t action) { if (network_update_mechanism == UM_LAZY) /* update remains before return it */ - update_action_remaining(surf_get_clock()); + update_action_remaining_lazy(surf_get_clock()); return action->remains; } -static void update_action_remaining(double now) +static void update_action_remaining_lazy(double now) { surf_action_network_CM02_t action = NULL; double delta = 0.0; @@ -462,7 +462,7 @@ static double net_share_resources_lazy(double now) XBT_DEBUG ("Before share resources, the size of modified actions set is %d", xbt_swag_size(net_modified_set)); - update_action_remaining(now); + update_action_remaining_lazy(now); lmm_solve(network_maxmin_system);