summaryrefslogtreecommitdiffstats
path: root/rust/kernel/sync
Commit message (Expand)AuthorAgeFilesLines
* rust: init/sync: add `InPlaceInit` trait to pin-initialize smart pointersBenno Lossin2023-04-121-0/+24
* rust: sync: change error type of constructor functionsBenno Lossin2023-04-121-4/+4
* rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()Asahi Lina2023-04-121-0/+11
* rust: sync: arc: Implement Arc<dyn Any + Send + Sync>::downcast()Asahi Lina2023-04-102-0/+30
* rust: sync: impl {Debug,Display} for {Unique,}ArcBoqun Feng2023-04-101-0/+25
* rust: types: implement `ForeignOwnable` for `Arc<T>`Wedson Almeida Filho2023-02-071-1/+31
* rust: sync: add support for dispatching on Arc and ArcBorrow.Wedson Almeida Filho2023-01-161-2/+18
* rust: sync: introduce `UniqueArc`Wedson Almeida Filho2023-01-161-2/+150
* rust: sync: allow type of `self` to be `ArcBorrow<T>`Wedson Almeida Filho2023-01-161-0/+23
* rust: sync: introduce `ArcBorrow`Wedson Almeida Filho2023-01-161-0/+97
* rust: sync: allow coercion from `Arc<T>` to `Arc<U>`Wedson Almeida Filho2023-01-161-1/+26
* rust: sync: allow type of `self` to be `Arc<T>` or variantsWedson Almeida Filho2023-01-161-0/+28
* rust: sync: add `Arc` for ref-counted allocationsWedson Almeida Filho2023-01-161-0/+157