Changeset 38101 in webkit for trunk/JavaScriptCore/wtf/ThreadingNone.cpp
- Timestamp:
- Nov 4, 2008, 10:57:01 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingNone.cpp
r35419 r38101 27 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 28 */ 29 29 30 #include "config.h" 30 31 #include "Threading.h" 31 32 32 33 namespace WTF { 33 34 Mutex* atomicallyInitializedStaticMutex;35 34 36 35 void initializeThreading() {} … … 45 44 void Mutex::lock() {} 46 45 bool Mutex::tryLock() { return false; } 47 void Mutex::unlock() {} ;46 void Mutex::unlock() {} 48 47 49 48 ThreadCondition::ThreadCondition() {} … … 54 53 void ThreadCondition::broadcast() {} 55 54 55 void lockAtomicallyInitializedStaticMutex() {} 56 void unlockAtomicallyInitializedStaticMutex() { } 57 56 58 } // namespace WebCore
Note:
See TracChangeset
for help on using the changeset viewer.