From 10816795d0da2a35b83f0fe644022a8924977b8e Mon Sep 17 00:00:00 2001 From: Sasan Golchin <ahmad.golchin@mail.polimi.it> Date: Thu, 26 May 2016 13:55:05 +0200 Subject: [PATCH] sleeping_list of the kernel has been made static --- miosix/kernel/kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miosix/kernel/kernel.cpp b/miosix/kernel/kernel.cpp index 80856516..a07496be 100644 --- a/miosix/kernel/kernel.cpp +++ b/miosix/kernel/kernel.cpp @@ -63,7 +63,7 @@ volatile Thread *cur=NULL;///<\internal Thread currently running ///\internal True if there are threads in the DELETED status. Used by idle thread static volatile bool exist_deleted=false; -SleepData *sleeping_list=NULL;///list of sleeping threads +static SleepData *sleeping_list=NULL;///list of sleeping threads #ifndef USE_CSTIMER static volatile long long tick=0;///<\internal Kernel tick -- GitLab