diff --git a/src/OSD/OSD_MemInfo.cxx b/src/OSD/OSD_MemInfo.cxx index 17f7ed6180..08a939bebf 100644 --- a/src/OSD/OSD_MemInfo.cxx +++ b/src/OSD/OSD_MemInfo.cxx @@ -37,6 +37,15 @@ #include +#if defined(__EMSCRIPTEN__) + #include + + //! Return WebAssembly heap size in bytes. + EM_JS(size_t, OSD_MemInfo_getModuleHeapLength, (), { + return Module.HEAP8.length; + }); +#endif + // ======================================================================= // function : OSD_MemInfo // purpose : @@ -146,23 +155,44 @@ void OSD_MemInfo::Update() } } -#elif (defined(__linux__) || defined(__linux) || defined(__EMSCRIPTEN__)) - const struct mallinfo aMI = mallinfo(); +#elif defined(__EMSCRIPTEN__) + if (IsActive (MemHeapUsage) + || IsActive (MemWorkingSet) + || IsActive (MemWorkingSetPeak)) + { + // /proc/%d/status is not emulated - get more info from mallinfo() + const struct mallinfo aMI = mallinfo(); + if (IsActive (MemHeapUsage)) + { + myCounters[MemHeapUsage] = aMI.uordblks; + } + if (IsActive (MemWorkingSet)) + { + myCounters[MemWorkingSet] = aMI.uordblks; + } + if (IsActive (MemWorkingSetPeak)) + { + myCounters[MemWorkingSetPeak] = aMI.usmblks; + } + } + if (IsActive (MemVirtual)) + { + myCounters[MemVirtual] = OSD_MemInfo_getModuleHeapLength(); + } +#elif (defined(__linux__) || defined(__linux)) if (IsActive (MemHeapUsage)) { + const struct mallinfo aMI = mallinfo(); myCounters[MemHeapUsage] = aMI.uordblks; } -#if defined(__EMSCRIPTEN__) - // /proc/%d/status is not emulated - get more info from mallinfo() - if (IsActive (MemWorkingSet)) + + if (!IsActive (MemVirtual) + && !IsActive (MemWorkingSet) + && !IsActive (MemWorkingSetPeak) + && !IsActive (MemPrivate)) { - myCounters[MemWorkingSet] = aMI.uordblks; + return; } - if (IsActive (MemWorkingSetPeak)) - { - myCounters[MemWorkingSetPeak] = aMI.usmblks; - } -#endif // use procfs on Linux char aBuff[4096];