| 195 | } |
| 196 | |
| 197 | void IPCClientPrivate::stop(bool do_wait) |
| 198 | { |
| 199 | USBGUARD_LOG(Trace) << "do_wait=" << do_wait; |
| 200 | _thread.stop(/*do_wait=*/false); |
| 201 | qb_loop_stop(_qb_loop); |
| 202 | wakeup(); |
| 203 | |
| 204 | if (do_wait) { |
| 205 | wait(); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | uint64_t IPCClientPrivate::generateMessageID() |
| 210 | { |
nothing calls this directly
no outgoing calls
no test coverage detected