Penguin
Note: You are viewing an old revision of this page. View the current version.

SDL_CreateThread?

SDL_CreateThread?

NAME SYNOPSIS DESCRIPTION SEE ALSO


NAME

SDL_CreateThread?- Creates a new thread of execution that shares its parent's properties.

SYNOPSIS

#include

SDL_Thread *SDL_CreateThread?(int (*fn)(void *), void *data);

DESCRIPTION

SDL_CreateThread? creates a new thread of execution that shares all of its parent's global memory, signal handlers, file descriptors, etc, and runs the function fn passed the void pointer data The thread quits when this function returns.

SEE ALSO

SDL_KillThread?


This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.