/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

  1. #ifndef __MMU_H
  2. #define __MMU_H
  3. #ifdef CONFIG_MMU
  4. /* Default "unsigned long" context */
  5. typedef unsigned long mm_context_t;
  6. #else
  7. typedef struct {
  8. unsigned long end_brk;
  9. } mm_context_t;
  10. #endif
  11. #endif