Redefinition in latest master

Hi !

I have update my enviroment from RTOS master branch and few redifinitions pop-up in code:

1
…/amazon-freertos/freertos_kernel/include/task.h:2159: warning: “xTaskNotifyWait” redefined
#define xTaskNotifyWait( ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait ) xTaskGenericNotifyWait( tskDEFAULT_INDEX_TO_NOTIFY, ( ulBitsToClearOnEntry ), ( ulBitsToClearOnExit ), ( pulNotificationValue ), ( xTicksToWait ) )

In file included from …/amazon-freertos/freertos_kernel/include/portable.h:99,
from …/amazon-freertos/freertos_kernel/include/FreeRTOS.h:62,
from …/amazon-freertos/freertos_kernel/croutine.c:28:
…/amazon-freertos/freertos_kernel/include/mpu_wrappers.h:82: note: this is the location of the previous definition
#define xTaskNotifyWait MPU_xTaskNotifyWait

…/amazon-freertos/freertos_kernel/include/task.h:2412: warning: “ulTaskNotifyTake” redefined
#define ulTaskNotifyTake( xClearCountOnExit, xTicksToWait ) ulTaskGenericNotifyTake( ( tskDEFAULT_INDEX_TO_NOTIFY ), ( xClearCountOnExit ), ( xTicksToWait ) )

In file included from …/amazon-freertos/freertos_kernel/include/portable.h:99,
from …/amazon-freertos/freertos_kernel/include/FreeRTOS.h:62,
from …/amazon-freertos/freertos_kernel/croutine.c:28:
…/amazon-freertos/freertos_kernel/include/mpu_wrappers.h:83: note: this is the location of the previous definition
#define ulTaskNotifyTake MPU_ulTaskNotifyTake

In file included from …/amazon-freertos/freertos_kernel/croutine.c:29:
…/amazon-freertos/freertos_kernel/include/task.h:2470: warning: “xTaskNotifyStateClear” redefined
#define xTaskNotifyStateClear( xTask ) xTaskGenericNotifyStateClear( ( xTask ), ( tskDEFAULT_INDEX_TO_NOTIFY ) )

Or this is my local problem ?

Regards,
Eugene

It has been addressed with this PR: https://github.com/FreeRTOS/FreeRTOS-Kernel/pull/79

Please sync with master again.

Thanks,
Gaurav