Function xous::syscall::create_thread_3

source ยท
pub fn create_thread_3<T>(
    f: fn(_: usize, _: usize, _: usize) -> T,
    arg1: usize,
    arg2: usize,
    arg3: usize
) -> Result<WaitHandle<T>, Error>
where T: Send + 'static,