my_semaphore.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2002 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.  This program is free software; you can redistribute it and/or modify
  3.  it under the terms of the GNU General Public License as published by
  4.  the Free Software Foundation; either version 2 of the License, or
  5.  (at your option) any later version.
  6.  This program is distributed in the hope that it will be useful,
  7.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.  GNU General Public License for more details.
  10.  You should have received a copy of the GNU General Public License
  11.  along with this program; if not, write to the Free Software
  12.  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Simple implementation of semaphores, needed to compile MySQL on systems
  15.   that doesn't support semaphores.
  16. */
  17. #include <my_global.h>
  18. #include <my_semaphore.h>
  19. #include <errno.h>
  20. #if !defined(__WIN__) && !defined(HAVE_SEMAPHORE_H) && defined(THREAD)
  21. int sem_init(sem_t * sem, int pshared, uint value)
  22. {
  23.   sem->count=value;
  24.   pthread_cond_init(&sem->cond, 0);
  25.   pthread_mutex_init(&sem->mutex, 0);
  26.   return 0;
  27. }
  28. int sem_destroy(sem_t * sem)
  29. {
  30.   int err1,err2;
  31.   err1=pthread_cond_destroy(&sem->cond);
  32.   err2=pthread_mutex_destroy(&sem->mutex);
  33.   if (err1 || err2)
  34.   {
  35.     errno=err1 ? err1 : err2;
  36.     return -1;
  37.   }
  38.   return 0;
  39. }
  40. int sem_wait(sem_t * sem)
  41. {
  42.   if ((errno=pthread_mutex_lock(&sem->mutex)))
  43.     return -1;
  44.   while (!sem->count)
  45.     pthread_cond_wait(&sem->cond, &sem->mutex);
  46.   if (errno)
  47.     return -1;
  48.   sem->count--; /* mutex is locked here */
  49.   pthread_mutex_unlock(&sem->mutex);
  50.   return 0;
  51. }
  52. int sem_trywait(sem_t * sem)
  53. {
  54.   if ((errno=pthread_mutex_lock(&sem->mutex)))
  55.     return -1;
  56.   if (sem->count)
  57.     sem->count--;
  58.   else
  59.     errno=EAGAIN;
  60.   pthread_mutex_unlock(&sem->mutex);
  61.   return errno ? -1 : 0;
  62. }
  63. int sem_post(sem_t * sem)
  64. {
  65.   if ((errno=pthread_mutex_lock(&sem->mutex)))
  66.     return -1;
  67.   sem->count++;
  68.   pthread_mutex_unlock(&sem->mutex);    /* does it really matter what to do */
  69.   pthread_cond_signal(&sem->cond);      /* first: x_unlock or x_signal ?    */
  70.   return 0;
  71. }
  72. int sem_post_multiple(sem_t * sem, uint count)
  73. {
  74.   if ((errno=pthread_mutex_lock(&sem->mutex)))
  75.     return -1;
  76.   sem->count+=count;
  77.   pthread_mutex_unlock(&sem->mutex);    /* does it really matter what to do */
  78.   pthread_cond_broadcast(&sem->cond);   /* first: x_unlock or x_broadcast ? */
  79.   return 0;
  80. }
  81. int sem_getvalue(sem_t * sem, uint *sval)
  82. {
  83.   if ((errno=pthread_mutex_lock(&sem->mutex)))
  84.     return -1;
  85.   *sval=sem->count;
  86.   pthread_mutex_unlock(&sem->mutex);
  87.   return 0;
  88. }
  89. #endif /* !defined(__WIN__) && !defined(HAVE_SEMAPHORE_H) && defined(THREAD) */