|
Size: 6054
Comment: remove references to compat API
|
Size: 6070
Comment: Some minor clean up.
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| ||<tablewidth="100%"style="color: rgb(255, 0, 0); text-align: center;">DRAFT || | ||<tablewidth="100%"style="color:rgb(255, 0, 0);text-align:center;">DRAFT || |
| Line 18: | Line 18: |
| ||'''fn''' ||the function to call in the new thread; see [[#Remarks|Remarks]] for details|| ||'''name'''||the name of the thread; see [[#name|Remarks]] for details|| ||'''data''' ||a pointer that is passed to '''fn'''|| |
||'''fn''' ||the function to call in the new thread; see [[#Remarks|Remarks]] for details || ||'''name''' ||the name of the thread; see [[#name|Remarks]] for details || ||'''data''' ||a pointer that is passed to '''fn''' || |
| Line 85: | Line 85: |
| Line 88: | Line 86: |
| *<<BR>>[[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''', passing it the void pointer '''data'''. The thread quits when '''fn''' returns. <<BR>>* | [[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''', passing it the void pointer '''data'''. The thread quits when '''fn''' returns. |
| Line 91: | Line 89: |
| Line 94: | Line 93: |
| . where its parameter is: ||`data`||what was passed as '''data''' to [[SDL_CreateThread]]()|| |
. where its parameter is: ||`data` ||what was passed as '''data''' to [[SDL_CreateThread]]() || |
| Line 97: | Line 96: |
| Always use the caller's `_beginthread()` and `_endthread()` APIs to start a new thread. This way, if it's the SDL.DLL which uses this API, then the RTL of SDL.DLL will be used to create the new thread, and if it's the application, then the RTL of the application will be used. /* This information is also listed on the main Category page in more detail but it seems relevant to list at least some of it here as well. Should the header be referenced as a link for more information? */ |
== Implementation Notes == Always use the caller's `_beginthread()` and `_endthread()` APIs to start a new thread. This way, if it's the SDL.DLL which uses this API, then the RTL of SDL.DLL will be used to create the new thread, and if it's the application, then the RTL of the application will be used. /* This information is also listed on the main Category page in more detail but it seems relevant to list at least some of it here as well. Should the header be referenced as a link for more information? */ |
| Line 102: | Line 103: |
| <<Anchor(name)>> Thread naming is a little complicated: Most systems have very small limits for the string length (BeOS has 32 bytes, Linux currently has 16, Visual C++ 6.0 has nine!), and possibly other arbitrary rules. You'll have to see what happens with your system's debugger. The name should be UTF-8 (but using the naming limits of C identifiers is a better bet). |
<<Anchor(name)>> Thread naming is a little complicated: Most systems have very small limits for the string length (BeOS has 32 bytes, Linux currently has 16, Visual C++ 6.0 has nine!), and possibly other arbitrary rules. You'll have to see what happens with your system's debugger. The name should be UTF-8 (but using the naming limits of C identifiers is a better bet). |
| Line 106: | Line 106: |
| Line 107: | Line 108: |
| Line 118: | Line 120: |
| Line 123: | Line 124: |
| Line 126: | Line 128: |
| [[CategoryAPI]], [[CategoryThread]] | [[CategoryAPI]], !CategoryThread |
DRAFT |
SDL_CreateThread
Use this function to create a new thread with the same properties as the parent thread.
Contents
Syntax
SDL_Thread* SDL_CreateThread(SDL_ThreadFunction fn,
const char* name,
void* data)
Function Parameters
fn |
the function to call in the new thread; see Remarks for details |
name |
the name of the thread; see Remarks for details |
data |
a pointer that is passed to fn |
Return Value
Returns the new thread pointer on success, NULL if the new thread could not be created. This is a pointer to an SDL defined device independent thread information structure. The returned thread pointer will be used for any subsequent calls to manage this thread.
Code Examples
#include <stdio.h>
#include <SDL_thread.h>
#include <SDL_timer.h>
int TestThread( void *ptr );
int main(int argc, char *argv[])
{
SDL_Thread *thread;
int threadReturnValue;
printf("\nSimple SDL_CreateThread test:");
// Simply create a thread
thread = SDL_CreateThread( TestThread, "TestThread", (void *)NULL);
if( NULL == thread )
printf("\nSDL_CreateThread failed: %s\n", SDL_GetError());
else
{
SDL_WaitThread( thread, &threadReturnValue);
printf("\nThread returned value:%d", threadReturnValue);
}
return 1;
}
// Very simple thread - counts 0 to 9 delaying 50ms between increments
int TestThread( void *ptr )
{
int cnt;
for(cnt=0;cnt<10;cnt++)
{
printf( "\nThread counter: %d", cnt);
SDL_Delay(50);
}
return cnt;
}
Output: Simple SDL_CreateThread test: Thread counter: 0 Thread counter: 1 Thread counter: 2 Thread counter: 3 Thread counter: 4 Thread counter: 5 Thread counter: 6 Thread counter: 7 Thread counter: 8 Thread counter: 9 Thread returned value:10
Remarks
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, passing it the void pointer data. The thread quits when fn returns.
The function prototype for fn is:
int SDL_ThreadFunction(void* data)
- where its parameter is:
data
what was passed as data to SDL_CreateThread()
Implementation Notes
Always use the caller's _beginthread() and _endthread() APIs to start a new thread. This way, if it's the SDL.DLL which uses this API, then the RTL of SDL.DLL will be used to create the new thread, and if it's the application, then the RTL of the application will be used.
Thread naming is a little complicated: Most systems have very small limits for the string length (BeOS has 32 bytes, Linux currently has 16, Visual C++ 6.0 has nine!), and possibly other arbitrary rules. You'll have to see what happens with your system's debugger. The name should be UTF-8 (but using the naming limits of C identifiers is a better bet).
There are no requirements for thread naming conventions, so long as the string is null-terminated UTF-8, but these guidelines are helpful in choosing a name:
If a system imposes requirements, SDL will try to munge the string for it (truncate, etc), but the original string contents will be available from SDL_GetThreadName().
Related Functions
CategoryAPI, CategoryThread
