apps/system/critmon/Makefile: Stack size and priority reversed.

This commit is contained in:
Daniel Pereira Carvalho 2018-11-29 11:06:31 -06:00 committed by Gregory Nutt
parent 1c7d0303e8
commit 521052ae1f

View File

@ -37,8 +37,8 @@
# Stack Monitor Application # Stack Monitor Application
CONFIG_SYSTEM_CRITMONITOR_PRIORITY ?= 2048 CONFIG_SYSTEM_CRITMONITOR_PRIORITY ?= SCHED_PRIORITY_DEFAULT
CONFIG_SYSTEM_CRITMONITOR_STACKSIZE ?= SCHED_DAEMON_PRIORITY_DEFAULT CONFIG_SYSTEM_CRITMONITOR_STACKSIZE ?= 2048
PRIORITY = $(CONFIG_SYSTEM_CRITMONITOR_PRIORITY) PRIORITY = $(CONFIG_SYSTEM_CRITMONITOR_PRIORITY)
STACKSIZE = $(CONFIG_SYSTEM_CRITMONITOR_STACKSIZE) STACKSIZE = $(CONFIG_SYSTEM_CRITMONITOR_STACKSIZE)