furi_thread_set_name

Function furi_thread_set_name 

Source
pub unsafe extern "C" fn furi_thread_set_name(
    thread: *mut FuriThread,
    name: *const c_char,
)
Expand description

Set the name of a FuriThread instance.

The thread MUST be stopped when calling this function.

ยงArguments

  • thread (direction in, out) - pointer to the FuriThread instance to be modified
  • name (direction in) - human-readable thread name (can be NULL)