summaryrefslogtreecommitdiffstats
path: root/fnet/src/examples/timeout/timeout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fnet/src/examples/timeout/timeout.cpp')
-rw-r--r--fnet/src/examples/timeout/timeout.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/fnet/src/examples/timeout/timeout.cpp b/fnet/src/examples/timeout/timeout.cpp
index 7edfbe4fb1c..8a52d769282 100644
--- a/fnet/src/examples/timeout/timeout.cpp
+++ b/fnet/src/examples/timeout/timeout.cpp
@@ -1,7 +1,9 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
+#include <vespa/fastos/fastos.h>
+#include <vespa/log/log.h>
+LOG_SETUP("timeout");
#include <vespa/fnet/fnet.h>
-#include <vespa/fastos/app.h>
+
class Timeout : public FNET_Task
{
@@ -18,7 +20,7 @@ public:
_queue(queue)
{}
- void PerformTask() override;
+ virtual void PerformTask() override;
};