| 300 | } |
| 301 | |
| 302 | void |
| 303 | ProcessInputChannel::writeToOutputChannel(const QString & message) |
| 304 | { |
| 305 | { |
| 306 | QMutexLocker l(_backgroundOutputPipeMutex); |
| 307 | _backgroundOutputPipe->write( ( message + QLatin1Char('\n') ).toUtf8() ); |
| 308 | _backgroundOutputPipe->flush(); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | void |
| 313 | ProcessInputChannel::onNewConnectionPending() |
no test coverage detected