src/share/vm/utilities/ostream.hpp

Print this page
rev 6841 : mq

*** 212,221 **** --- 212,223 ---- long fileSize(); void rewind() { ::rewind(_file); } void flush(); }; + extern fileStream* classlist_file; + // unlike fileStream, fdStream does unbuffered I/O by calling // open() and write() directly. It is async-safe, but output // from multiple thread may be mixed together. Used by fatal // error handler. class fdStream : public outputStream {