Skip to content

Commit

Permalink
Remove unmapped handler logging
Browse files Browse the repository at this point in the history
  • Loading branch information
momo5502 committed Oct 28, 2024
1 parent ebd2dbc commit e2c3870
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/windows-emulator/syscall_dispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,6 @@ void syscall_dispatcher::add_handlers()
handler_mapping.erase(handler);
#endif
}

#ifndef NDEBUG
if (!handler_mapping.empty())
{
puts("Unmapped handlers:");
for (const auto& h : handler_mapping)
{
printf(" %s\n", h.first.c_str());
}
}
#endif
}

void syscall_dispatcher::dispatch(windows_emulator& win_emu)
Expand Down

0 comments on commit e2c3870

Please sign in to comment.