From: mquinson Date: Wed, 3 Mar 2004 18:19:45 +0000 (+0000) Subject: Bootstrap the set of local types properly X-Git-Tag: v3.3~5293 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b0a9f609bcff2431265e3a8647c2374d0d86c71d Bootstrap the set of local types properly git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@53 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/DataDesc/datadesc.c b/src/gras/DataDesc/datadesc.c index b073511561..90b19c701f 100644 --- a/src/gras/DataDesc/datadesc.c +++ b/src/gras/DataDesc/datadesc.c @@ -24,7 +24,8 @@ gras_datadesc_init(void) { gras_error_t errcode; VERB0("Initializing DataDesc"); - errcode = gras_set_new(&gras_datadesc_set_local); + + errcode = gras_dd_typeset_create(GRAS_THISARCH,&gras_datadesc_set_local); gras_assert0(errcode==no_error, "Impossible to create the data set containg locally known types"); }