Use I/O signals for resource-request responses

This commit is contained in:
Norman Feske 2019-08-17 00:24:06 +02:00 committed by Christian Helmuth
parent 6fb7022508
commit b113f869bb
1 changed files with 7 additions and 1 deletions

View File

@ -50,10 +50,16 @@ class Genode::Expanding_parent_client : public Parent_client
*/ */
Lock _lock { }; Lock _lock { };
struct Io_signal_context : Signal_context
{
Io_signal_context()
{ Signal_context::_level = Signal_context::Level::Io; }
};
/** /**
* Signal context for the fallback signal handler * Signal context for the fallback signal handler
*/ */
Signal_context _fallback_sig_ctx { }; Io_signal_context _fallback_sig_ctx { };
/** /**
* Signal context capability for the fallback signal handler * Signal context capability for the fallback signal handler