* Stop the client */
| 43 | * Stop the client |
| 44 | */ |
| 45 | int16_t ProcessorController::stop() { |
| 46 | scheduler_->unschedule(processor_); |
| 47 | return 0; |
| 48 | } |
| 49 | |
| 50 | bool ProcessorController::isRunning() { |
| 51 | return processor_->isRunning(); |
nothing calls this directly
no test coverage detected