genode/repos/base
Norman Feske 5a468919bb base: new session-creation helper types
This patch augments the existing session/session.h with useful types for
the session creation:

* The new 'Insufficient_ram_quota' and 'Insufficient_cap_quota'
  exceptions are meant to supersede the old 'Quota_exceeded' exception
  of the 'Parent' and 'Root' interfaces.

* The 'Session::Resources' struct subsumes the information about the
  session quota provided by the client.

* The boolean 'Session::Diag' type will allow sessions to operate in a
  diagnostic mode.

* The existing 'Session_label' is not also available under the alias
  'Session::Label'.

* A few helper functions ease the extraction of typed session arguments
  from the session-argument string.

Issue #2398
2017-05-31 13:16:04 +02:00
..
etc Let default tools.conf cover each architecture 2016-07-15 11:38:26 +02:00
include base: new session-creation helper types 2017-05-31 13:16:04 +02:00
lib base: classify signals as I/O and application level 2017-05-31 13:15:58 +02:00
mk stdcxx: update to version 6.3.0 2017-05-31 13:15:50 +02:00
recipes Depot-archive recipes 2017-05-31 13:15:56 +02:00
run gcc: update to version 6.3.0 2017-05-31 13:15:49 +02:00
src Annotate session interfaces with CAP_QUOTA 2017-05-31 13:16:04 +02:00
README Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00

README

This is generic part of the Genode implementation. It consists of two parts:

:_Core_: is the ultimate root of the Genode application tree
  and provides abstractions for the lowest-level hardware resources
  such as RAM, ROM, CPU, and generic device access. All generic parts of Core
  can be found here - for system-specific implementations refer to the
  appropriate 'base-<system>' directory.

:_Base libraries and protocols_: that are used by each Genode component
  to interact with other components. This is the glue that holds everything
  together.