repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vm, kernel, top: report memory usage of vm, kernel
[minix.git]
/
servers
/
vm
/
memlist.h
blob
3e32b9c3ef5cfa5319fddf7cb6886ad7e1c18c68
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