X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d155fd69fa99c97b3a9c86bb7f2e472c2e7332df..c85e43e7cc3034aefc758257a387d32026c05ef4:/src/bindings/lua/lua_host.c diff --git a/src/bindings/lua/lua_host.c b/src/bindings/lua/lua_host.c index 46d9086b0d..4d65ac6f16 100644 --- a/src/bindings/lua/lua_host.c +++ b/src/bindings/lua/lua_host.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2010. The SimGrid Team. +/* Copyright (c) 2010, 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -50,7 +50,7 @@ static int l_host_get_by_name(lua_State * L) { const char *name = luaL_checkstring(L, 1); XBT_DEBUG("Getting Host from name..."); - msg_host_t msg_host = MSG_get_host_by_name(name); + msg_host_t msg_host = MSG_host_by_name(name); if (!msg_host) { luaL_error(L, "null Host : MSG_get_host_by_name failed"); } @@ -183,8 +183,8 @@ static int l_host_sleep(lua_State *L) */ static int l_host_destroy(lua_State *L) { - msg_host_t ht = sglua_check_host(L, 1); - __MSG_host_priv_free(MSG_host_priv(ht)); + //msg_host_t ht = sglua_check_host(L, 1); + //FIXME: not working..__MSG_host_priv_free(MSG_host_priv(ht)); return 0; }