SDL_CreateThread- Creates a new thread of execution that shares its parents properties.
#include "SDL.h" #include "SDL_thread.h"
SDL_Thread *SDL_CreateThread(int (*fn)(void *), void *data);
SDL_CreateThread creates a new thread of execution that shares all of its parents global memory, signal handlers, file descriptors, etc, and runs the function fn passed the void pointer data The thread quits when this function returns.
SDL_KillThread
| SDL | SDL_CreateThread (3) | Tue 11 Sep 2001, 23:00 |