Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This data is used within the TRY/CATCH block; mark it volatile to avoid issues on...
[simgrid.git] / src / gras / Virtu / process.c
index 670269d..7a22286 100644 (file)
@@ -96,7 +96,7 @@ gras_procdata_init() {
   pd->libdata   = xbt_dict_new();
    
   xbt_dynar_foreach(_gras_procdata_fabrics,cursor,fab){
-    int found = 0;
+    volatile int found = 0;
      
     xbt_assert1(fab.name,"Name of fabric #%d is NULL!",cursor);
     DEBUG1("Create the procdata for %s",fab.name);
@@ -106,9 +106,10 @@ gras_procdata_init() {
       found = 1;
     } CATCH(e) {
       xbt_ex_free(e);
+      found = 0;
     }
-    xbt_assert1(!found,
-               "MayDay: two modules use '%s' as libdata name", fab.name);
+    if (found)
+      THROW1(unknown_error,0,"MayDay: two modules use '%s' as libdata name", fab.name);
     
     /* Add the data in place */
     xbt_dict_set(pd->libdata, fab.name, (fab.creator)(), fab.destructor);