Index: base/platform_thread_posix.cc |
=================================================================== |
--- base/platform_thread_posix.cc (revision 68914) |
+++ base/platform_thread_posix.cc (working copy) |
@@ -219,9 +219,5 @@ |
// static |
void PlatformThread::Join(PlatformThreadHandle thread_handle) { |
- // Joining another thread may block the current thread for a long time, since |
- // the thread referred to by |thread_handle| may still be running long-lived / |
- // blocking tasks. |
- base::ThreadRestrictions::AssertIOAllowed(); |
pthread_join(thread_handle, NULL); |
} |