apio
95a33c484e
We can finally show memory usage in userspace. This could have been done using sysfs, but I'm lazy and don't want to implement that. Maybe in the next release?
15 lines
252 B
C
15 lines
252 B
C
/* bits/memstat.h: The membuf structure for memstat(). */
|
|
|
|
#ifndef _BITS_MEMSTAT_H
|
|
#define _BITS_MEMSTAT_H
|
|
|
|
struct membuf
|
|
{
|
|
unsigned long mem_total;
|
|
unsigned long mem_used;
|
|
unsigned long mem_free;
|
|
unsigned long mem_reserved;
|
|
};
|
|
|
|
#endif
|