mmu.h 403 B

12345678910111213141516171819202122
  1. /* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
  2. #ifndef __V850_MMU_H__
  3. #define __V850_MMU_H__
  4. struct mm_rblock_struct {
  5. int size;
  6. int refcount;
  7. void *kblock;
  8. };
  9. struct mm_tblock_struct {
  10. struct mm_rblock_struct *rblock;
  11. struct mm_tblock_struct *next;
  12. };
  13. typedef struct {
  14. struct mm_tblock_struct tblock;
  15. unsigned long end_brk;
  16. } mm_context_t;
  17. #endif /* __V850_MMU_H__ */