about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2024-10-12 13:01:36 +0200
committerjoboet <jonasboettiger@icloud.com>2024-10-12 13:01:36 +0200
commit9f91c5099fb7261cf8c85cc638d2692a317060ec (patch)
tree76fd472a426886c63ef0415a944b9113a5ad1aaa /compiler/rustc_codegen_llvm/src
parent11ee3a830b8537976d54805331cc626604afbb63 (diff)
downloadrust-9f91c5099fb7261cf8c85cc638d2692a317060ec.tar.gz
rust-9f91c5099fb7261cf8c85cc638d2692a317060ec.zip
std: fix stdout-before-main
Fixes #130210.

Since #124881, `ReentrantLock` uses `ThreadId` to identify threads. This has the unfortunate consequence of breaking uses of `Stdout` before main: Locking the `ReentrantLock` that synchronizes the output will initialize the thread ID before the handle for the main thread is set in `rt::init`. But since that would overwrite the current thread ID, `thread::set_current` triggers an abort.

This PR fixes the problem by using the already initialized thread ID for constructing the main thread handle and allowing `set_current` calls that do not change the thread's ID.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions