genode/repos/ports-foc/src/lib/l4lx/include/l4lx_memory.h
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

33 lines
746 B
C

/*
* \brief L4lxapi library memory functions
* \author Stefan Kalkowski
* \date 2011-04-29
*/
/*
* Copyright (C) 2011-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _L4LX__L4LX_MEMORY_H_
#define _L4LX__L4LX_MEMORY_H_
#include <linux.h>
#ifdef __cplusplus
extern "C" {
#endif
FASTCALL int l4lx_memory_map_virtual_page(unsigned long address, unsigned long page,
int map_rw);
FASTCALL int l4lx_memory_unmap_virtual_page(unsigned long address);
FASTCALL int l4lx_memory_page_mapped(unsigned long address);
#ifdef __cplusplus
}
#endif
#endif /* _L4LX__L4LX_MEMORY_H_ */