! \internal */
| 163 | \internal |
| 164 | */ |
| 165 | void QInterProcessChannel::run() { |
| 166 | /* |
| 167 | There we check that the server lives... |
| 168 | If connection fails notify it... |
| 169 | */ |
| 170 | |
| 171 | if (pServer) return; |
| 172 | |
| 173 | // qDebug("timer setup..."); |
| 174 | |
| 175 | pServerTimer = new QTimer; |
| 176 | pServerTimer->setInterval(100); |
| 177 | pServerTimer->setSingleShot(false); |
| 178 | |
| 179 | connect(pServerTimer, SIGNAL(timeout()), this, SLOT(check())); |
| 180 | |
| 181 | pServerTimer->start(); |
| 182 | |
| 183 | exec(); |
| 184 | } |
| 185 | |
| 186 | /*! |
| 187 | \internal |
nothing calls this directly
no outgoing calls
no test coverage detected