Ignore:
Timestamp:
Aug 3, 2009, 11:34:19 AM (16 years ago)
Author:
[email protected]
Message:

Reviewed by Darin Adler.

Don't use background thread to scavenge memory on Tiger until we figure out why it causes a crash.
https://bugs.webkit.org/show_bug.cgi?id=27900

  • wtf/FastMalloc.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r46648 r46724  
    9898
    9999// Use a background thread to periodically scavenge memory to release back to the system
     100// https://bugs.webkit.org/show_bug.cgi?id=27900: don't turn this on for Tiger until we have figured out why it caused a crash.
     101#if !defined(BUILDING_ON_TIGER)
    100102#define USE_BACKGROUND_THREAD_TO_SCAVENGE_MEMORY 1
     103#endif
    101104
    102105#ifndef NDEBUG
Note: See TracChangeset for help on using the changeset viewer.