Merge branch 'feature/freertos_disable_mutex_owner_check_for_smp' into 'master'

freertos-smp: Disable CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER for FreeRTOS SMP

Closes IDF-5296

See merge request espressif/esp-idf!20782
This commit is contained in:
Zim Kalinowski
2022-10-26 17:47:37 +08:00

View File

@@ -313,7 +313,9 @@ menu "FreeRTOS"
Note: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback Note: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback
config FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER config FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER
# Todo: Not supported on SMP FreeRTOS (IDF-4986) # This feature is innately supported in FreeRTOS SMP, and hence not available as a config option when
# FreeRTOS SMP is enabled.
depends on !FREERTOS_SMP
bool "Check that mutex semaphore is given by owner task" bool "Check that mutex semaphore is given by owner task"
default y default y
help help