Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
31b3915
Some hygiene doc improvements
camsteffen Sep 3, 2025
faf0e14
Update the arm-* and aarch64-* platform docs.
thejpster Sep 7, 2025
f1abb70
Pick up changes from robamu that I missed.
thejpster Sep 10, 2025
b152974
tidy: check that error messages don't start with a capitalized letter
scrabsha Sep 3, 2025
3d3769a
Add missing links in platform-support.md
thejpster Sep 10, 2025
5a74222
Add aarch64-unknown-none to SUMMARY.md
thejpster Sep 10, 2025
409a1fb
Update aarch64-unknown-none.md to include -softfloat too
thejpster Sep 10, 2025
1621ce6
Cleanups from review comments.
thejpster Sep 11, 2025
a0d1f5a
Insert missing word.
thejpster Sep 11, 2025
5d8e41b
Revert "Constify SystemTime methods"
RalfJung Sep 12, 2025
4383a4f
Remove bullet points from the target maintainer list for the arm bare…
thejpster Sep 12, 2025
ea661e9
Re-order and re-work the aarch64-unknown-none platform support page.
thejpster Sep 12, 2025
2baa39e
also apply revert to wasip2
RalfJung Sep 13, 2025
d3b3bb9
Fix small typo in check-cfg.md
mikysett Sep 13, 2025
cc92254
Document `become` keyword
WaffleLapkin May 10, 2023
f13c8c2
fixup `become` kw documentation wrt `#[track_caller]`
WaffleLapkin Sep 13, 2025
f21d3fb
fix Condvar::wait_timeout docs
RalfJung Sep 13, 2025
afd324a
Note that these targets are bare-metal.
thejpster Sep 13, 2025
61a3593
c-variadic: document `core::ffi::VaArgSafe`
folkertdev Sep 11, 2025
a84bb32
c-variadic: test `...` with naked functions
folkertdev Sep 13, 2025
d28c31a
c-variadic: check that c-variadic functions cannot be tail-called
folkertdev Sep 13, 2025
a107ea1
c-variadic: check that inline attributes are accepted on c-variadic f…
folkertdev Sep 13, 2025
e9c80c7
Rollup merge of #113095 - WaffleLapkin:document_becoming_unuwuable, r…
jhpratt Sep 13, 2025
4ee860f
Rollup merge of #146159 - camsteffen:hygiene-docs, r=petrochenkov
jhpratt Sep 13, 2025
141cb38
Rollup merge of #146171 - scrabsha:push-wovnxxwltsun, r=WaffleLapkin
jhpratt Sep 13, 2025
04f17d8
Rollup merge of #146419 - thejpster:update-arm-target-docs, r=working…
jhpratt Sep 13, 2025
5d56e52
Rollup merge of #146473 - RalfJung:system-time-deconst, r=workingjubilee
jhpratt Sep 13, 2025
392d2fa
Rollup merge of #146506 - mikysett:patch-1, r=Urgau
jhpratt Sep 13, 2025
08db938
Rollup merge of #146517 - RalfJung:wait-timeout, r=joboet
jhpratt Sep 13, 2025
da1c27d
Rollup merge of #146521 - folkertdev:document-va-arg-safe, r=workingj…
jhpratt Sep 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions library/std/src/sync/nonpoison/condvar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,10 @@ impl Condvar {
/// the system time. This function is susceptible to spurious wakeups.
/// Condition variables normally have a boolean predicate associated with
/// them, and the predicate must always be checked each time this function
/// returns to protect against spurious wakeups. Additionally, it is
/// typically desirable for the timeout to not exceed some duration in
/// spite of spurious wakes, thus the sleep-duration is decremented by the
/// amount slept. Alternatively, use the `wait_timeout_while` method
/// to wait with a timeout while a predicate is true.
/// returns to protect against spurious wakeups. Furthermore, since the timeout
/// is given relative to the moment this function is called, it needs to be adjusted
/// when this function is called in a loop. The [`wait_timeout_while`] method
/// lets you wait with a timeout while a predicate is true, taking care of all these concerns.
///
/// The returned [`WaitTimeoutResult`] value indicates if the timeout is
/// known to have elapsed.
Expand Down
9 changes: 4 additions & 5 deletions library/std/src/sync/poison/condvar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,10 @@ impl Condvar {
/// the system time. This function is susceptible to spurious wakeups.
/// Condition variables normally have a boolean predicate associated with
/// them, and the predicate must always be checked each time this function
/// returns to protect against spurious wakeups. Additionally, it is
/// typically desirable for the timeout to not exceed some duration in
/// spite of spurious wakes, thus the sleep-duration is decremented by the
/// amount slept. Alternatively, use the `wait_timeout_while` method
/// to wait with a timeout while a predicate is true.
/// returns to protect against spurious wakeups. Furthermore, since the timeout
/// is given relative to the moment this function is called, it needs to be adjusted
/// when this function is called in a loop. The [`wait_timeout_while`] method
/// lets you wait with a timeout while a predicate is true, taking care of all these concerns.
///
/// The returned [`WaitTimeoutResult`] value indicates if the timeout is
/// known to have elapsed.
Expand Down