X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..91b95fd9d2176d541587667a190eca515bfa5801:/src/bindings/lua/lua_process.c diff --git a/src/bindings/lua/lua_process.c b/src/bindings/lua/lua_process.c index 4ce814f6cd..ffbcf362c2 100644 --- a/src/bindings/lua/lua_process.c +++ b/src/bindings/lua/lua_process.c @@ -45,7 +45,7 @@ static int l_process_sleep(lua_State* L) } } -static const luaL_reg process_functions[] = { +static const luaL_Reg process_functions[] = { {"sleep", l_process_sleep}, /* TODO: self, create, kill, suspend, is_suspended, resume, get_name, * get_pid, get_ppid, migrate @@ -59,8 +59,9 @@ static const luaL_reg process_functions[] = { */ void sglua_register_process_functions(lua_State* L) { - luaL_openlib(L, PROCESS_MODULE_NAME, process_functions, 0); - /* simgrid.process */ - lua_pop(L, 1); + lua_getglobal(L, "simgrid"); /* simgrid */ + luaL_newlib(L, process_functions); /* simgrid simgrid.process */ + lua_setfield(L, -2, "process"); /* simgrid */ + lua_pop(L, 1); /* -- */ }