mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
portCLEAN_UP_COPROC() was an IDF specific addition to FreeRTOS, where the macro was called from prvDeleteTCB() to clean up the coprocessor context of a deleted task. This commit removes portCLEAN_UP_COPROC(). The coprocessor cleanup routine (i.e., vPortCleanUpCoprocArea()) is now called via portCLEAN_UP_TCB()-> vPortTCBPreDeleteHook(). This removes a minor code difference between IDF FreeRTOS and upstream.