diff --git a/src/include/platform/internal/GenericPlatformManagerImpl_FreeRTOS.ipp b/src/include/platform/internal/GenericPlatformManagerImpl_FreeRTOS.ipp index 383e14fed3a680..1230a91517bc69 100644 --- a/src/include/platform/internal/GenericPlatformManagerImpl_FreeRTOS.ipp +++ b/src/include/platform/internal/GenericPlatformManagerImpl_FreeRTOS.ipp @@ -46,18 +46,7 @@ CHIP_ERROR GenericPlatformManagerImpl_FreeRTOS::_InitChipStack(void) vTaskSetTimeOutState(&mNextTimerBaseTime); mNextTimerDurationTicks = 0; - // TODO: This nulling out of mEventLoopTask should happen when we shut down - // the task, not here! - mEventLoopTask = NULL; -#if defined(CHIP_DEVICE_CONFIG_ENABLE_BG_EVENT_PROCESSING) && CHIP_DEVICE_CONFIG_ENABLE_BG_EVENT_PROCESSING - mBackgroundEventLoopTask = NULL; -#endif - mChipTimerActive = false; - - // We support calling Shutdown followed by InitChipStack, because some tests - // do that. To keep things simple for existing consumers, we keep not - // destroying our lock and queue in shutdown, but rather check whether they - // already exist here before trying to create them. + mChipTimerActive = false; if (mChipStackLock == NULL) { @@ -277,10 +266,11 @@ template void GenericPlatformManagerImpl_FreeRTOS::EventLoopTaskMain(void * arg) { ChipLogDetail(DeviceLayer, "CHIP event task running"); - static_cast *>(arg)->Impl()->RunEventLoop(); - // TODO: At this point, should we not - // vTaskDelete(static_cast *>(arg)->mEventLoopTask)? - // Or somehow get our caller to do it once this thread is joined? + GenericPlatformManagerImpl_FreeRTOS * platformManager = + static_cast *>(arg); + platformManager->Impl()->RunEventLoop(); + vTaskDelete(NULL); + platformManager->mEventLoopTask = NULL; } template @@ -376,7 +366,11 @@ template void GenericPlatformManagerImpl_FreeRTOS::BackgroundEventLoopTaskMain(void * arg) { ChipLogDetail(DeviceLayer, "CHIP background task running"); - static_cast *>(arg)->Impl()->RunBackgroundEventLoop(); + GenericPlatformManagerImpl_FreeRTOS * platformManager = + static_cast *>(arg); + platformManager->Impl()->RunBackgroundEventLoop(); + vTaskDelete(NULL); + platformManager->mBackgroundEventLoopTask = NULL; } #endif @@ -416,6 +410,20 @@ void GenericPlatformManagerImpl_FreeRTOS::PostEventFromISR(const Chip template void GenericPlatformManagerImpl_FreeRTOS::_Shutdown(void) { + if (mChipEventQueue) + { + vQueueDelete(mChipEventQueue); + mChipEventQueue = NULL; + } +#if defined(CHIP_DEVICE_CONFIG_ENABLE_BG_EVENT_PROCESSING) && CHIP_DEVICE_CONFIG_ENABLE_BG_EVENT_PROCESSING + if (mBackgroundEventQueue) + { + vQueueDelete(mBackgroundEventQueue); + mBackgroundEventQueue = NULL; + } +#endif + vSemaphoreDelete(mChipStackLock); + mChipStackLock = NULL; GenericPlatformManagerImpl::_Shutdown(); }