fix CHANGELOG CONFLICTcqqq

Former-commit-id: da059eb1ab2c0d4dac31e698e47a345b9baf916c
This commit is contained in:
yu yunfeng 2019-06-03 15:50:04 +08:00
parent 05ab76473d
commit e9dac7521f
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/*******************************************************************************
* Copyright (Zilliz) - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited.
* Proprietary and confidential.
******************************************************************************/
#include "SystemInfo.h"

View File

@ -0,0 +1,35 @@
/*******************************************************************************
* Copyright (Zilliz) - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited.
* Proprietary and confidential.
******************************************************************************/
#pragma once
#include "sys/types.h"
#include "sys/sysinfo.h"
namespace zilliz {
namespace vecwise {
namespace server {
class SystemInfo {
private:
public:
static SystemInfo &
GetInstance(){
static SystemInfo instance;
return instance;
}
long long GetPhysicalMemory();
};
}
}
}