mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
- Cosmetic adjustments according to https://genode.org/documentation/developer-resources/coding_style - Replace manual inclusion of kernel headers by one new compound header foc/syscall.h - Rename namespace Fiasco to Foc
24 lines
484 B
C++
24 lines
484 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>
|
|
#include <foc/syscall.h>
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
void Genode::cache_coherent(addr_t addr, size_t size)
|
|
{
|
|
Foc::l4_cache_coherent(addr, addr + size);
|
|
}
|