SDL  2.0
SDL_systhread.h File Reference
#include "../SDL_internal.h"
#include "SDL_thread.h"
#include "SDL_thread_c.h"
+ Include dependency graph for SDL_systhread.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int SDL_SYS_CreateThread (SDL_Thread *thread, void *args)
 
void SDL_SYS_SetupThread (const char *name)
 
int SDL_SYS_SetThreadPriority (SDL_ThreadPriority priority)
 
void SDL_SYS_WaitThread (SDL_Thread *thread)
 
void SDL_SYS_DetachThread (SDL_Thread *thread)
 
SDL_TLSDataSDL_SYS_GetTLSData ()
 
int SDL_SYS_SetTLSData (SDL_TLSData *data)
 

Function Documentation

int SDL_SYS_CreateThread ( SDL_Thread thread,
void args 
)

Definition at line 35 of file SDL_systhread.c.

References SDL_Thread::handle, RunThread(), SDL_atoi, SDL_GetHint, SDL_HINT_THREAD_STACK_SIZE, SDL_OutOfMemory, SDL_SetError, and SDL_TRUE.

Referenced by SDL_CreateThread().

37 {
38  return SDL_SetError("Threads are not supported on this platform");
39 }
#define SDL_SetError
void SDL_SYS_DetachThread ( SDL_Thread thread)

Definition at line 66 of file SDL_systhread.c.

References SDL_Thread::handle.

Referenced by SDL_DetachThread().

67 {
68  return;
69 }
int SDL_SYS_SetThreadPriority ( SDL_ThreadPriority  priority)

Definition at line 54 of file SDL_systhread.c.

References SDL_SetError, SDL_THREAD_PRIORITY_HIGH, and SDL_THREAD_PRIORITY_LOW.

Referenced by SDL_SetThreadPriority().

55 {
56  return (0);
57 }
int SDL_SYS_SetTLSData ( SDL_TLSData data)

Definition at line 33 of file SDL_systls.c.

References generic_local_storage, SDL_Generic_SetTLSData(), SDL_SetError, and thread_local_storage.

Referenced by SDL_TLSCleanup(), and SDL_TLSSet().

34 {
35  return SDL_Generic_SetTLSData(data);
36 }
int SDL_Generic_SetTLSData(SDL_TLSData *storage)
Definition: SDL_thread.c:162
void SDL_SYS_SetupThread ( const char *  name)

Definition at line 42 of file SDL_systhread.c.

References i, NULL, SDL_assert, SDL_snprintf, SDL_ThreadID(), and sig_list.

Referenced by SDL_RunThread().

43 {
44  return;
45 }
void SDL_SYS_WaitThread ( SDL_Thread thread)

Definition at line 60 of file SDL_systhread.c.

References SDL_Thread::handle.

Referenced by SDL_WaitThread().

61 {
62  return;
63 }