From 09b114e884d0b38770f9cecdefd87c8a8ba289f7 Mon Sep 17 00:00:00 2001 From: buxiasen Date: Fri, 21 Jun 2024 16:50:05 +0800 Subject: [PATCH] testing/cpuload: increase thread prio make simulate load can be more accurate in normal business code. Signed-off-by: buxiasen --- testing/cpuload/CMakeLists.txt | 2 +- testing/cpuload/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/cpuload/CMakeLists.txt b/testing/cpuload/CMakeLists.txt index 43e776cf6..533ddbc46 100644 --- a/testing/cpuload/CMakeLists.txt +++ b/testing/cpuload/CMakeLists.txt @@ -23,7 +23,7 @@ if(CONFIG_TESTING_CPULOAD) NAME cpuload PRIORITY - 100 + 253 STACKSIZE ${CONFIG_DEFAULT_TASK_STACKSIZE} MODULE diff --git a/testing/cpuload/Makefile b/testing/cpuload/Makefile index 2bb7191f2..9ffc6394e 100644 --- a/testing/cpuload/Makefile +++ b/testing/cpuload/Makefile @@ -21,7 +21,7 @@ include $(APPDIR)/Make.defs PROGNAME = cpuload -PRIORITY = 100 +PRIORITY = 253 STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE) MODULE = $(CONFIG_TESTING_CPULOAD)