🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

366 lines
13 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. #ifndef SDL_thread_h_
  19. #define SDL_thread_h_
  20. /**
  21. * \file SDL_thread.h
  22. *
  23. * Header for the SDL thread management routines.
  24. */
  25. #include "SDL_stdinc.h"
  26. #include "SDL_error.h"
  27. /* Thread synchronization primitives */
  28. #include "SDL_atomic.h"
  29. #include "SDL_mutex.h"
  30. #include "begin_code.h"
  31. /* Set up for C function definitions, even when using C++ */
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. /* The SDL thread structure, defined in SDL_thread.c */
  36. struct SDL_Thread;
  37. typedef struct SDL_Thread SDL_Thread;
  38. /* The SDL thread ID */
  39. typedef unsigned long SDL_threadID;
  40. /* Thread local storage ID, 0 is the invalid ID */
  41. typedef unsigned int SDL_TLSID;
  42. /**
  43. * The SDL thread priority.
  44. *
  45. * SDL will make system changes as necessary in order to apply the thread priority.
  46. * Code which attempts to control thread state related to priority should be aware
  47. * that calling SDL_SetThreadPriority may alter such state.
  48. * SDL_HINT_THREAD_PRIORITY_POLICY can be used to control aspects of this behavior.
  49. *
  50. * \note On many systems you require special privileges to set high or time critical priority.
  51. */
  52. typedef enum {
  53. SDL_THREAD_PRIORITY_LOW,
  54. SDL_THREAD_PRIORITY_NORMAL,
  55. SDL_THREAD_PRIORITY_HIGH,
  56. SDL_THREAD_PRIORITY_TIME_CRITICAL
  57. } SDL_ThreadPriority;
  58. /**
  59. * The function passed to SDL_CreateThread().
  60. * It is passed a void* user context parameter and returns an int.
  61. */
  62. typedef int (SDLCALL * SDL_ThreadFunction) (void *data);
  63. #if defined(__WIN32__)
  64. /**
  65. * \file SDL_thread.h
  66. *
  67. * We compile SDL into a DLL. This means, that it's the DLL which
  68. * creates a new thread for the calling process with the SDL_CreateThread()
  69. * API. There is a problem with this, that only the RTL of the SDL2.DLL will
  70. * be initialized for those threads, and not the RTL of the calling
  71. * application!
  72. *
  73. * To solve this, we make a little hack here.
  74. *
  75. * We'll always use the caller's _beginthread() and _endthread() APIs to
  76. * start a new thread. This way, if it's the SDL2.DLL which uses this API,
  77. * then the RTL of SDL2.DLL will be used to create the new thread, and if it's
  78. * the application, then the RTL of the application will be used.
  79. *
  80. * So, in short:
  81. * Always use the _beginthread() and _endthread() of the calling runtime
  82. * library!
  83. */
  84. #define SDL_PASSED_BEGINTHREAD_ENDTHREAD
  85. #include <process.h> /* _beginthreadex() and _endthreadex() */
  86. typedef uintptr_t (__cdecl * pfnSDL_CurrentBeginThread)
  87. (void *, unsigned, unsigned (__stdcall *func)(void *),
  88. void * /*arg*/, unsigned, unsigned * /* threadID */);
  89. typedef void (__cdecl * pfnSDL_CurrentEndThread) (unsigned code);
  90. #ifndef SDL_beginthread
  91. #define SDL_beginthread _beginthreadex
  92. #endif
  93. #ifndef SDL_endthread
  94. #define SDL_endthread _endthreadex
  95. #endif
  96. /**
  97. * Create a thread.
  98. */
  99. extern DECLSPEC SDL_Thread *SDLCALL
  100. SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data,
  101. pfnSDL_CurrentBeginThread pfnBeginThread,
  102. pfnSDL_CurrentEndThread pfnEndThread);
  103. extern DECLSPEC SDL_Thread *SDLCALL
  104. SDL_CreateThreadWithStackSize(int (SDLCALL * fn) (void *),
  105. const char *name, const size_t stacksize, void *data,
  106. pfnSDL_CurrentBeginThread pfnBeginThread,
  107. pfnSDL_CurrentEndThread pfnEndThread);
  108. /**
  109. * Create a thread.
  110. */
  111. #if defined(SDL_CreateThread) && SDL_DYNAMIC_API
  112. #undef SDL_CreateThread
  113. #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  114. #undef SDL_CreateThreadWithStackSize
  115. #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL(fn, name, stacksize, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  116. #else
  117. #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  118. #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)SDL_endthread)
  119. #endif
  120. #elif defined(__OS2__)
  121. /*
  122. * just like the windows case above: We compile SDL2
  123. * into a dll with Watcom's runtime statically linked.
  124. */
  125. #define SDL_PASSED_BEGINTHREAD_ENDTHREAD
  126. #ifndef __EMX__
  127. #include <process.h>
  128. #else
  129. #include <stdlib.h>
  130. #endif
  131. typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void * /*arg*/);
  132. typedef void (*pfnSDL_CurrentEndThread)(void);
  133. #ifndef SDL_beginthread
  134. #define SDL_beginthread _beginthread
  135. #endif
  136. #ifndef SDL_endthread
  137. #define SDL_endthread _endthread
  138. #endif
  139. extern DECLSPEC SDL_Thread *SDLCALL
  140. SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data,
  141. pfnSDL_CurrentBeginThread pfnBeginThread,
  142. pfnSDL_CurrentEndThread pfnEndThread);
  143. extern DECLSPEC SDL_Thread *SDLCALL
  144. SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const char *name, const size_t stacksize, void *data,
  145. pfnSDL_CurrentBeginThread pfnBeginThread,
  146. pfnSDL_CurrentEndThread pfnEndThread);
  147. #if defined(SDL_CreateThread) && SDL_DYNAMIC_API
  148. #undef SDL_CreateThread
  149. #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  150. #undef SDL_CreateThreadWithStackSize
  151. #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  152. #else
  153. #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  154. #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, name, stacksize, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread)
  155. #endif
  156. #else
  157. /**
  158. * Create a thread with a default stack size.
  159. *
  160. * This is equivalent to calling:
  161. * SDL_CreateThreadWithStackSize(fn, name, 0, data);
  162. */
  163. extern DECLSPEC SDL_Thread *SDLCALL
  164. SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data);
  165. /**
  166. * Create a thread.
  167. *
  168. * Thread naming is a little complicated: Most systems have very small
  169. * limits for the string length (Haiku has 32 bytes, Linux currently has 16,
  170. * Visual C++ 6.0 has nine!), and possibly other arbitrary rules. You'll
  171. * have to see what happens with your system's debugger. The name should be
  172. * UTF-8 (but using the naming limits of C identifiers is a better bet).
  173. * There are no requirements for thread naming conventions, so long as the
  174. * string is null-terminated UTF-8, but these guidelines are helpful in
  175. * choosing a name:
  176. *
  177. * http://stackoverflow.com/questions/149932/naming-conventions-for-threads
  178. *
  179. * If a system imposes requirements, SDL will try to munge the string for
  180. * it (truncate, etc), but the original string contents will be available
  181. * from SDL_GetThreadName().
  182. *
  183. * The size (in bytes) of the new stack can be specified. Zero means "use
  184. * the system default" which might be wildly different between platforms
  185. * (x86 Linux generally defaults to eight megabytes, an embedded device
  186. * might be a few kilobytes instead).
  187. *
  188. * In SDL 2.1, stacksize will be folded into the original SDL_CreateThread
  189. * function.
  190. */
  191. extern DECLSPEC SDL_Thread *SDLCALL
  192. SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const char *name, const size_t stacksize, void *data);
  193. #endif
  194. /**
  195. * Get the thread name, as it was specified in SDL_CreateThread().
  196. * This function returns a pointer to a UTF-8 string that names the
  197. * specified thread, or NULL if it doesn't have a name. This is internal
  198. * memory, not to be free()'d by the caller, and remains valid until the
  199. * specified thread is cleaned up by SDL_WaitThread().
  200. */
  201. extern DECLSPEC const char *SDLCALL SDL_GetThreadName(SDL_Thread *thread);
  202. /**
  203. * Get the thread identifier for the current thread.
  204. */
  205. extern DECLSPEC SDL_threadID SDLCALL SDL_ThreadID(void);
  206. /**
  207. * Get the thread identifier for the specified thread.
  208. *
  209. * Equivalent to SDL_ThreadID() if the specified thread is NULL.
  210. */
  211. extern DECLSPEC SDL_threadID SDLCALL SDL_GetThreadID(SDL_Thread * thread);
  212. /**
  213. * Set the priority for the current thread
  214. */
  215. extern DECLSPEC int SDLCALL SDL_SetThreadPriority(SDL_ThreadPriority priority);
  216. /**
  217. * Wait for a thread to finish. Threads that haven't been detached will
  218. * remain (as a "zombie") until this function cleans them up. Not doing so
  219. * is a resource leak.
  220. *
  221. * Once a thread has been cleaned up through this function, the SDL_Thread
  222. * that references it becomes invalid and should not be referenced again.
  223. * As such, only one thread may call SDL_WaitThread() on another.
  224. *
  225. * The return code for the thread function is placed in the area
  226. * pointed to by \c status, if \c status is not NULL.
  227. *
  228. * You may not wait on a thread that has been used in a call to
  229. * SDL_DetachThread(). Use either that function or this one, but not
  230. * both, or behavior is undefined.
  231. *
  232. * It is safe to pass NULL to this function; it is a no-op.
  233. */
  234. extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread * thread, int *status);
  235. /**
  236. * A thread may be "detached" to signify that it should not remain until
  237. * another thread has called SDL_WaitThread() on it. Detaching a thread
  238. * is useful for long-running threads that nothing needs to synchronize
  239. * with or further manage. When a detached thread is done, it simply
  240. * goes away.
  241. *
  242. * There is no way to recover the return code of a detached thread. If you
  243. * need this, don't detach the thread and instead use SDL_WaitThread().
  244. *
  245. * Once a thread is detached, you should usually assume the SDL_Thread isn't
  246. * safe to reference again, as it will become invalid immediately upon
  247. * the detached thread's exit, instead of remaining until someone has called
  248. * SDL_WaitThread() to finally clean it up. As such, don't detach the same
  249. * thread more than once.
  250. *
  251. * If a thread has already exited when passed to SDL_DetachThread(), it will
  252. * stop waiting for a call to SDL_WaitThread() and clean up immediately.
  253. * It is not safe to detach a thread that might be used with SDL_WaitThread().
  254. *
  255. * You may not call SDL_WaitThread() on a thread that has been detached.
  256. * Use either that function or this one, but not both, or behavior is
  257. * undefined.
  258. *
  259. * It is safe to pass NULL to this function; it is a no-op.
  260. */
  261. extern DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread * thread);
  262. /**
  263. * \brief Create an identifier that is globally visible to all threads but refers to data that is thread-specific.
  264. *
  265. * \return The newly created thread local storage identifier, or 0 on error
  266. *
  267. * \code
  268. * static SDL_SpinLock tls_lock;
  269. * static SDL_TLSID thread_local_storage;
  270. *
  271. * void SetMyThreadData(void *value)
  272. * {
  273. * if (!thread_local_storage) {
  274. * SDL_AtomicLock(&tls_lock);
  275. * if (!thread_local_storage) {
  276. * thread_local_storage = SDL_TLSCreate();
  277. * }
  278. * SDL_AtomicUnlock(&tls_lock);
  279. * }
  280. * SDL_TLSSet(thread_local_storage, value, 0);
  281. * }
  282. *
  283. * void *GetMyThreadData(void)
  284. * {
  285. * return SDL_TLSGet(thread_local_storage);
  286. * }
  287. * \endcode
  288. *
  289. * \sa SDL_TLSGet()
  290. * \sa SDL_TLSSet()
  291. */
  292. extern DECLSPEC SDL_TLSID SDLCALL SDL_TLSCreate(void);
  293. /**
  294. * \brief Get the value associated with a thread local storage ID for the current thread.
  295. *
  296. * \param id The thread local storage ID
  297. *
  298. * \return The value associated with the ID for the current thread, or NULL if no value has been set.
  299. *
  300. * \sa SDL_TLSCreate()
  301. * \sa SDL_TLSSet()
  302. */
  303. extern DECLSPEC void * SDLCALL SDL_TLSGet(SDL_TLSID id);
  304. /**
  305. * \brief Set the value associated with a thread local storage ID for the current thread.
  306. *
  307. * \param id The thread local storage ID
  308. * \param value The value to associate with the ID for the current thread
  309. * \param destructor A function called when the thread exits, to free the value.
  310. *
  311. * \return 0 on success, -1 on error
  312. *
  313. * \sa SDL_TLSCreate()
  314. * \sa SDL_TLSGet()
  315. */
  316. extern DECLSPEC int SDLCALL SDL_TLSSet(SDL_TLSID id, const void *value, void (SDLCALL *destructor)(void*));
  317. /* Ends C function definitions when using C++ */
  318. #ifdef __cplusplus
  319. }
  320. #endif
  321. #include "close_code.h"
  322. #endif /* SDL_thread_h_ */
  323. /* vi: set ts=4 sw=4 expandtab: */