mmu.h 204 B

1234567891011121314
  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