genode/repos/base/src/lib/base/cache.cc
Christian Helmuth 37a93f53c4 Provide Genode::cache_coherent() consistently
It got lost on base-foc and also was not put into Genode namespace in
the default implementation.
2019-04-01 19:33:48 +02:00

22 lines
543 B
C++

/*
* \brief Implementation of the cache operations
* \author Christian Prochaska
* \date 2014-05-13
*/
/*
* Copyright (C) 2014-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#include <cpu/cache.h>
/*
* This function needs to be implemented only for base platforms with ARM
* support right now, so the default implementation does nothing.
*/
void Genode::cache_coherent(Genode::addr_t, Genode::size_t) { }