21 lines
270 B
C
21 lines
270 B
C
|
/* sys/memstat.h: Memory usage querying. */
|
||
|
|
||
|
#ifndef _SYS_MEMSTAT_H
|
||
|
#define _SYS_MEMSTAT_H
|
||
|
|
||
|
#include <bits/memstat.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* Query system memory usage. */
|
||
|
int memstat(struct membuf* mem);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|