Provide Genode::cache_coherent() consistently

It got lost on base-foc and also was not put into Genode namespace in
the default implementation.
This commit is contained in:
Christian Helmuth 2019-03-19 16:46:36 +01:00 committed by Norman Feske
parent c3fd572a52
commit 37a93f53c4
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ include $(BASE_DIR)/lib/mk/base.inc
LIBS += base-foc-common syscall-foc cxx
SRC_CC += cap_map_remove.cc cap_alloc.cc
SRC_CC += cache.cc
SRC_CC += thread_start.cc
SRC_CC += signal_transmitter.cc signal.cc
SRC_CC += stack_area_addr.cc

View File

@ -17,5 +17,5 @@
* This function needs to be implemented only for base platforms with ARM
* support right now, so the default implementation does nothing.
*/
void cache_coherent(Genode::addr_t, Genode::size_t) { }
void Genode::cache_coherent(Genode::addr_t, Genode::size_t) { }