[BACK]Return to mmu.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / include / asm-h8300

File: [Development] / linux-2.6-xfs / include / asm-h8300 / Attic / mmu.h (download)

Revision 1.1, Tue Dec 30 23:58:53 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN

Initial Import 2.6.0

#ifndef __MMU_H
#define __MMU_H

/* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */

struct mm_rblock_struct {
	int	size;
	int	refcount;
	void	*kblock;
};

struct mm_tblock_struct {
	struct mm_rblock_struct	*rblock;
	struct mm_tblock_struct	*next;
};

typedef struct {
	struct mm_tblock_struct	tblock;
	unsigned long		end_brk;
} mm_context_t;

#endif