From: navarro Date: Tue, 28 Feb 2012 13:26:32 +0000 (+0100) Subject: Fix warning compilation with deprecated functions X-Git-Tag: exp_20120308~15^2~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a2f6166eb1902c530f9f7f36096154bdca80c6ab?ds=sidebyside Fix warning compilation with deprecated functions --- diff --git a/src/bindings/lua/lua_host.c b/src/bindings/lua/lua_host.c index 8cc4f152bf..5faa25230b 100644 --- a/src/bindings/lua/lua_host.c +++ b/src/bindings/lua/lua_host.c @@ -89,7 +89,7 @@ static int l_host_get_name(lua_State * L) */ static int l_host_number(lua_State * L) { - lua_pushnumber(L, MSG_get_host_number()); + lua_pushnumber(L, xbt_dynar_length(MSG_hosts_as_dynar())); return 1; } @@ -104,7 +104,7 @@ static int l_host_number(lua_State * L) static int l_host_at(lua_State * L) { int index = luaL_checkinteger(L, 1); - m_host_t host = MSG_get_host_table()[index - 1]; // lua indexing start by 1 (lua[1] <=> C[0]) + m_host_t host = xbt_dynar_get_as(MSG_hosts_as_dynar(),index - 1,m_host_t);// lua indexing start by 1 (lua[1] <=> C[0]) lua_newtable(L); /* create a table, put the userdata on top of it */ m_host_t *lua_host = (m_host_t *) lua_newuserdata(L, sizeof(m_host_t)); *lua_host = host;