19e6dad47b
. only reference single pages in process data structures to simplify page faults, copy-on-write, etc. . this breaks the secondary cache for objects that are not one-page-sized; restored in a next commit
10 lines
142 B
C
10 lines
142 B
C
|
|
#ifndef _MEMLIST_H
|
|
#define _MEMLIST_H 1
|
|
|
|
struct memlist {
|
|
struct memlist *next;
|
|
phys_bytes phys; /* physical address of page */
|
|
};
|
|
|
|
#endif
|