Changeset 44607 in webkit for trunk/JavaScriptCore/wtf/ThreadingNone.cpp
- Timestamp:
- Jun 11, 2009, 10:57:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingNone.cpp
r43663 r44607 49 49 ThreadCondition::ThreadCondition() { } 50 50 ThreadCondition::~ThreadCondition() { } 51 void ThreadCondition::wait(Mutex& mutex) { }52 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime) { return false; }51 void ThreadCondition::wait(Mutex&) { } 52 bool ThreadCondition::timedWait(Mutex&, double) { return false; } 53 53 void ThreadCondition::signal() { } 54 54 void ThreadCondition::broadcast() { }
Note:
See TracChangeset
for help on using the changeset viewer.