summaryrefslogtreecommitdiff
path: root/package/webkitgtk/patches/patch-Source_WebCore_platform_linux_MemoryPressureHandlerLinux_cpp
diff options
context:
space:
mode:
Diffstat (limited to 'package/webkitgtk/patches/patch-Source_WebCore_platform_linux_MemoryPressureHandlerLinux_cpp')
-rw-r--r--package/webkitgtk/patches/patch-Source_WebCore_platform_linux_MemoryPressureHandlerLinux_cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/webkitgtk/patches/patch-Source_WebCore_platform_linux_MemoryPressureHandlerLinux_cpp b/package/webkitgtk/patches/patch-Source_WebCore_platform_linux_MemoryPressureHandlerLinux_cpp
new file mode 100644
index 000000000..f5566ff08
--- /dev/null
+++ b/package/webkitgtk/patches/patch-Source_WebCore_platform_linux_MemoryPressureHandlerLinux_cpp
@@ -0,0 +1,15 @@
+--- webkitgtk-2.10.7.orig/Source/WebCore/platform/linux/MemoryPressureHandlerLinux.cpp 2016-01-29 17:29:33.000000000 +0100
++++ webkitgtk-2.10.7/Source/WebCore/platform/linux/MemoryPressureHandlerLinux.cpp 2016-03-02 19:21:10.000000000 +0100
+@@ -201,8 +201,12 @@ void MemoryPressureHandler::respondToMem
+
+ void MemoryPressureHandler::platformReleaseMemory(Critical)
+ {
++#ifndef __UCLIBC__
+ ReliefLogger log("Run malloc_trim");
+ malloc_trim(0);
++#else
++ ReliefLogger log("malloc_trim not available");
++#endif
+ }
+
+ void MemoryPressureHandler::ReliefLogger::platformLog()