diff options
Diffstat (limited to 'lib/Core/ExecutorTimerInfo.h')
-rw-r--r-- | lib/Core/ExecutorTimerInfo.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/lib/Core/ExecutorTimerInfo.h b/lib/Core/ExecutorTimerInfo.h deleted file mode 100644 index 66ba5c2e..00000000 --- a/lib/Core/ExecutorTimerInfo.h +++ /dev/null @@ -1,42 +0,0 @@ -//===-- ExecutorTimerInfo.h -------------------------------------*- C++ -*-===// -// -// The KLEE Symbolic Virtual Machine -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// Class to wrap information for a timer. -// -//===----------------------------------------------------------------------===// - -#ifndef KLEE_EXECUTORTIMERINFO_H -#define KLEE_EXECUTORTIMERINFO_H - -#include "klee/Internal/System/Time.h" - -namespace klee { - -class Executor::TimerInfo { -public: - Timer *timer; - - /// Approximate delay per timer firing. - time::Span rate; - /// Wall time for next firing. - time::Point nextFireTime; - -public: - TimerInfo(Timer *_timer, time::Span _rate) - : timer(_timer), - rate(_rate), - nextFireTime(time::getWallTime() + rate) {} - ~TimerInfo() { delete timer; } -}; - - -} - - -#endif /* KLEE_EXECUTORTIMERINFO_H */ |