mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-17 14:48:20 +00:00
committed by
Christian Helmuth
parent
15141f3ca7
commit
807be83b1b
@ -61,7 +61,12 @@ class Input::Session_component : public Genode::Rpc_object<Input::Session>
|
||||
|
||||
Genode::Dataspace_capability dataspace() override { return _ds.cap(); }
|
||||
|
||||
bool is_pending() const override { return !_event_queue.empty(); }
|
||||
bool pending() const override { return !_event_queue.empty(); }
|
||||
|
||||
/*
|
||||
* \deprecated use 'pending' instead
|
||||
*/
|
||||
bool is_pending() const { return pending(); }
|
||||
|
||||
int flush() override
|
||||
{
|
||||
|
Reference in New Issue
Block a user