mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-26 13:59:57 +00:00
This patch integrates the functionality of the former CAP session into the PD session and unifies the approch of supplementing the generic PD session with kernel-specific functionality. The latter is achieved by the new 'Native_pd' interface. The kernel-specific interface can be obtained via the Pd_session::native_pd accessor function. The kernel-specific interfaces are named Nova_native_pd, Foc_native_pd, and Linux_native_pd. The latter change allowed for to deduplication of the pd_session_component code among the various base platforms. To retain API compatibility, we keep the 'Cap_session' and 'Cap_connection' around. But those classes have become mere wrappers around the PD session interface. Issue #1841
22 lines
586 B
Makefile
22 lines
586 B
Makefile
#
|
|
# \brief Portions of base library that are exclusive to non-core processes
|
|
# \author Norman Feske
|
|
# \date 2013-02-14
|
|
#
|
|
# The content of this file is used for both native Genode as well as hybrid
|
|
# Linux/Genode programs. Hence, it must be void of any thread-related code.
|
|
#
|
|
|
|
LIBS += base-common syscall cxx
|
|
|
|
SRC_CC += console/log_console.cc
|
|
SRC_CC += env/env.cc env/platform_env.cc env/context_area.cc
|
|
SRC_CC += server/rpc_cap_alloc.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/base/env $(BASE_DIR)/src/base/env
|
|
|
|
vpath %.cc $(REP_DIR)/src/base
|
|
vpath %.cc $(BASE_DIR)/src/base
|
|
|
|
# vi:set ft=make :
|