genode/os/src/server/loader
Norman Feske 6d837c9e26 Attach affinity information to session requests
This patch extends the 'Parent::session()' and 'Root::session()'
functions with an additional 'affinity' parameter, which is inteded to
express the preferred affinity of the new session. For CPU sessions
provided by core, the values will be used to select the set of CPUs
assigned to the CPU session. For other services, the session affinity
information can be utilized to optimize the locality of the server
thread with the client. For example, to enable the IRQ session to route
an IRQ to the CPU core on which the corresponding device driver (the IRQ
client) is running.
2013-08-13 17:08:25 +02:00
..
README Re-implementation of the loader service, ref #187 2012-05-02 16:54:18 +02:00
child.h Attach affinity information to session requests 2013-08-13 17:08:25 +02:00
input.h New Input::Event::FOCUS, rename keycode to code 2013-01-15 10:18:11 +01:00
main.cc Attach affinity information to session requests 2013-08-13 17:08:25 +02:00
nitpicker.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
ram_session_client_guard.h Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
rom.h Re-implementation of the loader service, ref #187 2012-05-02 16:54:18 +02:00
target.mk Merge base libraries into a single library 2013-02-19 14:45:55 +01:00

README

This directory contains a loader service, which allows for the instantiation of
subsystems via a session interface. The resources for the new subsystem are
provided by the client when opening the session. The client has no control over
the functioning of the subsystem except for the controlling the lifetime of the
subsystem.