X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49e85177c669d793e84242983a1b1f430e47184e..8d545185124c10e9c58d954d12103d6620e201d2:/src/bindings/lua/lua_platf.c diff --git a/src/bindings/lua/lua_platf.c b/src/bindings/lua/lua_platf.c index aa2dc2dfc7..8f43f67998 100644 --- a/src/bindings/lua/lua_platf.c +++ b/src/bindings/lua/lua_platf.c @@ -61,10 +61,12 @@ int console_close(lua_State *L) { /* Initialize MSG and WKS hosts */ XBT_DEBUG("Initialize MSG and WKS hosts"); xbt_lib_foreach(host_lib, cursor, name, data) { - if(data[SURF_WKS_LEVEL]){ + if(data[SURF_HOST_LEVEL]){ XBT_DEBUG("\tSee surf host %s",name); - SIMIX_host_create(name, data[SURF_WKS_LEVEL], NULL); - __MSG_host_create((smx_host_t)data[SIMIX_HOST_LEVEL]); + SIMIX_host_create(name, NULL); + // THIS IS BRAINDEAD. There is no sg_host_t in that level, but a smx_host_priv. So commenting out for now. + // Lua is broken anyway. Christian will fix it + // __MSG_host_create((sg_host_t)data[SIMIX_HOST_LEVEL]); } }