mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Ensure that xTaskGetCurrentTaskHandle is included (#507)
This commits adds a check that INCLUDE_xTaskGetCurrentTaskHandle is set to 1. A compile time error message is produced if it is not set to 1. This is needed because stream_buffer.c uses xTaskGetCurrentTaskHandle. This was reported here - https://forums.freertos.org/t/xstreambufferreceive-include-xtaskgetcur/15283 Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
parent
90d920466e
commit
7af41c29cb
|
@ -44,6 +44,10 @@
|
||||||
#error configUSE_TASK_NOTIFICATIONS must be set to 1 to build stream_buffer.c
|
#error configUSE_TASK_NOTIFICATIONS must be set to 1 to build stream_buffer.c
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ( INCLUDE_xTaskGetCurrentTaskHandle != 1 )
|
||||||
|
#error INCLUDE_xTaskGetCurrentTaskHandle must be set to 1 to build stream_buffer.c
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Lint e961, e9021 and e750 are suppressed as a MISRA exception justified
|
/* Lint e961, e9021 and e750 are suppressed as a MISRA exception justified
|
||||||
* because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined
|
* because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined
|
||||||
* for the header files above, but not in this file, in order to generate the
|
* for the header files above, but not in this file, in order to generate the
|
||||||
|
|
Loading…
Reference in a new issue