Changeset 88823 in webkit


Ignore:
Timestamp:
Jun 14, 2011 10:54:55 AM (13 years ago)
Author:
msaboff@apple.com
Message:

2011-06-14 Michael Saboff <msaboff@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

The #ifdef DISPATCH_VM_PRESSURE actually needs to be #ifndef
to handle when DISPATCH_VM_PRESSURE is NOT defined in the
system header files.

No functional changes, fixing build issue therefore no tests.

  • platform/mac/MemoryPressureHandlerMac.mm:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r88822 r88823  
     12011-06-14  Michael Saboff  <msaboff@apple.com>
     2
     3        Reviewed by Joseph Pecoraro.
     4
     5        Incorrect #if[n]def for building without DISPATCH_VM_PRESSURE
     6        https://bugs.webkit.org/show_bug.cgi?id=62649
     7
     8        The #ifdef DISPATCH_VM_PRESSURE actually needs to be #ifndef
     9        to handle when DISPATCH_VM_PRESSURE is NOT defined in the
     10        system header files.
     11
     12        No functional changes, fixing build issue therefore no tests.
     13
     14        * platform/mac/MemoryPressureHandlerMac.mm:
     15
    1162011-06-13  Adrienne Walker  <enne@google.com>
    217
  • trunk/Source/WebCore/platform/mac/MemoryPressureHandlerMac.mm

    r88261 r88823  
    4141#endif
    4242
    43 #ifdef DISPATCH_VM_PRESSURE
     43#ifndef DISPATCH_VM_PRESSURE
    4444enum {
    4545 DISPATCH_VM_PRESSURE = 0x80000000,
Note: See TracChangeset for help on using the changeset viewer.