Changeset 43397 in webkit for trunk/JavaScriptCore/bytecode/SamplingTool.cpp
- Timestamp:
- May 8, 2009, 4:30:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/SamplingTool.cpp
r43395 r43397 210 210 } 211 211 212 void SamplingTool::notifyOfScope(ScopeNode* scope) 213 { 212 214 #if ENABLE(CODEBLOCK_SAMPLING) 213 void SamplingTool::notifyOfScope(ScopeNode* scope)214 {215 215 MutexLocker locker(m_scopeSampleMapMutex); 216 216 m_scopeSampleMap->set(scope, new ScopeSampleRecord(scope)); 217 } 218 #endif 217 #else 218 UNUSED_PARAM(scope); 219 #endif 220 } 219 221 220 222 void SamplingTool::setup()
Note:
See TracChangeset
for help on using the changeset viewer.