From e44f9abc7869cf6017e026a34b471126f8646ad9 Mon Sep 17 00:00:00 2001 From: pjht Date: Mon, 11 Nov 2024 11:37:28 -0600 Subject: [PATCH] Update to latest rustc --- library/std/src/os/mikros/errno.rs | 2 +- library/std/src/sys/thread_local/mod.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/library/std/src/os/mikros/errno.rs b/library/std/src/os/mikros/errno.rs index 727aa41edf7..9b0aa8c006d 100644 --- a/library/std/src/os/mikros/errno.rs +++ b/library/std/src/os/mikros/errno.rs @@ -625,7 +625,7 @@ fn from(kind: crate::io::ErrorKind) -> Self { ErrorKind::FilesystemLoop => ELOOP, ErrorKind::FilesystemQuotaExceeded => EDQUOT, ErrorKind::HostUnreachable => EHOSTUNREACH, - //ErrorKind::InProgress => EINPROGRESS, + ErrorKind::InProgress => EINPROGRESS, ErrorKind::Interrupted => EINTR, ErrorKind::InvalidData => EINVALDAT, ErrorKind::InvalidFilename => ENAMETOOLONG, diff --git a/library/std/src/sys/thread_local/mod.rs b/library/std/src/sys/thread_local/mod.rs index ce32904d579..b9e7787c912 100644 --- a/library/std/src/sys/thread_local/mod.rs +++ b/library/std/src/sys/thread_local/mod.rs @@ -90,6 +90,7 @@ pub(crate) mod guard { target_family = "wasm", target_os = "uefi", target_os = "zkvm", + target_os = "mikros", ))] { pub(crate) fn enable() { // FIXME: Right now there is no concept of "thread exit" on