Lines Matching refs:thread
26 /* Header for the SDL thread management routines
34 /* Thread synchronization primitives */
43 /* The SDL thread structure, defined in SDL_thread.c */
47 /* Create a thread */
51 creates a new thread for the calling process with the SDL_CreateThread()
56 start a new thread. This way, if it's the SDL.DLL which uses this API,
57 then the RTL of SDL.DLL will be used to create the new thread, and if it's
95 /* Get the 32-bit thread identifier for the current thread */
98 /* Get the 32-bit thread identifier for the specified thread,
99 equivalent to SDL_ThreadID() if the specified thread is NULL.
101 extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread);
103 /* Wait for a thread to finish.
104 The return code for the thread function is placed in the area
107 extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status);
109 /* Forcefully kill a thread without worrying about its state */
110 extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread);