mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-07-10 13:29:45 -04:00
Merge f260c53d89 into 9db704cd3b
This commit is contained in:
commit
e89b2a3714
1 changed files with 5 additions and 0 deletions
|
|
@ -237,6 +237,11 @@ static inline void vPortRecursiveLock( BaseType_t xCoreID,
|
|||
}
|
||||
spin_lock_unsafe_blocking(pxSpinLock);
|
||||
}
|
||||
else
|
||||
{
|
||||
/* spin_try_lock_unsafe() does not provide acquire ordering on the fast path. */
|
||||
__mem_fence_acquire();
|
||||
}
|
||||
configASSERT( ucRecursionCountByLock[ ulLockNum ] == 0 );
|
||||
ucRecursionCountByLock[ ulLockNum ] = 1;
|
||||
ucOwnedByCore[ xCoreID ][ ulLockNum ] = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue