sched/cpuload: move g_cpuload_wdog to private chapter

coding style

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an 2024-10-25 11:46:36 +08:00 committed by Xiang Xiao
parent 5fb0c44f38
commit 9c97f7adaa
1 changed files with 8 additions and 1 deletions

View File

@ -86,6 +86,14 @@
volatile clock_t g_cpuload_total;
/****************************************************************************
* Private Data
****************************************************************************/
#ifdef CONFIG_SCHED_CPULOAD_SYSCLK
static struct wdog_s g_cpuload_wdog;
#endif
/****************************************************************************
* Private Functions
****************************************************************************/
@ -279,7 +287,6 @@ int clock_cpuload(int pid, FAR struct cpuload_s *cpuload)
#ifdef CONFIG_SCHED_CPULOAD_SYSCLK
void cpuload_init(void)
{
static struct wdog_s g_cpuload_wdog;
wd_start(&g_cpuload_wdog, CPULOAD_SAMPLING_PERIOD, cpuload_callback,
(wdparm_t)&g_cpuload_wdog);
}