Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
959 leency 1
 
2
{
3
unsigned total, free, used;
4
5
 
6
free = kol_system_memfree();
7
used = total - free;
8
9
 
10
		total, total/1024, free, free/1024, (free*100)/total, used, total/1024-free/1024, 100-(free*100)/total );
11
}
12