genode/base
Norman Feske 839c0263c9 Fix warning on 64bit
Because the template instantiation rules of C++ do not deal well with
null pointers specified as '0', the constructor of 'Local_addr' was
instantiated for [T = int], which does not make sense. To avoid the
warning "cast to pointer from integer of different size", we need to
explicitly state that '0' is a pointer. In C++11, there is the 'nullptr'
keyword, but until we switch to this version, we have to state (void *)0.
2013-03-22 12:41:21 +01:00
..
etc Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
include Fix warning on 64bit 2013-03-22 12:41:21 +01:00
lib Merge base libraries into a single library 2013-02-19 14:45:55 +01:00
mk Remove 'epit' from generic i.MX platform spec 2013-03-14 11:27:51 +01:00
run Simple thread-affinity test 2013-03-21 12:54:02 +01:00
src Simple thread-affinity test 2013-03-21 12:54:02 +01:00
README Imported Genode release 11.11 2011-12-22 16:19:25 +01: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.