Fix module initialization

This commit is contained in:
Nekotekina 2017-04-22 17:58:40 +03:00
parent d7c3d1ce12
commit 634f353ed4
4 changed files with 19 additions and 0 deletions

View file

@ -225,6 +225,11 @@ static void arm_initialize_modules()
for (auto& module : registered)
{
LOG_TRACE(LOADER, "Registered static module: %s", module->name);
}
for (auto& pair : arm_module_manager::get())
{
const auto module = pair.second;
for (auto& function : module->functions)
{