mmu.h 297 B

1234567891011121314
  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. unsigned long end_brk;
  10. } mm_context_t;
  11. #endif
  12. #endif /* __ASM_GENERIC_MMU_H */