diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-01-23 22:37:27 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-01-23 22:37:27 +0000 |
commit | e472963b0f661ca49b2c1f67fc17eb601923788b (patch) | |
tree | fb45d999b05a51060e29d806f214ed0186d9fb64 /cpp/include/IceUtil/AbstractMutex.h | |
parent | fixes (diff) | |
download | ice-e472963b0f661ca49b2c1f67fc17eb601923788b.tar.bz2 ice-e472963b0f661ca49b2c1f67fc17eb601923788b.tar.xz ice-e472963b0f661ca49b2c1f67fc17eb601923788b.zip |
HP-UX port
Diffstat (limited to 'cpp/include/IceUtil/AbstractMutex.h')
-rw-r--r-- | cpp/include/IceUtil/AbstractMutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/IceUtil/AbstractMutex.h b/cpp/include/IceUtil/AbstractMutex.h index 9d54a33c713..89c13de5234 100644 --- a/cpp/include/IceUtil/AbstractMutex.h +++ b/cpp/include/IceUtil/AbstractMutex.h @@ -70,7 +70,7 @@ public: virtual void lock() const { - readLock(); + T::readLock(); } virtual void unlock() const @@ -97,7 +97,7 @@ public: virtual void lock() const { - writeLock(); + T::writeLock(); } virtual void unlock() const |