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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 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.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_sysmutex.c,v 1.4 2002/04/22 21:38:03 wmay Exp $";
  21. #endif
  22. /* An implementation of mutexes using semaphores */
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include "SDL_error.h"
  26. #include "SDL_thread.h"
  27. #include "SDL_systhread_c.h"
  28. struct SDL_mutex {
  29. int recursive;
  30. Uint32 owner;
  31. SDL_sem *sem;
  32. };
  33. /* Create a mutex */
  34. SDL_mutex *SDL_CreateMutex(void)
  35. {
  36. SDL_mutex *mutex;
  37. /* Allocate mutex memory */
  38. mutex = (SDL_mutex *)malloc(sizeof(*mutex));
  39. if ( mutex ) {
  40. /* Create the mutex semaphore, with initial value 1 */
  41. mutex->sem = SDL_CreateSemaphore(1);
  42. mutex->recursive = 0;
  43. mutex->owner = 0;
  44. if ( ! mutex->sem ) {
  45. free(mutex);
  46. mutex = NULL;
  47. }
  48. } else {
  49. SDL_OutOfMemory();
  50. }
  51. return mutex;
  52. }
  53. /* Free the mutex */
  54. void SDL_DestroyMutex(SDL_mutex *mutex)
  55. {
  56. if ( mutex ) {
  57. if ( mutex->sem ) {
  58. SDL_DestroySemaphore(mutex->sem);
  59. }
  60. free(mutex);
  61. }
  62. }
  63. /* Lock the semaphore */
  64. int SDL_mutexP(SDL_mutex *mutex)
  65. {
  66. #ifdef DISABLE_THREADS
  67. return 0;
  68. #else
  69. Uint32 this_thread;
  70. if ( mutex == NULL ) {
  71. SDL_SetError("Passed a NULL mutex");
  72. return -1;
  73. }
  74. this_thread = SDL_ThreadID();
  75. if ( mutex->owner == this_thread ) {
  76. ++mutex->recursive;
  77. } else {
  78. /* The order of operations is important.
  79.    We set the locking thread id after we obtain the lock
  80.    so unlocks from other threads will fail.
  81. */
  82. SDL_SemWait(mutex->sem);
  83. mutex->owner = this_thread;
  84. mutex->recursive = 0;
  85. }
  86. return 0;
  87. #endif /* DISABLE_THREADS */
  88. }
  89. /* Unlock the mutex */
  90. int SDL_mutexV(SDL_mutex *mutex)
  91. {
  92. #ifdef DISABLE_THREADS
  93. return 0;
  94. #else
  95. if ( mutex == NULL ) {
  96. SDL_SetError("Passed a NULL mutex");
  97. return -1;
  98. }
  99. /* If we don't own the mutex, we can't unlock it */
  100. if ( SDL_ThreadID() != mutex->owner ) {
  101. SDL_SetError("mutex not owned by this thread");
  102. return -1;
  103. }
  104. if ( mutex->recursive ) {
  105. --mutex->recursive;
  106. } else {
  107. /* The order of operations is important.
  108.    First reset the owner so another thread doesn't lock
  109.    the mutex and set the ownership before we reset it,
  110.    then release the lock semaphore.
  111.  */
  112. mutex->owner = 0;
  113. SDL_SemPost(mutex->sem);
  114. }
  115. return 0;
  116. #endif /* DISABLE_THREADS */
  117. }