mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
20 lines
647 B
C++
20 lines
647 B
C++
--- base/process/process_metrics_posix.cc.orig 2025-03-24 20:50:14 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
|
|
@@ -136,7 +138,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
|