1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

for #742, refine the u_intxx_t to uintxx_t

This commit is contained in:
winlin 2017-01-30 17:32:18 +08:00
parent 011ac4f6a9
commit b16ab038ce
49 changed files with 278 additions and 275 deletions

View file

@ -481,14 +481,14 @@ public:
// data of /proc/meminfo
public:
// MemActive = MemTotal - MemFree
u_int64_t MemActive;
uint64_t MemActive;
// RealInUse = MemActive - Buffers - Cached
u_int64_t RealInUse;
uint64_t RealInUse;
// NotInUse = MemTotal - RealInUse
// = MemTotal - MemActive + Buffers + Cached
// = MemTotal - MemTotal + MemFree + Buffers + Cached
// = MemFree + Buffers + Cached
u_int64_t NotInUse;
uint64_t NotInUse;
unsigned long MemTotal;
unsigned long MemFree;