genode/base/include
Norman Feske 210eb98598 Support const RPC functions with no arguments
Until now, the RPC framework did not support const RPC functions. Rather
than being a limitation inherent to the concept, const RPC functions
plainly did not exist. So supporting them was not deemed too important.
However, there are uses of RPC interfaces that would benefit from a way
to declare an RPC function as const. Candidates are functions like
'Framebuffer::Session::mode()' and 'Input::Session::is_pending()'.

This patch clears the way towards declaring such functions as const.
Even though the patch is simple enough, the thorough support for
const-qualified RPC functions would double the number of overloads for
the 'call_member' function template (in 'base/include/util/meta.h'). For
this reason, the patch does support const getter functions with no
arguments only. This appears to be the most common use of such
functions.
2012-01-27 16:54:05 +01:00
..
32bit/base Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
64bit/base Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
arm/cpu Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
base Support const RPC functions with no arguments 2012-01-27 16:54:05 +01:00
cap_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
cpu_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
dataspace Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
io_mem_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
io_port_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
irq_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
log_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
pager Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
parent Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
pd_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
ram_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
rm_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
rom_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
root Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
signal_session Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
thread Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
util Support const RPC functions with no arguments 2012-01-27 16:54:05 +01:00
x86/cpu Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
x86_32/cpu Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
x86_64/cpu Bump year in copyright headers to 2012 2012-01-03 15:35:05 +01:00
README Imported Genode release 11.11 2011-12-22 16:19:25 +01:00

This directory contains include files of interfaces that are exported
by components to be used by other components. Each subdirectory corresponds
to the component exporting the interface.