SDL_thread.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997-2006 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Lesser General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2.1 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Lesser General Public License for more details.
  12.     You should have received a copy of the GNU Lesser General Public
  13.     License along with this library; if not, write to the Free Software
  14.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifndef _SDL_thread_h
  19. #define _SDL_thread_h
  20. /* Header for the SDL thread management routines 
  21. These are independent of the other SDL routines.
  22. */
  23. #include "SDL_stdinc.h"
  24. #include "SDL_error.h"
  25. /* Thread synchronization primitives */
  26. #include "SDL_mutex.h"
  27. #include "begin_code.h"
  28. /* Set up for C function definitions, even when using C++ */
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /* The SDL thread structure, defined in SDL_thread.c */
  33. struct SDL_Thread;
  34. typedef struct SDL_Thread SDL_Thread;
  35. /* Create a thread */
  36. #if ((defined(__WIN32__) && !defined(HAVE_LIBC)) || defined(__OS2__)) &&  !defined(__SYMBIAN32__)
  37. /*
  38.    We compile SDL into a DLL on OS/2. This means, that it's the DLL which
  39.    creates a new thread for the calling process with the SDL_CreateThread()
  40.    API. There is a problem with this, that only the RTL of the SDL.DLL will
  41.    be initialized for those threads, and not the RTL of the calling application!
  42.    To solve this, we make a little hack here.
  43.    We'll always use the caller's _beginthread() and _endthread() APIs to
  44.    start a new thread. This way, if it's the SDL.DLL which uses this API,
  45.    then the RTL of SDL.DLL will be used to create the new thread, and if it's
  46.    the application, then the RTL of the application will be used.
  47.    So, in short:
  48.    Always use the _beginthread() and _endthread() of the calling runtime library!
  49. */
  50. #define SDL_PASSED_BEGINTHREAD_ENDTHREAD
  51. #ifndef _WIN32_WCE
  52. #include <process.h> /* This has _beginthread() and _endthread() defined! */
  53. #endif
  54. #ifdef __OS2__
  55. typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg); 
  56. typedef void (*pfnSDL_CurrentEndThread)(void);
  57. #elif __GNUC__
  58. typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
  59.         unsigned (__stdcall *func)(void *), void *arg, 
  60.         unsigned, unsigned *threadID);
  61. typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
  62. #else
  63. typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
  64.         unsigned (__stdcall *func)(void *), void *arg, 
  65.         unsigned, unsigned *threadID);
  66. typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code);
  67. #endif
  68. extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
  69. #ifdef __OS2__
  70. #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthread, _endthread)
  71. #elif defined(_WIN32_WCE)
  72. #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, NULL, NULL)
  73. #else
  74. #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
  75. #endif
  76. #else
  77. extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data);
  78. #endif
  79. /* Get the 32-bit thread identifier for the current thread */
  80. extern DECLSPEC Uint32 SDLCALL SDL_ThreadID(void);
  81. /* Get the 32-bit thread identifier for the specified thread,
  82.    equivalent to SDL_ThreadID() if the specified thread is NULL.
  83.  */
  84. extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread);
  85. /* Wait for a thread to finish.
  86.    The return code for the thread function is placed in the area
  87.    pointed to by 'status', if 'status' is not NULL.
  88.  */
  89. extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status);
  90. /* Forcefully kill a thread without worrying about its state */
  91. extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread);
  92. /* Ends C function definitions when using C++ */
  93. #ifdef __cplusplus
  94. }
  95. #endif
  96. #include "close_code.h"
  97. #endif /* _SDL_thread_h */