X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fe45c9fee67e0b37665de17ee009844a115778d3..34cab90599e2c8583d07c9fb77e37e7c46e04f7e:/src/bindings/lua/lua_platf.c diff --git a/src/bindings/lua/lua_platf.c b/src/bindings/lua/lua_platf.c index 15f54ee7ac..4625c7846e 100644 --- a/src/bindings/lua/lua_platf.c +++ b/src/bindings/lua/lua_platf.c @@ -293,10 +293,10 @@ int console_add_route(lua_State *L) { SURFXML_START_TAG(route); xbt_dynar_foreach(links,cursor,link_id) { - SURFXML_BUFFER_SET(link_ctn_id, link_id); - A_surfxml_link_ctn_direction = A_surfxml_link_ctn_direction_NONE; - SURFXML_START_TAG(link_ctn); - SURFXML_END_TAG(link_ctn); + SURFXML_BUFFER_SET(link___ctn_id, link_id); + A_surfxml_link___ctn_direction = A_surfxml_link___ctn_direction_NONE; + SURFXML_START_TAG(link___ctn); + SURFXML_END_TAG(link___ctn); } SURFXML_END_TAG(route); @@ -336,7 +336,10 @@ int console_AS_open(lua_State *L) { else if(!strcmp(mode,"none")) mode_int = A_surfxml_AS_routing_None; else xbt_die("Don't have the model name '%s'",mode); - sg_platf_new_AS_begin(id,mode_int); + s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER; + AS.id = id; + AS.routing = mode_int; + sg_platf_new_AS_begin(&AS); return 0; } @@ -375,7 +378,7 @@ int console_set_function(lua_State *L) { lua_pop(L, 1); // FIXME: hackish to go under MSG that way - m_host_t host = xbt_lib_get_or_null(host_lib,host_id,MSG_HOST_LEVEL); + msg_host_t host = xbt_lib_get_or_null(host_lib,host_id,MSG_HOST_LEVEL); if (!host) { XBT_ERROR("no host '%s' found",host_id); return -1; @@ -414,7 +417,7 @@ int console_host_set_property(lua_State *L) { lua_pop(L, 1); // FIXME: hackish to go under MSG that way - m_host_t host = xbt_lib_get_or_null(host_lib,name,MSG_HOST_LEVEL); + msg_host_t host = xbt_lib_get_or_null(host_lib,name,MSG_HOST_LEVEL); if (!host) { XBT_ERROR("no host '%s' found",name); return -1;