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 (void)
int SDL_SYS_SetTLSData (SDL_TLSData *data)
SDL_ThreadSDL_CreateThreadInternal (int(*fn)(void *), const char *name, const size_t stacksize, void *data)

Function Documentation

SDL_Thread* SDL_CreateThreadInternal ( int(*)(void *)  fn,
const char *  name,
const size_t  stacksize,
void data 
)

Definition at line 429 of file SDL_thread.c.

References NULL, and SDL_CreateThreadWithStackSize.

Referenced by open_audio_device(), and SDL_TimerInit().

{
#ifdef SDL_PASSED_BEGINTHREAD_ENDTHREAD
return SDL_CreateThreadWithStackSize(fn, name, stacksize, data, NULL, NULL);
#else
return SDL_CreateThreadWithStackSize(fn, name, stacksize, data);
#endif
}
int SDL_SYS_CreateThread ( SDL_Thread thread,
void args 
)

Definition at line 35 of file SDL_systhread.c.

References SDL_Thread::handle, RunThread(), SDL_OutOfMemory, SDL_SetError, SDL_TRUE, and SDL_Thread::stacksize.

Referenced by SDL_CreateThreadWithStackSize().

{
return SDL_SetError("Threads are not supported on this platform");
}
void SDL_SYS_DetachThread ( SDL_Thread thread)

Definition at line 66 of file SDL_systhread.c.

References SDL_Thread::handle.

Referenced by SDL_DetachThread().

{
return;
}
int SDL_SYS_SetThreadPriority ( SDL_ThreadPriority  priority)
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().

{
return SDL_Generic_SetTLSData(data);
}
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().

{
return;
}
void SDL_SYS_WaitThread ( SDL_Thread thread)

Definition at line 60 of file SDL_systhread.c.

References SDL_Thread::handle.

Referenced by SDL_WaitThread().

{
return;
}