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