pub unsafe extern "C" fn furi_thread_signal(
thread: *const FuriThread,
signal: u32,
arg: *mut c_void,
) -> boolExpand description
Send a signal to a FuriThread instance.
ยงArguments
thread(direction in) - pointer to the FuriThread instance to be signaledsignal(direction in) - signal value to be sentarg(direction in, out) - optional argument (can be of any value, including NULL)