< prev index next >

src/share/vm/utilities/ostream.cpp

Print this page

        

@@ -1056,12 +1056,12 @@
       writer_id == NO_WRITER ||
 
       // bootstrap problem
       tty_lock == NULL ||
 
-      // can't grab a lock or call Thread::current() if TLS isn't initialized
-      ThreadLocalStorage::thread() == NULL ||
+      // can't grab a lock if current Thread isn't set
+      Thread::current() == NULL ||
 
       // developer hook
       !SerializeVMOutput ||
 
       // VM already unhealthy
< prev index next >