20 lines
613 B
Diff
20 lines
613 B
Diff
diff '--color=auto' -uNr node-v17.8.0.orig/deps/uv/src/unix/sysinfo-memory.c node-v17.8.0/deps/uv/src/unix/sysinfo-memory.c
|
|
--- node-v17.8.0.orig/deps/uv/src/unix/sysinfo-memory.c 2022-03-26 22:11:02.595459286 +0530
|
|
+++ node-v17.8.0/deps/uv/src/unix/sysinfo-memory.c 2022-03-26 22:12:14.175459259 +0530
|
|
@@ -25,6 +25,7 @@
|
|
#include <stdint.h>
|
|
#include <sys/sysinfo.h>
|
|
|
|
+#ifndef __ANDROID__
|
|
uint64_t uv_get_free_memory(void) {
|
|
struct sysinfo info;
|
|
|
|
@@ -32,6 +33,7 @@
|
|
return (uint64_t) info.freeram * info.mem_unit;
|
|
return 0;
|
|
}
|
|
+#endif
|
|
|
|
uint64_t uv_get_total_memory(void) {
|
|
struct sysinfo info;
|