X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ec16845133f5f1b5262d2d77d8ba22824fa8a446..c1196ca10d1165bfaadfd66799bff4e0eec459b5:/src/gras/Virtu/process.c diff --git a/src/gras/Virtu/process.c b/src/gras/Virtu/process.c index 39615deceb..de2085b4b8 100644 --- a/src/gras/Virtu/process.c +++ b/src/gras/Virtu/process.c @@ -89,7 +89,6 @@ void *gras_libdata_by_name_from_procdata(const char *name, gras_procdata_t * pd) { void *res = NULL; - xbt_ex_t e; if (xbt_set_length(pd->libdata) < xbt_dynar_length(_gras_procdata_fabrics)) { /* Damn, some new modules were added since procdata_init(). Amok? */ @@ -99,7 +98,7 @@ void *gras_libdata_by_name_from_procdata(const char *name, TRY { res = xbt_set_get_by_name(pd->libdata, name); } - CATCH(e) { + CATCH_ANONYMOUS { RETHROWF("Cannot retrieve the libdata associated to %s: %s", name); } return res; @@ -144,7 +143,7 @@ void gras_procdata_init() XBT_DEBUG("Go ahead for cursor %d, there is %ld libdata", cursor, xbt_set_length(pd->libdata)); - xbt_assert1(fab.name, "Name of fabric #%d is NULL!", cursor); + xbt_assert(fab.name, "Name of fabric #%d is NULL!", cursor); XBT_DEBUG("Create the procdata for %s", fab.name); /* Check for our own errors */ TRY {