Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Regenerate with latest flexml.
[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
14 #include <ctype.h>
15
16 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
18                                 "Logging specific to SURF (kernel)");
19
20 /* Additional declarations for Windows portability. */
21
22 #ifndef MAX_DRIVE
23 #define MAX_DRIVE 26
24 #endif
25
26 #ifdef _XBT_WIN32
27 #include <windows.h>
28 static const char *disk_drives_letter_table[MAX_DRIVE] = {
29   "A:\\",
30   "B:\\",
31   "C:\\",
32   "D:\\",
33   "E:\\",
34   "F:\\",
35   "G:\\",
36   "H:\\",
37   "I:\\",
38   "J:\\",
39   "K:\\",
40   "L:\\",
41   "M:\\",
42   "N:\\",
43   "O:\\",
44   "P:\\",
45   "Q:\\",
46   "R:\\",
47   "S:\\",
48   "T:\\",
49   "U:\\",
50   "V:\\",
51   "W:\\",
52   "X:\\",
53   "Y:\\",
54   "Z:\\"
55 };
56 #endif                          /* #ifdef _XBT_WIN32 */
57
58 /*
59  * Returns the initial path. On Windows the initial path is
60  * the current directory for the current process in the other
61  * case the function returns "./" that represents the current
62  * directory on Unix/Linux platforms.
63  */
64
65 const char *__surf_get_initial_path(void)
66 {
67
68 #ifdef _XBT_WIN32
69   unsigned i;
70   char current_directory[MAX_PATH + 1] = { 0 };
71   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
72   char root[4] = { 0 };
73
74   if (!len)
75     return NULL;
76
77   strncpy(root, current_directory, 3);
78
79   for (i = 0; i < MAX_DRIVE; i++) {
80     if (toupper(root[0]) == disk_drives_letter_table[i][0])
81       return disk_drives_letter_table[i];
82   }
83
84   return NULL;
85 #else
86   return "./";
87 #endif
88 }
89
90 /* The __surf_is_absolute_file_path() returns 1 if
91  * file_path is a absolute file path, in the other
92  * case the function returns 0.
93  */
94 int __surf_is_absolute_file_path(const char *file_path)
95 {
96 #ifdef _XBT_WIN32
97   WIN32_FIND_DATA wfd = { 0 };
98   HANDLE hFile = FindFirstFile(file_path, &wfd);
99
100   if (INVALID_HANDLE_VALUE == hFile)
101     return 0;
102
103   FindClose(hFile);
104   return 1;
105 #else
106   return (file_path[0] == '/');
107 #endif
108 }
109
110 double NOW = 0;
111
112 xbt_dynar_t model_list = NULL;
113 tmgr_history_t history = NULL;
114 lmm_system_t maxmin_system = NULL;
115 xbt_dynar_t surf_path = NULL;
116
117 /* Don't forget to update the option description in smx_config when you change this */
118 s_surf_model_description_t surf_network_model_description[] = {
119   {"LV08",
120    "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). ",
121    surf_network_model_init_LegrandVelho},
122   {"Constant",
123    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
124    surf_network_model_init_Constant},
125   {"SMPI",
126    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
127    surf_network_model_init_SMPI},
128   {"CM02",
129    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
130    surf_network_model_init_CM02},
131 #ifdef HAVE_GTNETS
132   {"GTNets",
133    "Network pseudo-model using the GTNets simulator instead of an analytic model",
134    surf_network_model_init_GTNETS},
135 #endif
136 #ifdef HAVE_NS3
137   {"NS3",
138    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
139   surf_network_model_init_NS3},
140 #endif
141   {"Reno",
142    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
143    surf_network_model_init_Reno},
144   {"Reno2",
145    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
146    surf_network_model_init_Reno2},
147   {"Vegas",
148    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
149    surf_network_model_init_Vegas},
150   {NULL, NULL, NULL}      /* this array must be NULL terminated */
151 };
152
153 s_surf_model_description_t surf_cpu_model_description[] = {
154   {"Cas01",
155    "Simplistic CPU model (time=size/power).",
156    surf_cpu_model_init_Cas01},
157   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
158 };
159
160 s_surf_model_description_t surf_workstation_model_description[] = {
161   {"default",
162    "Default workstation model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
163    surf_workstation_model_init_current_default},
164   {"compound",
165    "Workstation model that is automatically chosen if you change the network and CPU models",
166    surf_workstation_model_init_compound},
167   {"ptask_L07", "Workstation model somehow similar to Cas01+CM02 but allowing parallel tasks",
168    surf_workstation_model_init_ptask_L07},
169   {NULL, NULL, NULL}      /* this array must be NULL terminated */
170 };
171
172 s_surf_model_description_t surf_optimization_mode_description[] = {
173   {"Lazy",
174    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
175    NULL},
176   {"TI",
177    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
178     NULL},
179   {"Full",
180    "Full update of remaining and variables. Slow but may be useful when debugging.",
181    NULL},
182   {NULL, NULL, NULL}      /* this array must be NULL terminated */
183 };
184
185 s_surf_model_description_t surf_storage_model_description[] = {
186   {"default",
187    "Simplistic storage model.",
188    surf_storage_model_init_default},
189   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
190 };
191
192 /* ********************************************************************* */
193 /* TUTORIAL: New model                                                   */
194 s_surf_model_description_t surf_new_model_description[] = {
195   {"default",
196    "Tutorial model.",
197    surf_new_model_init_default},
198   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
199 };
200 /* ********************************************************************* */
201
202 #ifdef CONTEXT_THREADS
203 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
204 #endif
205
206 static int surf_nthreads = 1;    /* number of threads of the parmap (1 means no parallelism) */
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 xbt_dynar_t sg_cmdline = NULL;
395
396 void surf_init(int *argc, char **argv)
397 {
398   XBT_DEBUG("Create all Libs");
399   host_lib = xbt_lib_new();
400   link_lib = xbt_lib_new();
401   as_router_lib = xbt_lib_new();
402   storage_lib = xbt_lib_new();
403   storage_type_lib = xbt_lib_new();
404   watched_hosts_lib = xbt_dict_new();
405
406   XBT_DEBUG("Add routing levels");
407   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
408   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
409   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
410
411   XBT_DEBUG("Add SURF levels");
412   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
413   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
414   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
415
416   sg_cmdline = xbt_dynar_new(sizeof(char*),NULL);
417   int i;
418   for (i=0;i<*argc;i++) {
419     xbt_dynar_push(sg_cmdline,&(argv[i]));
420   }
421   xbt_init(argc, argv);
422   if (!model_list)
423     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
424   if (!history)
425     history = tmgr_history_new();
426
427   surf_config_init(argc, argv);
428   surf_action_init();
429   if (MC_is_active())
430     MC_memory_init();
431 }
432
433 #ifdef _XBT_WIN32
434 # define FILE_DELIM "\\"
435 #else
436 # define FILE_DELIM "/"         /* FIXME: move to better location */
437 #endif
438
439 FILE *surf_fopen(const char *name, const char *mode)
440 {
441   unsigned int cpt;
442   char *path_elm = NULL;
443   char *buff;
444   FILE *file = NULL;
445
446   xbt_assert(name);
447
448   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
449     return fopen(name, mode);
450
451   /* search relative files in the path */
452   xbt_dynar_foreach(surf_path, cpt, path_elm) {
453     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
454     file = fopen(buff, mode);
455     free(buff);
456
457     if (file)
458       return file;
459   }
460   return NULL;
461 }
462
463 void surf_exit(void)
464 {
465   unsigned int iter;
466   surf_model_t model = NULL;
467
468   surf_config_finalize();
469
470   xbt_dynar_foreach(model_list, iter, model)
471       model->model_private->finalize();
472   xbt_dynar_free(&model_list);
473   routing_exit();
474
475   if (maxmin_system) {
476     lmm_system_free(maxmin_system);
477     maxmin_system = NULL;
478   }
479   if (history) {
480     tmgr_history_free(history);
481     history = NULL;
482   }
483   surf_action_exit();
484
485 #ifdef CONTEXT_THREADS
486   xbt_parmap_destroy(surf_parmap);
487   xbt_free(surf_mins);
488   surf_mins = NULL;
489 #endif
490
491   xbt_dynar_free(&surf_path);
492   xbt_dynar_free(&sg_cmdline);
493
494   xbt_lib_free(&host_lib);
495   xbt_lib_free(&link_lib);
496   xbt_lib_free(&as_router_lib);
497   xbt_lib_free(&storage_lib);
498   xbt_lib_free(&storage_type_lib);
499
500   xbt_dict_free(&watched_hosts_lib);
501
502   tmgr_finalize();
503   surf_parse_lex_destroy();
504   surf_parse_free_callbacks();
505
506   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
507 }
508
509 void surf_presolve(void)
510 {
511   double next_event_date = -1.0;
512   tmgr_trace_event_t event = NULL;
513   double value = -1.0;
514   surf_resource_t resource = NULL;
515   surf_model_t model = NULL;
516   unsigned int iter;
517
518   XBT_DEBUG
519       ("First Run! Let's \"purge\" events and put models in the right state");
520   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
521     if (next_event_date > NOW)
522       break;
523     while ((event =
524             tmgr_history_get_next_event_leq(history, next_event_date,
525                                             &value,
526                                             (void **) &resource))) {
527       resource->model->model_private->update_resource_state(resource,
528                                                             event, value,
529                                                             NOW);
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
559   if (surf_get_nthreads() > 1) {
560     /* parallel version */
561 #ifdef CONTEXT_THREADS
562     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_share_resources, model_list);
563 #else
564     xbt_die("Asked to run in parallel, but no thread at hand...");
565 #endif
566   }
567   else {
568     /* sequential version */
569     xbt_dynar_foreach(model_list, iter, model) {
570       surf_share_resources(model);
571     }
572   }
573
574   unsigned i;
575   for (i = 0; i < xbt_dynar_length(model_list); i++) {
576     if ((min < 0.0 || surf_mins[i] < min)
577         && surf_mins[i] >= 0.0) {
578       min = surf_mins[i];
579     }
580   }
581
582   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
583
584   XBT_DEBUG("Looking for next trace event");
585
586   do {
587     XBT_DEBUG("Next TRACE event : %f", next_event_date);
588
589     next_event_date = tmgr_history_next_date(history);
590
591     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
592       if(next_event_date!=-1.0 && min!=-1.0) {
593         min = MIN(next_event_date - NOW, min);
594       } else{
595         min = MAX(next_event_date - NOW, min);
596       }
597
598       XBT_DEBUG("Run for NS3 at most %f", min);
599       // run until min or next flow
600       model_next_action_end = surf_network_model->model_private->share_resources(min);
601
602       XBT_DEBUG("Min for NS3 : %f", model_next_action_end);
603       if(model_next_action_end>=0.0)
604         min = model_next_action_end;
605     }
606
607     if (next_event_date == -1.0) {
608       XBT_DEBUG("no next TRACE event. Stop searching for it");
609       break;
610     }
611
612     if ((min != -1.0) && (next_event_date > NOW + min)) break;
613
614     XBT_DEBUG("Updating models");
615     while ((event =
616             tmgr_history_get_next_event_leq(history, next_event_date,
617                                             &value,
618                                             (void **) &resource))) {
619       if (resource->model->model_private->resource_used(resource)) {
620         min = next_event_date - NOW;
621         XBT_DEBUG
622             ("This event will modify model state. Next event set to %f",
623              min);
624       }
625       /* update state of model_obj according to new value. Does not touch lmm.
626          It will be modified if needed when updating actions */
627       XBT_DEBUG("Calling update_resource_state for resource %s with min %lf",
628              resource->model->name, min);
629       resource->model->model_private->update_resource_state(resource,
630                                                             event, value,
631                                                             NOW + min);
632     }
633   } while (1);
634
635   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
636    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
637    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
638   if (min == -1.0) {
639   XBT_DEBUG("No next event at all. Bail out now.");
640     return -1.0;
641   }
642
643   XBT_DEBUG("Duration set to %f", min);
644
645   NOW = NOW + min;
646
647   if (surf_get_nthreads() > 1) {
648     /* parallel version */
649 #ifdef CONTEXT_THREADS
650     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_update_actions_state, model_list);
651 #endif
652   }
653   else {
654     /* sequential version */
655     xbt_dynar_foreach(model_list, iter, model) {
656       surf_update_actions_state(model);
657     }
658   }
659
660 #ifdef HAVE_TRACING
661   TRACE_paje_dump_buffer (0);
662 #endif
663
664   return min;
665 }
666
667 XBT_INLINE double surf_get_clock(void)
668 {
669   return NOW;
670 }
671
672 static void surf_share_resources(surf_model_t model)
673 {
674   double next_action_end = -1.0;
675   int i = __sync_fetch_and_add(&surf_min_index, 1);
676   if (strcmp(model->name,"network NS3")) {
677     XBT_DEBUG("Running for Resource [%s]", model->name);
678     next_action_end = model->model_private->share_resources(NOW);
679     XBT_DEBUG("Resource [%s] : next action end = %f",
680         model->name, next_action_end);
681   }
682   surf_mins[i] = next_action_end;
683 }
684
685 static void surf_update_actions_state(surf_model_t model)
686 {
687   model->model_private->update_actions_state(NOW, min);
688 }
689
690 /**
691  * \brief Returns the number of parallel threads used to update the models.
692  * \return the number of threads (1 means no parallelism)
693  */
694 int surf_get_nthreads(void) {
695   return surf_nthreads;
696 }
697
698 /**
699  * \brief Sets the number of parallel threads used to update the models.
700  *
701  * A value of 1 means no parallelism.
702  *
703  * \param nb_threads the number of threads to use
704  */
705 void surf_set_nthreads(int nthreads) {
706
707   if (nthreads<=0) {
708      nthreads = xbt_os_get_numcores();
709      XBT_INFO("Auto-setting surf/nthreads to %d",nthreads);
710   }
711
712 #ifdef CONTEXT_THREADS
713   xbt_parmap_destroy(surf_parmap);
714   surf_parmap = NULL;
715 #endif
716
717   if (nthreads > 1) {
718 #ifdef CONTEXT_THREADS
719     surf_parmap = xbt_parmap_new(nthreads, XBT_PARMAP_DEFAULT);
720 #else
721     THROWF(arg_error, 0, "Cannot activate parallel threads in Surf: your architecture does not support threads");
722 #endif
723   }
724
725   surf_nthreads = nthreads;
726 }
727
728 void surf_watched_hosts(void)
729 {
730   char *key;
731   void *host;
732   xbt_dict_cursor_t cursor;
733
734   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
735   xbt_dict_foreach(watched_hosts_lib,cursor,key,host)
736   {
737     if(SIMIX_host_get_state(host) == SURF_RESOURCE_ON){
738       XBT_INFO("Restart processes on host: %s",SIMIX_host_get_name(host));
739       SIMIX_host_autorestart(host);
740       xbt_dict_remove(watched_hosts_lib,key);
741     }
742     else
743       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
744   }
745 }