* Start the client */
| 35 | * Start the client |
| 36 | */ |
| 37 | int16_t ProcessorController::start() { |
| 38 | processor_->setScheduledState(core::ScheduledState::RUNNING); |
| 39 | scheduler_->schedule(processor_); |
| 40 | return 0; |
| 41 | } |
| 42 | /** |
| 43 | * Stop the client |
| 44 | */ |
nothing calls this directly
no test coverage detected