From 521052ae1fd5e99898651d912bdd09f97c32185d Mon Sep 17 00:00:00 2001 From: Daniel Pereira Carvalho Date: Thu, 29 Nov 2018 11:06:31 -0600 Subject: [PATCH] apps/system/critmon/Makefile: Stack size and priority reversed. --- system/critmon/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/critmon/Makefile b/system/critmon/Makefile index c2d38a72a..b4ddff66e 100644 --- a/system/critmon/Makefile +++ b/system/critmon/Makefile @@ -37,8 +37,8 @@ # Stack Monitor Application -CONFIG_SYSTEM_CRITMONITOR_PRIORITY ?= 2048 -CONFIG_SYSTEM_CRITMONITOR_STACKSIZE ?= SCHED_DAEMON_PRIORITY_DEFAULT +CONFIG_SYSTEM_CRITMONITOR_PRIORITY ?= SCHED_PRIORITY_DEFAULT +CONFIG_SYSTEM_CRITMONITOR_STACKSIZE ?= 2048 PRIORITY = $(CONFIG_SYSTEM_CRITMONITOR_PRIORITY) STACKSIZE = $(CONFIG_SYSTEM_CRITMONITOR_STACKSIZE)