| 440 | } |
| 441 | |
| 442 | smlRunResult AgentSML::StepInClientThread(smlRunStepSize stepSize) |
| 443 | { |
| 444 | // Agent is already running, we cannot run |
| 445 | if (m_runState != sml_RUNSTATE_STOPPED) |
| 446 | { |
| 447 | return sml_RUN_ERROR; |
| 448 | } |
| 449 | |
| 450 | m_runState = sml_RUNSTATE_RUNNING; |
| 451 | |
| 452 | // This method does all the work |
| 453 | return Step(stepSize); |
| 454 | } |
| 455 | |
| 456 | void AgentSML::FireRunEvent(smlRunEventId eventId) |
| 457 | { |
no outgoing calls
no test coverage detected