[][src]Function wpilib_sys::bindings::HAL_AttachInterruptHandlerThreaded

pub unsafe extern "C" fn HAL_AttachInterruptHandlerThreaded(
    interruptHandle: HAL_InterruptHandle,
    handler: HAL_InterruptHandlerFunction,
    param: *mut c_void,
    status: *mut i32
)

Attaches an asynchronous interrupt handler to the interrupt.

This interrupt gets called on a thread specific to the interrupt, so will not block other interrupts.

@param interruptHandle the interrupt handle @param handler the handler function for the interrupt to call @param param a parameter to be passed to the handler