diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2013-12-05 09:15:53 -0800 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2013-12-05 09:15:53 -0800 |
commit | 6d19d31eed55e18709c95363beafe8f679d6070c (patch) | |
tree | 945280a95c48b1e89061d6fd303beed1c5692257 /lib/Core/ExecutorTimerInfo.h | |
parent | 7c415a118f1bfc291cc6f2479b78db8041db95a4 (diff) | |
parent | 29c87addb0bf80baafc5f561cb68509a70a5b1c5 (diff) | |
download | klee-6d19d31eed55e18709c95363beafe8f679d6070c.tar.gz |
Merge pull request #11 from MartinNowack/Memleaks
Patch Set II - Memleaks
Diffstat (limited to 'lib/Core/ExecutorTimerInfo.h')
-rw-r--r-- | lib/Core/ExecutorTimerInfo.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/Core/ExecutorTimerInfo.h b/lib/Core/ExecutorTimerInfo.h new file mode 100644 index 00000000..60977b74 --- /dev/null +++ b/lib/Core/ExecutorTimerInfo.h @@ -0,0 +1,42 @@ +//===-- Executor.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 EXECUTORTIMERINFO_H_ +#define EXECUTORTIMERINFO_H_ + +#include "klee/Internal/System/Time.h" + +namespace klee { + +class Executor::TimerInfo { +public: + Timer *timer; + + /// Approximate delay per timer firing. + double rate; + /// Wall time for next firing. + double nextFireTime; + +public: + TimerInfo(Timer *_timer, double _rate) + : timer(_timer), + rate(_rate), + nextFireTime(util::getWallTime() + rate) {} + ~TimerInfo() { delete timer; } +}; + + +} + + +#endif /* EXECUTORTIMERINFO_H_ */ |