diff -r ffa851df0825 -r 2fb8b9db1c86 symbian-qemu-0.9.1-12/libsdl-trunk/docs/html/sdlcreatethread.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/symbian-qemu-0.9.1-12/libsdl-trunk/docs/html/sdlcreatethread.html Fri Jul 31 15:01:17 2009 +0100 @@ -0,0 +1,223 @@ +
#include "SDL.h" +#include "SDL_thread.h"
SDL_Thread *SDL_CreateThread(int (*fn)(void *), void *data);
SDL_Thread *SDL_CreateThread
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.
SDL_KillThread