genode/gems/src/server/d3m
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 Demo device driver manager (d3m) 2012-01-25 20:19:03 +01:00
block_service.h Attach affinity information to session requests 2013-08-13 17:08:25 +02:00
input_service.h Attach affinity information to session requests 2013-08-13 17:08:25 +02:00
main.cc Update copyright headers to 2013 2013-01-10 21:44:47 +01:00
nic_service.h Attach affinity information to session requests 2013-08-13 17:08:25 +02:00
target.mk Merge base libraries into a single library 2013-02-19 14:45:55 +01:00

README

D3m stands for demo device driver manager. It is the service responsible for
implementing device-driver policies such as probing for a boot device or
merging user input coming from different input devices (USB HID and PS/2).

The actual device drivers are executed as child processes of d3m. At the
current stage, d3m is primarily geared towards bootable live CD images.