From f737155afa79628d218c5ad413f7957a60a43d74 Mon Sep 17 00:00:00 2001 From: Bjoern Brandenburg Date: Mon, 20 Jul 2015 19:05:44 +0200 Subject: Make sure scheduling parameter struct is zeroed out --- src/task.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/task.c b/src/task.c index 3e3950c..130406b 100644 --- a/src/task.c +++ b/src/task.c @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -17,6 +18,7 @@ int task_mode(int mode) int policy = sched_getscheduler(gettid()); int old_mode = policy == SCHED_LITMUS ? LITMUS_RT_TASK : BACKGROUND_TASK; + memset(¶m, sizeof(param), 0); param.sched_priority = 0; if (old_mode == LITMUS_RT_TASK && mode == BACKGROUND_TASK) { /* transition to normal task */ -- cgit v1.2.2