mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
5a468919bb
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 |
||
---|---|---|
.. | ||
etc | ||
include | ||
lib | ||
mk | ||
recipes | ||
run | ||
src | ||
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.