blob: 60977b747bebaeaa4da137b1511e0f848d6b26b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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_ */
|