minix3/servers/vm/memlist.h

11 lines
142 B
C
Raw Normal View History

2020-02-21 00:59:27 +05:30
#ifndef _MEMLIST_H
#define _MEMLIST_H 1
struct memlist {
struct memlist *next;
phys_bytes phys; /* physical address of page */
};
#endif