Terminate this thread, if the thread did not stop within the timeout it will be cancelled
| 77 | /// Terminate this thread, if the thread did not stop within the |
| 78 | /// timeout it will be cancelled |
| 79 | void terminateThread() { |
| 80 | if (_run) { |
| 81 | stopThread(); |
| 82 | joinThread(); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | /// Stop the running thread give 5.0 sec to stop else cancel it |
| 87 | void stopThread(); |
nothing calls this directly
no outgoing calls
no test coverage detected