mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
The distinction between 'ipc.h' and 'ipc_generic.h' is no more. The only
use case for platform-specific extensions of the IPC support was the
marshalling of capabilities. However, this case is accommodated by a
function interface ('_marshal_capability', '_unmarshal_capability'). By
moving the implementation of these functions from the headers into the
respective ipc libraries, we can abandon the platform-specific 'ipc.h'
headers.
8 lines
240 B
Makefile
Executable File
8 lines
240 B
Makefile
Executable File
SRC_CC = ipc.cc ipc_marshal_cap.cc
|
|
SRC_CC += pager.cc
|
|
LIBS += thread_context cap_copy
|
|
|
|
vpath ipc.cc $(REP_DIR)/src/base/ipc
|
|
vpath pager.cc $(REP_DIR)/src/base/ipc
|
|
vpath ipc_marshal_cap.cc $(BASE_DIR)/src/base/ipc
|