pub fn copy_to_user_array<T: 'static + Copy>(
    token: usize,
    src: *const T,
    dst: *mut T,
    len: usize
)
Expand description

Copy array *src: [T;len] to user space. src is a pointer in kernel space, dst is a pointer in user space.