Skip to content

Commit cbb4478

Browse files
authored
Unrolled build for #123356
Rollup merge of #123356 - joboet:set_current_size, r=ChrisDenton Reduce code size of `thread::set_current` #123265 introduced a rather large binary size regression, because it added an `unwrap()` call on a `Result<(), Thread>`, which in turn pulled its rather heavy `Debug` implementation. This PR fixes this by readding the `rtassert!` that was removed.
2 parents 7dd170f + 37c1758 commit cbb4478

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

library/std/src/thread/mod.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -703,9 +703,14 @@ thread_local! {
703703

704704
/// Sets the thread handle for the current thread.
705705
///
706-
/// Panics if the handle has been set already or when called from a TLS destructor.
706+
/// Aborts if the handle has been set already to reduce code size.
707707
pub(crate) fn set_current(thread: Thread) {
708-
CURRENT.with(|current| current.set(thread).unwrap());
708+
// Using `unwrap` here can add ~3kB to the binary size. We have complete
709+
// control over where this is called, so just abort if there is a bug.
710+
CURRENT.with(|current| match current.set(thread) {
711+
Ok(()) => {}
712+
Err(_) => rtabort!("thread::set_current should only be called once per thread"),
713+
});
709714
}
710715

711716
/// Gets a handle to the thread that invokes it.

0 commit comments

Comments
 (0)