X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a5846ae0f17bbb8f9a0c907f36f15afa92cf73f..48eda6a2033423e980783b6e40bc35824808bb9a:/src/bindings/lua/lua_private.h diff --git a/src/bindings/lua/lua_private.h b/src/bindings/lua/lua_private.h index 6a242e201e..47dc17d231 100644 --- a/src/bindings/lua/lua_private.h +++ b/src/bindings/lua/lua_private.h @@ -10,19 +10,19 @@ #include "msg/msg.h" void sglua_register_task_functions(lua_State* L); -m_task_t sglua_check_task(lua_State* L, int index); +msg_task_t sglua_check_task(lua_State* L, int index); void sglua_task_register(lua_State* L); -void sglua_task_unregister(lua_State* L, m_task_t task); +void sglua_task_unregister(lua_State* L, msg_task_t task); void sglua_register_comm_functions(lua_State* L); msg_comm_t sglua_check_comm(lua_State* L, int index); void sglua_push_comm(lua_State* L, msg_comm_t comm); void sglua_register_host_functions(lua_State* L); -m_host_t sglua_check_host(lua_State* L, int index); +msg_host_t sglua_check_host(lua_State* L, int index); void sglua_register_process_functions(lua_State* L); void sglua_register_platf_functions(lua_State* L); -const char* sglua_get_msg_error(MSG_error_t err); +const char* sglua_get_msg_error(msg_error_t err);