Title: [280821] trunk/Source/WTF
Revision
280821
Author
[email protected]
Date
2021-08-09 19:29:56 -0700 (Mon, 09 Aug 2021)

Log Message

[GTK][WPE] REGRESSION(r280795): MemoryPressureHandlerUnix.cpp:45:28: error: ‘LogMemoryPressure’ was not declared in this scope
https://bugs.webkit.org/show_bug.cgi?id=228938

Unreviewed build fix.


* wtf/unix/MemoryPressureHandlerUnix.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (280820 => 280821)


--- trunk/Source/WTF/ChangeLog	2021-08-10 02:15:01 UTC (rev 280820)
+++ trunk/Source/WTF/ChangeLog	2021-08-10 02:29:56 UTC (rev 280821)
@@ -1,5 +1,14 @@
 2021-08-09  Fujii Hironori  <[email protected]>
 
+        [GTK][WPE] REGRESSION(r280795): MemoryPressureHandlerUnix.cpp:45:28: error: ‘LogMemoryPressure’ was not declared in this scope
+        https://bugs.webkit.org/show_bug.cgi?id=228938
+
+        Unreviewed build fix.
+
+        * wtf/unix/MemoryPressureHandlerUnix.cpp:
+
+2021-08-09  Fujii Hironori  <[email protected]>
+
         [WTF][Win] REGRESSION(r280795) error LNK2019: unresolved external symbol "class WTF::String __cdecl WTF::logLevelString(void)"
         https://bugs.webkit.org/show_bug.cgi?id=228937
         <rdar://problem/81722757>

Modified: trunk/Source/WTF/wtf/unix/MemoryPressureHandlerUnix.cpp (280820 => 280821)


--- trunk/Source/WTF/wtf/unix/MemoryPressureHandlerUnix.cpp	2021-08-10 02:15:01 UTC (rev 280820)
+++ trunk/Source/WTF/wtf/unix/MemoryPressureHandlerUnix.cpp	2021-08-10 02:29:56 UTC (rev 280821)
@@ -30,6 +30,7 @@
 
 #include <malloc.h>
 #include <unistd.h>
+#include <wtf/Logging.h>
 #include <wtf/MainThread.h>
 #include <wtf/MemoryFootprint.h>
 #include <wtf/text/WTFString.h>
@@ -42,8 +43,6 @@
 #include <sys/user.h>
 #endif
 
-#define LOG_CHANNEL_PREFIX Log
-
 namespace WTF {
 
 // Disable memory event reception for a minimum of s_minimumHoldOffTime
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to