pub fn create_thread<T>(
    init: unsafe extern "system" fn(_: Option<Box<T>>) -> u32,
    param: Option<T>
) -> u32
Expand description

Creates new thread with default parameters.

Panics

If failed to create a new thread.