summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/Cond.h
diff options
context:
space:
mode:
authorZeroC Staff <git@zeroc.com>2007-12-21 16:01:29 -0500
committerZeroC Staff <git@zeroc.com>2007-12-21 16:01:29 -0500
commite2371ec5865e46ed5a7f080efafaf3e19bb4a8ee (patch)
tree1a55bd36abebc1623769f8597c24ba1e96fb8732 /cpp/include/IceUtil/Cond.h
parentFixed depend (diff)
downloadice-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.h6
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