mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
Improve warning message
This commit is contained in:
committed by
Christian Helmuth
parent
0709340788
commit
05e09a6116
@@ -61,7 +61,7 @@ void Entrypoint::_process_incoming_signals()
|
|||||||
*/
|
*/
|
||||||
retry<Genode::Blocking_canceled>(
|
retry<Genode::Blocking_canceled>(
|
||||||
[&] () { _signal_proxy_cap.call<Signal_proxy::Rpc_signal>(); },
|
[&] () { _signal_proxy_cap.call<Signal_proxy::Rpc_signal>(); },
|
||||||
[] () { PWRN("Catched Blocking_canceled on signal processing"); }
|
[] () { PWRN("blocking canceled during signal processing"); }
|
||||||
);
|
);
|
||||||
|
|
||||||
} while (!_suspended_callback);
|
} while (!_suspended_callback);
|
||||||
@@ -168,7 +168,7 @@ Entrypoint::Entrypoint(Environment &env)
|
|||||||
try {
|
try {
|
||||||
constructor_cap.call<Constructor::Rpc_construct>();
|
constructor_cap.call<Constructor::Rpc_construct>();
|
||||||
} catch (Genode::Blocking_canceled) {
|
} catch (Genode::Blocking_canceled) {
|
||||||
PWRN("Catched Blocking_canceled in Entrypoint constructor");
|
PWRN("blocking canceled in entrypoint constructor");
|
||||||
}
|
}
|
||||||
|
|
||||||
_rpc_ep->dissolve(&constructor);
|
_rpc_ep->dissolve(&constructor);
|
||||||
|
|||||||
Reference in New Issue
Block a user