diff options
author | ZeroC Staff <git@zeroc.com> | 2007-12-21 16:01:29 -0500 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2007-12-21 16:01:29 -0500 |
commit | e2371ec5865e46ed5a7f080efafaf3e19bb4a8ee (patch) | |
tree | 1a55bd36abebc1623769f8597c24ba1e96fb8732 /cpp/include/IceUtil/Cond.h | |
parent | Fixed depend (diff) | |
download | ice-e2371ec5865e46ed5a7f080efafaf3e19bb4a8ee.tar.bz2 ice-e2371ec5865e46ed5a7f080efafaf3e19bb4a8ee.tar.xz ice-e2371ec5865e46ed5a7f080efafaf3e19bb4a8ee.zip |
Windows / VC6 fixes
Diffstat (limited to 'cpp/include/IceUtil/Cond.h')
-rw-r--r-- | cpp/include/IceUtil/Cond.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/IceUtil/Cond.h b/cpp/include/IceUtil/Cond.h index c22a507c01c..44c04b6ec2d 100644 --- a/cpp/include/IceUtil/Cond.h +++ b/cpp/include/IceUtil/Cond.h @@ -34,7 +34,7 @@ public: ICE_UTIL_API ~Semaphore(); void wait() const; - bool timedWait(const Time&) const; + bool timedWait(const IceUtil::Time&) const; void post(int = 1) const; private: @@ -187,8 +187,8 @@ private: ICE_UTIL_API void dowait() const; Mutex _internal; - Semaphore _gate; - Semaphore _queue; + IceUtilInternal::Semaphore _gate; + IceUtilInternal::Semaphore _queue; mutable long _blocked; mutable long _unblocked; enum State |