Changeset 38850 in webkit for trunk/WebCore/storage/DatabaseThread.cpp
- Timestamp:
- Nov 30, 2008, 12:31:11 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/storage/DatabaseThread.cpp
r35419 r38850 49 49 bool DatabaseThread::start() 50 50 { 51 MutexLocker lock(m_threadCreationMutex); 52 51 53 if (m_threadID) 52 54 return true; … … 76 78 void* DatabaseThread::databaseThread() 77 79 { 78 LOG(StorageAPI, "Starting DatabaseThread %p", this); 80 { 81 // Wait for DatabaseThread::start() to complete. 82 MutexLocker lock(m_threadCreationMutex); 83 LOG(StorageAPI, "Started DatabaseThread %p", this); 84 } 79 85 80 86 AutodrainedPool pool;
Note:
See TracChangeset
for help on using the changeset viewer.