Wiki Page Content

Differences between revisions 1 and 2
Revision 1 as of 2011-10-03 22:06:13
Size: 950
Editor: SheenaSmith
Comment: update content - 10/3 (10/2 3a041d215edc)
Revision 2 as of 2013-08-08 19:21:46
Size: 818
Editor: Sam Lantinga
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
||<tablewidth="100%" style="color: #FF0000;" :> DRAFT||
Line 19: Line 18:
Returns a pointer to a UTF-8 string that names the specified thread, or NULL if it doesn't have a name,,; call [[SDL_GetError]]() for more information,,. Returns a pointer to a UTF-8 string that names the specified thread, or NULL if it doesn't have a name.
Line 27: Line 26:
This is internal memory, not to be free()'d by the caller, and remains valid until the specified thread is cleaned up by [[SDL_WaitThread]](). This is internal memory, not to be freed by the caller, and remains valid until the specified thread is cleaned up by [[SDL_WaitThread]]().
Line 32: Line 31:
 .[[SDL_WaitThread]]

SDL_GetThreadName

Use this function to get the thread name as it was specified in SDL_CreateThread().

Syntax

const char* SDL_GetThreadName(SDL_Thread* thread)

Function Parameters

thread

the thread to query

Return Value

Returns a pointer to a UTF-8 string that names the specified thread, or NULL if it doesn't have a name.

Code Examples

You can add your code example here

Remarks

This is internal memory, not to be freed by the caller, and remains valid until the specified thread is cleaned up by SDL_WaitThread().


CategoryAPI, CategoryThread

None: SDL_GetThreadName (last edited 2013-08-08 19:21:46 by Sam Lantinga)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit