/usr/include/ptlib/critsec.h is in libpt-1.10.10-dev 1.10.10-3.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | /*
* critsec.h
*
* Critical section mutex class.
*
* Portable Windows Library
*
* Copyright (C) 2004 Post Increment
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Portable Windows Library.
*
* The Initial Developer of the Original Code is Post Increment
*
* Contributor(s): ______________________________________.
*
* $Log: critsec.h,v $
* Revision 1.15.2.1 2006/01/27 03:43:24 csoutheren
* Backported changes to CVS head into Phobos
*
* Revision 1.16 2006/01/18 07:17:59 csoutheren
* Added explicit copy constructor for PCriticalSection on Windows
*
* Revision 1.15 2005/11/30 12:47:37 csoutheren
* Removed tabs, reformatted some code, and changed tags for Doxygen
*
* Revision 1.14 2005/11/25 03:43:47 csoutheren
* Fixed function argument comments to be compatible with Doxygen
*
* Revision 1.13 2005/11/14 22:29:13 csoutheren
* Reverted Wait and Signal to non-const - there is no way we can guarantee that all
* descendant classes everywhere will be changed over, so we have to keep the
* original API
*
* Revision 1.12 2005/11/08 10:44:37 dsandras
* Fixed deadlock with code using the old API.
*
* Revision 1.11 2005/11/04 07:20:30 csoutheren
* Provide backwards compatibility functions and typedefs
*
* Revision 1.10 2005/11/04 06:34:20 csoutheren
* Added new class PSync as abstract base class for all mutex/sempahore classes
* Changed PCriticalSection to use Wait/Signal rather than Enter/Leave
* Changed Wait/Signal to be const member functions
* Renamed PMutex to PTimedMutex and made PMutex synonym for PCriticalSection.
* This allows use of very efficient mutex primitives in 99% of cases where timed waits
* are not needed
*
* Revision 1.9 2004/05/16 23:31:07 csoutheren
* Updated API documentation
*
* Revision 1.8 2004/05/12 04:36:13 csoutheren
* Fixed problems with using sem_wait and friends on systems that do not
* support atomic integers
*
* Revision 1.7 2004/04/21 11:22:56 csoutheren
* Modified to work with gcc 3.4.0
*
* Revision 1.6 2004/04/14 06:58:00 csoutheren
* Fixed PAtomicInteger and PSmartPointer to use real atomic operations
*
* Revision 1.5 2004/04/12 03:35:26 csoutheren
* Fixed problems with non-recursuve mutexes and critical sections on
* older compilers and libc
*
* Revision 1.4 2004/04/12 00:58:45 csoutheren
* Fixed PAtomicInteger on Linux, and modified PMutex to use it
*
* Revision 1.3 2004/04/12 00:36:04 csoutheren
* Added new class PAtomicInteger and added Windows implementation
*
* Revision 1.2 2004/04/11 03:20:41 csoutheren
* Added Unix implementation of PCriticalSection
*
* Revision 1.1 2004/04/11 02:55:17 csoutheren
* Added PCriticalSection for Windows
* Added compile time option for PContainer to use critical sections to provide thread safety under some circumstances
*
*/
#ifndef _PCRITICALSECTION
#define _PCRITICALSECTION
#include <ptlib/psync.h>
#if P_HAS_ATOMIC_INT
#if P_NEEDS_GNU_CXX_NAMESPACE
#define EXCHANGE_AND_ADD(v,i) __gnu_cxx::__exchange_and_add(v,i)
#else
#define EXCHANGE_AND_ADD(v,i) __exchange_and_add(v,i)
#endif
#endif
/** This class implements critical section mutexes using the most
* efficient mechanism available on the host platform.
* For Windows, CriticalSection is used.
* On other platforms, the sem_wait call is used.
*/
class PCriticalSection : public PSync
{
PCLASSINFO(PCriticalSection, PSync);
public:
/**@name Construction */
//@{
/**Create a new critical section object .
*/
PCriticalSection();
PCriticalSection(const PCriticalSection &);
/**Destroy the critical section object
*/
~PCriticalSection();
//@}
/**@name Operations */
//@{
/** Enter the critical section by waiting for exclusive access.
*/
void Wait();
inline void Enter()
{ Wait(); }
/** Leave the critical section by unlocking the mutex
*/
void Signal();
inline void Leave()
{ Signal(); }
//@}
private:
PCriticalSection & operator=(const PCriticalSection &) { return *this; }
// Include platform dependent part of class
#ifdef _WIN32
#include "msos/ptlib/critsec.h"
#else
#include "unix/ptlib/critsec.h"
#endif
};
typedef PWaitAndSignal PEnterAndLeave;
/** This class implements an integer that can be atomically
* incremented and decremented in a thread-safe manner.
* On Windows, the integer is of type long and this class is implemented using InterlockedIncrement
* and InterlockedDecrement integer is of type long.
* On Unix systems with GNU std++ support for EXCHANGE_AND_ADD, the integer is of type _Atomic_word (normally int)
* On all other systems, this class is implemented using PCriticalSection and the integer is of type int.
*/
class PAtomicInteger
{
#if defined(_WIN32) || defined(DOC_PLUS_PLUS)
public:
/** Create a PAtomicInteger with the specified initial value
*/
inline PAtomicInteger(
long v = 0 ///< initial value
)
: value(v) { }
/**
* Test if an atomic integer has a zero value. Note that this
* is a non-atomic test - use the return value of the operator++() or
* operator--() tests to perform atomic operations
*
* @return TRUE if the integer has a value of zero
*/
BOOL IsZero() const { return value == 0; }
/**
* atomically increment the integer value
*
* @return Returns the value of the integer after the increment
*/
inline long operator++() { return InterlockedIncrement(&value); }
/**
* atomically decrement the integer value
*
* @return Returns the value of the integer after the decrement
*/
inline long operator--() { return InterlockedDecrement(&value); }
/**
* @return Returns the value of the integer
*/
inline operator long () const { return value; }
/**
* Set the value of the integer
*/
inline void SetValue(
long v ///< value to set
)
{ value = v; }
protected:
long value;
#elif P_HAS_ATOMIC_INT
public:
inline PAtomicInteger(int v = 0)
: value(v) { }
BOOL IsZero() const { return value == 0; }
inline int operator++() { return EXCHANGE_AND_ADD(&value, 1) + 1; }
inline int unsigned operator--() { return EXCHANGE_AND_ADD(&value, -1) - 1; }
inline operator int () const { return value; }
inline void SetValue(int v) { value = v; }
protected:
_Atomic_word value;
#else
protected:
PCriticalSection critSec;
public:
inline PAtomicInteger(int v = 0)
: value(v) { }
BOOL IsZero() const { return value == 0; }
inline int operator++() { PWaitAndSignal m(critSec); value++; return value;}
inline int operator--() { PWaitAndSignal m(critSec); value--; return value;}
inline operator int () const { return value; }
inline void SetValue(int v) { value = v; }
private:
PAtomicInteger & operator=(const PAtomicInteger & ref) { value = (int)ref; return *this; }
protected:
int value;
#endif
};
#endif
// End Of File ///////////////////////////////////////////////////////////////
|