mutex.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * mutex.h
  3.  *
  4.  * Mutual exclusion thread synchonisation class.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: mutex.h,v $
  30.  * Revision 1.5  1999/03/09 02:59:50  robertj
  31.  * Changed comments to doc++ compatible documentation.
  32.  *
  33.  * Revision 1.4  1999/02/16 08:12:22  robertj
  34.  * MSVC 6.0 compatibility changes.
  35.  *
  36.  * Revision 1.3  1998/11/30 02:50:59  robertj
  37.  * New directory structure
  38.  *
  39.  * Revision 1.2  1998/09/23 06:20:55  robertj
  40.  * Added open source copyright license.
  41.  *
  42.  * Revision 1.1  1998/03/23 02:41:31  robertj
  43.  * Initial revision
  44.  *
  45.  */
  46. #define _PMUTEX
  47. #ifdef __GNUC__
  48. #pragma interface
  49. #endif
  50. #include <ptlib/semaphor.h>
  51. /**This class defines a thread mutual exclusion object. A mutex is where a
  52.    piece of code or data cannot be accessed by more than one thread at a time.
  53.    To prevent this the PMutex is used in the following manner:
  54. begin{verbatim}
  55.       PMutex mutex;
  56.       ...
  57.       mutex.Wait();
  58.       ... critical section - only one thread at a time here.
  59.       mutex.Signal();
  60.       ...
  61. end{verbatim}
  62.     The first thread will pass through the #Wait()# function, a second
  63.     thread will block on that function until the first calls the
  64.     #Signal()# function, releasing the second thread.
  65.  */
  66. class PMutex : public PSemaphore
  67. {
  68.   PCLASSINFO(PMutex, PSemaphore);
  69.   public:
  70.     /* Create a new mutex.
  71.        Initially the mutex will not be "set", so the first call to Wait() will
  72.        never wait.
  73.      */
  74.     PMutex();
  75. #ifdef DOC_PLUS_PLUS
  76. };
  77. #endif
  78. // Class declaration continued in platform specific header file ///////////////