um_mmu.h 289 B

1234567891011121314151617
  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 "choose-mode.h"
  9. #include "mmu-skas.h"
  10. typedef union mm_context {
  11. struct mmu_context_skas skas;
  12. } mm_context_t;
  13. #endif