diff options
| author | Damien George <damien@micropython.org> | 2021-04-30 16:48:29 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-05-01 23:10:26 +1000 |
| commit | aa061ae391f2a8fbb16ace31ae0e4ae35b6ad5e9 (patch) | |
| tree | a538ef865a4ff4bd8a53f08f60184eeddba2b0f6 /py | |
| parent | dd5c831a0b0c960b638109f1886edc10178f51a1 (diff) | |
py/scheduler: Add missing MICROPY_WRAP_MP_SCHED_EXCEPTION usage.
This was missed in commit 7cbf826a9575e18ce1b7fe11b0f0997509153260.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py')
| -rw-r--r-- | py/scheduler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/scheduler.c b/py/scheduler.c index 947510c68..0671a34a8 100644 --- a/py/scheduler.c +++ b/py/scheduler.c @@ -28,7 +28,7 @@ #include "py/runtime.h" -void mp_sched_exception(mp_obj_t exc) { +void MICROPY_WRAP_MP_SCHED_EXCEPTION(mp_sched_exception)(mp_obj_t exc) { MP_STATE_VM(mp_pending_exception) = exc; #if MICROPY_ENABLE_SCHEDULER if (MP_STATE_VM(sched_state) == MP_SCHED_IDLE) { |
