Changeset 37215 in webkit for trunk/JavaScriptCore/API/JSObjectRef.cpp
- Timestamp:
- Oct 2, 2008, 4:48:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.cpp
r37175 r37215 74 74 { 75 75 ExecState* exec = toJS(ctx); 76 exec->globalData().heap ->registerThread();76 exec->globalData().heap.registerThread(); 77 77 JSLock lock(exec); 78 78 … … 90 90 { 91 91 ExecState* exec = toJS(ctx); 92 exec->globalData().heap ->registerThread();92 exec->globalData().heap.registerThread(); 93 93 JSLock lock(exec); 94 94 … … 101 101 { 102 102 ExecState* exec = toJS(ctx); 103 exec->globalData().heap ->registerThread();103 exec->globalData().heap.registerThread(); 104 104 JSLock lock(exec); 105 105 … … 116 116 { 117 117 ExecState* exec = toJS(ctx); 118 exec->globalData().heap ->registerThread();118 exec->globalData().heap.registerThread(); 119 119 JSLock lock(exec); 120 120 … … 139 139 { 140 140 ExecState* exec = toJS(ctx); 141 exec->globalData().heap ->registerThread();141 exec->globalData().heap.registerThread(); 142 142 JSLock lock(exec); 143 143 … … 165 165 { 166 166 ExecState* exec = toJS(ctx); 167 exec->globalData().heap ->registerThread();167 exec->globalData().heap.registerThread(); 168 168 JSLock lock(exec); 169 169 … … 186 186 { 187 187 ExecState* exec = toJS(ctx); 188 exec->globalData().heap ->registerThread();188 exec->globalData().heap.registerThread(); 189 189 JSLock lock(exec); 190 190 … … 207 207 { 208 208 ExecState* exec = toJS(ctx); 209 exec->globalData().heap ->registerThread();209 exec->globalData().heap.registerThread(); 210 210 JSLock lock(exec); 211 211 … … 242 242 { 243 243 ExecState* exec = toJS(ctx); 244 exec->globalData().heap ->registerThread();244 exec->globalData().heap.registerThread(); 245 245 JSLock lock(exec); 246 246 … … 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 … … 270 270 { 271 271 ExecState* exec = toJS(ctx); 272 exec->globalData().heap ->registerThread();272 exec->globalData().heap.registerThread(); 273 273 JSLock lock(exec); 274 274 … … 294 294 { 295 295 ExecState* exec = toJS(ctx); 296 exec->globalData().heap ->registerThread();296 exec->globalData().heap.registerThread(); 297 297 JSLock lock(exec); 298 298 … … 312 312 { 313 313 ExecState* exec = toJS(ctx); 314 exec->globalData().heap ->registerThread();314 exec->globalData().heap.registerThread(); 315 315 JSLock lock(exec); 316 316 … … 329 329 { 330 330 ExecState* exec = toJS(ctx); 331 exec->globalData().heap ->registerThread();331 exec->globalData().heap.registerThread(); 332 332 JSLock lock(exec); 333 333 … … 379 379 { 380 380 ExecState* exec = toJS(ctx); 381 exec->globalData().heap ->registerThread();381 exec->globalData().heap.registerThread(); 382 382 JSLock lock(exec); 383 383 … … 417 417 { 418 418 ExecState* exec = toJS(ctx); 419 exec->globalData().heap ->registerThread();419 exec->globalData().heap.registerThread(); 420 420 JSLock lock(exec); 421 421 … … 456 456 JSObject* jsObject = toJS(object); 457 457 ExecState* exec = toJS(ctx); 458 exec->globalData().heap ->registerThread();458 exec->globalData().heap.registerThread(); 459 459 JSLock lock(exec); 460 460 … … 501 501 PropertyNameArray* propertyNames = toJS(array); 502 502 503 propertyNames->globalData()->heap ->registerThread();503 propertyNames->globalData()->heap.registerThread(); 504 504 JSLock lock(propertyNames->globalData()->isSharedInstance); 505 505
Note:
See TracChangeset
for help on using the changeset viewer.