Index: base/threading/simple_thread.cc |
=================================================================== |
--- base/threading/simple_thread.cc (revision 106858) |
+++ base/threading/simple_thread.cc (working copy) |
@@ -29,7 +29,7 @@ |
void SimpleThread::Start() { |
DCHECK(!HasBeenStarted()) << "Tried to Start a thread multiple times."; |
bool success = PlatformThread::Create(options_.stack_size(), this, &thread_); |
- CHECK(success); |
+ DCHECK(success); |
event_.Wait(); // Wait for the thread to complete initialization. |
} |