about summary refs log tree commit diff
path: root/library/std/src/sys
diff options
context:
space:
mode:
author王宇逸 <Strawberry_Str@hotmail.com>2025-03-07 21:45:41 +0800
committer王宇逸 <Strawberry_Str@hotmail.com>2025-03-10 21:23:32 +0800
commitb9fe8def52c996dcb7dd2d7ab3c362854caee8b7 (patch)
treeab6279e0024cb5771ac44f346a4717276be9dbfd /library/std/src/sys
parentc3051b1f5a6fa308cab85f37be446e7946e1f22e (diff)
Readd os::cygwin::raw as pub(crate)
Diffstat (limited to 'library/std/src/sys')
-rw-r--r--library/std/src/sys/pal/unix/thread.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/unix/thread.rs b/library/std/src/sys/pal/unix/thread.rs
index 4397cb69a09..8aac58d65a2 100644
--- a/library/std/src/sys/pal/unix/thread.rs
+++ b/library/std/src/sys/pal/unix/thread.rs
@@ -344,7 +344,6 @@ impl Drop for Thread {
     target_os = "illumos",
     target_os = "vxworks",
     target_vendor = "apple",
-    target_os = "cygwin",
 ))]
 fn truncate_cstr<const MAX_WITH_NUL: usize>(cstr: &CStr) -> [libc::c_char; MAX_WITH_NUL] {
     let mut result = [0; MAX_WITH_NUL];