aboutsummaryrefslogtreecommitdiff
path: root/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mongodb36/files/patch-src_mongo_util_time__support.cpp')
-rw-r--r--databases/mongodb36/files/patch-src_mongo_util_time__support.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp b/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp
deleted file mode 100644
index 503d5074a6e0..000000000000
--- a/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/mongo/util/time_support.cpp.orig 2018-04-19 11:21:07 UTC
-+++ src/mongo/util/time_support.cpp
-@@ -933,7 +933,7 @@ private:
- // Find minimum timer resolution of OS
- Nanoseconds getMinimumTimerResolution() {
- Nanoseconds minTimerResolution;
--#if defined(__linux__)
-+#if defined(__linux__) || defined(__FreeBSD__)
- struct timespec tp;
- clock_getres(CLOCK_REALTIME, &tp);
- minTimerResolution = Nanoseconds{tp.tv_nsec};