Function sdl2_sys::SDL_CreateThread
source ยท pub unsafe extern "C" fn SDL_CreateThread(
fn_: SDL_ThreadFunction,
name: *const c_char,
data: *mut c_void,
) -> *mut SDL_Thread
Expand description
Create a thread with a default stack size.
This is equivalent to calling: SDL_CreateThreadWithStackSize(fn, name, 0, data);