Changeset 37901 in webkit for trunk/JavaScriptCore/VM/SamplingTool.cpp
- Timestamp:
- Oct 27, 2008, 1:37:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/SamplingTool.cpp
r37891 r37901 103 103 104 104 #if ENABLE(CODEBLOCK_SAMPLING) 105 MutexLocker locker(m_scopeSampleMapMutex); 105 106 ScopeSampleRecord* record = m_scopeSampleMap->get(sample.codeBlock()->ownerNode); 106 107 ASSERT(record); … … 118 119 void SamplingTool::notifyOfScope(ScopeNode* scope) 119 120 { 121 MutexLocker locker(m_scopeSampleMapMutex); 120 122 m_scopeSampleMap->set(scope, new ScopeSampleRecord(scope)); 121 123 }
Note:
See TracChangeset
for help on using the changeset viewer.