Home
last modified time | relevance | path

Searched refs:xBitPosition (Results 1 – 1 of 1) sorted by relevance

/FreeRTOS-Kernel/portable/CCRH/F1Kx/
A Dport.c660 static void prvExclusiveLock( BaseType_t xBitPosition ) in prvExclusiveLock() argument
681 static void prvExclusiveRelease( BaseType_t xBitPosition ) in prvExclusiveRelease() argument
694 BaseType_t xBitPosition = ( xFromIsr == pdTRUE ); in vPortRecursiveLockAcquire() local
698 if( uxLockNesting[ xCoreID ][ xBitPosition ] == 0 ) in vPortRecursiveLockAcquire()
700 prvExclusiveLock( xBitPosition ); in vPortRecursiveLockAcquire()
703 uxLockNesting[ xCoreID ][ xBitPosition ]++; in vPortRecursiveLockAcquire()
710 BaseType_t xBitPosition = ( xFromIsr == pdTRUE ); in vPortRecursiveLockRelease() local
719 configASSERT( ( uxLockNesting[ xCoreID ][ xBitPosition ] > 0 ) ); in vPortRecursiveLockRelease()
720 uxLockNesting[ xCoreID ][ xBitPosition ]--; in vPortRecursiveLockRelease()
722 if( uxLockNesting[ xCoreID ][ xBitPosition ] == 0 ) in vPortRecursiveLockRelease()
[all …]

Completed in 5 milliseconds