Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/databases/clickhouse/files/patch-src_Common_MemoryStatisticsOS.h
16461 views
1
--- src/Common/MemoryStatisticsOS.h.orig 2021-03-19 11:39:14 UTC
2
+++ src/Common/MemoryStatisticsOS.h
3
@@ -1,5 +1,4 @@
4
#pragma once
5
-#if defined(OS_LINUX)
6
#include <cstdint>
7
8
9
@@ -35,9 +34,12 @@ class MemoryStatisticsOS (public)
10
Data get() const;
11
12
private:
13
+#ifdef OS_FREEBSD
14
+ struct procstat * pstat;
15
+#else
16
int fd;
17
+#endif
18
};
19
20
}
21
22
-#endif
23
24