提交 38d54832 编写于 作者: M Mayank Agarwal

Initialize variable in constructor for PosixEnv::checkedDiskForMmap_

Summary: This caused compilation problems on some gcc platforms during the third-partyrelease

Test Plan: make

Reviewers: sheki

Reviewed By: sheki

Differential Revision: https://reviews.facebook.net/D9627
上级 91660e04
......@@ -907,8 +907,8 @@ class PosixEnv : public Env {
}
private:
bool checkedDiskForMmap_ = false;
bool forceMmapOff = false; // do we override Env options?
bool checkedDiskForMmap_;
bool forceMmapOff; // do we override Env options?
void PthreadCall(const char* label, int result) {
if (result != 0) {
......@@ -965,7 +965,9 @@ class PosixEnv : public Env {
BGQueue queue_;
};
PosixEnv::PosixEnv() : page_size_(getpagesize()),
PosixEnv::PosixEnv() : checkedDiskForMmap_(false),
forceMmapOff(false),
page_size_(getpagesize()),
started_bgthread_(0),
num_threads_(1),
queue_size_(0) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册