From b91b2a7fe912944b74ff7e7b3e38611ea0fe78ee Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 29 Feb 2024 13:33:51 +1100 Subject: [PATCH] py/mpstate: Don't declare mp_thread_get_state(). It's instead declared by the include of `py/mpthread.h`. Signed-off-by: Damien George --- py/mpstate.h | 1 - 1 file changed, 1 deletion(-) diff --git a/py/mpstate.h b/py/mpstate.h index 0e0388e410..af55e764f6 100644 --- a/py/mpstate.h +++ b/py/mpstate.h @@ -310,7 +310,6 @@ extern mp_state_ctx_t mp_state_ctx; #define MP_STATE_MAIN_THREAD(x) (mp_state_ctx.thread.x) #if MICROPY_PY_THREAD -extern mp_state_thread_t *mp_thread_get_state(void); #define MP_STATE_THREAD(x) (mp_thread_get_state()->x) #define mp_thread_is_main_thread() (mp_thread_get_state() == &mp_state_ctx.thread) #else