1b4cc7c8d4
Closes #13404. Signed-off-by: Enno Boland <gottox@voidlinux.eu>
17 lines
425 B
Diff
17 lines
425 B
Diff
In musl libc there is no struct mallinfo and no function mallinf()
|
|
|
|
--- src/OSD/OSD_MemInfo.cxx.orig
|
|
+++ src/OSD/OSD_MemInfo.cxx
|
|
@@ -147,8 +147,12 @@
|
|
}
|
|
aFile.close();
|
|
|
|
+ #if defined(__GLIBC__)
|
|
struct mallinfo aMI = mallinfo();
|
|
myCounters[MemHeapUsage] = aMI.uordblks;
|
|
+ #else /* XXX not yet coded */
|
|
+ myCounters[MemHeapUsage] = 0;
|
|
+ #endif
|
|
|
|
#elif (defined(__APPLE__))
|
|
struct task_basic_info aTaskInfo;
|