[][src]Function sdl2_sys::SDL_CreateThread

pub unsafe extern "C" fn SDL_CreateThread(
    fn_: SDL_ThreadFunction,
    name: *const c_char,
    data: *mut c_void
) -> *mut SDL_Thread

Create a thread with a default stack size.

This is equivalent to calling: SDL_CreateThreadWithStackSize(fn, name, 0, data);