summaryrefslogtreecommitdiff
path: root/ace/Synch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Synch.cpp')
-rw-r--r--ace/Synch.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Synch.cpp b/ace/Synch.cpp
index 01a446cd323..6b81248db41 100644
--- a/ace/Synch.cpp
+++ b/ace/Synch.cpp
@@ -306,10 +306,11 @@ ACE_Event::wait (void)
}
int
-ACE_Event::wait (const ACE_Time_Value *abstime)
+ACE_Event::wait (const ACE_Time_Value *abstime, int use_absolute_time)
{
return ACE_OS::event_timedwait (&this->handle_,
- (ACE_Time_Value *) abstime);
+ (ACE_Time_Value *) abstime,
+ use_absolute_time);
}
int