Changeset 38105 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 4, 2008, 10:59:56 AM (17 years ago)
Author:
Darin Adler
Message:

2008-11-04 Darin Adler <Darin Adler>

Reviewed by Tim Hatcher.

  • wtf/ThreadingNone.cpp: Tweak formatting.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38101 r38105  
     12008-11-04  Darin Adler  <[email protected]>
     2
     3        Reviewed by Tim Hatcher.
     4
     5        * wtf/ThreadingNone.cpp: Tweak formatting.
     6
    172008-11-03  Darin Adler  <[email protected]>
    28
  • trunk/JavaScriptCore/wtf/ThreadingNone.cpp

    r38101 r38105  
    3333namespace WTF {
    3434
    35 void initializeThreading() {}
     35void initializeThreading() { }
    3636ThreadIdentifier createThread(ThreadFunction, void*, const char*) { return 0; }
    3737int waitForThreadCompletion(ThreadIdentifier, void**) { return 0; }
     
    4040bool isMainThread() { return false; }
    4141
    42 Mutex::Mutex() {}
    43 Mutex::~Mutex() {}
    44 void Mutex::lock() {}
     42Mutex::Mutex() { }
     43Mutex::~Mutex() { }
     44void Mutex::lock() { }
    4545bool Mutex::tryLock() { return false; }
    46 void Mutex::unlock() {}
     46void Mutex::unlock() { }
    4747
    48 ThreadCondition::ThreadCondition() {}
    49 ThreadCondition::~ThreadCondition() {}
    50 void ThreadCondition::wait(Mutex& mutex) {}
     48ThreadCondition::ThreadCondition() { }
     49ThreadCondition::~ThreadCondition() { }
     50void ThreadCondition::wait(Mutex& mutex) { }
    5151bool ThreadCondition::timedWait(Mutex& mutex, double interval) { return false; }
    52 void ThreadCondition::signal() {}
    53 void ThreadCondition::broadcast() {}
     52void ThreadCondition::signal() { }
     53void ThreadCondition::broadcast() { }
    5454
    55 void lockAtomicallyInitializedStaticMutex() {}
     55void lockAtomicallyInitializedStaticMutex() { }
    5656void unlockAtomicallyInitializedStaticMutex() { }
    5757
Note: See TracChangeset for help on using the changeset viewer.