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