Changeset 37215 in webkit for trunk/JavaScriptCore/API/JSValueRef.cpp
- Timestamp:
- Oct 2, 2008, 4:48:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSValueRef.cpp
r36766 r37215 113 113 { 114 114 ExecState* exec = toJS(ctx); 115 exec->globalData().heap ->registerThread();115 exec->globalData().heap.registerThread(); 116 116 JSLock lock(exec); 117 117 … … 140 140 { 141 141 ExecState* exec = toJS(ctx); 142 exec->globalData().heap ->registerThread();142 exec->globalData().heap.registerThread(); 143 143 JSLock lock(exec); 144 144 … … 174 174 { 175 175 ExecState* exec = toJS(ctx); 176 exec->globalData().heap ->registerThread();176 exec->globalData().heap.registerThread(); 177 177 JSLock lock(exec); 178 178 … … 183 183 { 184 184 ExecState* exec = toJS(ctx); 185 exec->globalData().heap ->registerThread();185 exec->globalData().heap.registerThread(); 186 186 JSLock lock(exec); 187 187 … … 199 199 { 200 200 ExecState* exec = toJS(ctx); 201 exec->globalData().heap ->registerThread();201 exec->globalData().heap.registerThread(); 202 202 JSLock lock(exec); 203 203 … … 217 217 { 218 218 ExecState* exec = toJS(ctx); 219 exec->globalData().heap ->registerThread();219 exec->globalData().heap.registerThread(); 220 220 JSLock lock(exec); 221 221 … … 235 235 { 236 236 ExecState* exec = toJS(ctx); 237 exec->globalData().heap ->registerThread();237 exec->globalData().heap.registerThread(); 238 238 JSLock lock(exec); 239 239 … … 253 253 { 254 254 ExecState* exec = toJS(ctx); 255 exec->globalData().heap ->registerThread();255 exec->globalData().heap.registerThread(); 256 256 JSLock lock(exec); 257 257 … … 263 263 { 264 264 ExecState* exec = toJS(ctx); 265 exec->globalData().heap ->registerThread();265 exec->globalData().heap.registerThread(); 266 266 JSLock lock(exec); 267 267
Note:
See TracChangeset
for help on using the changeset viewer.