Changeset 20361 in webkit


Ignore:
Timestamp:
Mar 21, 2007 2:30:26 AM (17 years ago)
Author:
zack
Message:

Fix the compile when USE(MULTIPLE_THREADS) isn't defined

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r20351 r20361  
     12007-03-21  Zack Rusin  <zrusin@trolltech.com>
     2
     3        Fix the compile when USE(MULTIPLE_THREADS) isn't
     4        defined
     5
     6        * kjs/JSLock.cpp:
     7        (KJS::JSLock::currentThreadIsHoldingLock):
     8
    192007-03-20  Maciej Stachowiak  <mjs@apple.com>
    210
  • trunk/JavaScriptCore/kjs/JSLock.cpp

    r20351 r20361  
    105105const int JSLockCount = 1;
    106106
     107bool JSLock::currentThreadIsHoldingLock()
     108{
     109    return true;
     110}
     111
    107112void JSLock::lock()
    108113{
Note: See TracChangeset for help on using the changeset viewer.