fix(os): add support for thread names (#7579)

Signed-off-by: Cristian Stoica <cristianmarian.stoica@nxp.com>
This commit is contained in:
cristian-stoica
2025-01-15 08:31:05 +02:00
committed by GitHub
parent 9f4df225c8
commit b1728f85b3
17 changed files with 42 additions and 28 deletions

View File

@@ -36,10 +36,11 @@
* GLOBAL FUNCTIONS
**********************/
lv_result_t lv_thread_init(lv_thread_t * thread, lv_thread_prio_t prio, void (*callback)(void *), size_t stack_size,
lv_result_t lv_thread_init(lv_thread_t * thread, const char * const name, lv_thread_prio_t prio, void (*callback)(void *), size_t stack_size,
void * user_data)
{
LV_UNUSED(thread);
LV_UNUSED(name);
LV_UNUSED(callback);
LV_UNUSED(prio);
LV_UNUSED(stack_size);