pub unsafe extern "C" fn aws_task_scheduler_run_all(
    scheduler: *mut aws_task_scheduler,
    current_time: u64
)
Expand description

Sequentially execute all tasks scheduled to run at, or before current_time. AWS_TASK_STATUS_RUN_READY will be passed to the task function as the task status.

If a task schedules another task, the new task will not be executed until the next call to this function.