mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-28 23:10:04 +00:00
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.
14 lines
388 B
Makefile
14 lines
388 B
Makefile
#
|
|
# \brief Base lib parts that are not used by hybrid applications
|
|
# \author Sebastian Sumpf
|
|
# \date 2014-02-21
|
|
#
|
|
|
|
include $(REP_DIR)/lib/mk/base-linux.inc
|
|
|
|
LIBS += startup-linux base-linux-common cxx timeout
|
|
SRC_CC += thread.cc thread_myself.cc thread_linux.cc
|
|
SRC_CC += capability_space.cc capability_raw.cc
|
|
SRC_CC += attach_stack_area.cc
|
|
SRC_CC += signal_transmitter.cc signal.cc
|