git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Decoupling Architectural-specific Code (#35)
[lunaix-os.git]
/
lunaix-os
/
arch
/
generic
/
includes
/
sys
/
mm
/
memory.h
1
#ifndef __LUNAIX_ARCH_MEMORY_H
2
#define __LUNAIX_ARCH_MEMORY_H
3
4
#include <lunaix/mm/pagetable.h>
5
#include <lunaix/mann_flags.h>
6
7
static inline pte_attr_t
8
translate_vmr_prot(unsigned int vmr_prot)
9
{
10
return 0;
11
}
12
13
14
#endif /* __LUNAIX_ARCH_MEMORY_H */