PTLib  Version 2.14.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
semaphor.h
Go to the documentation of this file.
1 /*
2  * semaphor.h
3  *
4  * Thread synchronisation semaphore class.
5  *
6  * Portable Tools 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  * $Revision: 29288 $
30  * $Author: rjongbloed $
31  * $Date: 2013-03-21 19:05:43 +1100 (Thu, 21 Mar 2013) $
32  */
33 
34 #ifndef PTLIB_SEMAPHORE_H
35 #define PTLIB_SEMAPHORE_H
36 
37 #ifdef P_USE_PRAGMA
38 #pragma interface
39 #endif
40 
41 #include <ptlib/psync.h>
42 #include <limits.h>
43 #include <ptlib/critsec.h>
44 
78 class PSemaphore : public PSync
79 {
80  PCLASSINFO(PSemaphore, PSync);
81 
82  public:
90  unsigned initial = 0,
91  unsigned maximum = UINT_MAX
92  ) { Reset(initial, maximum); }
93 
96  PSemaphore(const PSemaphore & sem) { Reset(sem.m_initial, sem.m_maximum); }
97 
101  ~PSemaphore();
103 
109  virtual void Wait();
110 
117  virtual PBoolean Wait(
118  const PTimeInterval & timeout // Amount of time to wait for semaphore.
119  );
120 
125  virtual void Signal();
126 
131  virtual void Reset(
132  unsigned initial = 0,
133  unsigned maximum = UINT_MAX
134  );
135 
138  unsigned GetInitial() const { return m_initial; }
139 
142  unsigned GetMaximum() const { return m_maximum; }
144 
145 
146  protected:
147  unsigned m_maximum;
148  unsigned m_initial;
149 
150 
151 // Include platform dependent part of class
152 #ifdef _WIN32
153 #include "msos/ptlib/semaphor.h"
154 #else
155 #include "unix/ptlib/semaphor.h"
156 #endif
157 };
158 
159 
160 #endif // PTLIB_SEMAPHORE_H
161 
162 
163 // End Of File ///////////////////////////////////////////////////////////////