home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-m32r / mmu.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  379 b   |  21 lines

  1. #ifndef _ASM_M32R_MMU_H
  2. #define _ASM_M32R_MMU_H
  3.  
  4.  
  5. #if !defined(CONFIG_MMU)
  6. typedef struct {
  7.     struct vm_list_struct    *vmlist;
  8.     unsigned long        end_brk;
  9. } mm_context_t;
  10. #else
  11.  
  12. /* Default "unsigned long" context */
  13. #ifndef CONFIG_SMP
  14. typedef unsigned long mm_context_t;
  15. #else
  16. typedef unsigned long mm_context_t[NR_CPUS];
  17. #endif
  18.  
  19. #endif  /* CONFIG_MMU */
  20. #endif  /* _ASM_M32R_MMU_H */
  21.