From 5f3ee7c8cb9743bee9fc8aeb2354aae38982dfa8 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 19 Oct 2018 14:26:25 +0200 Subject: [PATCH] task: use new tsc module --- common/include/villas/task.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/include/villas/task.h b/common/include/villas/task.h index 4fe9a1a8b..54956d836 100644 --- a/common/include/villas/task.h +++ b/common/include/villas/task.h @@ -26,6 +26,8 @@ #include #include +#include + #include #ifdef __cplusplus @@ -61,7 +63,7 @@ struct task { #if PERIODIC_TASK_IMPL == TIMERFD int fd; /**< The timerfd_create(2) file descriptior. */ #elif PERIODIC_TASK_IMPL == RDTSC - struct rdtsc tsc; /**< Initialized by tsc_init(). */ + struct tsc tsc; /**< Initialized by tsc_init(). */ #endif };