Changeset 277917 in webkit for trunk/Source/JavaScriptCore/interpreter
- Timestamp:
- May 22, 2021, 4:17:01 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CLoopStack.cpp
r277913 r277917 140 140 void CLoopStack::addToCommittedByteCount(long byteCount) 141 141 { 142 Lock er locker { stackStatisticsMutex };142 LockHolder locker(stackStatisticsMutex); 143 143 ASSERT(static_cast<long>(committedBytesCount) + byteCount > -1); 144 144 committedBytesCount += byteCount; … … 160 160 size_t CLoopStack::committedByteCount() 161 161 { 162 Lock er locker { stackStatisticsMutex };162 LockHolder locker(stackStatisticsMutex); 163 163 return committedBytesCount; 164 164 }
Note:
See TracChangeset
for help on using the changeset viewer.