diff options
author | Xiangyu Yao <xiangyu.yao@mongodb.com> | 2017-10-18 19:00:45 -0400 |
---|---|---|
committer | Xiangyu Yao <xiangyu.yao@mongodb.com> | 2017-11-10 10:33:48 -0500 |
commit | eaf6c96f4893946cd62d6565d3aab92901b92ad8 (patch) | |
tree | af6ba5bffb629c819284a7163b0a5af5af36d9d3 /src/mongo/util/processinfo_openbsd.cpp | |
parent | 69ab9781d7a646a6029e5c46d340685e80e404fa (diff) | |
download | mongo-eaf6c96f4893946cd62d6565d3aab92901b92ad8.tar.gz |
SERVER-29465 Add warning about Windows SystemFileCacheSize for WiredTiger
Diffstat (limited to 'src/mongo/util/processinfo_openbsd.cpp')
-rw-r--r-- | src/mongo/util/processinfo_openbsd.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mongo/util/processinfo_openbsd.cpp b/src/mongo/util/processinfo_openbsd.cpp index dc3e43d8636..a4c1d0f9ab2 100644 --- a/src/mongo/util/processinfo_openbsd.cpp +++ b/src/mongo/util/processinfo_openbsd.cpp @@ -130,6 +130,10 @@ int ProcessInfo::getResidentSize() { return rss; } +double ProcessInfo::getMaxSystemFileCachePercentage() { + return 0.0; +} + double ProcessInfo::getSystemMemoryPressurePercentage() { return 0.0; } |