atomiclong icon indicating copy to clipboard operation
atomiclong copied to clipboard

A CFFI using AtomicLong type for CPython and PyPy.

Results 2 atomiclong issues
Sort by recently updated
recently updated
newest added

It seems to use a compare-and-swap, meaning the value isn't always set. Shouldn't it just use `self._storage[0] = value`?