We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea04c92 commit f5237d6Copy full SHA for f5237d6
library/std/src/sys/pal/vexos/mod.rs
@@ -55,6 +55,11 @@ pub unsafe extern "C" fn _start() -> ! {
55
56
main();
57
58
+ unsafe {
59
+ crate::sys::thread_local::destructors::run();
60
+ }
61
+ crate::rt::thread_cleanup();
62
+
63
abort_internal()
64
}
65
library/std/src/sys/thread_local/mod.rs
@@ -92,6 +92,7 @@ pub(crate) mod guard {
92
)),
93
target_os = "uefi",
94
target_os = "zkvm",
95
+ target_os = "vexos",
96
))] {
97
pub(crate) fn enable() {
98
// FIXME: Right now there is no concept of "thread exit" on
0 commit comments