2010-10-17 21:50:55 +02:00
|
|
|
|
2012-06-04 14:54:51 +02:00
|
|
|
int cmd_memory(char param[])
|
2010-10-17 21:50:55 +02:00
|
|
|
{
|
2021-06-12 23:34:41 +02:00
|
|
|
unsigned total, free, used;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
total = kol_system_mem();
|
|
|
|
free = kol_system_memfree();
|
|
|
|
used = total - free;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
printf (CMD_FREE_FMT,
|
2010-10-17 21:50:55 +02:00
|
|
|
total, total/1024, free, free/1024, (free*100)/total, used, total/1024-free/1024, 100-(free*100)/total );
|
2021-06-12 23:34:41 +02:00
|
|
|
|
|
|
|
return TRUE;
|
2010-10-17 21:50:55 +02:00
|
|
|
}
|
2013-02-17 16:22:51 +01:00
|
|
|
|