mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Changes from V4.1.2:
+ BUG FIX: Removed the call to prvIsQueueEmpty from within xQueueCRReceive as it exited with interrupts enabled. Thanks Paul Katz.
This commit is contained in:
parent
6083a3a3ad
commit
b2a52ede55
|
@ -60,6 +60,10 @@ Changes from V4.0.5
|
||||||
functions exiting when a block time remains and the function has
|
functions exiting when a block time remains and the function has
|
||||||
not completed.
|
not completed.
|
||||||
|
|
||||||
|
Changes from V4.1.2:
|
||||||
|
|
||||||
|
+ BUG FIX: Removed the call to prvIsQueueEmpty from within xQueueCRReceive
|
||||||
|
as it exited with interrupts enabled. Thanks Paul Katz.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -746,7 +750,7 @@ signed portBASE_TYPE xReturn;
|
||||||
between the check to see if the queue is empty and blocking on the queue. */
|
between the check to see if the queue is empty and blocking on the queue. */
|
||||||
portDISABLE_INTERRUPTS();
|
portDISABLE_INTERRUPTS();
|
||||||
{
|
{
|
||||||
if( prvIsQueueEmpty( pxQueue ) )
|
if( pxQueue->uxMessagesWaiting == ( unsigned portBASE_TYPE ) 0 )
|
||||||
{
|
{
|
||||||
/* There are no messages in the queue, do we want to block or just
|
/* There are no messages in the queue, do we want to block or just
|
||||||
leave with nothing? */
|
leave with nothing? */
|
||||||
|
|
Loading…
Reference in a new issue