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

系统编程

开发平台:

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_mutex_h
  19. #define _SDL_mutex_h
  20. /* Functions to provide thread synchronization primitives
  21. These are independent of the other SDL routines.
  22. */
  23. #include "SDL_stdinc.h"
  24. #include "SDL_error.h"
  25. #include "begin_code.h"
  26. /* Set up for C function definitions, even when using C++ */
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. /* Synchronization functions which can time out return this value
  31.    if they time out.
  32. */
  33. #define SDL_MUTEX_TIMEDOUT 1
  34. /* This is the timeout value which corresponds to never time out */
  35. #define SDL_MUTEX_MAXWAIT (~(Uint32)0)
  36. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  37. /* Mutex functions                                               */
  38. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  39. /* The SDL mutex structure, defined in SDL_mutex.c */
  40. struct SDL_mutex;
  41. typedef struct SDL_mutex SDL_mutex;
  42. /* Create a mutex, initialized unlocked */
  43. extern DECLSPEC SDL_mutex * SDLCALL SDL_CreateMutex(void);
  44. /* Lock the mutex  (Returns 0, or -1 on error) */
  45. #define SDL_LockMutex(m) SDL_mutexP(m)
  46. extern DECLSPEC int SDLCALL SDL_mutexP(SDL_mutex *mutex);
  47. /* Unlock the mutex  (Returns 0, or -1 on error)
  48.    It is an error to unlock a mutex that has not been locked by
  49.    the current thread, and doing so results in undefined behavior.
  50.  */
  51. #define SDL_UnlockMutex(m) SDL_mutexV(m)
  52. extern DECLSPEC int SDLCALL SDL_mutexV(SDL_mutex *mutex);
  53. /* Destroy a mutex */
  54. extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex *mutex);
  55. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  56. /* Semaphore functions                                           */
  57. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  58. /* The SDL semaphore structure, defined in SDL_sem.c */
  59. struct SDL_semaphore;
  60. typedef struct SDL_semaphore SDL_sem;
  61. /* Create a semaphore, initialized with value, returns NULL on failure. */
  62. extern DECLSPEC SDL_sem * SDLCALL SDL_CreateSemaphore(Uint32 initial_value);
  63. /* Destroy a semaphore */
  64. extern DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_sem *sem);
  65. /* This function suspends the calling thread until the semaphore pointed 
  66.  * to by sem has a positive count. It then atomically decreases the semaphore
  67.  * count.
  68.  */
  69. extern DECLSPEC int SDLCALL SDL_SemWait(SDL_sem *sem);
  70. /* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds,
  71.    SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error.
  72. */
  73. extern DECLSPEC int SDLCALL SDL_SemTryWait(SDL_sem *sem);
  74. /* Variant of SDL_SemWait() with a timeout in milliseconds, returns 0 if
  75.    the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in
  76.    the allotted time, and -1 on error.
  77.    On some platforms this function is implemented by looping with a delay
  78.    of 1 ms, and so should be avoided if possible.
  79. */
  80. extern DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem *sem, Uint32 ms);
  81. /* Atomically increases the semaphore's count (not blocking), returns 0,
  82.    or -1 on error.
  83.  */
  84. extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem *sem);
  85. /* Returns the current count of the semaphore */
  86. extern DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem *sem);
  87. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  88. /* Condition variable functions                                  */
  89. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  90. /* The SDL condition variable structure, defined in SDL_cond.c */
  91. struct SDL_cond;
  92. typedef struct SDL_cond SDL_cond;
  93. /* Create a condition variable */
  94. extern DECLSPEC SDL_cond * SDLCALL SDL_CreateCond(void);
  95. /* Destroy a condition variable */
  96. extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond *cond);
  97. /* Restart one of the threads that are waiting on the condition variable,
  98.    returns 0 or -1 on error.
  99.  */
  100. extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond *cond);
  101. /* Restart all threads that are waiting on the condition variable,
  102.    returns 0 or -1 on error.
  103.  */
  104. extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond *cond);
  105. /* Wait on the condition variable, unlocking the provided mutex.
  106.    The mutex must be locked before entering this function!
  107.    The mutex is re-locked once the condition variable is signaled.
  108.    Returns 0 when it is signaled, or -1 on error.
  109.  */
  110. extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut);
  111. /* Waits for at most 'ms' milliseconds, and returns 0 if the condition
  112.    variable is signaled, SDL_MUTEX_TIMEDOUT if the condition is not
  113.    signaled in the allotted time, and -1 on error.
  114.    On some platforms this function is implemented by looping with a delay
  115.    of 1 ms, and so should be avoided if possible.
  116. */
  117. extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);
  118. /* Ends C function definitions when using C++ */
  119. #ifdef __cplusplus
  120. }
  121. #endif
  122. #include "close_code.h"
  123. #endif /* _SDL_mutex_h */