From bade7819027c2a130262142c85ea31377df893c9 Mon Sep 17 00:00:00 2001 From: mquinson Date: Wed, 24 Mar 2010 16:07:41 +0000 Subject: [PATCH] one more FIXME/TODO for medhi git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7355 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/bindings/lua/simgrid_lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings/lua/simgrid_lua.c b/src/bindings/lua/simgrid_lua.c index 67328c6c2c..013739d863 100644 --- a/src/bindings/lua/simgrid_lua.c +++ b/src/bindings/lua/simgrid_lua.c @@ -132,7 +132,7 @@ static int Task_recv(lua_State *L) { m_task_t tk = NULL; const char *mailbox = luaL_checkstring(L,1); int res = MSG_task_receive(&tk,mailbox); - MSG_task_ref(tk); + MSG_task_ref(tk); //FIXME: kill it once a ctask cannot be in more than one luatask anymore res++;//FIXME: check it instead of avoiding the warning DEBUG1("Task Name : >>>%s",MSG_task_get_name(tk)); pushTask(L,tk); @@ -202,7 +202,7 @@ static int run_lua_code(int argc,char **argv) { // cleanups luaL_unref(simgrid_lua_state,LUA_REGISTRYINDEX,ref ); - fprintf(stderr,"Execution of lua code %s is over\n", (argv ? argv[0] : "(null)")); + DEBUG1("Execution of lua code %s is over", (argv ? argv[0] : "(null)")); return res; } static int launch_application(lua_State *L) { -- 2.20.1