diff options
| author | Damien George <damien@micropython.org> | 2021-04-28 10:57:34 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-04-30 15:13:43 +1000 |
| commit | e9e9c76ddf131f8e50b0ae2d44501d3cd88537ef (patch) | |
| tree | f9a89b19b8c1b74fd6c6f2ba004dcf174e6c4f1e /py/runtime.h | |
| parent | bd54eb566f85293279d02d0a663c7e4d9f59e660 (diff) | |
all: Rename mp_keyboard_interrupt to mp_sched_keyboard_interrupt.
To match mp_sched_exception() and mp_sched_schedule().
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/runtime.h')
| -rw-r--r-- | py/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/runtime.h b/py/runtime.h index 9ad4bc024..7d2cb94e8 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -65,7 +65,7 @@ void mp_init(void); void mp_deinit(void); void mp_sched_exception(mp_obj_t exc); -void mp_keyboard_interrupt(void); +void mp_sched_keyboard_interrupt(void); void mp_handle_pending(bool raise_exc); void mp_handle_pending_tail(mp_uint_t atomic_state); |
