xref: /minix3/minix/servers/vm/memlist.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc 
2*433d6423SLionel Sambuc #ifndef _MEMLIST_H
3*433d6423SLionel Sambuc #define _MEMLIST_H 1
4*433d6423SLionel Sambuc 
5*433d6423SLionel Sambuc struct memlist {
6*433d6423SLionel Sambuc 	struct memlist *next;
7*433d6423SLionel Sambuc 	phys_bytes	phys;	/* physical address of page */
8*433d6423SLionel Sambuc };
9*433d6423SLionel Sambuc 
10*433d6423SLionel Sambuc #endif
11