| 477 | } |
| 478 | |
| 479 | void _262_agent_sleep(txMachine* the) |
| 480 | { |
| 481 | xsIntegerValue delay = xsToInteger(xsArg(0)); |
| 482 | #ifdef mxUseFreeRTOSTasks |
| 483 | vTaskDelay(pdMS_TO_TICKS(delay)); |
| 484 | #elif PICO_BUILD || __ZEPHYR__ |
| 485 | modDelayMilliseconds(delay); |
| 486 | #elif mxWindows |
| 487 | Sleep(delay); |
| 488 | #else |
| 489 | usleep(delay * 1000); |
| 490 | #endif |
| 491 | } |
| 492 | |
| 493 | void _262_agent_start(txMachine* the) |
| 494 | { |