um_mmu.h 264 B

12345678910111213141516
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __ARCH_UM_MMU_H
  6. #define __ARCH_UM_MMU_H
  7. #include "uml-config.h"
  8. #include "mmu-skas.h"
  9. typedef union mm_context {
  10. struct mmu_context_skas skas;
  11. } mm_context_t;
  12. #endif