| 202 | } |
| 203 | |
| 204 | void WriterThread::initWriter(string filename1, bool isSTDOUT) { |
| 205 | deleteWriter(); |
| 206 | mWriter1 = new Writer(mOptions, filename1, mOptions->compression, isSTDOUT); |
| 207 | } |
| 208 | |
| 209 | void WriterThread::initBufferLists() { |
| 210 | mBufferLists = new SingleProducerSingleConsumerList<string*>*[mOptions->thread]; |
nothing calls this directly
no outgoing calls
no test coverage detected