Changeset 46999 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Aug 10, 2009, 12:42:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r46725 r46999 1 1 // Copyright (c) 2005, 2007, Google Inc. 2 2 // All rights reserved. 3 // Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.3 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 4 // 5 5 // Redistribution and use in source and binary forms, with or without … … 90 90 #endif 91 91 92 #if ! defined(USE_SYSTEM_MALLOC) && defined(NDEBUG)92 #if !(defined(USE_SYSTEM_MALLOC) && USE_SYSTEM_MALLOC) && defined(NDEBUG) 93 93 #define FORCE_SYSTEM_MALLOC 0 94 94 #else 95 95 #define FORCE_SYSTEM_MALLOC 1 96 96 #endif 97 98 97 99 98 // Use a background thread to periodically scavenge memory to release back to the system
Note:
See TracChangeset
for help on using the changeset viewer.