Barrier
上传用户: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. // Barrier - C++ barrier class
  20. // ~~~~~~~
  21. // 
  22. #ifndef _OPENTHREADS_BARRIER_
  23. #define _OPENTHREADS_BARRIER_
  24. #include "Exports"
  25. namespace OpenThreads {
  26. /**
  27.  *  @class Barrier
  28.  *  @brief This class provides an object-oriented thread barrier interface
  29.  *
  30.  *  @warning It is unwise to use the construct "Barrier barrier" in the
  31.  *           global namespace on sgi's.  The object "barrier"
  32.  *           will confilict with the c-library sproc function "barrier" and
  33.  *           unpredictable results may occur. You have been warned.
  34.  */
  35. class OPENTHREAD_EXPORT_DIRECTIVE Barrier {
  36. public:
  37.     /**
  38.      *  Constructor
  39.      */
  40.     Barrier(int numThreads=0);
  41.     /**
  42.      *  Destructor
  43.      */
  44.     virtual ~Barrier();
  45.     /**
  46.      *  Reset the barrier to it's original state.
  47.      */
  48.     virtual void reset();
  49.     /**
  50.      *  Block until numThreads threads have entered the barrier.
  51.      */
  52.     virtual void block(unsigned int numThreads=0);
  53. private:
  54.     /**
  55.      *  Private copy constructor, to prevent tampering.
  56.      */
  57.     Barrier(const Barrier &) {};
  58.     /**
  59.      *  Private copy assignment, to prevent tampering.
  60.      */
  61.     Barrier &operator=(const Barrier &) {return *(this);};
  62.     /**
  63.      *  Implementation-specific private data.
  64.      */
  65.     void *_prvData;
  66. };
  67. }
  68. #endif // !_OPENTHREADS_BARRIER_