/arch/m68k/include/asm/mmu.h
https://bitbucket.org/thekraven/iscream_thunderc-2.6.35 · C++ Header · 13 lines · 10 code · 2 blank · 1 comment · 0 complexity · 2dddada2f05810fb8aad7215403747d6 MD5 · raw file
- #ifndef __MMU_H
- #define __MMU_H
- #ifdef CONFIG_MMU
- /* Default "unsigned long" context */
- typedef unsigned long mm_context_t;
- #else
- typedef struct {
- unsigned long end_brk;
- } mm_context_t;
- #endif
- #endif