summaryrefslogtreecommitdiff
path: root/minix/servers/vm/memlist.h
blob: 3e32b9c3ef5cfa5319fddf7cb6886ad7e1c18c68 (plain)
1
2
3
4
5
6
7
8
9
10

#ifndef _MEMLIST_H
#define _MEMLIST_H 1

struct memlist {
	struct memlist *next;
	phys_bytes	phys;	/* physical address of page */
};

#endif