2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2007-10-16 16:26:57 +08:00
|
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 06:20:36 +08:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_UM_MMU_H
|
|
|
|
#define __ARCH_UM_MMU_H
|
|
|
|
|
|
|
|
#include "uml-config.h"
|
|
|
|
#include "mmu-skas.h"
|
|
|
|
|
|
|
|
typedef union mm_context {
|
|
|
|
struct mmu_context_skas skas;
|
|
|
|
} mm_context_t;
|
|
|
|
|
|
|
|
#endif
|