aboutsummaryrefslogtreecommitdiff
path: root/dep/src/ace/Countdown_Time.cpp
diff options
context:
space:
mode:
authorRat <none@none>2010-06-07 19:35:24 +0200
committerRat <none@none>2010-06-07 19:35:24 +0200
commite4e13c2bb8c691486ac717b206f166f33c8c531a (patch)
treea0ab601406c1396d41527a49392725c8179a6d8a /dep/src/ace/Countdown_Time.cpp
parent32546e22828e793e3881e1055acb72b6a044e331 (diff)
removed 'dep' folder, no more needed
--HG-- branch : trunk
Diffstat (limited to 'dep/src/ace/Countdown_Time.cpp')
-rw-r--r--dep/src/ace/Countdown_Time.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/dep/src/ace/Countdown_Time.cpp b/dep/src/ace/Countdown_Time.cpp
deleted file mode 100644
index 3b3eede4364..00000000000
--- a/dep/src/ace/Countdown_Time.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-#include "ace/Countdown_Time.h"
-#include "ace/OS_NS_sys_time.h"
-
-ACE_RCSID (ace,
- Countdown_Time,
- "$Id: Countdown_Time.cpp 80826 2008-03-04 14:51:23Z wotte $")
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_Countdown_Time::ACE_Countdown_Time (ACE_Time_Value *max_wait_time)
- : max_wait_time_ (max_wait_time),
- stopped_ (false)
-{
- this->start ();
-}
-
-ACE_Countdown_Time::~ACE_Countdown_Time (void)
-{
- this->stop ();
-}
-
-void
-ACE_Countdown_Time::start (void)
-{
- if (this->max_wait_time_ != 0)
- {
- this->start_time_ = ACE_OS::gettimeofday ();
- this->stopped_ = false;
- }
-}
-
-bool
-ACE_Countdown_Time::stopped (void) const
-{
- return stopped_;
-}
-
-void
-ACE_Countdown_Time::stop (void)
-{
- if (this->max_wait_time_ != 0 && this->stopped_ == false)
- {
- ACE_Time_Value elapsed_time = ACE_OS::gettimeofday () - this->start_time_;
-
- if (*this->max_wait_time_ > elapsed_time)
- {
- *this->max_wait_time_ -= elapsed_time;
- }
- else
- {
- // Used all of timeout.
- *this->max_wait_time_ = ACE_Time_Value::zero;
- // errno = ETIME;
- }
- this->stopped_ = true;
- }
-}
-
-void
-ACE_Countdown_Time::update (void)
-{
- this->stop ();
- this->start ();
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL
-