onion-vm 0.3.4

Virtual machine runtime for the Onion programming language with async execution and garbage collection
Documentation
1
2
3
4
5
6
7
8
9
10
//! Onion 虚拟机调度器模块。
//!
//! 包含三种调度器:
//! - `scheduler`:通用基于栈的任务调度器,支持嵌套与协作式任务。
//! - `async_scheduler`:异步/协作式多任务调度器,支持优先级与动态降级。
//! - `map_scheduler`:用于 map 操作的专用调度器,支持容器元素批量处理。

pub mod scheduler;
pub mod async_scheduler;
pub mod map_scheduler;