Merge branch 'bugfix/freertos_xTaskNotifyGive' into 'master'

freertos: remove semicolon in xTaskNotifyGive

See merge request espressif/esp-idf!6208
This commit is contained in:
Angus Gratton 2019-10-08 12:21:40 +08:00
commit 4d7c955041

View file

@ -1962,7 +1962,7 @@ BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClea
*
* \ingroup TaskNotifications
*/
#define xTaskNotifyGive( xTaskToNotify ) xTaskNotify( ( xTaskToNotify ), 0, eIncrement );
#define xTaskNotifyGive( xTaskToNotify ) xTaskNotify( ( xTaskToNotify ), 0, eIncrement )
/**
* Simplified macro for sending task notification from ISR.