monitor: remove 'flush_thread()' error message

Fixes #5082
This commit is contained in:
Christian Prochaska 2024-01-02 09:47:44 +01:00 committed by Christian Helmuth
parent c167e86d87
commit 602f9b5670

View File

@ -434,12 +434,8 @@ struct Monitor::Main : Sandbox::State_handler,
void flush(Monitored_thread &thread) override
{
if (!_gdb_stub.constructed()) {
Genode::error("flush_thread() called without monitor config");
return;
}
_gdb_stub->flush(thread);
if (_gdb_stub.constructed())
_gdb_stub->flush(thread);
}
void thread_stopped(Capability<Pd_session> pd, Monitored_thread &thread) override