From 09c5d0bb497996d8e5fe8382b5b86a8bcfb8a20c Mon Sep 17 00:00:00 2001 From: Dennis Potter Date: Tue, 16 Oct 2018 01:07:57 +0200 Subject: [PATCH] Changed default flag back to TIMERFD --- include/villas/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/villas/task.h b/include/villas/task.h index 9a089cc6d..aaf2caa6c 100644 --- a/include/villas/task.h +++ b/include/villas/task.h @@ -43,7 +43,7 @@ extern "C" { #if defined(__MACH__) #define PERIODIC_TASK_IMPL NANOSLEEP #elif defined(__linux__) - #define PERIODIC_TASK_IMPL RDTSC + #define PERIODIC_TASK_IMPL TIMERFD #else #error "Platform not supported" #endif