Changeset 88871 in webkit


Ignore:
Timestamp:
Jun 14, 2011 4:29:51 PM (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

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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r88854 r88871  
     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        Take 2.
     9        The #ifdef DISPATCH_VM_PRESSURE doesn't work.  Combined the code
     10        inside this #ifdef with the prior #ifndef DISPATCH_SOURCE_TYPE_VM.
     11
     12        No functional changes, fixing build issue therefore no tests.
     13
     14        * platform/mac/MemoryPressureHandlerMac.mm:
     15
    1162011-06-14  Jeffrey Pfau  <jpfau@apple.com>
    217
  • trunk/Source/WebCore/platform/mac/MemoryPressureHandlerMac.mm

    r88829 r88871  
    3939#define DISPATCH_SOURCE_TYPE_VM (&_dispatch_source_type_vm)
    4040DISPATCH_EXPORT const struct dispatch_source_type_s _dispatch_source_type_vm;
    41 #endif
    4241
    43 #ifdef DISPATCH_VM_PRESSURE
    4442enum {
    4543 DISPATCH_VM_PRESSURE = 0x80000000,
Note: See TracChangeset for help on using the changeset viewer.