mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
a1df4fee44
This patch allows core's 'Signal_transmitter' implementation to sidestep the 'Env::Pd' interface and thereby adhere to a stricter layering within core. The 'Signal_transmitter' now uses - on kernels that depend on it - a dedicated (and fairly freestanding) RPC proxy mechanism for signal deliver, instead of channeling signals through the 'Pd_session::submit' RPC function.
12 lines
396 B
Makefile
12 lines
396 B
Makefile
SRC_CC += lx_hybrid.cc new_delete.cc capability_space.cc
|
|
SRC_CC += signal_transmitter.cc signal.cc
|
|
|
|
vpath new_delete.cc $(BASE_DIR)/src/lib/cxx
|
|
vpath lx_hybrid.cc $(REP_DIR)/src/lib/lx_hybrid
|
|
|
|
# add parts of the base library that are shared with core
|
|
LIBS += base-linux-common timeout
|
|
|
|
# non-core parts of the base library (except for the startup code)
|
|
include $(REP_DIR)/lib/mk/base-linux.inc
|