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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL 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. #include <ndb_global.h>
  14. #include <NdbThread.h>
  15. #include <NdbMutex.h>
  16. #include <NdbMem.h>
  17. NdbMutex* NdbMutex_Create(void)
  18. {
  19.   NdbMutex* pNdbMutex;
  20.   int result;
  21.   DBUG_ENTER("NdbMutex_Create");
  22.   
  23.   pNdbMutex = (NdbMutex*)NdbMem_Allocate(sizeof(NdbMutex));
  24.   DBUG_PRINT("info",("NdbMem_Allocate 0x%lx",pNdbMutex));
  25.   
  26.   if (pNdbMutex == NULL)
  27.     DBUG_RETURN(NULL);
  28.   
  29.   result = pthread_mutex_init(pNdbMutex, NULL);
  30.   assert(result == 0);
  31.      
  32.   DBUG_RETURN(pNdbMutex);      
  33. }
  34. int NdbMutex_Destroy(NdbMutex* p_mutex)
  35. {
  36.   int result;
  37.   DBUG_ENTER("NdbMutex_Destroy");
  38.   if (p_mutex == NULL)
  39.     DBUG_RETURN(-1);
  40.   result = pthread_mutex_destroy(p_mutex);
  41.   DBUG_PRINT("info",("NdbMem_Free 0x%lx",p_mutex));
  42.   NdbMem_Free(p_mutex);
  43.      
  44.   DBUG_RETURN(result);
  45. }
  46. int NdbMutex_Lock(NdbMutex* p_mutex)
  47. {
  48.   int result;
  49.   if (p_mutex == NULL)
  50.     return -1;
  51.   result = pthread_mutex_lock(p_mutex);
  52.   
  53.   return result;
  54. }
  55. int NdbMutex_Unlock(NdbMutex* p_mutex)
  56. {
  57.   int result;
  58.   if (p_mutex == NULL)
  59.     return -1;
  60.   result = pthread_mutex_unlock(p_mutex);
  61.      
  62.   return result;
  63. }
  64. int NdbMutex_Trylock(NdbMutex* p_mutex)
  65. {
  66.   int result = -1;
  67.   if (p_mutex != NULL) {
  68.     result = pthread_mutex_trylock(p_mutex);
  69.   }
  70.   return result;
  71. }