diff options
author | Andrew Leech <andrew.leech@planetinnovation.com.au> | 2019-03-21 11:52:10 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-03-26 16:35:42 +1100 |
commit | 8977c7eb581f5d06500edb1ea29aea5cbda04f28 (patch) | |
tree | 10291cc81c84a9eb0732367c613c35511be4ee48 /py/runtime.c | |
parent | 2befcb8a9d54f3f9c059b45eba3e9d4e5fb13514 (diff) |
py/scheduler: Convert micropythyon.schedule() to a circular buffer.
This means the schedule operates on a first-in, first-executed manner
rather than the current last-in, first executed.
Diffstat (limited to 'py/runtime.c')
-rw-r--r-- | py/runtime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/runtime.c b/py/runtime.c index 4a50698cb..75d50596e 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -63,7 +63,8 @@ void mp_init(void) { MP_STATE_VM(mp_pending_exception) = MP_OBJ_NULL; #if MICROPY_ENABLE_SCHEDULER MP_STATE_VM(sched_state) = MP_SCHED_IDLE; - MP_STATE_VM(sched_sp) = 0; + MP_STATE_VM(sched_idx) = 0; + MP_STATE_VM(sched_len) = 0; #endif #if MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF |