trace_session: fix exception list in 'trace' RPC

Trace_session::trace might throw Nonexistant_subject which was neither
documented nor declared in the RPC interface.

Issue #2654
This commit is contained in:
Martin Stein 2018-01-24 00:33:51 +01:00 committed by Norman Feske
parent c68d551c41
commit c10554851d
1 changed files with 3 additions and 1 deletions

View File

@ -59,6 +59,7 @@ struct Genode::Trace::Session : Genode::Session
* \throw Already_traced
* \throw Source_is_dead
* \throw Nonexistent_policy
* \throw Nonexistent_subject
* \throw Traced_by_other_session
*/
virtual void trace(Subject_id, Policy_id, size_t buffer_size) = 0;
@ -126,7 +127,8 @@ struct Genode::Trace::Session : Genode::Session
GENODE_TYPE_LIST(Nonexistent_policy), Policy_id);
GENODE_RPC_THROW(Rpc_trace, void, trace,
GENODE_TYPE_LIST(Out_of_ram, Out_of_caps, Already_traced,
Source_is_dead, Nonexistent_policy,
Source_is_dead, Nonexistent_subject,
Nonexistent_policy,
Traced_by_other_session),
Subject_id, Policy_id, size_t);
GENODE_RPC_THROW(Rpc_rule, void, rule,