X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/12c0f182635ed71b370d608b5b9a614153765cd4..3b93278045da2926f2e0d4e75531b276f4599312:/src/bindings/lua/lua_host.c diff --git a/src/bindings/lua/lua_host.c b/src/bindings/lua/lua_host.c index 46d9086b0d..3084966fab 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-2015. 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; }