summary refs log tree commit diff
path: root/src/liballoc/sync.rs
AgeCommit message (Expand)AuthorLines
2019-06-16make `Weak::ptr_eq`s into methodsThomas Heck-7/+7
2019-06-13docs: Use String in Rc::into_raw examplesMichal 'vorner' Vaner-14/+14
2019-05-26sync::Weak::{as,from,into}_rawMichal 'vorner' Vaner-6/+158
2019-05-11add comment to `Rc`/`Arc`'s `Eq` specializationThomas Heck-0/+5
2019-04-18make liballoc internal test suite mostly pass in MiriRalf Jung-0/+2
2019-02-10libs: doc commentsAlexander Regueiro-4/+4
2019-02-03liballoc: revert nested imports style changes.Mazdak Farrokhzad-42/+36
2019-02-02liballoc: fix some idiom lints.Mazdak Farrokhzad-4/+4
2019-02-02liballoc: elide some lifetimes.Mazdak Farrokhzad-2/+2
2019-02-02liballoc: adjust abolute imports + more import fixes.Mazdak Farrokhzad-2/+1
2019-02-02liballoc: refactor & fix some imports.Mazdak Farrokhzad-39/+42
2019-02-02liballoc: cargo check passes on 2018Mazdak Farrokhzad-5/+5
2019-01-31Auto merge of #56696 - jonas-schievink:weak-counts, r=alexcrichtonbors-1/+83
2019-01-29Add tracking issue to unstable attributeJonas Schievink-2/+2
2019-01-29Make weak_count return an Option<usize>Jonas Schievink-12/+10
2019-01-29Implement a slightly racy `sync::Weak::weak_count`Jonas Schievink-5/+70
2019-01-29Implement Weak::{strong_count, weak_count}Jonas Schievink-0/+19
2019-01-28Introduce into_raw_non_null on Rc and ArcDale Wijnand-0/+21
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-23Rollup merge of #56939 - cramertj:pin-stabilization, r=alexcrichtonMazdak Farrokhzad-3/+5
2018-12-23Rollup merge of #56941 - euclio:deny-libstd-resolution-failures, r=QuietMisdr...kennytm-1/+4
2018-12-21Rename Box/Arc/Rc::pinned to ::pinTaylor Cramer-1/+3
2018-12-21Stabilize PinTaylor Cramer-2/+2
2018-12-20Stabilize `Rc`, `Arc` and `Pin` as method receiversMichael Hewson-1/+4
2018-12-17deny intra-doc link resolution failures in libstdAndy Russell-1/+4
2018-12-08Use private trait for Rc/Arc Eq specializationThomas Heck-17/+37
2018-12-08Short-circuit Rc/Arc equality checking on equal pointers where T: EqJo Liss-3/+23
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-1/+1
2018-12-03Add sync::Weak::ptr_eqThomas de Zeeuw-0/+47
2018-11-21update various stdlib docsSteve Klabnik-3/+2
2018-11-08Fix Rc/Arc allocation layoutMurarth-2/+4
2018-11-05Auto merge of #54922 - murarth:rc-ub-fix, r=alexcrichtonbors-5/+7
2018-11-05Fix undefined behavior in Rc/Arc allocationMurarth-5/+7
2018-11-01Replace CoerceSized trait with DispatchFromDynMichael Hewson-5/+5
2018-11-01Add CoerceSized impls throughout libstdMichael Hewson-1/+6
2018-10-31Bump nightly to 1.32.0Alex Crichton-1/+1
2018-10-12`#[must_use]` for associated functions is supposed to actually workZack M. Davis-2/+2
2018-10-01Introduce language items for `Arc` and `Rc`.David Wood-0/+1
2018-09-19Auto merge of #53877 - withoutboats:compositional-pin, r=aturonbors-0/+6
2018-09-08Auto merge of #51885 - GuillaumeGomez:trait-impl-show-docs, r=Mark-Simulacrum...bors-5/+3
2018-09-07Rollup merge of #53874 - withoutboats:pin-ptr-impls, r=RalfJungkennytm-1/+4
2018-09-06Fix invalid urlsGuillaume Gomez-5/+3
2018-09-01Update to a new pinning API.Without Boats-0/+6
2018-09-01Implement Unpin for Box, Rc, and ArcWithout Boats-1/+4
2018-08-31Add clearer wording to Arc clone example codeOtto Rask-1/+1
2018-08-30Rephrase Arc documentation changes regarding clonesOtto Rask-4/+4
2018-08-29Make Arc cloning mechanics clearer in module docsOtto Rask-4/+5
2018-08-20Replace usages of ptr::offset with ptr::{add,sub}.Corey Farwell-1/+1
2018-07-23typosRalf Jung-2/+2
2018-07-23Don't use NonNull::dangling as sentinel valueRalf Jung-4/+9