about summary refs log tree commit diff homepage
path: root/lib/Core/Executor.h
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2019-05-31 12:23:58 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2019-10-29 15:38:02 -0400
commitf2c9085cab7efd4468ffe44190547445fe5b15fb (patch)
treeab58746b8cdc51e1d57c097d137b3592ef5b42c2 /lib/Core/Executor.h
parentbcb0b67a5771b15105341d6ec1723db7ec1a4cc6 (diff)
downloadklee-f2c9085cab7efd4468ffe44190547445fe5b15fb.tar.gz
ExecutorTimers: remove signalling, fix endless looping fork
- adds -timer-interval threshold for timer checks
- fixes #831
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r--lib/Core/Executor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h
index 26f99b57..84231720 100644
--- a/lib/Core/Executor.h
+++ b/lib/Core/Executor.h
@@ -94,8 +94,8 @@ class Executor : public Interpreter {
 public:
   class Timer {
   public:
-    Timer();
-    virtual ~Timer();
+    Timer() = default;
+    virtual ~Timer() = default;
 
     /// The event callback.
     virtual void run() = 0;