furi_thread_signal

Function furi_thread_signal 

Source
pub unsafe extern "C" fn furi_thread_signal(
    thread: *const FuriThread,
    signal: u32,
    arg: *mut c_void,
) -> bool
Expand description

Send a signal to a FuriThread instance.

ยงArguments

  • thread (direction in) - pointer to the FuriThread instance to be signaled
  • signal (direction in) - signal value to be sent
  • arg (direction in, out) - optional argument (can be of any value, including NULL)