Changeset 215671 in webkit for trunk/Source/JavaScriptCore/runtime/SamplingProfiler.cpp
- Timestamp:
- Apr 23, 2017, 2:12:44 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.cpp
r215265 r215671 168 168 { 169 169 uint8_t* fpCast = bitwise_cast<uint8_t*>(exec); 170 for (MachineThreads::MachineThread* thread = m_vm.heap.machineThreads().threadsListHead(m_machineThreadsLocker); thread; thread = thread->next) { 170 const auto& threadList = m_vm.heap.machineThreads().threadsListHead(m_machineThreadsLocker); 171 for (MachineThreads::MachineThread* thread = threadList.head(); thread; thread = thread->next()) { 171 172 uint8_t* stackBase = static_cast<uint8_t*>(thread->stackBase()); 172 173 uint8_t* stackLimit = static_cast<uint8_t*>(thread->stackEnd());
Note:
See TracChangeset
for help on using the changeset viewer.