Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3463fad79bd98c4b02abf87dc8f77d2258b8d020
[simgrid.git] / src / surf / surf.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "surf_private.h"
8 #include "xbt/module.h"
9 #include "mc/mc.h"
10 #include "simix/smx_host_private.h"
11 #include "surf/surf_resource.h"
12 #include "xbt/xbt_os_thread.h"
13 #include "simgrid/sg_config.h"
14
15 #include <ctype.h>
16
17 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
19                                 "Logging specific to SURF (kernel)");
20
21 /* Additional declarations for Windows portability. */
22
23 #ifndef MAX_DRIVE
24 #define MAX_DRIVE 26
25 #endif
26
27 #ifdef _XBT_WIN32
28 #include <windows.h>
29 static const char *disk_drives_letter_table[MAX_DRIVE] = {
30   "A:\\",
31   "B:\\",
32   "C:\\",
33   "D:\\",
34   "E:\\",
35   "F:\\",
36   "G:\\",
37   "H:\\",
38   "I:\\",
39   "J:\\",
40   "K:\\",
41   "L:\\",
42   "M:\\",
43   "N:\\",
44   "O:\\",
45   "P:\\",
46   "Q:\\",
47   "R:\\",
48   "S:\\",
49   "T:\\",
50   "U:\\",
51   "V:\\",
52   "W:\\",
53   "X:\\",
54   "Y:\\",
55   "Z:\\"
56 };
57 #endif                          /* #ifdef _XBT_WIN32 */
58
59 /*
60  * Returns the initial path. On Windows the initial path is
61  * the current directory for the current process in the other
62  * case the function returns "./" that represents the current
63  * directory on Unix/Linux platforms.
64  */
65
66 const char *__surf_get_initial_path(void)
67 {
68
69 #ifdef _XBT_WIN32
70   unsigned i;
71   char current_directory[MAX_PATH + 1] = { 0 };
72   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
73   char root[4] = { 0 };
74
75   if (!len)
76     return NULL;
77
78   strncpy(root, current_directory, 3);
79
80   for (i = 0; i < MAX_DRIVE; i++) {
81     if (toupper(root[0]) == disk_drives_letter_table[i][0])
82       return disk_drives_letter_table[i];
83   }
84
85   return NULL;
86 #else
87   return "./";
88 #endif
89 }
90
91 /* The __surf_is_absolute_file_path() returns 1 if
92  * file_path is a absolute file path, in the other
93  * case the function returns 0.
94  */
95 int __surf_is_absolute_file_path(const char *file_path)
96 {
97 #ifdef _XBT_WIN32
98   WIN32_FIND_DATA wfd = { 0 };
99   HANDLE hFile = FindFirstFile(file_path, &wfd);
100
101   if (INVALID_HANDLE_VALUE == hFile)
102     return 0;
103
104   FindClose(hFile);
105   return 1;
106 #else
107   return (file_path[0] == '/');
108 #endif
109 }
110
111 double NOW = 0;
112
113 xbt_dynar_t model_list = NULL;
114 tmgr_history_t history = NULL;
115 lmm_system_t maxmin_system = NULL;
116 xbt_dynar_t surf_path = NULL;
117
118 /* Don't forget to update the option description in smx_config when you change this */
119 s_surf_model_description_t surf_network_model_description[] = {
120   {"LV08",
121    "Realistic network analytic model (slow-start modeled by multiplying latency by 10.4, bandwidth by .92; bottleneck sharing uses a payload of S=8775 for evaluating RTT). ",
122    surf_network_model_init_LegrandVelho},
123   {"Constant",
124    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
125    surf_network_model_init_Constant},
126   {"SMPI",
127    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
128    surf_network_model_init_SMPI},
129   {"CM02",
130    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
131    surf_network_model_init_CM02},
132 #ifdef HAVE_GTNETS
133   {"GTNets",
134    "Network pseudo-model using the GTNets simulator instead of an analytic model",
135    surf_network_model_init_GTNETS},
136 #endif
137 #ifdef HAVE_NS3
138   {"NS3",
139    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
140   surf_network_model_init_NS3},
141 #endif
142   {"Reno",
143    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
144    surf_network_model_init_Reno},
145   {"Reno2",
146    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
147    surf_network_model_init_Reno2},
148   {"Vegas",
149    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
150    surf_network_model_init_Vegas},
151   {NULL, NULL, NULL}      /* this array must be NULL terminated */
152 };
153
154 s_surf_model_description_t surf_cpu_model_description[] = {
155   {"Cas01",
156    "Simplistic CPU model (time=size/power).",
157    surf_cpu_model_init_Cas01},
158   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
159 };
160
161 s_surf_model_description_t surf_workstation_model_description[] = {
162   {"default",
163    "Default workstation model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
164    surf_workstation_model_init_current_default},
165   {"compound",
166    "Workstation model that is automatically chosen if you change the network and CPU models",
167    surf_workstation_model_init_compound},
168   {"ptask_L07", "Workstation model somehow similar to Cas01+CM02 but allowing parallel tasks",
169    surf_workstation_model_init_ptask_L07},
170   {NULL, NULL, NULL}      /* this array must be NULL terminated */
171 };
172
173 s_surf_model_description_t surf_optimization_mode_description[] = {
174   {"Lazy",
175    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
176    NULL},
177   {"TI",
178    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
179     NULL},
180   {"Full",
181    "Full update of remaining and variables. Slow but may be useful when debugging.",
182    NULL},
183   {NULL, NULL, NULL}      /* this array must be NULL terminated */
184 };
185
186 s_surf_model_description_t surf_storage_model_description[] = {
187   {"default",
188    "Simplistic storage model.",
189    surf_storage_model_init_default},
190   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
191 };
192
193 /* ********************************************************************* */
194 /* TUTORIAL: New model                                                   */
195 s_surf_model_description_t surf_new_model_description[] = {
196   {"default",
197    "Tutorial model.",
198    surf_new_model_init_default},
199   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
200 };
201 /* ********************************************************************* */
202
203 #ifdef CONTEXT_THREADS
204 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
205 #endif
206
207 static double *surf_mins = NULL; /* return value of share_resources for each model */
208 static int surf_min_index;       /* current index in surf_mins */
209 static double min;               /* duration determined by surf_solve */
210
211 static void surf_share_resources(surf_model_t model);
212 static void surf_update_actions_state(surf_model_t model);
213
214 /** Displays the long description of all registered models, and quit */
215 void model_help(const char *category, s_surf_model_description_t * table)
216 {
217   int i;
218   printf("Long description of the %s models accepted by this simulator:\n",
219          category);
220   for (i = 0; table[i].name; i++)
221     printf("  %s: %s\n", table[i].name, table[i].description);
222 }
223
224 int find_model_description(s_surf_model_description_t * table,
225                            const char *name)
226 {
227   int i;
228   char *name_list = NULL;
229
230   for (i = 0; table[i].name; i++)
231     if (!strcmp(name, table[i].name)) {
232       return i;
233     }
234   name_list = strdup(table[0].name);
235   for (i = 1; table[i].name; i++) {
236     name_list =
237         xbt_realloc(name_list,
238                     strlen(name_list) + strlen(table[i].name) + 3);
239     strcat(name_list, ", ");
240     strcat(name_list, table[i].name);
241   }
242   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
243   return -1;
244 }
245
246 double generic_maxmin_share_resources(xbt_swag_t running_actions,
247                                       size_t offset,
248                                       lmm_system_t sys,
249                                       void (*solve) (lmm_system_t))
250 {
251   surf_action_t action = NULL;
252   double min = -1;
253   double value = -1;
254 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
255
256   solve(sys);
257
258   xbt_swag_foreach(action, running_actions) {
259     value = lmm_variable_getvalue(VARIABLE(action));
260     if ((value > 0) || (action->max_duration >= 0))
261       break;
262   }
263
264   if (!action)
265     return -1.0;
266
267   if (value > 0) {
268     if (action->remains > 0)
269       min = action->remains / value;
270     else
271       min = 0.0;
272     if ((action->max_duration >= 0) && (action->max_duration < min))
273       min = action->max_duration;
274   } else
275     min = action->max_duration;
276
277
278   for (action = xbt_swag_getNext(action, running_actions->offset);
279        action;
280        action = xbt_swag_getNext(action, running_actions->offset)) {
281     value = lmm_variable_getvalue(VARIABLE(action));
282     if (value > 0) {
283       if (action->remains > 0)
284         value = action->remains / value;
285       else
286         value = 0.0;
287       if (value < min) {
288         min = value;
289         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
290       }
291     }
292     if ((action->max_duration >= 0) && (action->max_duration < min)) {
293       min = action->max_duration;
294       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
295     }
296   }
297   XBT_DEBUG("min value : %f", min);
298
299 #undef VARIABLE
300   return min;
301 }
302
303 double generic_share_resources_lazy(double now, surf_model_t model)
304 {
305   surf_action_lmm_t action = NULL;
306   double min = -1;
307   double value;
308
309   XBT_DEBUG
310       ("Before share resources, the size of modified actions set is %d",
311        xbt_swag_size(model->model_private->modified_set));
312
313   lmm_solve(model->model_private->maxmin_system);
314
315   XBT_DEBUG
316       ("After share resources, The size of modified actions set is %d",
317        xbt_swag_size(model->model_private->modified_set));
318
319   while((action = xbt_swag_extract(model->model_private->modified_set))) {
320     int max_dur_flag = 0;
321
322     if (action->generic_action.state_set !=
323         model->states.running_action_set)
324       continue;
325
326     /* bogus priority, skip it */
327     if (action->generic_action.priority <= 0)
328       continue;
329
330     generic_update_action_remaining_lazy(action,now);
331
332     min = -1;
333     value = lmm_variable_getvalue(action->variable);
334     if (value > 0) {
335       if (action->generic_action.remains > 0) {
336         value = action->generic_action.remains / value;
337         min = now + value;
338       } else {
339         value = 0.0;
340         min = now;
341       }
342     }
343
344     if ((action->generic_action.max_duration != NO_MAX_DURATION)
345         && (min == -1
346             || action->generic_action.start +
347             action->generic_action.max_duration < min)) {
348       min = action->generic_action.start +
349           action->generic_action.max_duration;
350       max_dur_flag = 1;
351     }
352
353     XBT_DEBUG("Action(%p) Start %lf Finish %lf Max_duration %lf", action,
354         action->generic_action.start, now + value,
355         action->generic_action.max_duration);
356
357     if (min != -1) {
358       surf_action_lmm_heap_remove(model->model_private->action_heap,action);
359       surf_action_lmm_heap_insert(model->model_private->action_heap,action, min, max_dur_flag ? MAX_DURATION : NORMAL);
360       XBT_DEBUG("Insert at heap action(%p) min %lf now %lf", action, min,
361                 now);
362     } else DIE_IMPOSSIBLE;
363   }
364
365   //hereafter must have already the min value for this resource model
366   if (xbt_heap_size(model->model_private->action_heap) > 0)
367     min = xbt_heap_maxkey(model->model_private->action_heap) - now;
368   else
369     min = -1;
370
371   XBT_DEBUG("The minimum with the HEAP %lf", min);
372
373   return min;
374 }
375 static XBT_INLINE void routing_asr_host_free(void *p)
376 {
377   sg_routing_edge_t elm = p;
378   free(elm->name);
379   xbt_free(elm);
380 }
381
382 static XBT_INLINE void routing_asr_prop_free(void *p)
383 {
384   xbt_dict_t elm = p;
385   xbt_dict_free(&elm);
386 }
387
388 void sg_version(int *ver_major,int *ver_minor,int *ver_patch) {
389   *ver_major = SIMGRID_VERSION_MAJOR;
390   *ver_minor = SIMGRID_VERSION_MINOR;
391   *ver_patch = SIMGRID_VERSION_PATCH;
392 }
393
394 void surf_init(int *argc, char **argv)
395 {
396   XBT_DEBUG("Create all Libs");
397   host_lib = xbt_lib_new();
398   link_lib = xbt_lib_new();
399   as_router_lib = xbt_lib_new();
400   storage_lib = xbt_lib_new();
401   storage_type_lib = xbt_lib_new();
402   watched_hosts_lib = xbt_dict_new();
403
404   XBT_DEBUG("Add routing levels");
405   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
406   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
407   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
408
409   XBT_DEBUG("Add SURF levels");
410   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
411   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
412   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
413
414   xbt_init(argc, argv);
415   if (!model_list)
416     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
417   if (!history)
418     history = tmgr_history_new();
419
420 #ifdef HAVE_TRACING
421   TRACE_add_start_function(TRACE_surf_alloc);
422   TRACE_add_end_function(TRACE_surf_release);
423 #endif
424
425   sg_config_init(argc, argv);
426
427   surf_action_init();
428   if (MC_is_active())
429     MC_memory_init();
430 }
431
432 #ifdef _XBT_WIN32
433 # define FILE_DELIM "\\"
434 #else
435 # define FILE_DELIM "/"         /* FIXME: move to better location */
436 #endif
437
438 FILE *surf_fopen(const char *name, const char *mode)
439 {
440   unsigned int cpt;
441   char *path_elm = NULL;
442   char *buff;
443   FILE *file = NULL;
444
445   xbt_assert(name);
446
447   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
448     return fopen(name, mode);
449
450   /* search relative files in the path */
451   xbt_dynar_foreach(surf_path, cpt, path_elm) {
452     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
453     file = fopen(buff, mode);
454     free(buff);
455
456     if (file)
457       return file;
458   }
459   return NULL;
460 }
461
462 void surf_exit(void)
463 {
464   unsigned int iter;
465   surf_model_t model = NULL;
466
467   sg_config_finalize();
468
469   xbt_dynar_foreach(model_list, iter, model)
470       model->model_private->finalize();
471   xbt_dynar_free(&model_list);
472   routing_exit();
473
474   if (maxmin_system) {
475     lmm_system_free(maxmin_system);
476     maxmin_system = NULL;
477   }
478   if (history) {
479     tmgr_history_free(history);
480     history = NULL;
481   }
482   surf_action_exit();
483
484 #ifdef CONTEXT_THREADS
485   xbt_parmap_destroy(surf_parmap);
486   xbt_free(surf_mins);
487   surf_mins = NULL;
488 #endif
489
490   xbt_dynar_free(&surf_path);
491
492   xbt_lib_free(&host_lib);
493   xbt_lib_free(&link_lib);
494   xbt_lib_free(&as_router_lib);
495   xbt_lib_free(&storage_lib);
496   xbt_lib_free(&storage_type_lib);
497
498   xbt_dict_free(&watched_hosts_lib);
499
500   tmgr_finalize();
501   surf_parse_lex_destroy();
502   surf_parse_free_callbacks();
503
504   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
505 }
506
507 void surf_presolve(void)
508 {
509   double next_event_date = -1.0;
510   tmgr_trace_event_t event = NULL;
511   double value = -1.0;
512   surf_resource_t resource = NULL;
513   surf_model_t model = NULL;
514   unsigned int iter;
515
516   XBT_DEBUG
517       ("First Run! Let's \"purge\" events and put models in the right state");
518   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
519     if (next_event_date > NOW)
520       break;
521     while ((event =
522             tmgr_history_get_next_event_leq(history, next_event_date,
523                                             &value,
524                                             (void **) &resource))) {
525       if (value >= 0){
526         resource->model->model_private->update_resource_state(resource,
527                                                               event, value,
528                                                               NOW);
529       }
530     }
531   }
532   xbt_dynar_foreach(model_list, iter, model)
533       model->model_private->update_actions_state(NOW, 0.0);
534 }
535
536 double surf_solve(double max_date)
537 {
538   min = -1.0; /* duration */
539   double next_event_date = -1.0;
540   double model_next_action_end = -1.0;
541   double value = -1.0;
542   surf_resource_t resource = NULL;
543   surf_model_t model = NULL;
544   tmgr_trace_event_t event = NULL;
545   unsigned int iter;
546
547   if (max_date != -1.0 && max_date != NOW) {
548     min = max_date - NOW;
549   }
550
551   XBT_DEBUG("Looking for next action end for all models except NS3");
552
553   if (surf_mins == NULL) {
554     surf_mins = xbt_new(double, xbt_dynar_length(model_list));
555   }
556   surf_min_index = 0;
557
558   /* sequential version */
559   xbt_dynar_foreach(model_list, iter, model) {
560     surf_share_resources(model);
561   }
562
563   unsigned i;
564   for (i = 0; i < xbt_dynar_length(model_list); i++) {
565     if ((min < 0.0 || surf_mins[i] < min)
566         && surf_mins[i] >= 0.0) {
567       min = surf_mins[i];
568     }
569   }
570
571   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
572
573   XBT_DEBUG("Looking for next trace event");
574
575   do {
576     XBT_DEBUG("Next TRACE event : %f", next_event_date);
577
578     next_event_date = tmgr_history_next_date(history);
579
580     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
581       if(next_event_date!=-1.0 && min!=-1.0) {
582         min = MIN(next_event_date - NOW, min);
583       } else{
584         min = MAX(next_event_date - NOW, min);
585       }
586
587       XBT_DEBUG("Run for network at most %f", min);
588       // run until min or next flow
589       model_next_action_end = surf_network_model->model_private->share_resources(min);
590
591       XBT_DEBUG("Min for network : %f", model_next_action_end);
592       if(model_next_action_end>=0.0)
593         min = model_next_action_end;
594     }
595
596     if (next_event_date < 0.0) {
597       XBT_DEBUG("no next TRACE event. Stop searching for it");
598       break;
599     }
600
601     if ((min == -1.0) || (next_event_date > NOW + min)) break;
602
603     XBT_DEBUG("Updating models (min = %g, NOW = %g, next_event_date = %g)",min, NOW, next_event_date);
604     while ((event =
605             tmgr_history_get_next_event_leq(history, next_event_date,
606                                             &value,
607                                             (void **) &resource))) {
608       if (resource->model->model_private->resource_used(resource)) {
609         min = next_event_date - NOW;
610         XBT_DEBUG
611             ("This event will modify model state. Next event set to %f",
612              min);
613       }
614       /* update state of model_obj according to new value. Does not touch lmm.
615          It will be modified if needed when updating actions */
616       XBT_DEBUG("Calling update_resource_state for resource %s with min %lf",
617              resource->model->name, min);
618       resource->model->model_private->update_resource_state(resource,
619                                                             event, value,
620                                                             next_event_date);
621     }
622   } while (1);
623
624   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
625    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
626    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
627   if (min == -1.0) {
628   XBT_DEBUG("No next event at all. Bail out now.");
629     return -1.0;
630   }
631
632   XBT_DEBUG("Duration set to %f", min);
633
634   NOW = NOW + min;
635
636   /* sequential version */
637   xbt_dynar_foreach(model_list, iter, model) {
638     surf_update_actions_state(model);
639   }
640
641 #ifdef HAVE_TRACING
642   TRACE_paje_dump_buffer (0);
643 #endif
644
645   return min;
646 }
647
648 XBT_INLINE double surf_get_clock(void)
649 {
650   return NOW;
651 }
652
653 static void surf_share_resources(surf_model_t model)
654 {
655   double next_action_end = -1.0;
656   int i = __sync_fetch_and_add(&surf_min_index, 1);
657   if (strcmp(model->name,"network NS3")) {
658     XBT_DEBUG("Running for Resource [%s]", model->name);
659     next_action_end = model->model_private->share_resources(NOW);
660     XBT_DEBUG("Resource [%s] : next action end = %f",
661         model->name, next_action_end);
662   }
663   surf_mins[i] = next_action_end;
664 }
665
666 static void surf_update_actions_state(surf_model_t model)
667 {
668   model->model_private->update_actions_state(NOW, min);
669 }
670
671
672 /* This function is a pimple that we ought to fix. But it won't be easy.
673  *
674  * The surf_solve() function does properly return the set of actions that changed.
675  * Instead, each model change a global data, and then the caller of surf_solve must
676  * pick into these sets of action_failed and action_done.
677  *
678  * This was not clean but ok as long as we didn't had to restart the processes when the resource comes back up.
679  * We worked by putting sentinel actions on every resources we are interested in,
680  * so that surf informs us if/when the corresponding resource fails.
681  *
682  * But this does not work to get Simix informed of when a resource comes back up, and this is where this pimple comes.
683  * We have a set of resources that are currently down and for which simix needs to know when it comes back up.
684  * And the current function is called *at every simulation step* to sweep over that set, searching for a resource
685  * that was turned back up in the meanwhile. This is UGLY and slow.
686  *
687  * The proper solution would be to not rely on globals for the action_failed and action_done swags.
688  * They must be passed as parameter by the caller (the handling of these actions in simix may let you
689  * think that these two sets can be merged, but their handling in SimDag induce the contrary unless this
690  * simdag code can check by itself whether the action is done of failed -- seems very doable, but yet more
691  * cleanup to do).
692  *
693  * Once surf_solve() is passed the set of actions that changed, you want to add a new set of resources back up
694  * as parameter to this function. You also want to add a boolean field "restart_watched" to each resource, and
695  * make sure that whenever a resource with this field enabled comes back up, it's added to that set so that Simix
696  * sees it and react accordingly. This would kill that need for surf to call simix.
697  *
698  */
699
700 static void remove_watched_host(void *key)
701 {
702   xbt_dict_remove(watched_hosts_lib, *(char**)key);
703 }
704
705 void surf_watched_hosts(void)
706 {
707   char *key;
708   void *host;
709   xbt_dict_cursor_t cursor;
710   xbt_dynar_t hosts = xbt_dynar_new(sizeof(char*), NULL);
711
712   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
713   xbt_dict_foreach(watched_hosts_lib,cursor,key,host)
714   {
715     if(SIMIX_host_get_state(host) == SURF_RESOURCE_ON){
716       XBT_INFO("Restart processes on host: %s",SIMIX_host_get_name(host));
717       SIMIX_host_autorestart(host);
718       xbt_dynar_push_as(hosts, char*, key);
719     }
720     else
721       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
722   }
723   xbt_dynar_map(hosts, remove_watched_host);
724   xbt_dynar_free(&hosts);
725 }