summaryrefslogtreecommitdiffstats
path: root/rust/kernel/sync
AgeCommit message (Expand)AuthorLines
2023-05-31rust: arc: fix intra-doc link in `Arc<T>::init`Miguel Ojeda-1/+1
2023-04-22rust: sync: introduce `CondVar`Wedson Almeida Filho-1/+174
2023-04-22rust: lock: add `Guard::do_unlocked`Wedson Almeida Filho-2/+30
2023-04-22rust: sync: introduce `LockedBy`Wedson Almeida Filho-1/+157
2023-04-22rust: lock: introduce `SpinLock`Wedson Almeida Filho-0/+117
2023-04-22rust: lock: introduce `Mutex`Wedson Almeida Filho-0/+120
2023-04-22rust: sync: introduce `Lock` and `Guard`Wedson Almeida Filho-0/+162
2023-04-12rust: sync: add functions for initializing `UniqueArc<MaybeUninit<T>>`Benno Lossin-0/+24
2023-04-12rust: sync: reduce stack usage of `UniqueArc::try_new_uninit`Benno Lossin-3/+13
2023-04-12rust: init/sync: add `InPlaceInit` trait to pin-initialize smart pointersBenno Lossin-0/+24
2023-04-12rust: sync: change error type of constructor functionsBenno Lossin-4/+4
2023-04-12rust: sync: arc: Add UniqueArc<MaybeUninit<T>::assume_init()Asahi Lina-0/+11
2023-04-10rust: sync: arc: Implement Arc<dyn Any + Send + Sync>::downcast()Asahi Lina-0/+30
2023-04-10rust: sync: impl {Debug,Display} for {Unique,}ArcBoqun Feng-0/+25
2023-02-07rust: types: implement `ForeignOwnable` for `Arc<T>`Wedson Almeida Filho-1/+31
2023-01-16rust: sync: add support for dispatching on Arc and ArcBorrow.Wedson Almeida Filho-2/+18
2023-01-16rust: sync: introduce `UniqueArc`Wedson Almeida Filho-2/+150
2023-01-16rust: sync: allow type of `self` to be `ArcBorrow<T>`Wedson Almeida Filho-0/+23
2023-01-16rust: sync: introduce `ArcBorrow`Wedson Almeida Filho-0/+97
2023-01-16rust: sync: allow coercion from `Arc<T>` to `Arc<U>`Wedson Almeida Filho-1/+26
2023-01-16rust: sync: allow type of `self` to be `Arc<T>` or variantsWedson Almeida Filho-0/+28
2023-01-16rust: sync: add `Arc` for ref-counted allocationsWedson Almeida Filho-0/+157