SDL_syscond.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * GNU pth conditions variables
  3.  *
  4.  * Patrice Mandin
  5.  */
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <pth.h>
  9. #include "SDL_error.h"
  10. #include "SDL_thread.h"
  11. #include "SDL_syscond_c.h"
  12. #include "SDL_sysmutex_c.h"
  13. /* Create a condition variable */
  14. SDL_cond * SDL_CreateCond(void)
  15. {
  16. SDL_cond *cond;
  17. cond = (SDL_cond *) malloc(sizeof(SDL_cond));
  18. if ( cond ) {
  19. if ( pth_cond_init(&(cond->condpth_p)) < 0 ) {
  20. SDL_SetError("pthread_cond_init() failed");
  21. free(cond);
  22. cond = NULL;
  23. }
  24. } else {
  25. SDL_OutOfMemory();
  26. }
  27. return(cond);
  28. }
  29. /* Destroy a condition variable */
  30. void SDL_DestroyCond(SDL_cond *cond)
  31. {
  32. if ( cond ) {
  33. free(cond);
  34. }
  35. }
  36. /* Restart one of the threads that are waiting on the condition variable */
  37. int SDL_CondSignal(SDL_cond *cond)
  38. {
  39. int retval;
  40. if ( ! cond ) {
  41. SDL_SetError("Passed a NULL condition variable");
  42. return -1;
  43. }
  44. retval = 0;
  45. if ( pth_cond_notify(&(cond->condpth_p), FALSE) != 0 ) {
  46. SDL_SetError("pth_cond_notify() failed");
  47. retval = -1;
  48. }
  49. return retval;
  50. }
  51. /* Restart all threads that are waiting on the condition variable */
  52. int SDL_CondBroadcast(SDL_cond *cond)
  53. {
  54. int retval;
  55. if ( ! cond ) {
  56. SDL_SetError("Passed a NULL condition variable");
  57. return -1;
  58. }
  59. retval = 0;
  60. if ( pth_cond_notify(&(cond->condpth_p), TRUE) != 0 ) {
  61. SDL_SetError("pth_cond_notify() failed");
  62. retval = -1;
  63. }
  64. return retval;
  65. }
  66. /* Wait on the condition variable for at most 'ms' milliseconds.
  67.    The mutex must be locked before entering this function!
  68.    The mutex is unlocked during the wait, and locked again after the wait.
  69. Typical use:
  70. Thread A:
  71. SDL_LockMutex(lock);
  72. while ( ! condition ) {
  73. SDL_CondWait(cond);
  74. }
  75. SDL_UnlockMutex(lock);
  76. Thread B:
  77. SDL_LockMutex(lock);
  78. ...
  79. condition = true;
  80. ...
  81. SDL_UnlockMutex(lock);
  82.  */
  83. int SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms)
  84. {
  85. int retval;
  86. pth_event_t ev;
  87. int sec;
  88. if ( ! cond ) {
  89. SDL_SetError("Passed a NULL condition variable");
  90. return -1;
  91. }
  92. retval = 0;
  93. sec = ms/1000;
  94. ev = pth_event(PTH_EVENT_TIME, pth_timeout(sec,(ms-sec*1000)*1000));
  95. if ( pth_cond_await(&(cond->condpth_p), &(mutex->mutexpth_p), ev) != 0 ) {
  96. SDL_SetError("pth_cond_await() failed");
  97. retval = -1;
  98. }
  99.     pth_event_free(ev, PTH_FREE_ALL);
  100. return retval;
  101. }
  102. /* Wait on the condition variable forever */
  103. int SDL_CondWait(SDL_cond *cond, SDL_mutex *mutex)
  104. {
  105. int retval;
  106. if ( ! cond ) {
  107. SDL_SetError("Passed a NULL condition variable");
  108. return -1;
  109. }
  110. retval = 0;
  111. if ( pth_cond_await(&(cond->condpth_p), &(mutex->mutexpth_p), NULL) != 0 ) {
  112. SDL_SetError("pth_cond_await() failed");
  113. retval = -1;
  114. }
  115. return retval;
  116. }