mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
cfdbccc5c2
This is a redesign of the root and parent interfaces to eliminate blocking RPC calls. - New session representation at the parent (base/session_state.h) - base-internal root proxy mechanism as migration path - Redesign of base/service.h - Removes ancient 'Connection::KEEP_OPEN' feature - Interface change of 'Child', 'Child_policy', 'Slave', 'Slave_policy' - New 'Slave::Connection' - Changed child-construction procedure to be compatible with the non-blocking parent interface and to be easier to use - The child's initial LOG session, its binary ROM session, and the linker ROM session have become part of the child's envirenment. - Session upgrading must now be performed via 'env.upgrade' instead of performing a sole RPC call the parent. To make RAM upgrades easier, the 'Connection' provides a new 'upgrade_ram' method. Issue #2120
40 lines
902 B
PHP
40 lines
902 B
PHP
#
|
|
# \brief Portions of base library shared by core and non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
|
|
LIBS += cxx
|
|
|
|
SRC_CC += avl_tree.cc
|
|
SRC_CC += slab.cc
|
|
SRC_CC += allocator_avl.cc
|
|
SRC_CC += heap.cc sliced_heap.cc
|
|
SRC_CC += registry.cc
|
|
SRC_CC += console.cc
|
|
SRC_CC += output.cc
|
|
SRC_CC += child.cc
|
|
SRC_CC += child_process.cc
|
|
SRC_CC += session_state.cc
|
|
SRC_CC += elf_binary.cc
|
|
SRC_CC += ipc.cc
|
|
SRC_CC += lock.cc
|
|
SRC_CC += log.cc
|
|
SRC_CC += raw_output.cc
|
|
SRC_CC += rpc_entrypoint.cc
|
|
SRC_CC += signal.cc signal_common.cc
|
|
SRC_CC += sleep.cc
|
|
SRC_CC += entrypoint.cc
|
|
SRC_CC += component.cc
|
|
SRC_CC += region_map_client.cc
|
|
SRC_CC += rm_session_client.cc
|
|
SRC_CC += stack_allocator.cc
|
|
SRC_CC += trace.cc
|
|
SRC_CC += root_proxy.cc
|
|
SRC_CC += env_session_id_space.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/include $(BASE_DIR)/src/include
|
|
|
|
vpath %.cc $(REP_DIR)/src/lib/base
|
|
vpath %.cc $(BASE_DIR)/src/lib/base
|