Condition
上传用户: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. // Condition - C++ condition class
  20. // ~~~~~~~~~
  21. //
  22. #ifndef _OPENTHREADS_CONDITION_
  23. #define _OPENTHREADS_CONDITION_
  24. #include "Exports"
  25. #include "Mutex"
  26. namespace OpenThreads {
  27. /**
  28.  *  @class Condition
  29.  *  @brief  This class provides an object-oriented thread condition interface.
  30.  */
  31. class OPENTHREAD_EXPORT_DIRECTIVE Condition {
  32. public:
  33.     /**
  34.      *  Constructor
  35.      */
  36.     Condition();
  37.     /**
  38.      *  Destructor
  39.      */
  40.     virtual ~Condition();
  41.     /**
  42.      *  Wait on a mutex.
  43.      */
  44.     int wait(Mutex *mutex);
  45.     /**
  46.      *  Wait on a mutex for a given amount of time (ms)
  47.      *
  48.      *  @return 0 if normal, -1 if errno set, errno code otherwise.
  49.      */
  50.     int wait(Mutex *mutex, unsigned long int ms);
  51.     /**
  52.      *  Signal a SINGLE thread to wake if it's waiting.
  53.      *
  54.      *  @return 0 if normal, -1 if errno set, errno code otherwise.
  55.      */
  56.     int signal();
  57.     /**
  58.      *  Wake all threads waiting on this condition.
  59.      *
  60.      *  @return 0 if normal, -1 if errno set, errno code otherwise.
  61.      */
  62.     int broadcast();
  63. private:
  64.     /**
  65.      *  Private copy constructor, to prevent tampering.
  66.      */
  67.     Condition(const Condition &) {};
  68.     /**
  69.      *  Private copy assignment, to prevent tampering.
  70.      */
  71.     Condition &operator=(const Condition &) {return *(this);};
  72.     /**
  73.      *  Implementation-specific data
  74.      */
  75.     void *_prvData;
  76. };
  77. }
  78. #endif // !_OPENTHREADS_CONDITION_