Changeset 34954 in webkit for trunk/JavaScriptCore/kjs/JSLock.cpp


Ignore:
Timestamp:
Jul 2, 2008, 4:28:43 AM (17 years ago)
Author:
[email protected]
Message:

Build fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/JSLock.cpp

    r34947 r34954  
    159159#else
    160160
     161JSLock::JSLock(ExecState* exec)
     162    : m_lockingForReal(false)
     163{
     164}
     165
    161166// If threading support is off, set the lock count to a constant value of 1 so assertions
    162167// that the lock is held don't fail
     
    171176}
    172177
    173 void JSLock::lock()
    174 {
    175 }
    176 
    177 void JSLock::unlock()
     178void JSLock::lock(bool)
     179{
     180}
     181
     182void JSLock::unlock(bool)
     183{
     184}
     185
     186void JSLock::lock(ExecState*)
     187{
     188}
     189
     190void JSLock::unlock(ExecState*)
    178191{
    179192}
     
    183196}
    184197
    185 JSLock::DropAllLocks::DropAllLocks()
     198JSLock::DropAllLocks::DropAllLocks(ExecState*)
     199{
     200}
     201
     202JSLock::DropAllLocks::DropAllLocks(bool)
    186203{
    187204}
Note: See TracChangeset for help on using the changeset viewer.