]> AND Public Git Repository - simgrid.git/blobdiff - src/surf/network_constant.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
xbt_dict: allow to have integer key and data
[simgrid.git] / src / surf / network_constant.c
index 572ba021bfbc146cce2414fffeb94f64ff9c0802..74a319be31babf2df1214d67f4d5945d0f0bedd3 100644 (file)
@@ -20,16 +20,15 @@ typedef struct surf_action_network_Constant {
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_network);
 static random_data_t random_latency = NULL;
-static int host_number = 0;
+static int host_number_int = 0;
 
 static void netcste_count_hosts(void)
 {
-  host_number++;
+  host_number_int++;
 }
 
 static void netcste_define_callbacks(const char *file)
 {
-  /* Figuring out the network links */
   surfxml_add_callback(STag_surfxml_host_cb_list, &netcste_count_hosts);
 }