summaryrefslogtreecommitdiff
path: root/ACE/ace/Dev_Poll_Reactor.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-10-11 11:58:35 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-10-11 11:58:35 +0000
commit39b9378155f64593150ddbae7d8e409169378a3c (patch)
tree3c20f4b6a572228a9efd3de776c520393a1343c8 /ACE/ace/Dev_Poll_Reactor.cpp
parent4cd48f14cdc01606197bf9ca20fe97c5efe45e34 (diff)
downloadATCD-39b9378155f64593150ddbae7d8e409169378a3c.tar.gz
Mon Oct 11 11:53:43 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Dev_Poll_Reactor.cpp: * ace/Select_Reactor_T.cpp: Fixed problems with threads=0, thanks to Elez <elezsh at gmail dot com> for reporting this and providing a patch
Diffstat (limited to 'ACE/ace/Dev_Poll_Reactor.cpp')
-rw-r--r--ACE/ace/Dev_Poll_Reactor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Dev_Poll_Reactor.cpp b/ACE/ace/Dev_Poll_Reactor.cpp
index ec368c8f292..3a108a8abec 100644
--- a/ACE/ace/Dev_Poll_Reactor.cpp
+++ b/ACE/ace/Dev_Poll_Reactor.cpp
@@ -997,7 +997,7 @@ ACE_Dev_Poll_Reactor::handle_events (ACE_Time_Value *max_wait_time)
//
// The destructor of this object will automatically compute how much
// time elapsed since this method was called.
- ACE_MT (ACE_Countdown_Time countdown (max_wait_time));
+ ACE_Countdown_Time countdown (max_wait_time);
Token_Guard guard (this->token_);
int const result = guard.acquire_quietly (max_wait_time);