Changeset 38105 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 4, 2008, 10:59:56 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r38101 r38105 1 2008-11-04 Darin Adler <[email protected]> 2 3 Reviewed by Tim Hatcher. 4 5 * wtf/ThreadingNone.cpp: Tweak formatting. 6 1 7 2008-11-03 Darin Adler <[email protected]> 2 8 -
trunk/JavaScriptCore/wtf/ThreadingNone.cpp
r38101 r38105 33 33 namespace WTF { 34 34 35 void initializeThreading() { }35 void initializeThreading() { } 36 36 ThreadIdentifier createThread(ThreadFunction, void*, const char*) { return 0; } 37 37 int waitForThreadCompletion(ThreadIdentifier, void**) { return 0; } … … 40 40 bool isMainThread() { return false; } 41 41 42 Mutex::Mutex() { }43 Mutex::~Mutex() { }44 void Mutex::lock() { }42 Mutex::Mutex() { } 43 Mutex::~Mutex() { } 44 void Mutex::lock() { } 45 45 bool Mutex::tryLock() { return false; } 46 void Mutex::unlock() { }46 void Mutex::unlock() { } 47 47 48 ThreadCondition::ThreadCondition() { }49 ThreadCondition::~ThreadCondition() { }50 void ThreadCondition::wait(Mutex& mutex) { }48 ThreadCondition::ThreadCondition() { } 49 ThreadCondition::~ThreadCondition() { } 50 void ThreadCondition::wait(Mutex& mutex) { } 51 51 bool ThreadCondition::timedWait(Mutex& mutex, double interval) { return false; } 52 void ThreadCondition::signal() { }53 void ThreadCondition::broadcast() { }52 void ThreadCondition::signal() { } 53 void ThreadCondition::broadcast() { } 54 54 55 void lockAtomicallyInitializedStaticMutex() { }55 void lockAtomicallyInitializedStaticMutex() { } 56 56 void unlockAtomicallyInitializedStaticMutex() { } 57 57
Note:
See TracChangeset
for help on using the changeset viewer.