Differences between version 2 and predecessor to the previous major change of SDL_CreateThread(3).
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 2 | Last edited on Monday, June 3, 2002 6:53:41 pm | by perry | Revert |
Older page: | version 1 | Last edited on Monday, June 3, 2002 6:53:41 pm | by perry | Revert |
@@ -1,33 +1,33 @@
-SDL_CreateThread
-!!!SDL_CreateThread
+SDL_!
CreateThread
+!!!SDL_!
CreateThread
NAME
SYNOPSIS
DESCRIPTION
SEE ALSO
----
!!NAME
-SDL_CreateThread- Creates a new thread of execution that shares its parent's properties.
+SDL_!
CreateThread- Creates a new thread of execution that shares its parent's properties.
!!SYNOPSIS
__#include
__
-__SDL_Thread *SDL_CreateThread__(__int (*fn)(void *),
+__SDL_Thread *SDL_!
CreateThread__(__int (*fn)(void *),
void *data__);
!!DESCRIPTION
-__SDL_CreateThread__ creates a new thread of execution
+__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__
+__SDL_!
KillThread__
----