Mutex
上传用户:chinafayin
上传日期:2022-04-05
资源大小:153k
文件大小:2k
源码类别:

并行计算

开发平台:

Visual C++

  1. //
  2. // OpenThreads library, Copyright (C) 2002 - 2003  The Open Thread Group
  3. //
  4. // This library is free software; you can redistribute it and/or
  5. // modify it under the terms of the GNU Lesser General Public
  6. // License as published by the Free Software Foundation; either
  7. // version 2.1 of the License, or (at your option) any later version.
  8. //
  9. // This library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. // Lesser General Public License for more details.
  13. // 
  14. // You should have received a copy of the GNU Lesser General Public
  15. // License along with this library; if not, write to the Free Software
  16. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. //
  18. //
  19. // Mutex - C++ mutex class
  20. // ~~~~~
  21. //
  22. #ifndef _OPENTHREADS_MUTEX_
  23. #define _OPENTHREADS_MUTEX_
  24. #include "Exports"
  25. namespace OpenThreads {
  26. /**
  27.  *  @class Mutex
  28.  *  @brief  This class provides an object-oriented thread mutex interface.
  29.  */
  30. class OPENTHREAD_EXPORT_DIRECTIVE Mutex {
  31.     friend class Condition;
  32. public:
  33.     /**
  34.      *  Constructor
  35.      */
  36.     Mutex();
  37.     /**
  38.      *  Destructor
  39.      */
  40.     virtual ~Mutex();
  41.     /**
  42.      *  Lock the mutex
  43.      *
  44.      *  @return 0 if normal, -1 if errno set, errno code otherwise.
  45.      */
  46.     virtual int lock();
  47.     /**
  48.      *  Unlock the mutex
  49.      *
  50.      *  @return 0 if normal, -1 if errno set, errno code otherwise.
  51.      */
  52.     virtual int unlock();
  53.     /**
  54.      *  Test if mutex can be locked.
  55.      *
  56.      *  @return 0 if normal, -1 if errno set, errno code otherwise.
  57.      */
  58.     virtual int trylock();
  59. private:
  60.     /**
  61.      *  Private copy constructor, to prevent tampering.
  62.      */
  63.     Mutex(const Mutex &) {};
  64.     /**
  65.      *  Private copy assignment, to prevent tampering.
  66.      */
  67.     Mutex &operator=(const Mutex &) {return *(this);};
  68.     /**
  69.      *  Implementation-specific private data.
  70.      */
  71.     void *_prvData;
  72. };
  73. }
  74. #endif // _OPENTHREADS_MUTEX_