Title: [88871] trunk/Source/WebCore
Revision
88871
Author
msab...@apple.com
Date
2011-06-14 16:29:51 -0700 (Tue, 14 Jun 2011)

Log Message

2011-06-14  Michael Saboff  <msab...@apple.com>

        Reviewed by Joseph Pecoraro.

        Incorrect #if[n]def for building without DISPATCH_VM_PRESSURE
        https://bugs.webkit.org/show_bug.cgi?id=62649

        Take 2.
        The #ifdef DISPATCH_VM_PRESSURE doesn't work.  Combined the code
        inside this #ifdef with the prior #ifndef DISPATCH_SOURCE_TYPE_VM.

        No functional changes, fixing build issue therefore no tests.

        * platform/mac/MemoryPressureHandlerMac.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (88870 => 88871)


--- trunk/Source/WebCore/ChangeLog	2011-06-14 23:25:45 UTC (rev 88870)
+++ trunk/Source/WebCore/ChangeLog	2011-06-14 23:29:51 UTC (rev 88871)
@@ -1,3 +1,18 @@
+2011-06-14  Michael Saboff  <msab...@apple.com>
+
+        Reviewed by Joseph Pecoraro.
+
+        Incorrect #if[n]def for building without DISPATCH_VM_PRESSURE
+        https://bugs.webkit.org/show_bug.cgi?id=62649
+
+        Take 2.
+        The #ifdef DISPATCH_VM_PRESSURE doesn't work.  Combined the code
+        inside this #ifdef with the prior #ifndef DISPATCH_SOURCE_TYPE_VM.
+
+        No functional changes, fixing build issue therefore no tests.
+
+        * platform/mac/MemoryPressureHandlerMac.mm:
+
 2011-06-14  Jeffrey Pfau  <jp...@apple.com>
 
         Reviewed by David Hyatt.

Modified: trunk/Source/WebCore/platform/mac/MemoryPressureHandlerMac.mm (88870 => 88871)


--- trunk/Source/WebCore/platform/mac/MemoryPressureHandlerMac.mm	2011-06-14 23:25:45 UTC (rev 88870)
+++ trunk/Source/WebCore/platform/mac/MemoryPressureHandlerMac.mm	2011-06-14 23:29:51 UTC (rev 88871)
@@ -38,9 +38,7 @@
 #ifndef DISPATCH_SOURCE_TYPE_VM
 #define DISPATCH_SOURCE_TYPE_VM (&_dispatch_source_type_vm)
 DISPATCH_EXPORT const struct dispatch_source_type_s _dispatch_source_type_vm;
-#endif
 
-#ifdef DISPATCH_VM_PRESSURE
 enum {
  DISPATCH_VM_PRESSURE = 0x80000000,
 };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to