Mutex.cpp
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:2k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  *  OpenKore C++ Standard Library
  3.  *  Copyright (C) 2006  VCL
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Lesser General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Lesser General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Lesser General Public
  16.  *  License along with this library; if not, write to the Free Software
  17.  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18.  *  MA  02110-1301  USA
  19.  */
  20. #include "Mutex.h"
  21. namespace OSL {
  22. Mutex::Mutex() throw() {
  23. #ifdef WIN32
  24. InitializeCriticalSection(&cs);
  25. #else
  26. pthread_mutex_init(&mutex, NULL);
  27. #endif
  28. }
  29. Mutex::~Mutex() throw() {
  30. #ifdef WIN32
  31. DeleteCriticalSection(&cs);
  32. #else
  33. pthread_mutex_destroy(&mutex);
  34. #endif
  35. }
  36. void
  37. Mutex::lock() throw() {
  38. #ifdef WIN32
  39. EnterCriticalSection(&cs);
  40. #else
  41. pthread_mutex_lock(&mutex);
  42. #endif
  43. }
  44. bool
  45. Mutex::tryLock() throw() {
  46. #ifdef WIN32
  47. return TryEnterCriticalSection(&cs);
  48. #else
  49. return pthread_mutex_trylock(&mutex) == 0;
  50. #endif
  51. }
  52. void
  53. Mutex::unlock() throw() {
  54. #ifdef WIN32
  55. LeaveCriticalSection(&cs);
  56. #else
  57. pthread_mutex_unlock(&mutex);
  58. #endif
  59. }
  60. }