mmu.h 329 B

12345678910111213141516
  1. #ifndef __ASM_GENERIC_MMU_H
  2. #define __ASM_GENERIC_MMU_H
  3. /*
  4. * This is the mmu.h header for nommu implementations.
  5. * Architectures with an MMU need something more complex.
  6. */
  7. #ifndef __ASSEMBLY__
  8. typedef struct {
  9. struct vm_list_struct *vmlist;
  10. unsigned long end_brk;
  11. } mm_context_t;
  12. #endif
  13. #endif /* __ASM_GENERIC_MMU_H */