# HG changeset patch # User Matthew Wild # Date 1700590491 0 # Node ID fa4143163e01e8de43ba595a9fa08a4d3fe656f8 # Parent 17cb965e55b76d54b9835fbe497e4efbb044f45f util.async: Expose default runner function This is purely for informational purposes, so it's possible to determine externally whether a runner is using the default runner function (which executes functions as work items) or a custom runner function. diff -r 17cb965e55b7 -r fa4143163e01 util/async.lua --- a/util/async.lua Tue Nov 21 18:13:42 2023 +0000 +++ b/util/async.lua Tue Nov 21 18:14:51 2023 +0000 @@ -305,5 +305,7 @@ set_nexttick = function(new_next_tick) next_tick = new_next_tick; end; set_schedule_function = function (new_schedule_function) schedule_task = new_schedule_function; end; + waiting_runners = waiting_runners; + default_runner_func = default_func; };