mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-21 14:01:56 -04:00
Variable name change in the PIC32 port layer only.
This commit is contained in:
parent
14a190e79e
commit
ce9c3b7413
|
@ -201,12 +201,12 @@ extern void vPortClearInterruptMaskFromISR( unsigned portBASE_TYPE );
|
||||||
|
|
||||||
#define portYIELD() \
|
#define portYIELD() \
|
||||||
{ \
|
{ \
|
||||||
unsigned long ulStatus; \
|
unsigned long ulCause; \
|
||||||
\
|
\
|
||||||
/* Trigger software interrupt. */ \
|
/* Trigger software interrupt. */ \
|
||||||
ulStatus = _CP0_GET_CAUSE(); \
|
ulCause = _CP0_GET_CAUSE(); \
|
||||||
ulStatus |= portSW0_BIT; \
|
ulCause |= portSW0_BIT; \
|
||||||
_CP0_SET_CAUSE( ulStatus ); \
|
_CP0_SET_CAUSE( ulCause ); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef configASSERT
|
#ifdef configASSERT
|
||||||
|
|
Loading…
Reference in a new issue