X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/221538a27f21e52c182ae7fcc08c78c1175395b9..ddae68a9d73e8c00f9702de9da881f81eee1cde6:/src/surf/surf_routing.c diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index 8561b868b5..b6bb950a70 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -4,14 +4,14 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include /* regular expression library */ - #include "simgrid/platf_interface.h" // platform creation API internal interface #include "surf_routing_private.h" #include "surf/surf_routing.h" #include "surf/surfxml_parse_values.h" +#include /* regular expression library */ + /** * @ingroup SURF_build_api * @brief A library containing all known workstations @@ -321,6 +321,8 @@ static void routing_parse_trace_connect(sg_platf_trace_connect_cbarg_t trace_con } } +extern int _surf_init_status; /* yay, this is an horrible hack */ + /** * \brief Make a new routing component to the platform * @@ -344,6 +346,8 @@ void routing_AS_begin(sg_platf_AS_cbarg_t AS) (as_router_lib, AS->id, ROUTING_ASR_LEVEL), "The AS \"%s\" already exists", AS->id); + _surf_init_status = 2; /* horrible hack: direct access to the global controlling the level of configuration to prevent any further config */ + /* search the routing model */ switch(AS->routing){ case A_surfxml_AS_routing_Cluster: model = &routing_models[SURF_MODEL_CLUSTER];break;