Glossary

`XCHG` with memory is always atomic

no LOCK prefix needed. This makes `XCHG [lock], al` a valid spinlock implementation without the explicit LOCK.

Learn More

Related Terms