portRESET_READY_PRIORITY is only used within FreeRTOS.
 
Symbols
loading...
Files
loading...

portRESET_READY_PRIORITY macro

Syntax

#define portRESET_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) &= ~( 1UL << ( uxPriority ) )

Arguments

uxPriority

uxReadyPriorities

References

LocationText
portmacro.h:145
#define portRESET_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) &= ~( 1UL << ( uxPriority ) )
portmacro.h:181
#define portRESET_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) &= ~( 1UL << ( uxPriority ) )
tasks.c:188
portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \
tasks.c:1669
portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority );
tasks.c:4050
portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority );
tasks.c:4254
portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority );
tasks.c:5197
portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); /*lint !e931 pxCurrentTCB cannot change as it is the calling task. pxCurrentTCB->uxPriority and uxTopReadyPriority cannot change as called with scheduler suspended or in a critical section. */