genode/repos/base
Norman Feske f186587cab Unify ipc_msgbuf.h across base platforms
Besides unifying the Msgbuf_base classes across all platforms, this
patch merges the Ipc_marshaller functionality into Msgbuf_base, which
leads to several further simplifications. For example, this patch
eventually moves the Native_connection_state and removes all state
from the former Ipc_server to the actual server loop, which not only
makes the flow of control and information much more obvious, but is
also more flexible. I.e., on NOVA, we don't even have the notion of
reply-and-wait. Now, we are no longer forced to pretend otherwise.

Issue #1832
2016-04-25 10:47:59 +02:00
..
etc riscv: create_builddir support 2016-02-26 11:36:50 +01:00
include Unify ipc_msgbuf.h across base platforms 2016-04-25 10:47:59 +02:00
lib Move server API concept to base framework 2016-04-11 11:51:46 +02:00
mk Move server API concept to base framework 2016-04-11 11:51:46 +02:00
run Unify ipc_msgbuf.h across base platforms 2016-04-25 10:47:59 +02:00
src Unify ipc_msgbuf.h across base platforms 2016-04-25 10:47:59 +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.