mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:07:56 +02:00
![]() * Fix for InterLockedCompareExchange on ARMEL InterLockedCompareExchange would not return the current data on failure. Getting this to work correctly is a bit tricky. As kuser_cmpxchg does not return the set value, we have to load it. There is a tiny chance that we get rescheduled between calling kuser_cmpxchg and loading the value. If the value changed in between there is the possibility that we would return the Comperand without having done an actual swap. Which might cause havoc and destruction. So, if the exchange failed, compare the value and loop again in case of CurrentValue == Comperand. * Improve testing of InterLockedCompareExchange Added a test to check for the case when Comperand is different from the current value. git-svn-id: trunk@20514 - |
||
---|---|---|
.. | ||
arm.inc | ||
divide.inc | ||
int64p.inc | ||
makefile.cpu | ||
math.inc | ||
mathu.inc | ||
mathuh.inc | ||
set.inc | ||
setjump.inc | ||
setjumph.inc | ||
strings.inc | ||
stringss.inc | ||
thumb2.inc |