mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 19:13:27 -04:00
Approved by: rene (mentor, implicit) Security: https://vuxml.freebsd.org/freebsd/2f22927f-26ea-11ee-8290-a8a1599412c6.html
20 lines
647 B
C++
20 lines
647 B
C++
--- base/process/process_metrics_posix.cc.orig 2023-07-16 15:47:57 UTC
|
|
+++ base/process/process_metrics_posix.cc
|
|
@@ -21,6 +21,8 @@
|
|
|
|
#if BUILDFLAG(IS_APPLE)
|
|
#include <malloc/malloc.h>
|
|
+#elif BUILDFLAG(IS_OPENBSD)
|
|
+#include <stdlib.h>
|
|
#else
|
|
#include <malloc.h>
|
|
#endif
|
|
@@ -134,7 +136,7 @@ size_t ProcessMetrics::GetMallocUsage() {
|
|
return stats.size_in_use;
|
|
#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
|
|
return GetMallocUsageMallinfo();
|
|
-#elif BUILDFLAG(IS_FUCHSIA)
|
|
+#elif BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
// TODO(fuchsia): Not currently exposed. https://crbug.com/735087.
|
|
return 0;
|
|
#endif
|