1#ifndef __i386_MMU_H
2#define __i386_MMU_H
3
4/*
5 * The i386 doesn't have a mmu context, but
6 * we put the segment information here.
7 */
8typedef struct {
9	void *segments;
10	unsigned long cpuvalid;
11} mm_context_t;
12
13#endif
14