|
⇤ ← Revision 1 as of 2010-05-25 04:29:40
Size: 1072
Comment: create page, add content (Wed Mar 10 ver; changeset 4428)
|
Size: 1100
Comment: add RF
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 31: | Line 31: |
| .[[SDL_CreateThread]] ??? |
DRAFT |
SDL_WaitThread
Use this function to wait for a thread to finish.
Syntax
void SDL_WaitThread(SDL_Thread* thread,
int* status)
Function Parameters
thread |
a pointer to the [[SDL_Thread]]() to wait for |
status |
a pointer filled with status data; see Remarks for details |
Code Examples
You can add your code example here
Remarks
The return code for the thread function is placed in the area pointed to by status, if status is not NULL.
green
Related Functions
SDL_CreateThread ???
