| 468 | } |
| 469 | |
| 470 | void SingleEndProcessor::writerTask(WriterThread* config) |
| 471 | { |
| 472 | while(true) { |
| 473 | if(config->isCompleted()){ |
| 474 | // last check for possible threading related issue |
| 475 | config->output(); |
| 476 | break; |
| 477 | } |
| 478 | config->output(); |
| 479 | } |
| 480 | |
| 481 | if(mOptions->verbose) { |
| 482 | string msg = config->getFilename() + " writer finished"; |
| 483 | loginfo(msg); |
| 484 | } |
| 485 | } |
nothing calls this directly
no test coverage detected