|
Size: 1134
Comment: update content - pointers, structs
|
Size: 1156
Comment: update content - pointers, structs
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 17: | Line 17: |
| ||'''thread'''||^the [[SDL_Thread]] to wait for^|| ||'''status'''||^status data^; see [[#Remarks|Remarks]] for details|| |
||'''thread'''||^the thread to wait for^|| ||'''status'''||^the pointer to receive the return code???^; see [[#Remarks|Remarks]] for details|| |
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 |
the thread to wait for |
status |
the pointer to receive the return code???; see Remarks for details |
green
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
