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

fix #167, add openssl includes to utest. 0.9.209.

This commit is contained in:
winlin 2014-08-28 13:32:13 +08:00
parent 53011808fb
commit 728b749384
3 changed files with 11 additions and 10 deletions

View file

@ -446,21 +446,21 @@ public:
// data of /proc/meminfo
public:
// MemActive = MemTotal - MemFree
int64_t MemActive;
u_int64_t MemActive;
// RealInUse = MemActive - Buffers - Cached
int64_t RealInUse;
u_int64_t RealInUse;
// NotInUse = MemTotal - RealInUse
// = MemTotal - MemActive + Buffers + Cached
// = MemTotal - MemTotal + MemFree + Buffers + Cached
// = MemFree + Buffers + Cached
int64_t NotInUse;
u_int64_t NotInUse;
int64_t MemTotal;
int64_t MemFree;
int64_t Buffers;
int64_t Cached;
int64_t SwapTotal;
int64_t SwapFree;
u_int64_t MemTotal;
u_int64_t MemFree;
u_int64_t Buffers;
u_int64_t Cached;
u_int64_t SwapTotal;
u_int64_t SwapFree;
public:
SrsMemInfo();