summaryrefslogtreecommitdiffstats
path: root/rust/kernel/sync/atomic.rs
AgeCommit message (Expand)AuthorLines
2026-03-08rust: sync: atomic: Update documentation for `fetch_add()`Andreas Hindborg-6/+4
2026-03-08rust: sync: atomic: Add fetch_sub()Andreas Hindborg-0/+43
2026-03-08rust: sync: atomic: Add atomic operation helpers over raw pointersBoqun Feng-0/+104
2026-03-08rust: sync: atomic: Add performance-optimal Flag type for atomic booleansFUJITA Tomonori-0/+125
2026-03-08rust: sync: atomic: Add Atomic<*{mut,const} T> supportBoqun Feng-1/+11
2026-03-08rust: sync: atomic: Add example for Atomic::get_mut()FUJITA Tomonori-0/+11
2026-03-08rust: sync: atomic: Remove bound `T: Sync` for `Atomic::from_ptr()`Boqun Feng-4/+1
2025-12-06rust: sync: atomic: separate import "blocks"Miguel Ojeda-0/+1
2025-11-12rust: sync: atomic: Implement Debug for Atomic<Debug>Boqun Feng-0/+9
2025-11-12rust: sync: atomic: Make Atomic*Ops pub(crate)Boqun Feng-1/+2
2025-09-15rust: sync: atomic: Add the framework of arithmetic operationsBoqun Feng-2/+92
2025-09-15rust: sync: atomic: Add atomic {cmp,}xchg operationsBoqun Feng-1/+167
2025-09-15rust: sync: atomic: Add generic atomicsBoqun Feng-0/+271
2025-09-15rust: sync: atomic: Add ordering annotation typesBoqun Feng-0/+2
2025-09-15rust: sync: Add basic atomic operation mapping frameworkBoqun Feng-0/+22